/* =========================================================
   UNAN — Hero Section
   Mobile-first, fully responsive, luxury Bengali fine dining
========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --color-bg: #F7F3EB;
  --color-bg-soft: #FBF9F4;
  --color-maroon: #7E1F2C;
  --color-maroon-dark: #5A1420;
  --color-maroon-light: #9C3B42;
  --color-ink: #241C18;
  --color-ink-soft: #4A413A;
  --color-gray: #726A61;
  --color-border: rgba(36, 28, 24, 0.12);
  --color-white: #FFFFFF;
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #1EBE5A;
  --color-black: #191512;
  --color-black-soft: #262019;

  --color-maroon-deep: #350D12;
  --color-maroon-deep-2: #200709;
  --color-maroon-cta: #6E1515;
  --color-gold: #CE9F4F;
  --color-gold-light: #E0BA75;
  --color-gold-dark: #B08337;
  --color-cream-soft: rgba(247, 243, 235, 0.78);

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --font-bengali-sans: 'Hind Siliguri', sans-serif;

  --container-width: 1320px;
  --container-pad: 20px;
  --header-height: 84px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.25s;
  --t-med: 0.45s;
  --t-slow: 0.8s;

  --shadow-btn: 0 10px 24px -8px rgba(122, 20, 32, 0.45);
  --shadow-card: 0 20px 50px -20px rgba(36, 28, 24, 0.25);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-ink);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100svh;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
svg { display: block; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-maroon);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

@media (min-width: 640px) { :root { --container-pad: 32px; } }
@media (min-width: 1024px) { :root { --container-pad: 48px; } }
@media (min-width: 1440px) { :root { --container-pad: 64px; } }

/* =========================================================
   BUTTONS
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 4px;
  white-space: nowrap;
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              background-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
}

.btn svg { transition: transform var(--t-fast) var(--ease); flex-shrink: 0; }

.btn--primary {
  background: var(--color-maroon);
  color: var(--color-white);
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover {
  background: var(--color-maroon-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(122, 20, 32, 0.55);
}
.btn--primary:hover svg { transform: translateX(3px); }
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--color-ink);
  border: 1px solid var(--color-border);
}
.btn--outline:hover {
  border-color: var(--color-ink);
  background: var(--color-ink);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--sm { padding: 12px 22px; font-size: 12.5px; }
.btn--lg { padding: 17px 32px; font-size: 14px; }

/* Outline variant for use on dark / deep-maroon backgrounds */
.btn--outline-invert {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(247, 243, 235, 0.45);
}
.btn--outline-invert:hover {
  background: var(--color-white);
  color: var(--color-maroon-deep);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

/* Filled gold variant — used on the deep-maroon CTA banner */
.btn--gold {
  background: var(--color-gold);
  color: var(--color-maroon-deep);
  box-shadow: 0 10px 26px -8px rgba(206, 159, 79, 0.5);
}
.btn--gold:hover {
  background: var(--color-gold-light);
  transform: translateY(-3px);
  box-shadow: 0 20px 42px -10px rgba(206, 159, 79, 0.65);
}
.btn--gold:hover svg { transform: translateX(3px); }
.btn--gold:active { transform: translateY(0); }

/* =========================================================
   HEADER / NAVIGATION (transparent)
========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease),
              backdrop-filter var(--t-med) var(--ease);
}

.site-header.is-scrolled {
  background: rgba(247, 243, 235, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px -12px rgba(36, 28, 24, 0.15);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  color: var(--color-maroon);
  flex-shrink: 0;
}
.logo__img {
  height: 38px;
  width: auto;
  display: block;
}
.logo__tagline {
  font-family: var(--font-bengali-sans);
  font-size: 9px;
  letter-spacing: 0.05em;
  color: var(--color-ink-soft);
}

/* Primary nav — hidden until desktop */
.main-nav { display: none; }
.main-nav__list { display: flex; align-items: center; gap: 34px; }
.main-nav__list a {
  position: relative;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-ink);
  padding-bottom: 6px;
  transition: color var(--t-fast) var(--ease);
}
.main-nav__list a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-maroon);
  transform: translateX(-50%) scale(0);
  transition: transform var(--t-fast) var(--ease);
}
.main-nav__list a:hover { color: var(--color-maroon); }
.main-nav__list a.is-active { color: var(--color-maroon); }
.main-nav__list a.is-active::after,
.main-nav__list a:hover::after { transform: translateX(-50%) scale(1); }

.header__actions { display: flex; align-items: center; gap: 14px; }
.header__actions .btn--primary span,
.header__actions .btn--primary svg { display: none; }

@media (min-width: 1024px) {
  .main-nav { display: block; }
  .header__actions .btn--primary { display: inline-flex; }
  .header__actions .btn--primary span,
  .header__actions .btn--primary svg { display: inline-flex; }
}

/* Hide desktop reserve button below 1024, show only hamburger */
@media (max-width: 1023.98px) {
  .header__actions .btn--primary { display: none; }
}

/* Hamburger */
.hamburger {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.hamburger:hover { border-color: var(--color-maroon); }
.hamburger__box { width: 18px; height: 13px; position: relative; }
.hamburger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--color-ink);
  transition: transform var(--t-med) var(--ease), opacity var(--t-fast) var(--ease), top var(--t-med) var(--ease);
}
.hamburger__line:nth-child(1) { top: 0; }
.hamburger__line:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger__line:nth-child(3) { top: 100%; transform: translateY(-100%); }

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(3) { top: 50%; transform: translateY(-50%) rotate(-45deg); }

/* =========================================================
   MOBILE NAV DRAWER
========================================================= */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(25, 21, 18, 0.55);
  z-index: 190;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-med) var(--ease), visibility var(--t-med) var(--ease);
}
.mobile-nav-overlay.is-open { opacity: 1; visibility: visible; }

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 86vw);
  background: var(--color-bg-soft);
  z-index: 200;
  padding: 28px 32px 40px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--t-med) var(--ease);
  box-shadow: -20px 0 50px -20px rgba(36, 28, 24, 0.3);
}
.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.mobile-nav__brand {
  height: 32px;
  width: auto;
  display: block;
}
.mobile-nav__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav__list { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.mobile-nav__list a {
  display: block;
  padding: 14px 4px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-border);
  transition: color var(--t-fast) var(--ease), padding-left var(--t-fast) var(--ease);
}
.mobile-nav__list a:hover,
.mobile-nav__list a.is-active { color: var(--color-maroon); padding-left: 10px; }

