/* =========================================================
   KALIMA BEACH — Magaluf, Mallorca
   Sand-forward, barefoot-casual, premium
   Palette: sand / tan / turquoise / warm-navy / white
   Type: Playfair Display · Cormorant Garamond · Karla · Caveat
   ========================================================= */

:root {
  /* Sand family (dominant) */
  --cream:    #FBF4E6;
  --sand:     #F2E7D2;
  --sand-2:   #EAD9BC;
  --tan:      #D9BE9C;   /* brand */
  --tan-deep: #C7A67B;
  --shell:    #FFFDF8;   /* card surface */

  /* Ink & sea */
  --ink:      #2C2318;   /* warm near-black */
  --ink-soft: #6E6046;
  --sky:      #A6D2D5;   /* powder blue (the requested accent) */
  --sky-2:    #C3E1E3;   /* lighter tint */
  --sky-3:    #E3F1F2;   /* very light wash */
  --sky-deep: #7FBFC4;   /* deeper powder blue for hover/borders */
  --teal:     #A6D2D5;   /* button / accent fill (navy text on top) */
  --teal-600: #8FC5C9;   /* button hover */
  --teal-700: #022658;   /* readable accent/price text on light = navy */
  --teal-200: #CDE7E9;
  --teal-100: #E6F2F3;
  --green:    #5B9A4A;   /* leafy green accent */
  --green-deep:#3F7A34;
  --navy:     #022658;   /* deep navy — text, headings & dark sections */
  --navy-900: #01193D;   /* deepest navy — footer */
  --teal-900: #0D4F59;   /* deep teal — cocktails (dark turquoise) */
  --turq:     #0C7E88;   /* readable turquoise accent on light bg */
  --white:    #FFFFFF;

  /* Semantic */
  --bg:      var(--cream);
  --text:    var(--ink);
  --muted:   var(--ink-soft);
  --accent:  var(--teal);

  /* Type */
  --f-display: "Playfair Display", Georgia, serif;
  --f-serif:   "Cormorant Garamond", Georgia, serif;
  --f-body:    "Karla", system-ui, -apple-system, sans-serif;
  --f-hand:    "Caveat", "Comic Sans MS", cursive;

  /* Rhythm */
  --container: 1220px;
  --radius: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 12px rgba(44,35,24,.07);
  --shadow-md: 0 16px 44px rgba(44,35,24,.13);
  --shadow-lg: 0 34px 80px rgba(12,36,42,.24);

  --ease: cubic-bezier(.22,.61,.36,1);
  --nav-h: 78px;
}

*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--f-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;  /* clip (not hidden): blocks sideways scroll WITHOUT forcing overflow-y to auto, which would make body a scroll container and break the hero's position:sticky reveal */
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--teal-200); color: var(--navy-900); }

.skip-link { position: absolute; left: -999px; top: 8px; z-index: 300; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { left: 12px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 52px); }

/* ---------- Type ---------- */
h1,h2,h3 { font-family: var(--f-display); font-weight: 600; line-height: 1.08; color: var(--navy); letter-spacing: -.01em; }
h2 { font-size: clamp(2.05rem, 4.6vw, 3.35rem); }
h3 { font-size: 1.45rem; }
em { font-style: italic; font-family: var(--f-serif); font-weight: 500; }

.eyebrow { font-family: var(--f-hand); font-weight: 700; font-size: 1.5rem; color: var(--teal-700); margin-bottom: .4rem; letter-spacing: .01em; line-height: 1; }
.eyebrow--light { color: var(--tan); }
.eyebrow--green { color: var(--green-deep); }
.eyebrow--sand { color: var(--tan); }
.icon-dog { height: 26px; width: auto; display: block; }
.animals .icon-dog { height: 24px; }
.lede { font-size: 1.16rem; color: var(--muted); max-width: 52ch; }

