@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600;700&family=Space+Grotesk:wght@400;500;600&display=swap");

:root {
  --bg: #f6f0e7;
  --ink: #1b1a16;
  --accent: #d97941;
  --accent-2: #2b6f6a;
  --card: rgba(246, 240, 231, 0.85);
  --sunset: #f28b2e;
  --sand: #f4e7d4;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

body.intro-active {
  overflow: hidden;
  height: 100vh;
}

.intro-releasing main {
  scroll-snap-type: none;
}

body.menu-open {
  overflow: hidden;
  height: 100vh;
}

.intro-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #f28b2e 0%, #ea7a35 60%, #e16a33 100%);
  z-index: 50;
  display: grid;
  place-items: center;
  cursor: pointer;
  transform: translateY(0);
  transition: transform 700ms ease-in-out;
}

.intro-screen.dismissed {
  transform: translateY(-110%);
}

.intro-logo {
  text-align: center;
  color: #fff9f2;
  font-family: "Fraunces", serif;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.intro-logo span {
  display: block;
}

.intro-logo span:last-child {
  font-size: 18px;
  letter-spacing: 0.3em;
  margin-top: 8px;
}

.intro-logo-image {
  width: min(480px, 90vw);
  height: auto;
  display: block;
  transform: translateX(-10px);
  filter: drop-shadow(0 0 0 #fff8ef) drop-shadow(0 0 1px #fff8ef);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(180deg, rgba(246, 240, 231, 0.95), rgba(246, 240, 231, 0.35));
  backdrop-filter: blur(6px);
}

.brand {
  font-family: "Fraunces", serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.menu {
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  background: rgb(242, 139, 46);
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease;
}

.menu-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 242, 225, 0.35), transparent 62%);
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.menu-panel {
  position: relative;
  width: min(520px, 86vw);
  background: transparent;
  border-radius: 24px;
  padding: 28px 26px 24px;
  text-align: center;
  color: #f6efe7;
  font-family: "Fraunces", serif;
  box-shadow: none;
  backdrop-filter: none;
  transform: scale(0.98);
  transition: transform 500ms ease;
}

.menu-overlay.open .menu-panel {
  transform: scale(1);
}

.menu-title {
  margin: 0 0 16px;
  font-family: "Fraunces", serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3a1d0d;
}

.menu-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: min(60vh, 360px);
}

.menu-link {
  display: block;
  text-decoration: none;
  color: #3a1d0d;
  font-family: "Fraunces", serif;
  font-size: 20px;
  padding: 8px 10px;
  border-radius: 999px;
  background: transparent;
  opacity: 0;
  transform: translateY(24px);
}

.menu-link.active {
  color: #fff7ee;
  background: rgba(58, 29, 13, 0.85);
  box-shadow: none;
}

.menu-links-footer {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(58, 29, 13, 0.8);
}

.menu-links-footer a {
  color: rgba(58, 29, 13, 0.95);
  text-decoration: none;
}

.menu-links-footer a:hover {
  text-decoration: underline;
}

.menu-overlay.open .menu-link {
  animation: menuDrop 620ms ease-out both;
}

.menu-overlay.open .menu-link:nth-child(1) { animation-delay: 120ms; }
.menu-overlay.open .menu-link:nth-child(2) { animation-delay: 200ms; }
.menu-overlay.open .menu-link:nth-child(3) { animation-delay: 280ms; }
.menu-overlay.open .menu-link:nth-child(4) { animation-delay: 360ms; }
.menu-overlay.open .menu-link:nth-child(5) { animation-delay: 440ms; }
.menu-overlay.open .menu-link:nth-child(6) { animation-delay: 520ms; }
.menu-overlay.open .menu-link:nth-child(7) { animation-delay: 600ms; }
.menu-overlay.open .menu-link:nth-child(8) { animation-delay: 680ms; }

main {
  scroll-snap-type: y mandatory;
}

body.intro-active main {
  scroll-snap-type: none;
}

body:not(.intro-done) main {
  scroll-snap-type: none;
}

body.menu-page main {
  scroll-snap-type: none;
}

body.menu-page .slide {
  height: auto;
  min-height: 100vh;
  overflow: visible;
}

body.menu-page .menu-section {
  padding-bottom: 120px;
}