.mobile-nav__cta { width: 100%; margin-top: 24px; }

body.no-scroll { overflow: hidden; }

/* =========================================================
   HERO SECTION
========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 28px);
  padding-bottom: 48px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Subtle luxury Bengali-inspired background pattern */
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(126, 31, 44, 0.05) 0, transparent 45%),
    radial-gradient(circle at 88% 75%, rgba(126, 31, 44, 0.045) 0, transparent 40%),
    repeating-radial-gradient(circle at 50% 50%, transparent 0, transparent 58px, rgba(126, 31, 44, 0.035) 59px, transparent 60px);
  background-size: auto, auto, 240px 240px;
  opacity: 0.6;
}
.hero__bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(126, 31, 44, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 31, 44, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 75%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

/* ---------- Left content ---------- */
.hero__content { max-width: 620px; }

.hero__eyebrow {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-maroon);
  margin-bottom: 18px;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(34px, 8vw, 58px);
  line-height: 1.14;
  color: var(--color-ink);
  letter-spacing: -0.01em;
}
.accent { color: var(--color-maroon); font-style: italic; }

.hero__divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0;
}
.hero__divider-line { width: 56px; height: 1px; background: var(--color-ink); opacity: 0.5; }
.hero__divider-dot {
  width: 6px; height: 6px;
  border: 1px solid var(--color-maroon);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.hero__desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--color-gray);
  max-width: 420px;
  margin-bottom: 34px;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}
.hero__cta-group .btn { flex: 1 1 auto; }

@media (max-width: 479.98px) {
  .hero__cta-group { flex-direction: column; }
  .hero__cta-group .btn { width: 100%; }
}

.hero__pagination {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__pagination-num {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--color-gray);
  opacity: 0.55;
  transition: opacity var(--t-med) var(--ease), color var(--t-med) var(--ease);
}
.hero__pagination-num.is-active { opacity: 1; color: var(--color-maroon); font-weight: 600; }
.hero__pagination-track {
  position: relative;
  width: 44px;
  height: 1px;
  background: var(--color-border);
}
.hero__pagination-fill {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 25%;
  background: var(--color-maroon);
  transition: width 0.6s var(--ease);
}

/* ---------- Right visual ---------- */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.hero__image-wrap {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1 / 1;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 40px 40px rgba(36, 28, 24, 0.28));
  background: radial-gradient(ellipse at center, rgba(126,31,44,0.06) 0%, transparent 68%);
  border-radius: 50%;
}

/* Steam */
.hero__steam {
  position: absolute;
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 160px;
  z-index: 4;
  pointer-events: none;
}
.steam {
  position: absolute;
  bottom: 0;
  width: 18px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
  filter: blur(6px);
  opacity: 0;
  transform-origin: bottom center;
}
.steam--1 { left: 30%; animation: steamRise 4.5s ease-in-out infinite; }
.steam--2 { left: 50%; height: 110px; animation: steamRise 5.5s ease-in-out infinite 0.8s; }
.steam--3 { left: 68%; animation: steamRise 4.8s ease-in-out infinite 1.6s; }

@keyframes steamRise {
  0%   { opacity: 0; transform: translateY(0) scaleX(1) rotate(0deg); }
  20%  { opacity: 0.55; }
  70%  { opacity: 0.25; }
  100% { opacity: 0; transform: translateY(-90px) scaleX(1.6) rotate(6deg); }
}

/* Floating spices */
.spice {
  position: absolute;
  z-index: 5;
  filter: drop-shadow(0 12px 16px rgba(36, 28, 24, 0.22));
  animation: spiceFloat 5s ease-in-out infinite;
}
.spice--star-anise { top: 6%; left: 4%; width: 11%; animation-delay: 0s; }
.spice--cinnamon   { top: 46%; left: -6%; width: 15%; animation-delay: 0.6s; animation-duration: 6s; }
.spice--cardamom   { bottom: 10%; left: 2%; width: 9%; animation-delay: 1.2s; }
.spice--chilli     { top: 2%; right: 6%; width: 10%; animation-delay: 0.3s; animation-duration: 5.5s; }
.spice--bay-leaf   { bottom: 20%; right: -4%; width: 11%; animation-delay: 0.9s; }
.spice--mint       { top: 40%; right: -2%; width: 10%; animation-delay: 1.5s; animation-duration: 6.2s; }

@keyframes spiceFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(6deg); }
}

/* Watch our story */
.watch-story {
  position: absolute;
  bottom: 6%;
  right: 2%;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 243, 235, 0.9);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(4px);
  transition: transform var(--t-fast) var(--ease);
}
.watch-story:hover { transform: scale(1.06); }
.watch-story__ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 16s linear infinite; }
.watch-story__ring-text {
  font-family: var(--font-sans);
  font-size: 9.4px;
  letter-spacing: 0.12em;
  fill: var(--color-maroon);
  text-transform: uppercase;
}
.watch-story__play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-maroon);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
}

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

@media (max-width: 767.98px) {
  .watch-story { width: 84px; height: 84px; bottom: -6px; right: 6px; }
  .watch-story__play { width: 32px; height: 32px; }
}

/* =========================================================
   SCROLL INDICATOR (left side)
========================================================= */
.scroll-indicator {
  position: absolute;
  left: 22px;
  bottom: 40px;
  z-index: 5;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--color-ink-soft);
}
.scroll-indicator__text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.scroll-indicator__line {
  width: 1px;
  height: 46px;
  background: var(--color-border);
  position: relative;
  overflow: hidden;
}
.scroll-indicator__line::after {
  content: '';
  position: absolute;
  left: 0; top: -100%;
  width: 100%; height: 100%;
  background: var(--color-maroon);
  animation: scrollLine 2.6s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 0; }
  100% { top: 100%; }
}
.scroll-indicator__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--color-maroon);
  position: relative;
}
.scroll-indicator__dot::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--color-maroon);
  animation: dotPulse 2.6s var(--ease) infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1); }
}

