/* =========================================================
   Going Bananas Tamarindo
   Defaults only — the live palette comes from site.config.js theme.
   Banana yellow on black, chocolate accents.
   ========================================================= */

/* Self-hosted fonts (SIL Open Font License): Fraunces + DM Sans */
@font-face {
  font-family: "Fraunces"; font-style: normal; font-weight: 100 900; font-display: swap;
  src: url("../fonts/fraunces-latin-opsz-normal.woff2") format("woff2-variations"), url("../fonts/fraunces-latin-opsz-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: "Fraunces"; font-style: normal; font-weight: 100 900; font-display: swap;
  src: url("../fonts/fraunces-latin-ext-opsz-normal.woff2") format("woff2-variations"), url("../fonts/fraunces-latin-ext-opsz-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face {
  font-family: "Fraunces"; font-style: italic; font-weight: 100 900; font-display: swap;
  src: url("../fonts/fraunces-latin-opsz-italic.woff2") format("woff2-variations"), url("../fonts/fraunces-latin-opsz-italic.woff2") format("woff2");
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: "DM Sans"; font-style: normal; font-weight: 100 900; font-display: swap;
  src: url("../fonts/dm-sans-latin-opsz-normal.woff2") format("woff2-variations"), url("../fonts/dm-sans-latin-opsz-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: "DM Sans"; font-style: normal; font-weight: 100 900; font-display: swap;
  src: url("../fonts/dm-sans-latin-ext-opsz-normal.woff2") format("woff2-variations"), url("../fonts/dm-sans-latin-ext-opsz-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

:root {
  --slate: #2E3B37;
  --slate-deep: #1F2A27;
  --wood: #B07A4A;
  --wood-dark: #8E5F36;
  --sand: #F4EEE4;
  --sand-2: #EAE0D0;
  --cream: #FBF8F2;
  --sea: #4E7F7C;
  --sunset: #E08A5B;
  --ink: #1F2A27;
  --muted: #5E6A66;
  --line: rgba(31, 42, 39, .12);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 18px 40px -22px rgba(31, 42, 39, .35);
  --header-h: 76px;
  --gutter: clamp(18px, 4vw, 40px);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }   /* class rules like .tag were overriding the UA [hidden] rule */

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.1; margin: 0; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding-inline: var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--wood); color: #fff; padding: 8px 14px; border-radius: 8px; }
.skip:focus { left: 8px; }
:focus-visible { outline: 2px solid var(--wood); outline-offset: 3px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 12px 26px;
  border-radius: 999px; border: 1.5px solid transparent;
  font: 600 15px/1.2 var(--sans); letter-spacing: .02em; text-align: center;
  text-decoration: none; cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn .icon { width: 20px; height: 20px; }
.btn-small { min-height: 40px; padding: 8px 18px; font-size: 14px; }
.btn-block { width: 100%; }
.btn-wood { background: var(--wood); color: #fff; }
.btn-wood:hover { background: var(--wood-dark); }
.btn-ghost { background: rgba(251, 248, 242, .12); color: #fff; border-color: rgba(251, 248, 242, .6); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(251, 248, 242, .24); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--header-h);
  color: #fff;
  transition: background-color .3s, color .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(251, 248, 242, .94);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(10px);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand-mark { width: 46px; height: 46px; flex: none; }
/* real logo file: drop it at images/logo.png and use <img class="brand-logo"> */
.brand-logo { height: 40px; width: auto; flex: none; }
.brand-logo.big { height: 62px; }
@media (max-width: 640px) { .brand-logo { height: 32px; } .brand-logo.big { height: 48px; } }
/* logo mark follows the config palette instead of hardcoded hex */
.brand-mark .mark-bg { fill: var(--wood); }
.brand-mark .mark-ring, .brand-mark .mark-wave { stroke: var(--sand); }
.brand-mark text { fill: var(--sand); }
.brand-mark.big { width: 76px; height: 76px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--serif); font-size: 21px; font-weight: 500; }
.brand-sub { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; opacity: .8; }

.main-nav { display: flex; gap: 28px; }
.main-nav a { text-decoration: none; font-size: 15px; font-weight: 500; position: relative; padding: 6px 0; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.main-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.lang { display: inline-flex; border: 1.5px solid currentColor; border-radius: 999px; padding: 2px; opacity: .9; }
.lang button {
  border: 0; background: transparent; color: inherit; cursor: pointer;
  font: 600 12px/1 var(--sans); letter-spacing: .08em;
  padding: 7px 10px; border-radius: 999px;
}
.lang button[aria-pressed="true"] { color: var(--slate); background: #fff; }
.site-header.scrolled .lang button[aria-pressed="true"] { background: var(--ink); color: var(--cream); }

.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; color: inherit; cursor: pointer; padding: 0; }
.nav-toggle .bars, .nav-toggle .bars::before, .nav-toggle .bars::after {
  display: block; width: 22px; height: 1.8px; background: currentColor; margin: 0 auto; position: relative; transition: transform .25s, opacity .25s;
}
.nav-toggle .bars::before, .nav-toggle .bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle .bars::before { top: -7px; }
.nav-toggle .bars::after { top: 7px; }
.nav-open .nav-toggle .bars { background: transparent; }
.nav-open .nav-toggle .bars::before { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle .bars::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: flex; align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--slate-deep);
}
.hero-media { position: absolute; inset: 0; }
.hero-illustration, .hero-media .photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31,42,39,.6) 0%, rgba(31,42,39,0) 30%),
    linear-gradient(0deg, rgba(31,42,39,.92) 0%, rgba(31,42,39,.8) 34%, rgba(31,42,39,.55) 55%, rgba(31,42,39,.18) 72%, rgba(31,42,39,0) 88%);
}
/* keeps the hero text readable over a busy photo */
.hero-content { position: relative; z-index: 1; text-shadow: 0 1px 24px rgba(31, 42, 39, .35); }
.hero-content::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  inset: -60px -12% -40px -12%;
  background: radial-gradient(58% 62% at 26% 58%, rgba(31,42,39,.62) 0%, rgba(31,42,39,.28) 55%, rgba(31,42,39,0) 78%);
}
.hero .eyebrow-light { color: #FBD9AE; text-shadow: 0 2px 10px rgba(31,42,39,.9), 0 0 26px rgba(31,42,39,.7); }
.hero-content { position: relative; padding-top: calc(var(--header-h) + 60px); padding-bottom: clamp(48px, 9vh, 96px); }
.hero h1 { font-size: clamp(42px, 7.2vw, 92px); max-width: 13ch; font-weight: 400; }
.hero-sub { font-size: clamp(17px, 1.6vw, 20px); max-width: 46ch; margin: 22px 0 32px; opacity: .92; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-rating { display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; font-size: 14px; text-decoration: none; opacity: .92; }
.hero-rating:hover { opacity: 1; text-decoration: underline; }

.stars { color: #F2C27B; letter-spacing: 2px; font-size: 14px; }

.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--wood); margin-bottom: 16px;
}
.eyebrow-light { color: #F2C79A; }

/* ---------- Today strip ---------- */
.today { background: var(--slate); color: var(--sand); }
.today-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 32px; padding-block: 18px; font-size: 15px; }
.today-item { display: flex; align-items: center; gap: 10px; }
.today .icon { width: 20px; height: 20px; color: #F2C79A; flex: none; }
.today strong { font-weight: 600; color: #fff; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: #9FB3AD; flex: none; }
.dot.is-open { background: #7FD49B; box-shadow: 0 0 0 4px rgba(127, 212, 155, .2); }
.dot.is-closed { background: var(--sunset); }

/* ---------- Sections ---------- */
.section { padding-block: clamp(72px, 11vw, 130px); }
.section-head { margin-bottom: clamp(36px, 5vw, 60px); }
.section-head h2 { font-size: clamp(34px, 4.6vw, 58px); max-width: 18ch; }
.section-head.center { text-align: center; }
.section-head.center h2 { margin-inline: auto; }
.section-head .lede { color: var(--muted); max-width: 52ch; margin: 18px auto 0; }
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 6vw, 90px); align-items: start; }
.split-end { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 20px; }
.story-copy { color: var(--muted); font-size: 18px; }
.motto { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--ink); margin-top: 22px; }
.motto-tr { display: block; font-family: var(--sans); font-style: normal; font-size: 13px; color: var(--muted); letter-spacing: .04em; margin-top: 4px; }

/* ---------- Moments ---------- */
.moment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 32px); }
.moment h3 { font-size: 28px; margin: 22px 0 8px; }
.moment p { color: var(--muted); }
.moment-media {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.moment-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.moment-time {
  position: absolute; left: 16px; top: 16px; z-index: 1;
  background: rgba(251, 248, 242, .92); color: var(--ink);
  font-size: 12px; font-weight: 600; letter-spacing: .08em;
  padding: 6px 12px; border-radius: 999px;
}

/* Illustrated fallbacks (show only when a photo is missing) */
.tone-morning { background:
  radial-gradient(circle at 70% 30%, #FFE7B8 0 12%, transparent 13%),
  radial-gradient(120% 80% at 70% 30%, #F6D6A8 0%, transparent 60%),
  linear-gradient(180deg, #F3E3C8 0%, #E8CFA8 55%, #7FA39D 56%, #5F8C88 70%, #E6D2B2 71%, #D7BD97 100%); }
.tone-afternoon { background:
  radial-gradient(circle at 30% 22%, #FFF3D6 0 9%, transparent 10%),
  linear-gradient(180deg, #CFE3DC 0%, #A9CBC4 52%, #4E7F7C 53%, #3E6B68 68%, #E9D8BC 69%, #D8C09C 100%); }
.tone-sunset { background:
  radial-gradient(circle at 50% 56%, #FBE0B4 0 11%, transparent 12%),
  radial-gradient(90% 60% at 50% 56%, rgba(255,214,160,.8) 0%, transparent 60%),
  linear-gradient(180deg, #3A3F45 0%, #8A6A58 30%, #E3A174 52%, #F2C79A 56%, #6E8E86 57%, #3E625F 72%, #CDB28C 73%, #B8976E 100%); }
.moment-media img + .moment-time { z-index: 2; }

/* ---------- Menu ---------- */
.menu-section { background: var(--sand); }
.menu-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 40px; }
.menu-tabs button {
  border: 1.5px solid var(--line); background: transparent; color: var(--ink);
  font: 600 14px/1 var(--sans); letter-spacing: .03em;
  padding: 13px 20px; border-radius: 999px; cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s;
}
.menu-tabs button:hover { border-color: var(--ink); }
.menu-tabs button[aria-selected="true"] { background: var(--slate); border-color: var(--slate); color: var(--sand); }

.menu-panel { max-width: 960px; margin: 0 auto; }
.menu-group + .menu-group { margin-top: 44px; }
.menu-group h3 { font-size: 24px; margin-bottom: 8px; color: var(--slate); }
.menu-group .group-note { color: var(--muted); font-size: 15px; margin-bottom: 14px; }
.menu-items { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; column-gap: 56px; }
.menu-item { padding: 20px 0; border-bottom: 1px solid var(--line); }
.menu-item-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 10px; }
.menu-item-name { font-family: var(--serif); font-size: 21px; font-weight: 500; }
.menu-item p { color: var(--muted); font-size: 15px; margin: 6px 0 0; }
.menu-items.simple .menu-item { padding: 14px 0; }
.menu-items.simple .menu-item-name { font-size: 18px; }

.tag { display: inline-block; font: 600 11px/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; padding: 5px 9px; border-radius: 999px; }
.tag-pop { background: rgba(176, 122, 74, .16); color: var(--wood-dark); }
.tag-v { background: rgba(78, 127, 124, .16); color: #2F5E5B; }
.menu-legend { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 14px; margin-top: 40px; font-size: 14px; color: var(--muted); }
.legend-note { flex-basis: 100%; text-align: center; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(3, clamp(150px, 17vw, 230px)); grid-template-areas: "a a b c" "a a d c" "e e d f"; gap: 14px; }
.g { position: relative; margin: 0; border-radius: var(--radius-sm); overflow: hidden; }
.g img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.g:hover img { transform: scale(1.04); }
.g1 { grid-area: a; } .g2 { grid-area: b; } .g3 { grid-area: c; } .g4 { grid-area: d; } .g5 { grid-area: e; } .g6 { grid-area: f; }
.g { display: grid; place-items: center; }
.g .ph { width: 56px; height: 56px; color: rgba(251, 248, 242, .85); }
.g.tone-2 .ph, .g.tone-5 .ph { color: rgba(46, 59, 55, .55); }
.tone-1 { background: linear-gradient(160deg, #2E3B37 0%, #4E7F7C 50%, #E3A174 85%, #F2C79A 100%); }
.tone-2 { background: linear-gradient(160deg, #F4EEE4, #E6D5BC); }
.tone-3 { background: linear-gradient(180deg, #7FA39D, #4E7F7C); }
.tone-4 { background: linear-gradient(180deg, #8A6A58 0%, #E08A5B 60%, #F2C79A 100%); }
.tone-5 { background: linear-gradient(160deg, #EFE3CF, #D9BE98); }
.tone-6 { background: linear-gradient(160deg, #3E4B46, #1F2A27); }

/* ---------- Reviews ---------- */
.reviews { background: var(--slate); color: var(--sand); }
.reviews h2 { color: #fff; }
.rating-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 920px; margin: 0 auto; }
.rating-card {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 34px 20px; border-radius: var(--radius);
  border: 1px solid rgba(244, 238, 228, .16);
  background: rgba(244, 238, 228, .04);
  text-decoration: none; text-align: center;
  transition: background-color .2s, border-color .2s;
}
.rating-card:hover { background: rgba(244, 238, 228, .1); border-color: rgba(244, 238, 228, .35); }
.rating-source { font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; opacity: .75; }
.rating-score { font-family: var(--serif); font-size: 56px; line-height: 1; color: #fff; }
.rating-count { font-size: 14px; opacity: .8; }
.mentions { text-align: center; margin-top: 48px; }
.mentions p { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; opacity: .7; margin-bottom: 14px; }
.mentions ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.mentions li { border: 1px solid rgba(244, 238, 228, .28); border-radius: 999px; padding: 8px 16px; font-size: 15px; }

/* ---------- Reserve ---------- */
.reserve { background: var(--sand-2); }
.reserve-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 90px); align-items: center; }
.reserve-copy h2 { font-size: clamp(34px, 4.6vw, 58px); margin-bottom: 20px; }
.reserve-copy p:not(.eyebrow) { color: var(--muted); font-size: 18px; max-width: 42ch; }
.reserve-direct { margin-top: 26px; }
.reserve-form {
  background: var(--cream); border-radius: var(--radius); padding: clamp(24px, 3.5vw, 40px);
  box-shadow: var(--shadow); display: grid; gap: 18px;
}
.field { display: grid; gap: 6px; min-width: 0; }
.field-row { display: grid; grid-template-columns: 1.3fr 1fr .8fr; gap: 12px; }
.field label { font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; font: 400 16px/1.4 var(--sans); color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; min-height: 48px;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--wood); box-shadow: 0 0 0 3px rgba(176, 122, 74, .18); }
.form-error { color: #A1452A; font-size: 14px; margin: 0; }
.form-fine { font-size: 13px; color: var(--muted); text-align: center; margin: 0; }

/* ---------- Visit ---------- */
.visit-inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 6vw, 80px); align-items: stretch; }
.visit-info h2 { font-size: clamp(34px, 4.6vw, 58px); margin-bottom: 30px; }
.info-list { margin: 0 0 32px; display: grid; gap: 20px; }
.info-list div { display: grid; grid-template-columns: 150px 1fr; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.info-list dt { font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--wood); padding-top: 4px; }
.info-list dd { margin: 0; }
.visit-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.map-frame { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 420px; max-height: 560px; background: var(--sand-2); box-shadow: var(--shadow); }
.map-frame iframe { position: relative; z-index: 1; }
.map-fallback { position: absolute; inset: 0; display: grid; place-content: center; gap: 10px; text-align: center; color: var(--muted); font-size: 15px; }
.map-fallback svg { width: 40px; height: 40px; margin: 0 auto; color: var(--wood); }
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: saturate(.85); }

/* ---------- FAQ ---------- */
.faq { background: var(--sand); }
.faq-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(28px, 6vw, 90px); }
.faq-list details { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-list details:first-child { border-top: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 20px;
  font-family: var(--serif); font-size: 22px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-family: var(--sans); font-size: 26px; line-height: 1; color: var(--wood); transition: transform .25s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { color: var(--muted); margin: 12px 0 0; max-width: 60ch; }

/* ---------- Footer ---------- */
.site-footer { background: var(--slate-deep); color: rgba(244, 238, 228, .82); padding-top: 72px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.footer-tagline { font-family: var(--serif); font-size: 22px; color: var(--sand); max-width: 24ch; margin-top: 20px; }
.footer-col h3 { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #F2C79A; margin-bottom: 16px; }
.footer-col p { margin: 0 0 8px; font-size: 15px; }
.nowrap { white-space: nowrap; }
.footer-col a { text-decoration: none; }
.footer-col a:hover { text-decoration: underline; color: #fff; }
.footer-base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; border-top: 1px solid rgba(244, 238, 228, .12); padding-block: 24px; font-size: 13px; opacity: .7; }

/* ---------- Mobile action bar ---------- */
.action-bar { display: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1000px) {
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; gap: 0;
    background: var(--cream); color: var(--ink);
    padding: 8px var(--gutter) 24px;
    box-shadow: 0 20px 30px -20px rgba(31,42,39,.35);
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity .2s, transform .2s, visibility .2s;
  }
  .main-nav a { font-family: var(--serif); font-size: 26px; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .main-nav a::after { display: none; }
  .nav-open .main-nav { opacity: 1; transform: none; visibility: visible; }
  .nav-open .site-header { background: var(--cream); color: var(--ink); }
  .nav-open .site-header .lang button[aria-pressed="true"] { background: var(--ink); color: var(--cream); }
  .nav-toggle { display: block; }

  .split, .reserve-inner, .visit-inner, .faq-inner { grid-template-columns: 1fr; }
  .moment-grid { grid-template-columns: 1fr 1fr; }
  .moment:last-child { grid-column: span 2; }
  .moment:last-child .moment-media { aspect-ratio: 16 / 9; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 720px) {
  :root { --header-h: 66px; }
  body { font-size: 16px; padding-bottom: 72px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-sub { display: none; }
  .brand-name { font-size: 19px; }
  .header-reserve { display: none; }
  .header-actions { gap: 6px; }

  .hero { min-height: 92svh; }
  .hero-cta .btn { flex: 1 1 auto; }
  .today-inner { flex-direction: column; gap: 10px; }

  .moment-grid { grid-template-columns: 1fr; }
  .moment:last-child { grid-column: auto; }
  .moment-media, .moment:last-child .moment-media { aspect-ratio: 4 / 3; }

  .menu-tabs { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; margin-inline: calc(var(--gutter) * -1); padding: 2px var(--gutter) 8px; scrollbar-width: none; }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-tabs button { flex: none; }
  .menu-items { grid-template-columns: 1fr; }

  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 150px 150px 150px; grid-template-areas: "a a" "b c" "d e" "f f"; gap: 10px; }

  .rating-grid { grid-template-columns: 1fr; }
  .rating-card { flex-direction: row; justify-content: space-between; align-items: center; gap: 12px; padding: 18px 22px; }
  .rating-card .stars { display: none; }
  .rating-source { flex: 1; text-align: left; }
  .rating-count { min-width: 92px; text-align: right; }
  .rating-score { font-size: 38px; }

  .field-row { grid-template-columns: 1fr 1fr; }
  .field-row .field:first-child { grid-column: span 2; }
  .info-list div { grid-template-columns: 1fr; gap: 4px; }
  .map-frame, .map-frame iframe { min-height: 320px; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }

  .action-bar {
    display: grid; grid-template-columns: 1fr 1fr 1.3fr;
    position: fixed; inset: auto 0 0 0; z-index: 60;
    background: var(--cream); border-top: 1px solid var(--line);
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    gap: 8px;
  }
  .action-bar a {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 48px; border-radius: 999px; text-decoration: none;
    font-weight: 600; font-size: 15px; color: var(--ink);
  }
  .action-bar svg { width: 18px; height: 18px; }
  .action-bar .bar-primary { background: var(--wood); color: #fff; }
}