.section { padding: clamp(66px, 9vw, 128px) 0; }
.section__head { max-width: 680px; margin-bottom: clamp(38px, 5vw, 62px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__sub { color: var(--muted); font-size: 1.1rem; margin-top: .8rem; }
.section__head--light h2 { color: #fff; }
.section__head--light .section__sub { color: var(--sand); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; font-weight: 700; font-size: .98rem; padding: 14px 27px; border-radius: 100px; min-height: 50px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s; }
.btn--primary { background: var(--sky); color: var(--navy); box-shadow: 0 10px 26px rgba(2,38,88,.18); }
.btn--primary:hover { background: var(--sky-deep); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(2,38,88,.24); }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.6); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--navy-900); transform: translateY(-2px); }
.btn--pill { background: var(--navy); color: #fff; padding: 11px 22px; min-height: 46px; }
.btn--pill:hover { background: var(--teal); transform: translateY(-1px); }
.btn--wa { background: #25D366; color: #06331b; width: 100%; box-shadow: 0 12px 28px rgba(37,211,102,.34); }
.btn--wa:hover { background: #22c35d; transform: translateY(-2px); box-shadow: 0 18px 38px rgba(37,211,102,.44); }

/* =========================================================
   NAV
   ========================================================= */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background .4s var(--ease), box-shadow .4s, backdrop-filter .4s; }
.nav__inner { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.nav.is-scrolled { background: rgba(251,244,230,.9); backdrop-filter: blur(14px) saturate(1.3); box-shadow: 0 1px 0 rgba(44,35,24,.08), var(--shadow-sm); }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { height: 40px; width: auto; display: block; }
.brand__logo--cream { display: none; }
.brand__logo--dark { display: block; }

.nav__links { display: flex; gap: 30px; }
.nav__links a { position: relative; color: var(--navy); font-weight: 600; font-size: .95rem; padding: 6px 0; transition: color .3s; }
.nav.is-scrolled .nav__links a { color: var(--navy); }
.nav__links a::after { content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background: var(--teal); transition: width .3s var(--ease); }
.nav__links a:hover::after { width: 100%; }

.nav__right { display: flex; align-items: center; gap: 14px; }

/* Language switcher */
.lang { position: relative; }
.lang__btn { display: inline-flex; align-items: center; gap: 6px; color: var(--navy); font-weight: 700; font-size: .9rem; padding: 8px 10px; border-radius: 10px; letter-spacing: .04em; }
.nav.is-scrolled .lang__btn { color: var(--navy); }
.lang__btn svg { width: 17px; height: 17px; }
.lang__menu { position: absolute; right: 0; top: calc(100% + 8px); background: var(--shell); border-radius: 14px; box-shadow: var(--shadow-md); padding: 6px; min-width: 150px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .25s var(--ease); z-index: 120; }
.lang.is-open .lang__menu { opacity: 1; visibility: visible; transform: none; }
.lang__menu button { display: flex; width: 100%; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 9px; color: var(--ink); font-weight: 600; font-size: .92rem; text-align: left; transition: background .2s; }
.lang__menu button:hover { background: var(--sand); }
.lang__menu button.is-active { background: var(--teal-100); color: var(--teal-700); }
.lang__menu button span.flag { font-size: 1.05rem; }

.nav__toggle { display: none; width: 46px; height: 46px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.nav.is-scrolled .nav__toggle span { background: var(--navy); }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer { position: fixed; inset: var(--nav-h) 0 auto 0; background: var(--navy); transform: translateY(-125%); transition: transform .45s var(--ease); z-index: 90; box-shadow: var(--shadow-lg); }
.nav.is-open .drawer { transform: translateY(0); }
.drawer__links { display: flex; flex-direction: column; padding: 18px clamp(20px,5vw,48px) 30px; gap: 2px; }
.drawer__links a { color: #fff; font-family: var(--f-display); font-size: 1.35rem; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.drawer__links .btn { margin-top: 16px; font-family: var(--f-body); font-size: 1rem; background: var(--teal); color: #fff; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; height: calc(100svh + 900px); background: var(--cream); }
.hero__sticky { position: sticky; top: 0; height: 100svh; overflow: hidden; background: var(--cream); display: flex; align-items: flex-end; }
.hero__frame { position: absolute; inset: 0; z-index: 0; overflow: hidden; clip-path: polygon(9% 15%, 91% 15%, 91% 85%, 9% 85%); border-radius: 30px; box-shadow: 0 44px 100px rgba(2,38,88,.30); will-change: clip-path, border-radius; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; transform: scale(1.08); transform-origin: center; will-change: transform; }
.hero__scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; background:
  linear-gradient(180deg, rgba(6,23,27,.22) 0%, rgba(6,23,27,0) 26%, rgba(6,23,27,.34) 56%, rgba(4,18,22,.82) 100%); }
.hero__content { position: relative; z-index: 2; color: #fff; padding: 0 0 clamp(84px, 17vh, 200px); max-width: 820px; will-change: opacity, transform; }
.hero__logo { width: clamp(180px, 26vw, 280px); margin-bottom: 22px; filter: drop-shadow(0 8px 24px rgba(0,0,0,.35)); }
.hero__title { font-size: clamp(2.7rem, 7.4vw, 5.6rem); font-weight: 600; color: #fff; text-shadow: 0 4px 34px rgba(0,0,0,.32); line-height: 1.02; }
.hero__title em { color: var(--tan); }
.hero__lede { font-size: clamp(1.06rem, 2.1vw, 1.32rem); color: rgba(255,255,255,.94); max-width: 46ch; margin: 1.3rem 0 2rem; text-shadow: 0 2px 16px rgba(0,0,0,.3); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__scroll { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 3; width: 26px; height: 44px; border: 2px solid rgba(255,255,255,.55); border-radius: 20px; }
@media (prefers-reduced-motion: reduce) { .hero { height: 100svh; } .hero__frame { clip-path: none !important; border-radius: 0 !important; } .hero__img { transform: none !important; } }
@media (min-width: 861px) { .hero__img { object-position: center 68%; } }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 4px; background: #fff; animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0%{opacity:0;transform:translateY(0);} 40%{opacity:1;} 80%{opacity:0;transform:translateY(14px);} 100%{opacity:0;} }

/* =========================================================
   VENUES (three worlds)
   ========================================================= */
.venues { background: linear-gradient(180deg, var(--cream), var(--sand)); }
.venues__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vcard { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); min-height: 460px; display: flex; align-items: flex-end; color: #fff; isolation: isolate; }
.vcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .9s var(--ease); }
.vcard::after { content:""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(12,36,42,.05) 30%, rgba(12,36,42,.82) 100%); }
.vcard:hover img { transform: scale(1.06); }
.vcard__body { padding: 30px 28px 32px; }
.vcard__body h3 { color: #fff; font-size: 1.7rem; margin-bottom: 8px; }
.vcard__body p { color: rgba(255,255,255,.88); font-size: .98rem; max-width: 34ch; }
.vcard__tag { display: inline-block; font-family: var(--f-hand); font-size: 1.35rem; color: var(--tan); line-height: 1; margin-bottom: 4px; }

.venues__note { margin-top: 30px; text-align: center; font-size: 1.05rem; color: var(--muted); display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.venues__note svg { width: 22px; height: 22px; color: var(--teal); }

/* =========================================================
   STORY (history)
   ========================================================= */
.story { background: linear-gradient(155deg, var(--sky-2), var(--sky)); color: #143152; position: relative; overflow: hidden; }
.story::before { content:""; position:absolute; right:-140px; top:-120px; width:440px; height:440px; border-radius:50%; background: radial-gradient(circle, rgba(255,255,255,.55), transparent 70%); }
.story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,78px); align-items: center; position: relative; }
.story__copy h2 { color: var(--navy); margin-bottom: 1.1rem; }
.story__copy .eyebrow { color: var(--green-deep); }
.story__copy p { color: #143152; margin-bottom: 1rem; max-width: 52ch; }
.story__stats { display: flex; gap: 34px; margin-top: 26px; }
.story__stat b { display: block; font-family: var(--f-display); font-size: 2.1rem; color: var(--navy); line-height: 1; }
.story__stat span { font-size: .86rem; letter-spacing: .04em; color: rgba(20,49,82,.66); }
.story__figure { position: relative; }
.story__figure img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.story__figure { overflow: visible; }
.story__figure figcaption { position: absolute; bottom: 14px; left: 14px; right: 14px; font-family: var(--f-hand); font-size: 1.3rem; color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.6); }

/* =========================================================
   MENU
   ========================================================= */
.menu { background: linear-gradient(180deg, var(--sand), var(--cream)); }
.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.tab { padding: 11px 22px; border-radius: 100px; font-weight: 700; font-size: .95rem; color: var(--navy); background: rgba(255,255,255,.62); border: 1px solid var(--sand-2); transition: all .3s var(--ease); min-height: 46px; }
.tab:hover { border-color: var(--teal); color: var(--teal-700); }
.tab.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.menu__panel { display: none; animation: fadeUp .5s var(--ease); }
.menu__panel.is-active { display: block; }
.menu__list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 56px; }
.menu__item { padding: 17px 0; border-bottom: 1px dashed var(--sand-2); }
.menu__row { display: flex; align-items: baseline; gap: 8px; }
.menu__name { font-family: var(--f-display); font-size: 1.2rem; color: var(--navy); font-weight: 500; }
.menu__dots { flex: 1; border-bottom: 2px dotted var(--tan); transform: translateY(-4px); }
.menu__price { font-weight: 700; font-variant-numeric: tabular-nums; color: var(--teal-700); font-size: 1.08rem; white-space: nowrap; }
.menu__desc { color: var(--muted); font-size: .96rem; margin-top: 3px; max-width: 46ch; }
.menu__note { text-align: center; color: var(--muted); font-size: .92rem; margin-top: 40px; font-style: italic; }

/* =========================================================
   COCKTAILS
   ========================================================= */
.cocktails { background: linear-gradient(160deg, var(--sky-2), var(--sky)); position: relative; }
.cocktails .section__head h2 { color: var(--navy); }
.cocktails .section__head .section__sub { color: #143152; }
.cocktails .eyebrow { color: var(--green-deep); }
.cocktails::before { display: none; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.ccard { background: var(--shell); border: 1px solid var(--sand-2); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: transform .4s var(--ease), box-shadow .4s; }
.ccard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ccard__media { aspect-ratio: 4/5; overflow: hidden; }
.ccard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.ccard:hover .ccard__media img { transform: scale(1.07); }
.ccard__body { padding: 19px 21px 23px; }
.ccard__top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 5px; }
.ccard__top h3 { color: var(--navy); font-size: 1.22rem; }
.ccard__price { font-weight: 700; color: var(--turq); font-variant-numeric: tabular-nums; }
.ccard__body p { color: var(--muted); font-size: .92rem; }

/* =========================================================
   YOGA & BRUNCH
   ========================================================= */
.yoga { background: linear-gradient(150deg, var(--sand-2), var(--tan)); position: relative; overflow: hidden; }
.yoga__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px,5vw,68px); align-items: center; }
.yoga__copy .eyebrow { color: var(--teal-700); }
.yoga__copy h2 { color: var(--navy); }
.yoga__copy .lede { color: #4d4230; }
.yoga__meta { display: flex; gap: 14px; margin: 22px 0 24px; flex-wrap: wrap; }
.yoga__chip { background: rgba(255,255,255,.72); border-radius: 14px; padding: 12px 18px; box-shadow: var(--shadow-sm); }
.yoga__chip b { display: block; font-family: var(--f-display); font-size: 1.35rem; color: var(--navy); line-height: 1.1; }
.yoga__chip span { font-size: .82rem; color: var(--ink-soft); letter-spacing: .02em; }
.yoga__list { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 8px; }
.yoga__list li { display: flex; align-items: center; gap: 10px; color: #40372a; font-size: 1rem; }
.yoga__list svg { width: 18px; height: 18px; color: var(--teal-700); flex: none; }
.yoga__figure img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.yoga__cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.yoga__cta .btn--ghost { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; background: var(--teal); color: var(--navy); border: 1.5px solid var(--teal); backdrop-filter: none; box-shadow: 0 8px 20px -10px rgba(2,38,88,.45); }
.yoga__cta .btn--ghost svg { transition: transform .3s ease; }
.yoga__cta .btn--ghost:hover { background: var(--teal-600); border-color: var(--teal-600); color: var(--navy); transform: translateY(-2px); }
.yoga__cta .btn--ghost:hover svg { transform: translateX(4px); }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery { background: var(--cream); }
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 16px; }
.gitem { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); background: var(--sand-2); }
.gitem--tall { grid-row: span 2; }
.gitem--wide { grid-column: span 2; }
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gitem::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(12,36,42,.4)); opacity:0; transition: opacity .4s; }
.gitem:hover img { transform: scale(1.08); }
.gitem:hover::after { opacity: 1; }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews { background: linear-gradient(180deg, var(--cream), var(--sand)); }
.reviews__rating { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 34px; flex-wrap: wrap; }
.reviews__score { font-family: var(--f-display); font-size: 2.6rem; color: var(--navy); line-height: 1; }
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 20px; height: 20px; color: #E9A93C; }
.reviews__meta { font-size: .95rem; color: var(--muted); }
.reviews__meta b { color: var(--navy); }

.carousel { position: relative; max-width: 820px; margin-inline: auto; }
.carousel__track { display: flex; overflow: hidden; }
.review { flex: 0 0 100%; padding: clamp(24px,4vw,44px); text-align: center; opacity: 0; transition: opacity .5s var(--ease); }
.review.is-active { opacity: 1; }
.carousel--fade .carousel__track { display: block; position: relative; min-height: 260px; }
.carousel--fade .review { position: absolute; inset: 0; }
.carousel--fade .review.is-active { position: relative; }
.review__quote { font-family: var(--f-serif); font-size: clamp(1.3rem, 2.6vw, 1.7rem); font-style: italic; color: var(--navy); line-height: 1.5; margin-bottom: 22px; }
.review__mark { font-family: var(--f-display); font-size: 3.4rem; color: var(--tan); line-height: 0; display: block; height: 26px; }
.review__name { font-weight: 700; color: var(--ink); }
.review__src { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; color: var(--muted); margin-top: 4px; }
.review__src svg { width: 15px; height: 15px; }
.carousel__nav { display: flex; justify-content: center; gap: 10px; margin-top: 8px; }
.carousel__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--sand-2); transition: background .3s, transform .3s; }
.carousel__dot.is-active { background: var(--teal); transform: scale(1.25); }
.carousel__arrow { position: absolute; top: 42%; width: 48px; height: 48px; border-radius: 50%; background: var(--shell); box-shadow: var(--shadow-sm); display: grid; place-items: center; color: var(--navy); transition: background .25s, transform .25s; }
.carousel__arrow:hover { background: var(--teal); color: #fff; }
.carousel__arrow svg { width: 22px; height: 22px; }
.carousel__arrow--prev { left: -8px; }
.carousel__arrow--next { right: -8px; }

/* =========================================================
   RESERVE
   ========================================================= */
.reserve { background: linear-gradient(150deg, var(--sky-2), var(--sky)); position: relative; overflow: hidden; }
.reserve::before { content:""; position:absolute; width:480px; height:480px; right:-150px; top:-150px; border-radius:50%; background: radial-gradient(circle, rgba(255,255,255,.5), transparent 70%); }
.reserve__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: center; position: relative; }
.reserve__intro h2 { color: var(--navy); margin-bottom: 1rem; }
.reserve__intro .eyebrow { color: var(--green-deep); }
.reserve__intro .lede { color: #143152; }
.reserve__facts { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: 13px; }
.reserve__facts li { display: flex; gap: 12px; align-items: center; color: #143152; font-size: .98rem; }
.reserve__ficon { flex:none; width:34px; height:34px; border-radius:9px; display:grid; place-items:center; background: rgba(2,38,88,.09); color: var(--navy); }
.reserve__ficon svg { width: 18px; height: 18px; }

.reserve__form { background: var(--shell); border-radius: var(--radius-lg); padding: clamp(24px,3.4vw,40px); box-shadow: var(--shadow-lg); }
.field { margin-bottom: 17px; }
.field label { display: block; font-weight: 700; font-size: .86rem; color: var(--navy); margin-bottom: 7px; }
.field__opt { font-weight: 400; color: var(--muted); }
.field input, .field select { width: 100%; min-width: 0; max-width: 100%; padding: 13px 15px; border: 1.5px solid var(--sand-2); border-radius: 11px; font: inherit; font-size: 1rem; color: var(--ink); background: var(--cream); transition: border-color .25s, box-shadow .25s, background .25s; min-height: 50px; }
.reserve__grid > *, .field, .field-row { min-width: 0; }
.field input::placeholder { color: #ab9e86; }
.field input:focus, .field select:focus { outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px rgba(14,143,137,.15); }
.field-row { display: grid; grid-template-columns: 1fr 1fr .82fr; gap: 13px; }
.field--guests select { -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23123138' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.field.is-invalid input, .field.is-invalid select { border-color: #d64545; background: #fff5f5; }
.field__error { display: block; color: #c62d2d; font-size: .82rem; margin-top: 5px; min-height: 0; }
.field.is-invalid .field__error { min-height: 1em; }
.reserve__fineprint { text-align: center; color: var(--muted); font-size: .82rem; margin-top: 13px; }
.reserve__hint { margin-top: 9px; font-size: .82rem; line-height: 1.4; color: var(--muted); }

/* ---- Legal link + cookie consent + map gate ---- */
.footer__legal { color: inherit; opacity: .85; text-decoration: underline; text-underline-offset: 3px; transition: opacity .2s; }
.footer__legal:hover { opacity: 1; }
.cookie-consent { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 400; max-width: 620px; margin-inline: auto; background: var(--shell); border: 1px solid var(--sand-2); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 15px 20px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; }
.cookie-consent[hidden] { display: none; }
.cookie-consent p { flex: 1 1 280px; font-size: .88rem; line-height: 1.5; color: var(--ink); margin: 0; }
.cookie-consent p a { color: var(--navy); text-decoration: underline; }
.cookie-consent__btns { display: flex; gap: 10px; margin-left: auto; }
.cookie-consent button { font: inherit; font-weight: 700; font-size: .85rem; padding: 9px 18px; border-radius: 100px; cursor: pointer; border: 1px solid var(--sand-2); background: #fff; color: var(--navy); transition: transform .2s, background .2s; }
.cookie-consent button:hover { transform: translateY(-1px); }
.cookie-consent [data-cookie-accept] { background: var(--navy); color: #fff; border-color: var(--navy); }
.map-consent { position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 26px; background: linear-gradient(160deg, var(--sky-2), var(--sky)); }
.map-consent p { max-width: 32ch; font-size: .92rem; line-height: 1.5; color: var(--navy); margin: 0; }
.map-consent button { font: inherit; font-weight: 700; padding: 11px 24px; border-radius: 100px; background: var(--navy); color: #fff; border: none; cursor: pointer; transition: transform .2s; }
.map-consent button:hover { transform: translateY(-2px); }

/* =========================================================
   EVENTS (looping video wall)
   ========================================================= */
.events { background: linear-gradient(160deg, var(--sky-2), var(--sky)); color: var(--navy); }
.events .eyebrow { color: var(--green-deep); }
.events h2 { color: var(--navy); }
.events .section__sub { color: #143152; }
.events__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.evideo { position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.4); background: #0a1a33; aspect-ratio: 9 / 16; }
.evideo video { width: 100%; height: 100%; object-fit: cover; display: block; }
.evideo__sound { position: absolute; top: 12px; right: 12px; z-index: 2; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; color: #fff; background: rgba(2,38,88,.5); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.4); transition: background .25s var(--ease), transform .25s var(--ease); }
.evideo__sound:hover { background: rgba(2,38,88,.85); transform: scale(1.07); }
.evideo__sound.is-on { background: var(--green); border-color: var(--green); }
.evideo__sound svg { width: 20px; height: 20px; }
.evideo__sound .ic-sound { display: none; }
.evideo__sound.is-on .ic-sound { display: block; }
.evideo__sound.is-on .ic-muted { display: none; }
.events__cta { text-align: center; margin-top: clamp(30px, 4vw, 44px); display: flex; flex-direction: column; align-items: center; gap: 14px; }
.events__cta p { color: #143152; font-size: 1.05rem; }

/* =========================================================
   STAY IN THE LOOP (newsletter)
   ========================================================= */
.news { background: linear-gradient(165deg, var(--cream), var(--sand)); }
.news__card { max-width: 940px; margin-inline: auto; background: var(--shell); border: 1px solid var(--sand-2); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: clamp(32px, 4.6vw, 60px); text-align: center; }
.news__intro { max-width: 580px; margin: 0 auto clamp(24px, 3vw, 36px); }
.news__intro h2 { margin-top: .15rem; }
.news__intro .section__sub { margin-inline: auto; }
.news__form { text-align: left; }
.news__row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.news__row .field { margin-bottom: 0; }
.news__consent { display: flex; align-items: flex-start; gap: 11px; margin-top: 20px; font-size: .92rem; color: var(--muted); cursor: pointer; }
.news__consent input { flex: none; width: 19px; height: 19px; margin-top: 3px; accent-color: var(--navy); cursor: pointer; }
.news__btn { width: 100%; margin-top: 20px; }
.news__note { text-align: center; color: var(--muted); font-size: .84rem; margin-top: 14px; transition: color .25s; }
.news__note.is-ok { color: var(--green-deep); font-weight: 700; }
.news__note.is-err { color: #c62d2d; font-weight: 700; }

/* =========================================================
   VISIT
   ========================================================= */
.visit { background: var(--cream); }
.visit__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(32px,5vw,60px); align-items: stretch; }
.visit__info { display: grid; gap: 30px; align-content: start; }
.info-block h3 { font-size: 1.14rem; margin-bottom: 13px; padding-bottom: 10px; border-bottom: 2px solid var(--sand-2); color: var(--navy); }
.hours { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.hours li { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; font-size: 1rem; }
.hours__label { display: inline-flex; align-items: center; gap: 9px; }
.hours__val { display: inline-flex; flex-direction: column; align-items: flex-end; gap: 1px; text-align: right; }
.hours__time { font-variant-numeric: tabular-nums; color: var(--muted); }
.hours__all { font-weight: 700; }
.hours__all .hours__time { color: var(--teal-700); }
.hours__state { font-size: .74rem; font-weight: 700; letter-spacing: .015em; }
.hours__state.is-open { color: #1E9E54; }
.hours__state.is-closed { color: var(--muted); font-weight: 600; }
/* live open/closed dots */
.hours__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--muted); flex: none; }
.hours__dot--none { visibility: hidden; }
.hours__dot.is-open { background: #2FBE64; animation: hoursPulse 2.2s var(--ease) infinite; }
.hours__dot.is-closed { background: #C0645A; }
@keyframes hoursPulse { 0% { box-shadow: 0 0 0 0 rgba(47,190,100,.5); } 70% { box-shadow: 0 0 0 8px rgba(47,190,100,0); } 100% { box-shadow: 0 0 0 0 rgba(47,190,100,0); } }
.hours__banner { display: inline-flex; align-items: center; gap: 10px; margin: 6px 0 18px; padding: 9px 16px; border-radius: 100px; background: rgba(47,190,100,.13); border: 1px solid rgba(47,190,100,.32); font-weight: 700; font-size: .96rem; color: var(--navy); }
.hours__banner .hours__dot { width: 10px; height: 10px; }
.hours__banner.is-closed { background: rgba(192,100,90,.1); border-color: rgba(192,100,90,.3); }
address { font-style: normal; line-height: 1.7; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; color: var(--teal-700); font-weight: 700; }
.link-arrow svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translate(2px,-2px); }
.contact-line { margin-bottom: 4px; }
.contact-line a:hover { color: var(--teal-700); }
.animals { display: flex; align-items: center; gap: 10px; margin-top: 14px; font-family: var(--f-hand); font-size: 1.4rem; color: var(--teal-700); }
.animals svg { width: 26px; height: 26px; }

.socials, .footer__socials { display: flex; gap: 12px; margin-top: 14px; }
.social { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--shell); color: var(--navy); box-shadow: var(--shadow-sm); border: 1px solid var(--sand-2); transition: transform .3s var(--ease), background .3s, color .3s; }
.social svg { width: 20px; height: 20px; }
.social:hover { transform: translateY(-3px); background: var(--teal); color: #fff; border-color: transparent; }

.visit__map { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 460px; border: 1px solid var(--sand-2); background: var(--sand-2); }
.visit__map #map { width: 100%; height: 100%; min-height: 460px; z-index: 0; }
.visit__gmap { display: block; width: 100%; height: 100%; min-height: 460px; border: 0; }
.visit__map { min-height: 480px; }
.leaflet-container { font: inherit; background: #E7E2D6; }
.leaflet-popup-content { font-family: var(--f-body); font-size: .92rem; }
.leaflet-popup-content b { font-family: var(--f-display); color: var(--navy); }
.leaflet-bar a { color: var(--navy); }
.map-pin { filter: drop-shadow(0 6px 10px rgba(10,74,67,.4)); }
.visit__map-cta { position: absolute; left: 16px; bottom: 16px; z-index: 2; display: inline-flex; align-items: center; gap: 7px; background: var(--shell); color: var(--navy); font-weight: 700; font-size: .9rem; padding: 10px 16px; border-radius: 100px; box-shadow: var(--shadow-md); transition: transform .25s var(--ease), color .25s; }
.visit__map-cta:hover { transform: translateY(-2px); color: var(--teal-700); }
.visit__map-cta svg { width: 16px; height: 16px; color: var(--teal); }

/* =========================================================
   MENU EXTRAS · WINE · DRINK LIST
   ========================================================= */
.menu__addons { margin-top: 16px; font-size: .92rem; color: var(--muted); font-style: italic; }
.menu__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; margin-top: 42px; padding-top: 26px; border-top: 1px solid var(--sand-2); }
.menu__foot .menu__note { text-align: left; margin: 0; max-width: 62ch; }
.btn--outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

.wine { margin-top: 64px; }
.wine__head { text-align: center; margin-bottom: 30px; }
.wine__head h3 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.wine__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 44px; }
.wine__col h4 { font-family: var(--f-display); font-size: 1.2rem; color: var(--green-deep); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--sand-2); }
.wine__col ul { list-style: none; padding: 0; margin: 0; }
.wine__col li { display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 2px 10px; padding: 8px 0; border-bottom: 1px dashed var(--sand-2); }
.wine__name { font-weight: 600; color: var(--navy); grid-column: 1; }
.wine__meta { grid-column: 1; font-size: .82rem; color: var(--muted); }
.wine__price { grid-column: 2; grid-row: 1 / span 2; align-self: center; font-weight: 700; font-variant-numeric: tabular-nums; color: var(--teal-700); }
.wine__foot { text-align: center; margin-top: 24px; font-style: italic; color: var(--muted); font-size: .92rem; }

.drinklist { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 44px; margin-top: 48px; background: var(--shell); border: 1px solid var(--sand-2); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-md); }
.drinklist__col h4 { font-family: var(--f-hand); font-size: 1.6rem; color: var(--turq); margin-bottom: 10px; }
.drinklist__col ul { list-style: none; padding: 0; margin: 0; }
.drinklist__col li { display: grid; grid-template-columns: 1fr auto; gap: 0 12px; padding: 9px 0; border-bottom: 1px solid rgba(2,38,88,.1); transition: transform .3s var(--ease); }
.drinklist__col li span:first-child { color: var(--navy); font-weight: 700; grid-column: 1; transition: color .3s var(--ease); }
.drinklist__meta { grid-column: 1; font-size: .8rem; color: var(--muted); }
.drinklist__col li b { grid-column: 2; grid-row: 1 / span 2; align-self: center; color: var(--turq); font-weight: 700; font-variant-numeric: tabular-nums; }

/* =========================================================
   REVIEWS MARQUEE
   ========================================================= */
.marquee-reviews { overflow: hidden; padding: 8px 0 4px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-reviews__track { display: flex; gap: 22px; width: max-content; animation: reviewscroll 60s linear infinite; }
.marquee-reviews:hover .marquee-reviews__track { animation-play-state: paused; }
@keyframes reviewscroll { from { transform: translateX(0);} to { transform: translateX(-50%);} }
.rcard { flex: 0 0 auto; width: 360px; background: var(--shell); border: 1px solid var(--sand-2); border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow-sm); margin: 0; display: flex; flex-direction: column; justify-content: space-between; }
.rcard p { font-family: var(--f-serif); font-style: italic; font-size: 1.16rem; line-height: 1.5; color: var(--navy); margin-bottom: 18px; }
.rcard figcaption { display: flex; flex-direction: column; gap: 2px; }
.rcard figcaption b { color: var(--ink); font-size: .96rem; }
.rcard figcaption span { font-size: .8rem; color: var(--green-deep); letter-spacing: .02em; }
.rcard__by { display: inline-flex; align-items: center; gap: 8px; }
.rflag { width: 21px; height: 14px; border-radius: 3px; box-shadow: 0 0 0 1px rgba(0,0,0,.12); flex: none; display: block; }

/* =========================================================
   BOOKING SELECT
   ========================================================= */
.select-styled { -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%230E5F56' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 38px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: linear-gradient(180deg, var(--sky), var(--sky-deep)); color: rgba(2,38,88,.75); padding-top: 62px; }
.footer__inner { display: grid; grid-template-columns: 1.5fr 1fr auto; gap: 40px; align-items: start; padding-bottom: 38px; }
.footer__logo { width: 170px; margin-bottom: 14px; }
.footer__brand p { max-width: 38ch; font-size: .95rem; }
.footer__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 26px; }
.footer__nav a { color: rgba(2,38,88,.8); font-size: .95rem; padding: 4px 0; transition: color .25s; }
.footer__nav a:hover { color: var(--navy); }
.footer__socials .social { background: rgba(255,255,255,.5); color: var(--navy); border-color: rgba(2,38,88,.14); }
.footer__socials .social:hover { background: var(--teal); }
.footer__bar { display: flex; justify-content: space-between; gap: 16px; padding-block: 22px; margin-top: 6px; border-top: 1px solid rgba(2,38,88,.14); font-size: .84rem; color: rgba(2,38,88,.6); }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; place-items: center; background: rgba(9,24,28,.94); backdrop-filter: blur(6px); padding: 5vw; }
.lightbox.is-open { display: grid; animation: fade .3s var(--ease); }
.lightbox__img { max-width: min(1100px,92vw); max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-lg); animation: zoomIn .35s var(--ease); }
.lightbox__close { position: absolute; top: 20px; right: 24px; width: 48px; height: 48px; border-radius: 50%; color:#fff; background: rgba(255,255,255,.08); display:grid; place-items:center; transition: background .25s; }
.lightbox__close:hover { background: rgba(255,255,255,.2); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 50%; color:#fff; background: rgba(255,255,255,.08); display:grid; place-items:center; transition: background .25s; }
.lightbox__nav:hover { background: rgba(255,255,255,.2); }
.lightbox__nav svg { width: 28px; height: 28px; }
.lightbox__nav--prev { left: 3vw; }
.lightbox__nav--next { right: 3vw; }

/* =========================================================
   REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(30px) scale(.988); transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }
@keyframes fadeUp { from { opacity:0; transform: translateY(16px);} to { opacity:1; transform:none;} }
@keyframes fade { from { opacity:0;} to {opacity:1;} }
@keyframes zoomIn { from { opacity:0; transform: scale(.94);} to {opacity:1; transform: scale(1);} }

/* =========================================================
   EXPENSIVE REFINEMENTS — grain, light, micro-interactions
   ========================================================= */

/* Fine film grain over the whole page (below nav & overlays) */
body::after {
  content:""; position: fixed; inset: 0; z-index: 90; pointer-events: none;
  opacity: .045; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='150' height='150' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 150px 150px;
}

/* Directional light instead of flat gradients on the sand sections */
.venues { background: radial-gradient(1100px 540px at 50% -12%, rgba(255,255,255,.9), transparent 60%), linear-gradient(180deg, var(--cream), var(--sand)); }
.menu   { background: radial-gradient(950px 520px at 85% -8%, rgba(255,255,255,.75), transparent 58%), linear-gradient(180deg, var(--sand), var(--cream)); }
.reviews{ background: radial-gradient(900px 480px at 12% -8%, rgba(255,255,255,.72), transparent 56%), linear-gradient(180deg, var(--cream), var(--sand)); position: relative; }
.visit  { background: radial-gradient(900px 500px at 82% -6%, rgba(255,255,255,.7), transparent 56%), var(--cream); }
.gallery{ background: radial-gradient(1000px 520px at 18% 0%, rgba(255,255,255,.62), transparent 56%), var(--cream); }
.cocktails { background: radial-gradient(950px 500px at 82% -10%, rgba(255,255,255,.7), transparent 58%), radial-gradient(760px 460px at 6% 112%, rgba(255,255,255,.45), transparent 55%), linear-gradient(160deg, var(--sky-2), var(--sky)); }

/* soft depth on the dark sections */
/* dark-section depth is on .cocktails now */
.story__grid, .reserve__grid { position: relative; z-index: 1; }

/* faint oversized brand palm watermark (very subtle) */
.reviews::before {
  content:""; position:absolute; right:-40px; bottom:-40px; width:340px; height:340px; opacity:.05; pointer-events:none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%23022658'%3E%3Cpath d='M50 96c-2-24-2-40 0-58 6 4 12 12 16 22 2-14-2-26-10-34 10 2 18 8 22 18 0-14-8-24-20-30 12-2 24 2 32 12-6-16-20-26-38-26 6-4 14-6 22-4-10-6-24-6-34 2 4-8 12-14 20-16-14 0-26 8-32 20-2-10 0-18 6-26-10 8-16 20-16 34-6-6-10-14-10-24-6 12-6 26 0 38-8-2-16-8-20-16 0 14 8 26 20 32-12 2-24-2-32-12 6 16 20 26 38 26-6 4-14 6-22 4 10 6 24 6 34-2-2 12-10 22-22 28 8 0 16-2 22-8-2 10-8 18-16 24 6-2 12-6 16-12-2 12-2 24 0 38z'/%3E%3C/svg%3E") center/contain no-repeat;
  transform: rotate(-12deg);
}

/* Heading wipe on reveal */
.reveal h2 { clip-path: inset(-14% 0 108% 0); transition: clip-path 1.05s cubic-bezier(.16,1,.3,1) .06s; }
.reveal.is-in h2 { clip-path: inset(-14% 0 -14% 0); }

/* Buttons — springier, with a sheen sweep */
.btn { transition: transform .4s cubic-bezier(.2,.9,.25,1), box-shadow .4s, background .3s, color .3s; }
.btn--primary, .btn--dark, .btn--wa { position: relative; overflow: hidden; }
.btn--primary::after, .btn--dark::after {
  content:""; position:absolute; top:0; left:-70%; width:45%; height:100%; pointer-events:none;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent); transform: skewX(-18deg); transition: left .7s var(--ease);
}
.btn--primary:hover::after, .btn--dark:hover::after { left: 130%; }

/* Card micro-interactions */
.vcard, .menu-hi__card, .ccard, .wbottle, .rcard { transition: transform .5s cubic-bezier(.2,.9,.25,1), box-shadow .5s; }
.menu-hi__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.wbottle__img img { transition: transform .55s cubic-bezier(.2,.9,.25,1); }
.wbottle:hover img { transform: translateY(-9px) rotate(-2.5deg); }
.gitem { transition: transform .55s cubic-bezier(.2,.9,.25,1); }
.gitem:hover { transform: translateY(-4px); }
.story__stat b { transition: transform .4s var(--ease); }
.story__stat:hover b { transform: translateY(-3px); }

/* Footer link underline draw */
.footer__nav a { position: relative; }
.footer__nav a::after { content:""; position:absolute; left:0; bottom:-2px; width:0; height:1.5px; background: var(--navy); transition: width .35s cubic-bezier(.16,1,.3,1); }
.footer__nav a:hover::after { width: 100%; }

/* Menu-divider palm mark (Kalima) */
.mmenu__mark { height: 26px; width: auto; opacity: .72; }

/* Subtle 3D tilt on the big image cards */
.venues__grid, .menu-hi, .cards { perspective: 1100px; }
.vcard, .menu-hi__card, .ccard { transform-style: preserve-3d; }
.vcard.is-tilting, .menu-hi__card.is-tilting, .ccard.is-tilting { transition: transform .12s ease-out; }

/* Cursor spotlight following the pointer inside cards */
.vcard::before, .menu-hi__card::before, .ccard::before {
  content:""; position:absolute; inset:0; border-radius: inherit; pointer-events:none; z-index: 3;
  background: radial-gradient(240px circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,.16), transparent 60%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.vcard:hover::before, .menu-hi__card:hover::before, .ccard:hover::before { opacity: 1; }

/* Yoga chips lift toward the cursor */
.yoga__chip { transition: transform .35s var(--ease), box-shadow .35s; }
.yoga__chip:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

/* History postcard — shadow bloom on hover (parallax handles the movement) */
.story__figure img { transition: box-shadow .45s var(--ease); }
.story__figure:hover img { box-shadow: 0 46px 100px rgba(2,38,88,.32); }

/* Scroll parallax targets */
[data-parallax-img] { will-change: transform; }

/* Menu popup — categories glide in, staggered, when it opens */
.modal[data-modal="menu"].is-open .mmenu__cat { opacity: 0; animation: catIn .62s var(--ease) forwards; }
.modal[data-modal="menu"].is-open .mmenu__cat:nth-child(2) { animation-delay: .04s; }
.modal[data-modal="menu"].is-open .mmenu__cat:nth-child(3) { animation-delay: .11s; }
.modal[data-modal="menu"].is-open .mmenu__cat:nth-child(4) { animation-delay: .18s; }
.modal[data-modal="menu"].is-open .mmenu__cat:nth-child(5) { animation-delay: .25s; }
.modal[data-modal="menu"].is-open .mmenu__cat:nth-child(6) { animation-delay: .32s; }
@keyframes catIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* Menu items — a whisper of a lean on hover */
.mmenu__list li { position: relative; transition: transform .3s var(--ease); }
.mmenu__list li::before { content:""; position:absolute; left:-15px; top:16%; bottom:16%; width:3px; border-radius:3px; background: var(--turq); transform: scaleY(0); transform-origin: center; transition: transform .32s var(--ease); }
.mmenu__list li:hover::before { transform: scaleY(1); }
.mmenu__list li:hover { transform: translateX(7px); }
.mmenu__name { transition: color .3s var(--ease); }
.mmenu__list li:hover .mmenu__name { color: var(--turq); }

/* Cocktail drink list — name warms to powder-blue on hover */
.drinklist__col li:hover { transform: translateX(4px); }
.drinklist__col li:hover span:first-child { color: var(--turq); }

/* History postcard tilt */
.story__figure { transform-style: preserve-3d; }
@media (prefers-reduced-motion: reduce) { .story__figure { transform: none !important; } }

/* =========================================================
   MENU TEASER + MODALS + WINE BOTTLES
   ========================================================= */
.menu-hi { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 8px 0 34px; }
.menu-hi__card { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); min-height: 300px; display: flex; align-items: flex-end; color: #fff; isolation: isolate; }
.menu-hi__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.menu-hi__card::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(8,40,48,.05) 40%, rgba(8,40,48,.82)); }
.menu-hi__card:hover img { transform: scale(1.06); }
.menu-hi__card b { padding: 22px 22px 12px; font-family: var(--f-display); font-size: 1.35rem; }
.menu-hi__card span { position: absolute; top: 16px; right: 18px; background: rgba(255,255,255,.16); backdrop-filter: blur(4px); border-radius: 100px; padding: 5px 12px; font-weight: 700; font-size: .85rem; }
.menu__cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.menu__cta-row .btn { min-width: 210px; }

/* Modal */
.modal { position: fixed; inset: 0; z-index: 300; display: none; }
.modal.is-open { display: block; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(8,30,36,.55); backdrop-filter: blur(6px); animation: fade .35s var(--ease); }
.modal__panel { position: absolute; inset: 0; margin: auto; width: min(1080px, 94vw); max-height: 90vh; top: 5vh; bottom: 5vh; background: var(--cream); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; display: flex; flex-direction: column; animation: modalin .4s var(--ease); }
@keyframes modalin { from { opacity:0; transform: translateY(24px) scale(.98);} to { opacity:1; transform:none;} }
.modal__close { position: absolute; top: 16px; right: 16px; z-index: 5; width: 46px; height: 46px; border-radius: 50%; background: var(--shell); box-shadow: var(--shadow-sm); display: grid; place-items: center; color: var(--navy); transition: background .25s, transform .25s; }
.modal__close:hover { background: var(--navy); color: #fff; transform: rotate(90deg); }
.modal__close svg { width: 22px; height: 22px; }
.modal__scroll { overflow-y: auto; padding: clamp(30px, 5vw, 60px); -webkit-overflow-scrolling: touch; }
.modal__head { text-align: center; margin-bottom: 34px; }
.modal__head .eyebrow { display: block; }
.modal__head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.modal__head p { color: var(--muted); margin-top: 8px; }

.mmenu__cat { margin-bottom: 40px; }
.mmenu__cat > h3 { font-family: var(--f-display); font-size: 1.6rem; color: var(--navy); text-align: center; margin-bottom: 6px; }
.mmenu__cat > .mmenu__note { text-align: center; color: var(--muted); font-size: .88rem; font-style: italic; margin-bottom: 20px; }
.mmenu__list { list-style: none; padding: 0; margin: 0 auto; max-width: 820px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 46px; }
.mmenu__list li { padding: 14px 0; border-bottom: 1px dashed var(--sand-2); }
.mmenu__row { display: flex; align-items: baseline; gap: 8px; }
.mmenu__name { font-family: var(--f-display); font-size: 1.14rem; color: var(--navy); font-weight: 500; }
.mmenu__dots { flex: 1; border-bottom: 2px dotted var(--tan); transform: translateY(-4px); }
.mmenu__price { font-weight: 700; font-variant-numeric: tabular-nums; color: var(--teal-700); }
.mmenu__desc { color: var(--muted); font-size: .92rem; margin-top: 2px; }
.mmenu__divider { display: flex; align-items: center; gap: 14px; max-width: 820px; margin: 0 auto 22px; color: var(--tan); }
.mmenu__divider::before, .mmenu__divider::after { content:""; flex:1; height:1px; background: var(--sand-2); }

/* Wine bottles */
.wines__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 940px; margin: 0 auto; }
.wbottle { background: var(--shell); border: 1px solid var(--sand-2); border-radius: var(--radius); padding: 22px 16px 18px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.wbottle:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.wbottle__img { height: 150px; display: grid; place-items: center; margin-bottom: 12px; }
.wbottle__img img { height: 150px; width: auto; max-width: 100%; object-fit: contain; filter: drop-shadow(0 10px 14px rgba(2,38,88,.18)); }
.wbottle__ph { height: 132px; width: auto; filter: drop-shadow(0 10px 14px rgba(2,38,88,.18)); transition: transform .55s cubic-bezier(.2,.9,.25,1); }
.wbottle:hover .wbottle__ph { transform: translateY(-9px) rotate(-2.5deg); }
.wbottle__name { font-family: var(--f-display); font-size: 1.08rem; color: var(--navy); line-height: 1.15; }
.wbottle__meta { font-size: .78rem; color: var(--muted); margin: 3px 0 8px; }
.wbottle__price { font-weight: 700; color: var(--teal-700); font-variant-numeric: tabular-nums; }
.wines__cat-title { grid-column: 1 / -1; font-family: var(--f-hand); font-size: 1.7rem; color: var(--green-deep); text-align: center; margin: 14px 0 2px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .venues__grid { grid-template-columns: 1fr; }
  .vcard { min-height: 340px; }
  .cards { grid-template-columns: repeat(2,1fr); }
  .gallery__grid { grid-template-columns: repeat(3,1fr); }
  .wines__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .menu-hi { grid-template-columns: 1fr; }
  .mmenu__list { grid-template-columns: 1fr; }
  .wines__grid { grid-template-columns: repeat(2, 1fr); }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .events__grid { grid-template-columns: repeat(2, 1fr); }
  .story__grid, .reserve__grid, .visit__grid, .yoga__grid { grid-template-columns: 1fr; }
  .story__figure, .yoga__figure { max-width: 520px; }
  .yoga__figure { order: -1; }
  .menu__list { grid-template-columns: 1fr; gap: 0; }
  .wine__grid { grid-template-columns: 1fr; gap: 22px; }
  .drinklist { grid-template-columns: 1fr; gap: 22px; }
  .menu__foot { flex-direction: column; align-items: flex-start; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bar { flex-direction: column; text-align: center; gap: 8px; }
  .carousel__arrow--prev { left: -4px; }
  .carousel__arrow--next { right: -4px; }
}
@media (max-width: 700px) {
  /* Hero KEEPS the scroll-reveal on phones — just re-centre the content so it stays
     inside the framed window and never spills the edges (same idea as the yoga page). */
  .hero__sticky { align-items: center; justify-content: center; }
  .hero__img { object-position: center 56%; }
  .hero__content { width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 clamp(24px, 7vw, 40px); }
  .hero__logo { width: clamp(146px, 40vw, 188px); margin-bottom: 16px; }
  .hero__title { font-size: clamp(2.4rem, 10.5vw, 3.5rem); }
  .hero__lede { font-size: 1.05rem; max-width: 34ch; margin: 1rem auto 1.7rem; }
  .hero__actions { justify-content: center; gap: 12px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  /* Menu / wine modal → full-screen sheet on phones */
  .modal__panel { inset: 0; margin: 0; width: auto; max-height: none; border-radius: 0; }
  .modal__scroll { padding: 66px 22px 40px; }
  .modal__close { top: 12px; right: 12px; width: 42px; height: 42px; }
  .modal__head { margin-bottom: 26px; }
  .mmenu__cat { margin-bottom: 32px; }
  .cards { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 150px; }
  .field-row { grid-template-columns: 1fr 1fr; }
  .field--guests { grid-column: span 2; }
  .news__row { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: 1fr; }
  .rcard { width: 280px; }
  .carousel__arrow { display: none; }
  .story__stats { gap: 24px; }
}

@media (max-width: 440px) {
  /* smallest phones (iPhone mini etc.): stack date/time/guests so nothing is cramped or overflows */
  .field-row { grid-template-columns: 1fr; gap: 15px; }
  .field--guests { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__media img, .hero__scroll span { animation: none; }
  .marquee-reviews__track { animation: none !important; flex-wrap: wrap; justify-content: center; }
  .reveal h2 { clip-path: none !important; }
  .story__figure img { animation: none !important; }
}