@media (min-width: 1024px) {
  .scroll-indicator { display: flex; }
}

/* =========================================================
   FLOATING VERTICAL CTA (desktop) / bottom bar (mobile)
========================================================= */
.floating-cta {
  position: fixed;
  z-index: 80;
  display: flex;
}

@media (min-width: 1024px) {
  .floating-cta {
    top: 50%;
    right: 26px;
    transform: translateY(-50%);
    flex-direction: column;
    width: 92px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
  }
  .floating-cta__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 8px;
    font-size: 10.5px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--color-white);
    transition: flex-grow var(--t-fast) var(--ease), padding var(--t-fast) var(--ease);
  }
  .floating-cta__item:hover { padding-block: 22px; }
  .floating-cta__item--reserve { background: var(--color-maroon); }
  .floating-cta__item--reserve:hover { background: var(--color-maroon-dark); }
  .floating-cta__item--whatsapp { background: var(--color-whatsapp); }
  .floating-cta__item--whatsapp:hover { background: var(--color-whatsapp-dark); }
  .floating-cta__item--call { background: var(--color-black); }
  .floating-cta__item--call:hover { background: var(--color-black-soft); }
  .floating-cta__item--directions { background: var(--color-black-soft); }
  .floating-cta__item--directions:hover { background: var(--color-black); }
}

/* Mobile: bottom navigation bar */
@media (max-width: 1023.98px) {
  .floating-cta {
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: row;
    width: 100%;
    padding-bottom: env(safe-area-inset-bottom, 0);
    box-shadow: 0 -8px 30px -12px rgba(36, 28, 24, 0.25);
  }
  .floating-cta__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 4px 10px;
    font-size: 10px;
    letter-spacing: 0.02em;
    font-weight: 500;
    color: var(--color-white);
  }
  .floating-cta__item svg { width: 18px; height: 18px; }
  .floating-cta__item--reserve { background: var(--color-maroon); }
  .floating-cta__item--whatsapp { background: var(--color-whatsapp); }
  .floating-cta__item--call { background: var(--color-black); }
  .floating-cta__item--directions { background: var(--color-black-soft); }
}

/* =========================================================
   RESPONSIVE — HERO LAYOUT BREAKPOINTS
========================================================= */

/* Tablet and up: two-column layout */
@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
  }
  .hero__content { max-width: none; padding-right: 12px; }
}

@media (min-width: 1200px) {
  .hero__inner { grid-template-columns: 1.05fr 1fr; gap: 40px; }
  .hero__visual { padding-right: 70px; }
}

/* Mobile-specific spacing */
@media (max-width: 899.98px) {
  .hero { padding-bottom: 110px; text-align: left; }
  .hero__visual { order: 2; margin-top: 8px; }
  .hero__content { order: 1; }
  .hero__image-wrap { width: min(100%, 420px); }
}

@media (max-width: 379.98px) {
  .hero__title { font-size: 30px; }
  .hero__eyebrow { font-size: 11px; letter-spacing: 0.16em; }
}

/* =========================================================
   SECTION 02 — OUR STORY
========================================================= */
.story {
  position: relative;
  background: var(--color-bg);
  padding-block: 88px;
  overflow: hidden;
}

/* Decorative background artwork — right side, vertically centered.
   Purely decorative: no rotation, no floating, no scaling, no loop.
   Loaded as an external asset (never inlined / never base64). */
.story__bg-decor {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 200px;
  height: auto;
  aspect-ratio: 1 / 1;
  opacity: 0.1;
  mix-blend-mode: normal;
  pointer-events: none;
}

@media (min-width: 900px) {
  .story__bg-decor { width: 320px; }
}
@media (min-width: 1200px) {
  .story__bg-decor { width: 480px; }
}

.story__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

/* ---------- Left: image collage ---------- */
.story__visual {
  display: flex;
  justify-content: center;
}

.story-collage {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1.08;
  margin-inline: auto;
}

.story-collage__item {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--color-bg);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  cursor: pointer;
}
.story-collage__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.story-collage__item:hover { transform: translateY(-6px); box-shadow: 0 34px 60px -20px rgba(36, 28, 24, 0.35); }
.story-collage__item:hover img { transform: scale(1.09); }

.story-collage__item--oval {
  top: 0;
  left: 0;
  width: 74%;
  height: 88%;
  border-radius: 50% 50% 46% 46% / 58% 58% 42% 42%;
  z-index: 1;
}

.story-collage__item--top-right {
  top: -2%;
  right: -4%;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 7px solid var(--color-bg);
  z-index: 2;
}

.story-collage__item--bottom-right {
  bottom: 6%;
  right: -8%;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 7px solid var(--color-bg);
  z-index: 2;
}

.story-collage__item--bottom-left {
  bottom: -6%;
  left: 6%;
  width: 27%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 7px solid var(--color-bg);
  z-index: 3;
}

/* decorative scatter dots */
.story-collage__dots { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.story-collage__dots span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-maroon);
}
.story-collage__dots span:nth-child(1) { top: 6%; right: 14%; opacity: 0.55; width: 5px; height: 5px; }
.story-collage__dots span:nth-child(2) { top: 16%; right: 4%; opacity: 0.35; width: 4px; height: 4px; }
.story-collage__dots span:nth-child(3) { bottom: 14%; left: -2%; opacity: 0.5; }
.story-collage__dots span:nth-child(4) { bottom: 24%; left: 6%; opacity: 0.3; width: 4px; height: 4px; }
.story-collage__dots span:nth-child(5) { bottom: 4%; left: 22%; opacity: 0.4; width: 5px; height: 5px; }

/* ---------- Right: content ---------- */
.story__content { max-width: 560px; }

.story__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(30px, 6vw, 46px);
  line-height: 1.18;
  color: var(--color-ink);
  letter-spacing: -0.01em;
  margin-top: 4px;
}

.story__desc {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--color-gray);
  max-width: 460px;
  margin: 24px 0 36px;
}

.story__cta { width: fit-content; }

/* ---------- Layout breakpoints ---------- */
@media (min-width: 900px) {
  .story__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 48px;
  }
}