body.gallery-page main {
  scroll-snap-type: none;
}

body.gallery-page .slide {
  height: auto;
  min-height: 100vh;
  overflow: visible;
}

body.gallery-page .gallery-section {
  padding-bottom: 120px;
}

body.gallery-page {
  overflow-y: auto;
}

body.policy-page main {
  scroll-snap-type: none;
}

body.policy-page .slide {
  height: auto;
  min-height: 100vh;
  overflow: visible;
}

body.policy-page {
  overflow-y: auto;
}

.policy-section {
  background: linear-gradient(180deg, #f6efe7 0%, #f1dbc6 60%, #ecd0b3 100%);
}

.policy-section .overlay {
  display: none;
}

.policy-content {
  width: min(760px, 92vw);
  color: #2b1c14;
}

.policy-content h1 {
  margin: 0 0 12px;
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 6vw, 40px);
}

.policy-content h2 {
  margin: 22px 0 8px;
  font-family: "Fraunces", serif;
  font-size: clamp(18px, 4.6vw, 22px);
}

.policy-content p {
  margin: 0 0 12px;
  color: #4d3a2e;
  line-height: 1.6;
}

.policy-content ul {
  margin: 0 0 12px 18px;
  padding: 0;
  color: #4d3a2e;
}

.policy-content li {
  margin: 0 0 8px;
}

.slide {
  position: relative;
  height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(64px, 10vh, 96px) 16px clamp(40px, 8vh, 64px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  --bg-shift: 0px;
  --fg-shift: 0px;
  background-position: center calc(50% + var(--bg-shift));
  background-size: cover;
}

body:not(.menu-page):not(.gallery-page):not(.policy-page):not(.contact-page) .slide {
  padding: calc(clamp(64px, 10vh, 96px) + env(safe-area-inset-top, 0px)) 16px clamp(40px, 8vh, 64px);
}

@supports (height: 100svh) {
  .slide {
    height: 100svh;
  }
}

@supports (height: 100dvh) {
  .slide {
    height: 100dvh;
  }
}

body:not(.menu-page):not(.gallery-page):not(.policy-page) .slide {
  height: calc(var(--vh, 1vh) * 100);
}

.slide .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.05));
}

.slide .content {
  position: relative;
  z-index: 1;
  width: min(560px, 90vw);
  padding: 24px;
  border-radius: 16px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transform: translateY(var(--fg-shift));
  animation: fadeIn 500ms ease-out both;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  margin: 0 0 8px;
  color: var(--accent-2);
}

h1, h2 {
  font-family: "Fraunces", serif;
  margin: 0 0 12px;
  line-height: 1.05;
}

h1 {
  font-size: clamp(30px, 6vw, 36px);
}

h2 {
  font-size: clamp(24px, 5.2vw, 30px);
}

.lead {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 16px;
}

.cta {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.cta.ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.story {
  background-color: #f8f4ee;
  background-image: none;
  padding: 72px 20px 48px;
}

.story .overlay {
  display: none;
}

.story .story-card {
  width: min(600px, 90vw);
  background: transparent;
  box-shadow: none;
  padding: 0 6px;
  border-radius: 0;
  color: #1d1f26;
  text-align: left;
}

.story-image {
  width: 100%;
  height: clamp(140px, 22vh, 180px);
  border-radius: 20px;
  margin-bottom: 18px;
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.story-kicker {
  color: var(--sunset);
  font-size: 13px;
  letter-spacing: 0.28em;
  margin-bottom: 12px;
}

.story-title {
  font-size: clamp(22px, 5.2vw, 30px);
  line-height: 1.1;
  color: #232631;
  margin: 0 0 14px;
}

.story-body {
  color: #6b707a;
  font-size: clamp(13px, 3.4vw, 15px);
  line-height: 1.6;
}

.story-body p {
  margin: 0 0 16px;
}

.story-body p:last-child {
  margin-bottom: 0;
}

.hero {
  align-items: end;
}

.hero .overlay {
  background: linear-gradient(180deg, rgba(15, 18, 24, 0), rgba(15, 18, 24, 0.65));
}

.hero .hero-content {
  width: min(520px, 92vw);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  border-radius: 0;
  padding: 0 4px 8px;
  margin-bottom: 0;
  margin-top: 0;
  color: #f5f2ee;
  text-align: center;
}

.hero-logo {
  width: min(480px, 90vw);
  height: auto;
  display: block;
  margin: 0 auto 16px;
  transform: translateX(-10px);
  opacity: 0;
  filter: drop-shadow(0 0 0 #f8f3ea) drop-shadow(0 0 1px #f8f3ea);
}

.intro-done .hero-logo {
  animation: lineUp 700ms ease-out both;
}

.hero .eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sunset);
  opacity: 0;
  transform: translateY(26px);
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 7vw, 42px);
  line-height: 1.05;
}