@media (min-width: 1200px) {
  .story__inner { grid-template-columns: 1fr 1fr; gap: 72px; }
}

@media (max-width: 899.98px) {
  .story { padding-block: 64px; text-align: left; }
  .story-collage { max-width: 380px; }
}

@media (max-width: 479.98px) {
  .story { padding-block: 56px; }
  .story-collage { max-width: 300px; aspect-ratio: 1 / 1.12; }
  .story__cta { width: 100%; }
}

/* =========================================================
   SECTION 03 — SIGNATURE DISHES
========================================================= */
.dishes {
  position: relative;
  background: linear-gradient(160deg, var(--color-maroon-deep) 0%, var(--color-maroon-deep-2) 100%);
  color: var(--color-white);
  padding-block: 100px;
  overflow: hidden;
}

.dishes__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 78% 38%, rgba(206, 159, 79, 0.14) 0, transparent 55%),
    radial-gradient(circle at 12% 82%, rgba(126, 31, 44, 0.35) 0, transparent 50%);
}
.dishes__bg::after {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 620px;
  height: 620px;
  max-width: 120vw;
  background-image: url('assets/images/pattern-floral-dark.svg');
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.06;
}
/* fine grain texture overlay */
.dishes__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(247, 243, 235, 0.035) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.5;
}

.dishes__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-areas: "intro" "image" "info";
  gap: 52px;
  align-items: center;
}

/* ---------- Left: intro + arrows ---------- */
.dishes__left { grid-area: intro; }

.dishes__eyebrow {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 18px;
}

.dishes__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 5.5vw, 44px);
  line-height: 1.18;
  color: var(--color-white);
  letter-spacing: -0.01em;
}
.dishes__title .accent { color: var(--color-gold); font-style: italic; }

.dishes__divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0;
}
.dishes__divider-line { width: 56px; height: 1px; background: rgba(247, 243, 235, 0.32); }
.dishes__divider-dot {
  width: 6px; height: 6px;
  border: 1px solid var(--color-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.dishes__desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--color-cream-soft);
  max-width: 380px;
  margin-bottom: 36px;
}

.dishes__nav-arrows { display: flex; gap: 14px; }
.dishes__arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(247, 243, 235, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.dishes__arrow:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-maroon-deep);
  transform: translateY(-3px);
}
.dishes__arrow svg { transition: transform var(--t-fast) var(--ease); }
.dishes__arrow--prev:hover svg { transform: translateX(-3px); }
.dishes__arrow--next:hover svg { transform: translateX(3px); }
.dishes__arrow:active { transform: translateY(0); }

/* ---------- Center: dish visual ---------- */
.dishes__center {
  grid-area: image;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.dishes__image-glow {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(206, 159, 79, 0.22) 0%, transparent 70%);
  filter: blur(14px);
  z-index: 0;
}

.dishes__image-wrap {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1 / 1;
  z-index: 1;
}

.dishes__image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 40px 46px rgba(0, 0, 0, 0.55));
  animation: dishFloat 6s ease-in-out infinite;
  transition: opacity 0.25s var(--ease);
  border-radius: 50%;
}

@keyframes dishFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.dishes__steam {
  position: absolute;
  top: -2%;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 150px;
  z-index: 3;
  pointer-events: none;
}

.dishes-spice { position: absolute; z-index: 4; transition: opacity 0.25s var(--ease); }
.dishes-spice--1 { top: 2%; left: 0%; }
.dishes-spice--2 { top: 4%; right: 2%; }
.dishes-spice--3 { bottom: 8%; left: -4%; }
.dishes-spice--4 { bottom: 4%; right: -2%; }

/* ---------- Right: dish info ---------- */
.dishes__right { grid-area: info; }

.dishes__count {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(247, 243, 235, 0.5);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.dishes__name {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 4.5vw, 36px);
  color: var(--color-gold);
  margin-bottom: 16px;
  transition: opacity 0.25s var(--ease);
}

.dishes__description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-cream-soft);
  max-width: 360px;
  margin-bottom: 20px;
  transition: opacity 0.25s var(--ease);
}

.dishes__price {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--color-white);
  margin-bottom: 30px;
  transition: opacity 0.25s var(--ease);
}

.dishes__description.is-hidden,
.dishes__price.is-hidden { display: none; }