.hero .title-main {
  display: block;
  font-family: "Fraunces", serif;
  color: #f8f6f2;
  opacity: 0;
  transform: translateY(26px);
}

.hero .title-accent {
  display: block;
  font-family: "Fraunces", serif;
  font-style: italic;
  color: var(--sunset);
  position: relative;
  background: linear-gradient(120deg, rgba(242, 139, 46, 0.6) 0%, rgba(255, 236, 200, 0.95) 45%, rgba(242, 139, 46, 0.7) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(26px);
}

.hero .subtitle {
  margin: 12px 0 18px;
  font-size: clamp(14px, 3.6vw, 16px);
  line-height: 1.6;
  color: rgba(245, 242, 238, 0.9);
  opacity: 0;
  transform: translateY(26px);
}

.hero .hero-actions {
  display: grid;
  gap: 12px;
  justify-items: center;
  margin-top: 16px;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(26px);
}

.intro-done .hero .eyebrow {
  animation: lineUp 700ms ease-out both;
  animation-delay: 140ms;
}

.intro-done .hero .title-main {
  animation: lineUp 700ms ease-out both;
  animation-delay: 260ms;
}

.intro-done .hero .title-accent {
  animation: lineUp 700ms ease-out both 380ms, waveShimmer 4.8s ease-in-out infinite 1s;
}

.intro-done .hero .subtitle {
  animation: lineUp 700ms ease-out both;
  animation-delay: 520ms;
}

.intro-done .hero .hero-actions {
  animation: lineUp 700ms ease-out both;
  animation-delay: 660ms;
}

.hero .cta {
  width: min(70%, 240px);
  justify-self: center;
  animation: pulse 2.6s ease-in-out infinite;
}

.hero .cta.ghost {
  animation-delay: 0.6s;
}

.cta.light {
  border-color: rgba(245, 242, 238, 0.6);
  color: #f5f2ee;
}

.s1 {
  background-image: url("hero1.png");
}

.s2 {
  background-image: none;
}

.s3 {
  background-image: url("https://images.unsplash.com/photo-1470770903676-69b98201ea1c?auto=format&fit=crop&w=1400&q=80");
}

.experience {
  background: linear-gradient(180deg, #fff5e6 0%, #f6e2c4 55%, #f3d1a6 100%);
}

.experience .overlay {
  display: none;
}

.events {
  background: linear-gradient(180deg, #fff4e6 0%, #f4d9bf 60%, #f0c8a8 100%);
}

.events .overlay {
  display: none;
}

.events-content {
  width: min(620px, 92vw);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

.events-title {
  margin: 0 0 20px;
  font-family: "Fraunces", serif;
  font-size: clamp(26px, 6vw, 34px);
  color: #2c1f18;
}

.events-grid {
  display: grid;
  gap: 14px;
}

.event-card {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(160, 110, 70, 0.2);
}

.event-card h3 {
  margin: 4px 0 6px;
  font-family: "Fraunces", serif;
  font-size: 18px;
  color: #3b2317;
}

.event-card p {
  margin: 0 0 10px;
  font-size: 14px;
  color: #5c4a3b;
}

.event-day {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c06f38;
}

.event-time {
  font-size: 12px;
  color: #7d5b47;
}

.menu-section {
  background: linear-gradient(180deg, #f6efe7 0%, #f1dbc6 60%, #ecd0b3 100%);
}

.menu-section .overlay {
  display: none;
}

.menu-content {
  width: min(620px, 92vw);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.menu-content .menu-title {
  margin: 0 0 16px;
  color: #2b1c14;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: clamp(24px, 6vw, 34px);
}

.menu-columns {
  display: grid;
  gap: 28px;
}

.menu-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 20px;
}

.menu-tab {
  border: 1px solid rgba(90, 58, 35, 0.35);
  background: transparent;
  color: #3b2317;
  padding: 10px 12px;
  border-radius: 999px;
  font-family: "Fraunces", serif;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-tab.active {
  background: #f2d2a4;
  color: #1c120b;
  border-color: transparent;
}

.menu-group {
  display: grid;
  gap: 28px;
}

.menu-group.menu-panel-content {
  display: none;
}

.menu-group.menu-panel-content.active {
  display: grid;
}

.menu-group-title {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(22px, 6vw, 28px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c06f38;
}

.menu-subgroup {
  display: grid;
  gap: 12px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  margin-bottom: 18px;
}

.menu-subgroup:last-of-type {
  margin-bottom: 0;
}

.menu-subgroup h4 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 18px;
  color: #2b1c14;
}

.menu-list {
  display: grid;
  gap: 14px;
}

.menu-item {
  display: grid;
  gap: 6px;
  border-bottom: 1px dashed rgba(143, 96, 63, 0.25);
  padding-bottom: 12px;
}

.menu-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.menu-item h5 {
  margin: 0 0 6px;
  font-family: "Fraunces", serif;
  font-size: 16px;
  color: #3b2317;
}

.menu-item p {
  margin: 0;
  font-size: 14px;
  color: #5c4a3b;
}

.menu-item-image {
  grid-template-columns: 1fr;
  align-items: start;
  column-gap: 0;
  border-bottom: 1px dashed rgba(143, 96, 63, 0.25);
  padding-bottom: 12px;
}

.menu-item-image h5 {
  margin-bottom: 4px;
}

.menu-thumb {
  width: 100%;
  height: 180px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: none;
}

.menu-thumb-app-1 {
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=500&q=80");
}

.menu-thumb-app-2 {
  background-image: url("https://images.unsplash.com/photo-1470337458703-46ad1756a187?auto=format&fit=crop&w=500&q=80");
}

.menu-thumb-soup-1 {
  background-image: url("https://images.unsplash.com/photo-1547592180-85f173990554?auto=format&fit=crop&w=500&q=80");
}

.menu-thumb-main-1 {
  background-image: url("https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=500&q=80");
}

.menu-thumb-main-2 {
  background-image: url("https://images.unsplash.com/photo-1505253716362-afaea1d3d1af?auto=format&fit=crop&w=500&q=80");
}

.menu-thumb-dessert-1 {
  background-image: url("https://images.unsplash.com/photo-1481391319762-47dff72954d9?auto=format&fit=crop&w=500&q=80");
}

.menu-thumb-beer-1 {
  background-image: url("https://images.unsplash.com/photo-1532634896-26909d0d4b18?auto=format&fit=crop&w=500&q=80");
}

.menu-thumb-gin-1 {
  background-image: url("https://images.unsplash.com/photo-1497534446932-c925b458314e?auto=format&fit=crop&w=500&q=80");
}

.menu-thumb-vodka-1 {
  background-image: url("https://images.unsplash.com/photo-1455621481073-d5bc1c40e3cb?auto=format&fit=crop&w=500&q=80");
}

.gallery-section {
  background: linear-gradient(180deg, #fff1e2 0%, #f5d7b8 55%, #edc39f 100%);
}

.gallery-section .overlay {
  display: none;
}

.gallery-content {
  width: min(640px, 94vw);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
}

.gallery-title {
  margin: 0 0 18px;
  font-family: "Fraunces", serif;
  font-size: clamp(26px, 6vw, 34px);
  color: #2c1f18;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gallery-grid-photos {
  display: block;
  column-count: 3;
  column-gap: 16px;
}

.gallery-shot {
  width: 100%;
  display: inline-block;
  margin: 0 0 16px;
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.gallery-shot img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 6, 0.92);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  z-index: 60;
  transition: opacity 260ms ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-image {
  max-width: min(92vw, 980px);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 28px;
  cursor: pointer;
}

.lightbox-nav.prev {
  left: 18px;
}

.lightbox-nav.next {
  right: 18px;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 28px;
  cursor: pointer;
}

.lightbox-counter {
  position: fixed;
  bottom: 18px;
  right: 18px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.g5 {
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=900&q=80");
}

.g6 {
  background-image: url("https://images.unsplash.com/photo-1470337458703-46ad1756a187?auto=format&fit=crop&w=900&q=80");
}

.g7 {
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=900&q=80");
}

.g8 {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80");
}

.experience-content {
  width: min(680px, 92vw);
  background: transparent;
  box-shadow: none;
  text-align: center;
  padding: 0;
}

.experience-kicker {
  color: #232631;
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.experience-title {
  font-size: clamp(18px, 4.6vw, 24px);
  line-height: 1.2;
  margin: 0 0 22px;
  color: #232631;
}

.experience-cards {
  display: grid;
  gap: 14px;
}

.experience-card {
  position: relative;
  height: clamp(120px, 22vh, 150px);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #f8f6f2;
  box-shadow: 0 16px 32px rgba(23, 18, 12, 0.2);
  background-size: cover;
  background-position: center;
  transition: transform 400ms ease;
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 65%);
  transform: translateX(-120%);
  opacity: 0.6;
  animation: sheen 6s ease-in-out infinite;
}

.experience-card:nth-child(1)::after {
  animation-delay: 0s;
}

.experience-card:nth-child(2)::after {
  animation-delay: 1.2s;
}

.experience-card:nth-child(3)::after {
  animation-delay: 2.4s;
}

.experience-card.pulse-once {
  animation: cardPulse 550ms ease-out 1;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.75));
}

.card-text {
  position: relative;
  z-index: 1;
  padding: 16px;
  text-align: left;
}

.card-text h3 {
  margin: 0 0 6px;
  font-family: "Fraunces", serif;
  font-size: 22px;
}

.card-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.card-icon {
  margin: 0 0 6px;
  font-size: 18px;
  color: var(--sunset);
}

.card-dine {
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1200&q=80");
}

.card-dance {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80");
}

.card-unwind {
  background-image: url("https://images.unsplash.com/photo-1470240731273-7821a6eeb6bd?auto=format&fit=crop&w=1200&q=80");
}

.s4 {
  background-image: none;
}

.s5 {
  background: #3b2416;
}

.footer .overlay {
  display: none;
}

.footer-content {
  width: min(540px, 90vw);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  border-radius: 0;
  text-align: center;
  color: #f9f4ee;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 520px;
  margin: auto 0;
  padding-bottom: 40px;
}

.footer-title {
  margin: 0 0 8px;
  font-size: clamp(26px, 6.5vw, 36px);
  line-height: 1.05;
}

.footer-title span {
  color: var(--sunset);
}

.footer-subtitle {
  margin: 0 0 10px;
  font-size: clamp(13px, 3.6vw, 15px);
  line-height: 1.6;
  color: rgba(249, 244, 238, 0.9);
}

.footer-call {
  margin: 6px 0 16px;
  font-size: clamp(15px, 4.4vw, 18px);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fffaf4;
}

.footer-directions {
  margin: -6px 0 16px;
  font-size: clamp(13px, 3.6vw, 15px);
  color: rgba(255, 255, 255, 0.85);
}

.footer-directions a {
  color: #f28b2e;
  text-decoration: none;
  font-weight: 600;
}

.footer-directions a:hover {
  text-decoration: underline;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 0 0 28px;
  font-size: 22px;
  color: rgba(255, 248, 241, 0.9);
}

.footer-section {
  margin: 0 0 18px;
  text-align: center;
}

.footer-section h3 {
  margin: 0 0 8px;
  font-family: "Fraunces", serif;
  font-size: clamp(18px, 4.6vw, 22px);
}

.footer-section p {
  margin: 0 0 8px;
  font-size: clamp(12px, 3.4vw, 14px);
  line-height: 1.6;
}

.footer-divider {
  height: 1px;
  width: min(90%, 360px);
  margin: 16px auto 12px;
  background: rgba(255, 243, 230, 0.35);
}

.footer-copy {
  position: static;
  margin: 0;
  font-size: 12px;
  color: rgba(255, 248, 241, 0.7);
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 13px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-link-sep {
  color: rgba(255, 255, 255, 0.4);
}

.finale {
  background: linear-gradient(180deg, #f28b2e 0%, #ea7a35 55%, #e16a33 100%);
}

.finale .overlay {
  display: none;
}

.finale-content {
  width: min(860px, 92vw);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  border-radius: 0;
  text-align: center;
  color: #fff8f1;
  padding: 0;
}

.finale .content,
.footer .content {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.finale-kicker {
  color: #fff3e5;
  letter-spacing: 0.08em;
  font-size: 14px;
}

.finale-title {
  font-size: clamp(22px, 5.6vw, 28px);
  line-height: 1.2;
  margin: 8px 0 10px;
  color: #fffaf4;
}

.finale-subtitle {
  margin: 0 0 22px;
  font-size: clamp(13px, 3.6vw, 15px);
  line-height: 1.6;
  color: rgba(255, 248, 241, 0.9);
}

.finale-follow {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 248, 241, 0.8);
}

.finale-handle {
  margin: 0 0 16px;
  font-family: "Fraunces", serif;
  font-size: clamp(16px, 4.4vw, 20px);
  color: #fffaf4;
}

.finale-gallery {
  display: grid;
  gap: 10px;
  grid-auto-flow: column;
  grid-auto-columns: 75%;
  grid-template-rows: repeat(2, 1fr);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

.gallery-tile {
  border-radius: 14px;
  height: clamp(90px, 16vh, 110px);
  background-size: cover;
  background-position: center;
  box-shadow: none;
  scroll-snap-align: start;
}

.g1 {
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=800&q=80");
}

.g2 {
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=800&q=80");
}

.g3 {
  background-image: url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=800&q=80");
}

.g4 {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=800&q=80");
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes sheen {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes cardPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSlide {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes lineUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes menuDrop {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  60% {
    opacity: 1;
    transform: translateY(-6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes waveShimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 560px) {
  .menu-thumb {
    height: 150px;
  }

  .gallery-grid-photos {
    column-count: 1;
  }
}

@media (max-width: 900px) {
  .gallery-grid-photos {
    column-count: 2;
  }
}

@media (min-width: 768px) {
  .slide .content {
    padding: 32px 36px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 40px;
  }

  .lead {
    font-size: 18px;
  }

  .hero .hero-content {
    text-align: center;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero .subtitle {
    font-size: 18px;
  }

  .hero .hero-actions {
    grid-template-columns: repeat(2, max-content);
  }

  .story .story-card {
    width: min(720px, 80vw);
    padding: 0 10px;
  }

  .story-image {
    height: 240px;
  }

  .story-title {
    font-size: 38px;
  }

  .story-body {
    font-size: 17px;
  }

  .experience-content {
    width: min(860px, 80vw);
  }


  .experience-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .experience-card {
    height: 220px;
  }

  .card-text h3 {
    font-size: 24px;
  }

  .card-text p {
    font-size: 15px;
  }

  .finale-content {
    width: min(980px, 80vw);
  }

  .finale-title {
    font-size: 36px;
  }

  .finale-subtitle {
    font-size: 18px;
  }

  .finale-gallery {
    grid-auto-columns: 40%;
  }

  .gallery-tile {
    height: 140px;
  }

  .footer-content {
    width: min(640px, 70vw);
  }

  .footer-title {
    font-size: 44px;
  }

  .footer-subtitle {
    font-size: 17px;
  }

  .footer-section h3 {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html, body {
    scroll-behavior: auto;
  }

  .slide .content {
    animation: none;
  }

  .hero .hero-content,
  .hero .eyebrow,
  .hero h1,
  .hero .title-main,
  .hero .subtitle,
  .hero .hero-actions,
  .hero .cta,
  .hero .title-accent {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .menu-link {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-height: 700px) {
  .slide {
    height: 100svh;
    overflow-y: auto;
  }

  .hero .hero-actions {
    margin-bottom: 8px;
  }

  .finale-gallery {
    grid-auto-columns: 85%;
  }

  .footer-copy {
    bottom: 12px;
  }
}

@media (max-width: 480px) {
  .finale-content {
    width: min(520px, 92vw);
  }

  .finale-kicker {
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  .finale-title {
    font-size: clamp(20px, 7.2vw, 26px);
    margin: 6px 0 8px;
  }

  .finale-subtitle {
    margin: 0 0 16px;
  }

  .finale-gallery {
    grid-template-rows: 1fr;
    grid-auto-columns: 70%;
  }

  .gallery-tile {
    height: 110px;
  }
}