/* ---------- Bottom: thumbnail navigation ---------- */
.dishes__thumbnails-wrap {
  position: relative;
  z-index: 2;
  margin-top: 72px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.dishes__thumbnails {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 8px 4px 16px;
  flex: 1;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.dishes__thumbnails::-webkit-scrollbar { display: none; }

.dishes__thumb-item { list-style: none; scroll-snap-align: center; flex: 0 0 auto; }

.dishes__thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 6px;
  opacity: 0.55;
  transition: opacity var(--t-med) var(--ease);
}
.dishes__thumb:hover { opacity: 0.85; }
.dishes__thumb.is-active { opacity: 1; }

.dishes__thumb-img {
  display: block;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color var(--t-med) var(--ease), transform var(--t-fast) var(--ease);
}
.dishes__thumb.is-active .dishes__thumb-img { border-color: var(--color-gold); }
.dishes__thumb:hover .dishes__thumb-img { transform: scale(1.06); }
.dishes__thumb-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.dishes__thumb-name {
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(247, 243, 235, 0.7);
  text-align: center;
  max-width: 104px;
  transition: color var(--t-med) var(--ease);
}
.dishes__thumb.is-active .dishes__thumb-name { color: var(--color-white); font-weight: 500; }

.dishes__thumb-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(247, 243, 235, 0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.dishes__thumb-arrow:hover { background: rgba(247, 243, 235, 0.12); border-color: rgba(247, 243, 235, 0.5); }

/* ---------- Responsive breakpoints ---------- */
@media (min-width: 1200px) {
  .dishes__inner {
    grid-template-columns: 0.85fr 1.1fr 0.85fr;
    grid-template-areas: "intro image info";
    gap: 40px;
  }
}

@media (max-width: 1199.98px) {
  .dishes__inner { justify-items: center; text-align: center; }
  .dishes__desc,
  .dishes__description { margin-left: auto; margin-right: auto; }
  .dishes__nav-arrows { justify-content: center; }
  .dishes__right { display: flex; flex-direction: column; align-items: center; }
}

@media (max-width: 767.98px) {
  .dishes { padding-block: 64px; }
  .dishes__thumb-img { width: 68px; height: 68px; }
  .dishes__thumb-name { font-size: 11px; max-width: 84px; }
  .dishes__thumbnails-wrap { margin-top: 48px; }
}

@media (max-width: 479.98px) {
  .dishes__nav-arrows .dishes__arrow { width: 46px; height: 46px; }
  .dishes__cta { width: 100%; }
}

/* =========================================================
   SECTION 04 — THE UNAN EXPERIENCE
========================================================= */
.experience {
  position: relative;
  background: var(--color-bg);
  padding-block: 100px;
  overflow: hidden;
  text-align: left;
}

.experience__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.experience__left { max-width: 520px; }
.experience__title { margin-top: 4px; }
.experience__cta { margin-bottom: 40px; width: fit-content; }

.experience__nav-arrows { display: flex; gap: 14px; }
.experience__arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.experience__arrow:hover {
  background: var(--color-maroon);
  border-color: var(--color-maroon);
  color: var(--color-white);
  transform: translateY(-3px);
}
.experience__arrow svg { transition: transform var(--t-fast) var(--ease); }
.experience__arrow--prev:hover svg { transform: translateX(-3px); }
.experience__arrow--next:hover svg { transform: translateX(3px); }
.experience__arrow:active { transform: translateY(0); }
.experience__arrow.swiper-button-disabled { opacity: 0.35; cursor: default; pointer-events: none; }

/* ---------- Right: card slider ---------- */
.experience__right { position: relative; min-width: 0; }

.experience-swiper { padding-bottom: 8px; }
.experience-swiper .swiper-wrapper { align-items: stretch; }

.experience-card { display: block; height: 100%; }

.experience-card__frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5.2;
  box-shadow: var(--shadow-card);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.experience-card:hover .experience-card__frame {
  transform: translateY(-8px);
  box-shadow: 0 34px 60px -18px rgba(36, 28, 24, 0.35);
}

.experience-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.experience-card:hover .experience-card__img { transform: scale(1.09); }

.experience-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(126, 31, 44, 0.14) 0%, rgba(36, 28, 24, 0.3) 100%);
  transition: opacity var(--t-med) var(--ease);
  opacity: 1;
}
.experience-card:hover .experience-card__overlay { opacity: 0.32; }

.experience-card__num {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(247, 243, 235, 0.9);
  color: var(--color-maroon);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 16px -6px rgba(36, 28, 24, 0.35);
}

.experience-card__title {
  margin-top: 18px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-ink);
  transition: color var(--t-fast) var(--ease);
}
.experience-card:hover .experience-card__title { color: var(--color-maroon); }

/* ---------- Responsive ---------- */
@media (min-width: 1024px) {
  .experience__inner { grid-template-columns: 0.85fr 1.15fr; gap: 56px; }
}
@media (min-width: 1280px) {
  .experience__inner { grid-template-columns: 0.75fr 1.25fr; gap: 64px; }
}

@media (max-width: 1023.98px) {
  .experience { padding-block: 64px; }
  .experience__left { max-width: none; }
}

@media (max-width: 479.98px) {
  .experience__cta { width: 100%; }
  .experience-card__title { font-size: 16.5px; }
}

/* =========================================================
   SECTION 05 — EXPLORE OUR MENU
========================================================= */
.menu-explore {
  position: relative;
  background: var(--color-bg);
  padding-block: 100px;
  overflow: hidden;
  text-align: left;
}

.menu-explore__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

/* ---------- Left: food composition ---------- */
.menu-explore__visual { display: flex; justify-content: center; }

.menu-explore__image-wrap {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1 / 1;
}

.menu-explore__image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 34px 40px rgba(36, 28, 24, 0.28));
  animation: dishFloat 6s ease-in-out infinite;
}

.menu-spice { position: absolute; z-index: 4; }
.menu-spice--1 { top: 2%; left: -2%; width: 15%; }
.menu-spice--2 { bottom: 4%; left: -4%; width: 14%; }
.menu-spice--3 { top: 6%; right: -2%; width: 15%; }

/* ---------- Center: heading + description ---------- */
.menu-explore__content { max-width: 460px; }
.menu-explore__title { margin-top: 4px; }
.menu-explore__desc { margin: 24px 0 0; max-width: 420px; }

/* ---------- Right: category cards ---------- */
.menu-explore__categories { min-width: 0; }

.menu-cat-list { display: flex; flex-direction: column; gap: 12px; }
.menu-cat-list__item { list-style: none; }

.menu-cat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  background: transparent;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.menu-cat-card:hover {
  background: var(--color-white);
  border-color: #9E1B1B;
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.menu-cat-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(126, 31, 44, 0.06);
  color: var(--color-maroon);
  flex-shrink: 0;
  transition: background var(--t-med) var(--ease), color var(--t-med) var(--ease);
}
.menu-cat-card:hover .menu-cat-card__icon { background: var(--color-maroon); color: var(--color-white); }

.menu-cat-card__text { display: flex; flex-direction: column; gap: 2px; }
.menu-cat-card__name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-ink);
}
.menu-cat-card__count { font-size: 12.5px; color: var(--color-gray); }

/* ---------- CTA row ---------- */
.menu-explore__cta-row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 56px;
}
.menu-explore__cta-outline svg { transition: transform var(--t-fast) var(--ease); }
.menu-explore__cta-outline:hover svg { transform: translateY(3px); }

/* ---------- Responsive ---------- */
@media (min-width: 1024px) {
  .menu-explore__inner {
    grid-template-columns: 0.9fr 1fr 0.85fr;
    gap: 48px;
    align-items: center;
  }
}
@media (min-width: 1280px) {
  .menu-explore__inner { grid-template-columns: 0.85fr 1fr 0.8fr; gap: 56px; }
}

@media (max-width: 1023.98px) {
  .menu-explore { padding-block: 64px; }

  .menu-cat-list {
    flex-direction: row;
    overflow-x: auto;
    padding: 4px 4px 12px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .menu-cat-list::-webkit-scrollbar { display: none; }
  .menu-cat-list__item { flex: 0 0 auto; scroll-snap-align: center; }
  .menu-cat-card { min-width: 210px; }
}

@media (max-width: 479.98px) {
  .menu-explore__cta-row { flex-direction: column; }
  .menu-explore__cta-row .btn { width: 100%; }
  .menu-cat-card { min-width: 190px; }
}

/* =========================================================
   SECTION 06 — GOOGLE REVIEWS
========================================================= */
.reviews {
  position: relative;
  background: var(--color-bg);
  padding-block: 100px;
  overflow: hidden;
  text-align: left;
}

.reviews__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

/* ---------- Left: rating summary ---------- */
.reviews__left { max-width: 420px; }

.reviews__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 5.5vw, 44px);
  color: var(--color-ink);
  margin-top: 4px;
  margin-bottom: 32px;
}

.reviews__rating-summary { display: flex; flex-direction: column; gap: 10px; }
.reviews__rating-top { display: flex; align-items: center; gap: 12px; }
.reviews__google-logo { width: 34px; height: 34px; flex-shrink: 0; }
.reviews__rating-score { font-family: var(--font-serif); font-size: 40px; font-weight: 600; color: var(--color-ink); }
.reviews__stars { display: flex; gap: 4px; color: var(--color-gold); }
.reviews__rating-caption { font-size: 14px; color: var(--color-gray); }

/* ---------- Right: review slider ---------- */
.reviews__right { position: relative; min-width: 0; }

.reviews-swiper { overflow: hidden; padding: 6px 6px 30px; }

.review-card {
  background: var(--color-white);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.review-card:hover { transform: translateY(-8px); box-shadow: 0 34px 60px -18px rgba(36, 28, 24, 0.28); }

.review-card__quote { display: block; color: var(--color-maroon); opacity: 0.18; margin-bottom: 14px; }
.review-card__quote svg { width: 32px; height: 24px; }

.review-card__text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-ink-soft);
  margin-bottom: 22px;
  flex: 1;
}

.review-card__stars { display: flex; gap: 3px; color: var(--color-gold); margin-bottom: 22px; }
.review-card__stars svg { width: 14px; height: 14px; }

.review-card__footer { display: flex; align-items: center; gap: 12px; }
.review-card__avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; object-fit: cover; }
.review-card__meta { display: flex; flex-direction: column; gap: 2px; margin-right: auto; min-width: 0; }
.review-card__name { font-size: 14px; font-weight: 500; color: var(--color-ink); }
.review-card__date { font-size: 12px; color: var(--color-gray); }
.review-card__google { flex-shrink: 0; opacity: 0.85; line-height: 0; }
.review-card__google svg { width: 20px; height: 20px; }

.reviews__next {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  box-shadow: var(--shadow-card);
  z-index: 5;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.reviews__next:hover { background: var(--color-maroon); color: var(--color-white); transform: translateY(-50%) translateX(3px); }
.reviews__next:active { transform: translateY(-50%); }

/* ---------- Responsive ---------- */
@media (min-width: 1024px) {
  .reviews__inner { grid-template-columns: 0.7fr 1.3fr; gap: 56px; align-items: center; }
  .reviews__next { right: -12px; }
}

@media (max-width: 1023.98px) {
  .reviews { padding-block: 64px; }
  .reviews__left { max-width: none; }
  .reviews__right { padding-top: 8px; }
}

@media (max-width: 479.98px) {
  .review-card { padding: 26px 22px; }
  .reviews__next { width: 44px; height: 44px; }
}

/* =========================================================
   SECTION 07 — GALLERY
========================================================= */
.gallery {
  position: relative;
  background: var(--color-bg);
  padding-block: 100px;
  overflow: hidden;
  text-align: left;
}

.gallery__pattern { /* inherits .hero__bg-pattern rules */ }

.gallery__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* ---------- Left: eyebrow + heading + filters ---------- */
.gallery__left { max-width: 380px; }
.gallery__title { margin-top: 4px; }
.gallery__desc { margin: 24px 0 32px; max-width: 360px; }

.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery__filter {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-gray);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.gallery__filter:hover { border-color: var(--color-maroon); color: var(--color-maroon); }
.gallery__filter.is-active {
  background: var(--color-maroon);
  border-color: var(--color-maroon);
  color: var(--color-white);
}
.gallery__filter:focus-visible {
  outline: 2px solid var(--color-maroon);
  outline-offset: 2px;
}

/* ---------- Right: editorial gallery grid ---------- */
.gallery__right { min-width: 0; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 130px;
  grid-auto-flow: dense;
  gap: 16px;
}

.gallery-item {
  position: relative;
  display: block;
  grid-column: span 1;
  grid-row: span 1;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
  background: var(--color-black-soft);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--t-med) var(--ease);
}
.gallery-item:hover,
.gallery-item:focus-visible {
  box-shadow: 0 30px 54px -16px rgba(36, 28, 24, 0.32);
  outline: none;
}
.gallery-item:nth-child(6n+1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(6n+4) { grid-column: span 2; }

.gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 450ms var(--ease);
}
.gallery-item:hover .gallery-item__img,
.gallery-item:focus-visible .gallery-item__img { transform: scale(1.04); }

.gallery-item__category {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  background: rgba(36, 28, 24, 0.45);
  padding: 5px 12px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.gallery-item:hover .gallery-item__category,
.gallery-item:focus-visible .gallery-item__category {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(36, 28, 24, 0);
  transition: background var(--t-med) var(--ease);
}
.gallery-item:hover .gallery-item__overlay,
.gallery-item:focus-visible .gallery-item__overlay {
  background: rgba(36, 28, 24, 0.22);
}

.gallery__view-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.gallery__view-more.is-hidden { display: none; }

.gallery__instagram-cta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: 56px;
}
.gallery__instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gray);
  padding: 10px 4px;
  border-bottom: 1px solid transparent;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.gallery__instagram-link:hover,
.gallery__instagram-link:focus-visible {
  color: var(--color-maroon);
  border-color: var(--color-maroon);
}

/* ---------- Shared Instagram-style tile (Footer mini-grid) ---------- */
.instagram-item {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: var(--color-black-soft);
  box-shadow: var(--shadow-card);
}

.instagram-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms var(--ease);
}
.instagram-item:hover .instagram-item__img,
.instagram-item:focus-visible .instagram-item__img { transform: scale(1.08); }

.instagram-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(36, 28, 24, 0.55);
  color: var(--color-white);
  opacity: 0;
  transition: opacity 400ms var(--ease);
}
.instagram-item:hover .instagram-item__overlay,
.instagram-item:focus-visible .instagram-item__overlay { opacity: 1; }

.instagram-item__overlay svg {
  width: 26px;
  height: 26px;
  transform: translateY(6px);
  transition: transform 400ms var(--ease);
}
.instagram-item:hover .instagram-item__overlay svg,
.instagram-item:focus-visible .instagram-item__overlay svg { transform: translateY(0); }

.instagram-item__label {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 400ms var(--ease), transform 400ms var(--ease);
}
.instagram-item:hover .instagram-item__label,
.instagram-item:focus-visible .instagram-item__label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 60ms;
}

/* ---------- Responsive: Gallery ---------- */
@media (min-width: 1024px) {
  .gallery__inner { grid-template-columns: 0.6fr 1.4fr; gap: 56px; align-items: center; }
}

@media (max-width: 1023.98px) and (min-width: 640px) {
  .gallery { padding-block: 72px; }
  .gallery__left { max-width: none; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery-item:nth-child(6n+1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(6n+4) { grid-column: span 1; }
}

@media (max-width: 639.98px) {
  .gallery { padding-block: 64px; }
  .gallery__left { max-width: none; }
  .gallery__filters { gap: 8px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; gap: 12px; }
  .gallery-item,
  .gallery-item:nth-child(6n+1),
  .gallery-item:nth-child(6n+4) { grid-column: span 1; grid-row: span 1; border-radius: 14px; }
  .gallery__view-more-wrap .btn { width: 100%; }
  .gallery__instagram-cta { margin-top: 40px; }
}

/* =========================================================
   GALLERY LIGHTBOX
========================================================= */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(21, 16, 12, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-med) var(--ease), visibility var(--t-med) var(--ease);
}
.lightbox-overlay.is-open { opacity: 1; visibility: visible; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-med) var(--ease), visibility var(--t-med) var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox__stage {
  position: relative;
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  margin: 0;
}
.lightbox__image {
  display: block;
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 40px 90px -20px rgba(0, 0, 0, 0.55);
  object-fit: contain;
}
.lightbox__counter {
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.lightbox__close,
.lightbox__arrow {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.lightbox__close:hover,
.lightbox__arrow:hover,
.lightbox__close:focus-visible,
.lightbox__arrow:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
}

.lightbox__close {
  top: 24px;
  right: 24px;
  z-index: 2;
}
.lightbox__arrow--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__arrow--next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__arrow--prev:hover { transform: translateY(-50%) translateX(-2px); }
.lightbox__arrow--next:hover { transform: translateY(-50%) translateX(2px); }

@media (max-width: 639.98px) {
  .lightbox__close { top: 14px; right: 14px; width: 40px; height: 40px; }
  .lightbox__arrow { width: 40px; height: 40px; }
  .lightbox__arrow--prev { left: 10px; }
  .lightbox__arrow--next { right: 10px; }
  .lightbox__counter { bottom: -28px; font-size: 11.5px; }
}

/* =========================================================
   SECTION 08 — PART 01 — FINAL CTA BANNER
========================================================= */
.cta-banner {
  position: relative;
  background: var(--color-maroon-cta);
  color: var(--color-white);
  padding-block: 72px;
  overflow: hidden;
  text-align: left;
}

.cta-banner__spices {
  position: absolute;
  top: -30px;
  right: -20px;
  width: 320px;
  height: 320px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
  mask-image: radial-gradient(circle at 100% 0%, black 38%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 100% 0%, black 38%, transparent 72%);
}
.cta-banner-spice { position: absolute; filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.35)); }
.cta-banner-spice--1 { top: 10%; right: 42%; width: 18%; animation-duration: 5s; }
.cta-banner-spice--2 { top: 22%; right: 10%; width: 24%; animation-duration: 6.2s; animation-delay: 0.4s; }
.cta-banner-spice--3 { top: 4%; right: 20%; width: 20%; animation-duration: 5.6s; animation-delay: 0.8s; }
.cta-banner-spice--4 { top: 32%; right: 34%; width: 17%; animation-duration: 5.2s; animation-delay: 1.1s; }
.cta-banner-spice--5 { top: 2%; right: 2%; width: 16%; animation-duration: 4.8s; animation-delay: 0.2s; }
.cta-banner-spice--6 { top: 30%; right: 4%; width: 15%; animation-duration: 6s; animation-delay: 1.4s; }

.cta-banner__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.cta-banner__title { margin-top: 4px; font-size: clamp(24px, 4.6vw, 34px); }

.cta-banner__info { display: flex; flex-direction: column; gap: 22px; }
.cta-info-item { display: flex; align-items: center; gap: 14px; }
.cta-info-item__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(247, 243, 235, 0.08);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-info-item__text { display: flex; flex-direction: column; gap: 4px; }
.cta-info-item__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.6);
}
.cta-info-item__value { font-family: var(--font-serif); font-size: 16px; color: var(--color-white); line-height: 1.4; }
.cta-info-item__value a { color: inherit; transition: color var(--t-fast) var(--ease); }
.cta-info-item__value a:hover { color: var(--color-gold); }

.cta-banner__action { display: flex; }
.cta-banner__btn { width: fit-content; }

@media (min-width: 1024px) {
  .cta-banner__inner {
    grid-template-columns: 1fr 0.85fr auto;
    gap: 40px;
    align-items: center;
  }
  .cta-banner__action { justify-content: flex-end; }
}

@media (max-width: 1023.98px) {
  .cta-banner { padding-block: 56px; }
  .cta-banner__spices { width: 220px; height: 220px; opacity: 0.6; }
}

@media (max-width: 767.98px) {
  .cta-banner__inner { text-align: center; justify-items: center; }
  .cta-info-item { flex-direction: column; text-align: center; }
  .cta-banner__spices { width: 160px; height: 160px; opacity: 0.4; }
}

/* =========================================================
   SECTION 08 — PART 02 — LUXURY FOOTER
========================================================= */
.site-footer {
  position: relative;
  background: var(--color-bg);
  padding-top: 88px;
  overflow: hidden;
  text-align: left;
}

.site-footer__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  padding-bottom: 56px;
}

.site-footer__logo { margin-bottom: 18px; }
.site-footer__desc { font-size: 14.5px; line-height: 1.75; color: var(--color-gray); max-width: 280px; margin-bottom: 24px; }

.site-footer__socials { display: flex; gap: 12px; }
.site-footer__social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.site-footer__social:hover { background: var(--color-maroon); border-color: var(--color-maroon); color: var(--color-white); transform: translateY(-3px); }

.site-footer__heading {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 17px;
  color: var(--color-ink);
  margin-bottom: 20px;
}

.site-footer__links { display: flex; flex-direction: column; gap: 12px; }
.site-footer__links a {
  font-size: 14.5px;
  color: var(--color-gray);
  transition: color var(--t-fast) var(--ease), padding-left var(--t-fast) var(--ease);
}
.site-footer__links a:hover { color: var(--color-maroon); padding-left: 4px; }

.site-footer__contact-list { display: flex; flex-direction: column; gap: 18px; }
.site-footer__contact-list a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-gray);
  transition: color var(--t-fast) var(--ease);
}
.site-footer__contact-list a:hover { color: var(--color-maroon); }
.site-footer__contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(126, 31, 44, 0.06);
  color: var(--color-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-footer__insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.site-footer__bottom { position: relative; z-index: 2; border-top: 1px solid var(--color-border); padding-block: 22px; }
.site-footer__bottom-inner { text-align: center; }
.site-footer__bottom p { font-size: 12.5px; color: var(--color-gray); letter-spacing: 0.02em; }

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .site-footer__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .site-footer__inner { grid-template-columns: 1.2fr 0.8fr 1fr 1fr; gap: 40px; }
}

@media (max-width: 639.98px) {
  .site-footer { text-align: center; }
  .site-footer__desc { max-width: none; margin-inline: auto; }
  .site-footer__socials { justify-content: center; }
  .site-footer__links { align-items: center; }
  .site-footer__contact-list a { flex-direction: column; align-items: center; text-align: center; }
  .site-footer__insta-grid { max-width: 320px; margin-inline: auto; }
}

/* =========================================================
   GLOBAL FLOATING ELEMENTS
========================================================= */

/* WhatsApp — expands to reveal label on hover (desktop only) */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  height: 56px;
  width: 56px;
  border-radius: 999px;
  background: var(--color-whatsapp);
  color: var(--color-white);
  overflow: hidden;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.55);
  transition: width var(--t-med) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.whatsapp-float__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-float__text {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
  padding-right: 20px;
}

@media (hover: hover) and (min-width: 768px) {
  .whatsapp-float:hover { width: 168px; box-shadow: 0 18px 36px -8px rgba(37, 211, 102, 0.65); }
  .whatsapp-float:hover .whatsapp-float__text { opacity: 1; transition-delay: 100ms; }
}

/* Back to top */
.scroll-top-btn {
  position: fixed;
  right: 24px;
  bottom: 90px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-maroon);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease),
              visibility var(--t-med) var(--ease), background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.scroll-top-btn.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--color-maroon); color: var(--color-white); }

@media (max-width: 1023.98px) {
  /* Clear the mobile bottom quick-action bar from Section 01 */
  .whatsapp-float { bottom: calc(70px + 16px); right: 16px; height: 50px; }
  .whatsapp-float__icon { width: 50px; height: 50px; }
  .scroll-top-btn { bottom: calc(70px + 16px + 58px); right: 20px; width: 44px; height: 44px; }
}

/* =========================================================
   RESERVATION MODAL
========================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(25, 21, 18, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-med) var(--ease), visibility var(--t-med) var(--ease);
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }

.reservation-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 210;
  width: min(560px, 92vw);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--color-bg-soft);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 40px 90px -20px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -48%) scale(0.96);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease), visibility var(--t-med) var(--ease);
}
.reservation-modal.is-open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }

.reservation-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.reservation-modal__close:hover { background: var(--color-maroon); border-color: var(--color-maroon); color: var(--color-white); }

.reservation-modal__title { font-family: var(--font-serif); font-weight: 500; font-size: 26px; color: var(--color-ink); margin-bottom: 10px; }
.reservation-modal__subtitle { font-size: 14px; line-height: 1.7; color: var(--color-gray); margin-bottom: 26px; }
.reservation-modal__subtitle a { color: var(--color-maroon); }

.reservation-form { display: flex; flex-direction: column; gap: 16px; }
.reservation-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.reservation-form__field { display: flex; flex-direction: column; gap: 6px; font-size: 12.5px; letter-spacing: 0.03em; text-transform: uppercase; color: var(--color-ink-soft); }
.reservation-form__field input,
.reservation-form__field textarea {
  font-family: var(--font-sans);
  font-size: 14.5px;
  text-transform: none;
  letter-spacing: normal;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.reservation-form__field input:focus,
.reservation-form__field textarea:focus {
  outline: none;
  border-color: var(--color-maroon);
  box-shadow: 0 0 0 3px rgba(126, 31, 44, 0.12);
}
.reservation-form__field textarea { resize: vertical; min-height: 70px; }

.reservation-form__submit { margin-top: 6px; width: 100%; }
.reservation-form__note { font-size: 13px; line-height: 1.7; color: var(--color-gray); background: rgba(126, 31, 44, 0.06); border-radius: 10px; padding: 14px 16px; }
.reservation-form__note a { color: var(--color-maroon); }

@media (max-width: 479.98px) {
  .reservation-form__row { grid-template-columns: 1fr; }
  .reservation-modal { padding: 32px 22px; }
}

/* =========================================================
   ENTRANCE ANIMATION HOOKS (GSAP controls opacity/transform via inline styles;
   this provides a no-JS fallback so content is never hidden)
========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* No-JS fallback: keep animated elements visible */
.no-js [data-anim],
.no-js [data-reveal],
[data-reveal] { opacity: 1; transform: none; }
