/* =============================================================================
   SUNSET PAVILION — Design 1 · "GOLDEN HOUR"
   Warm · editorial · elegant. Cream ground, espresso ink, sunset accents.
   Mobile-first (designed at 375px, scaled up).
   ========================================================================== */

/* ----------------------------- Tokens ----------------------------------- */
:root {
  --cream:      #FBF6EC;
  --cream-2:    #F4ECDD;
  --cream-3:    #EDE1CD;
  --ink:        #2A2118;
  --ink-2:      #4A3D2E;   /* softer heading ink */
  --muted:      #7A6B57;   /* descriptions / captions */
  --amber:      #F6B45A;
  --terracotta: #E8683C;
  --plum:       #6E3B52;
  --olive:      #8A8A56;
  --line:       rgba(42, 33, 24, .14);
  --line-soft:  rgba(42, 33, 24, .08);

  --sunset:     linear-gradient(103deg, #F6B45A 0%, #E8683C 52%, #6E3B52 100%);
  --sunset-soft:linear-gradient(103deg, #F9C87F 0%, #ED814F 52%, #7E4560 100%);

  --shadow-sm:  0 2px 10px -6px rgba(42, 33, 24, .35);
  --shadow-md:  0 22px 45px -30px rgba(42, 33, 24, .55);
  --shadow-lg:  0 40px 80px -45px rgba(42, 33, 24, .6);

  --font-display: "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --nav-h: 64px;
  --wrap: 1120px;
  --radius: 16px;
  --radius-sm: 11px;
}

/* ----------------------------- 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-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select { font-family: inherit; font-size: 16px; }

:focus-visible {
  outline: 2.5px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-left: 22px; padding-right: 22px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: var(--cream);
  padding: 10px 16px; border-radius: 8px; font-weight: 700; font-size: 14px;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* ------------------------- Typographic helpers -------------------------- */
.kicker {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 800;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 8vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-optical-sizing: auto;
}
.section__lede {
  font-size: 1.05rem; color: var(--muted); max-width: 46ch; margin-top: 16px; line-height: 1.7;
}

/* Sun / horizon motif */
.sunmark {
  display: inline-block; width: 22px; height: 22px; border-radius: 50%;
  background: var(--sunset);
  box-shadow: 0 0 0 3px rgba(246, 180, 90, .22);
  flex: none;
}
.sunmark--lg { width: 46px; height: 46px; box-shadow: 0 0 0 6px rgba(246, 180, 90, .18); }

/* Elegant animated underline link */
.link-under {
  display: inline-block; position: relative;
  font-weight: 700; color: var(--ink);
  padding-bottom: 3px; margin-top: 22px;
}
.link-under::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--sunset);
  transform: scaleX(1); transform-origin: right;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.link-under:hover::after, .link-under:focus-visible::after { transform: scaleX(0); }
.link-under::before {
  content: "→"; position: absolute; right: -22px; top: 0; opacity: 0;
  transition: opacity .3s, transform .3s; transform: translateX(-4px);
}
.link-under:hover::before, .link-under:focus-visible::before { opacity: 1; transform: translateX(0); }

/* ----------------------------- Buttons ---------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 800; font-size: 15px;
  letter-spacing: .01em;
  color: #fff;
  background: var(--sunset); background-size: 160% 160%;
  padding: 13px 24px; border-radius: 999px;
  min-height: 46px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .25s ease, background-position .5s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -14px rgba(232,104,60,.7); background-position: 100% 0; }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 16px 30px; font-size: 16px; min-height: 54px; }
.btn--sm { padding: 10px 18px; font-size: 14px; min-height: 42px; }
.btn--full { width: 100%; }
.btn--ghost {
  background: rgba(251, 246, 236, .12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .7);
  box-shadow: none;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(251, 246, 236, .22); box-shadow: none; }
.btn--outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line); box-shadow: none;
}
.btn--outline:hover { background: var(--cream-2); box-shadow: none; border-color: var(--terracotta); color: var(--terracotta); }

/* Broken-image fallback: reveal a themed gradient */
.ph { width: 100%; height: 100%; object-fit: cover; }
.ph.ph--broken { opacity: 0; }

.photoframe {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--sunset-soft);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.photoframe--tall { aspect-ratio: 3 / 4; }
.photoframe::after { /* subtle warm vignette on all photos */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 70px -30px rgba(42,33,24,.4);
  border-radius: inherit;
}

/* =============================== NAV ==================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav__inner {
  max-width: var(--wrap); margin: 0 auto;
  height: var(--nav-h);
  padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__brand {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.28rem;
  letter-spacing: -0.01em; color: #fff;
  transition: color .35s ease;
}
.nav__links { display: none; }

/* Solid state (on scroll / off-hero) */
.nav--solid {
  background: rgba(251, 246, 236, .93);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 6px 24px -20px rgba(42,33,24,.7);
}
.nav--solid .nav__brand { color: var(--ink); }
.nav--solid .nav__link { color: var(--ink); }
.nav--solid .nav__toggle span { background: var(--ink); }

/* mobile hamburger */
.nav__toggle {
  width: 46px; height: 46px; display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  border-radius: 10px;
}
.nav__toggle span {
  display: block; width: 24px; height: 2px; border-radius: 2px;
  background: #fff; transition: background .35s ease, transform .3s ease, opacity .2s ease;
}

/* ============================ MOBILE DRAWER ============================= */
.drawer {
  position: fixed; inset: 0; z-index: 150;
  background: var(--cream);
  background-image: radial-gradient(120% 60% at 100% 0%, rgba(246,180,90,.28), transparent 55%),
                    radial-gradient(90% 60% at 0% 100%, rgba(110,59,82,.16), transparent 60%);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .3s ease, transform .35s ease, visibility .3s;
}
.drawer[hidden] { display: flex; } /* keep transition; visibility gates it */
.drawer.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.drawer__inner {
  width: 100%; max-width: 480px; padding: 40px 30px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
}
.drawer__close {
  position: absolute; top: 18px; right: 20px;
  width: 48px; height: 48px; font-size: 34px; line-height: 1; color: var(--ink);
  border-radius: 12px;
}
.drawer .sunmark--lg { margin-bottom: 18px; }
.drawer__links { width: 100%; margin-bottom: 22px; }
.drawer__links li { border-bottom: 1px solid var(--line-soft); }
.drawer__link {
  display: block; padding: 16px 4px;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.7rem, 8vw, 2.3rem); color: var(--ink);
  letter-spacing: -0.01em;
  transition: color .2s ease, padding-left .25s ease;
}
.drawer__link:hover, .drawer__link:focus-visible { color: var(--terracotta); padding-left: 12px; }

/* =============================== HERO ================================== */
.hero {
  position: relative; min-height: 100svh; min-height: 100vh;
  display: flex; align-items: flex-end;
  padding: 0 0 clamp(70px, 14vh, 140px);
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; background: var(--sunset); }
.hero__photo {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.12);
  animation: heroZoom 22s ease-out forwards;
}
.hero__photo.ph--broken { display: none; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(30,18,12,.30), rgba(30,18,12,0) 62%),
    linear-gradient(180deg, rgba(42,25,18,.38) 0%, rgba(42,25,18,.16) 26%, rgba(42,25,18,.34) 55%, rgba(30,18,12,.82) 100%),
    linear-gradient(103deg, rgba(232,104,60,.34), rgba(110,59,82,.30));
}
.hero__inner {
  position: relative; z-index: 1; width: 100%;
  max-width: var(--wrap); margin: 0 auto; padding: 0 24px;
  color: #fff;
}
.hero__kicker {
  font-size: 12px; font-weight: 800; letter-spacing: .26em; text-transform: uppercase;
  color: #FCE8C9; margin-bottom: 16px;
  text-shadow: 0 1px 12px rgba(0,0,0,.35);
}
.hero__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(3.1rem, 17vw, 8rem);
  line-height: .95; letter-spacing: -0.02em;
  text-shadow: 0 6px 40px rgba(0,0,0,.32);
  max-width: 14ch;
}
.hero__tagline {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.3rem, 5.4vw, 2rem);
  margin-top: 14px; color: #FBEFDB;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.hero__sub {
  margin-top: 16px; max-width: 44ch; font-size: 1.02rem; line-height: 1.6;
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 16px rgba(0,0,0,.4);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__cta .btn { flex: 1 1 auto; min-width: 46%; }

.hero__scroll {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 1; display: none; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.85); font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
}
.hero__scrollline { width: 1px; height: 40px; background: rgba(255,255,255,.7); animation: scrollPulse 2.4s ease-in-out infinite; transform-origin: top; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(.4); opacity:.4 } 50% { transform: scaleY(1); opacity:1 } }

/* ============================== SECTIONS =============================== */
.section { padding: clamp(64px, 12vw, 128px) 0; position: relative; scroll-margin-top: var(--nav-h); }
.about { background: var(--cream); }
.menu { background: var(--cream-2); }
.music { background: var(--ink); color: var(--cream); }
.gallery { background: var(--cream); }
.visit { background: var(--cream-2); }
.reserve { background: var(--cream); }

/* thin sunset divider at top of alternating sections */
.menu::before, .visit::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(88%, var(--wrap)); height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232,104,60,.55), rgba(110,59,82,.45), transparent);
}

/* ------------------------------ ABOUT ---------------------------------- */
.about__grid { display: grid; gap: 40px; }
.about__figure { position: relative; }
.about__figure .photoframe { aspect-ratio: 4/3.4; }
.about__badge {
  position: absolute; bottom: -14px; left: 20px;
  background: var(--cream); color: var(--ink);
  font-weight: 800; font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  padding: 10px 18px; border-radius: 999px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft);
}
.about__copy p { margin-top: 18px; color: var(--ink-2); font-size: 1.06rem; line-height: 1.78; }
.about__copy p:first-child::first-letter {
  font-family: var(--font-display); font-weight: 500;
  font-size: 3.4em; line-height: .8; float: left;
  padding: 6px 12px 0 0; color: var(--terracotta);
}

/* ------------------------------- MENU ---------------------------------- */
.menu__head { text-align: center; display: flex; flex-direction: column; align-items: center; }
.menu__head .section__lede { text-align: center; }

.menu-bar {
  position: sticky; top: var(--nav-h); z-index: 40;
  background: rgba(244, 236, 221, .95);
  -webkit-backdrop-filter: saturate(140%) blur(10px); backdrop-filter: saturate(140%) blur(10px);
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  margin-top: 36px;
}
.menu-groups {
  display: inline-flex; gap: 4px; padding: 6px; margin: 14px 0 4px;
  background: var(--cream); border-radius: 999px; border: 1px solid var(--line-soft);
}
.menu-group {
  padding: 9px 22px; border-radius: 999px; font-weight: 800; font-size: 14px;
  letter-spacing: .04em; color: var(--muted); min-height: 42px;
  transition: color .2s, background .3s, box-shadow .3s;
}
.menu-group.is-active { color: #fff; background: var(--sunset); box-shadow: var(--shadow-sm); }

.menu-chips {
  display: flex; gap: 9px; overflow-x: auto; padding: 6px 0 14px;
  scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-chips::-webkit-scrollbar { display: none; }
.chip {
  flex: none; scroll-snap-align: start;
  padding: 9px 17px; border-radius: 999px; white-space: nowrap;
  font-weight: 700; font-size: 13.5px; color: var(--ink-2);
  background: var(--cream); border: 1px solid var(--line);
  min-height: 40px; display: inline-flex; align-items: center;
  transition: color .2s, background .2s, border-color .2s;
}
.chip:hover { border-color: var(--terracotta); color: var(--terracotta); }
.chip.is-active {
  color: var(--plum); background: #fff; border-color: var(--plum);
  box-shadow: inset 0 -2px 0 var(--terracotta);
}

.menu-body { margin-top: 44px; max-width: 760px; margin-left: auto; margin-right: auto; }
.cat { scroll-margin-top: calc(var(--nav-h) + 128px); padding-top: 8px; }
.cat + .cat { margin-top: 56px; }
.cat__head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 6px; }
.cat__name {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(1.5rem, 6vw, 2.1rem);
  color: var(--ink); letter-spacing: -0.01em; white-space: nowrap;
}
.cat__rule { flex: 1; height: 1px; background: var(--line); align-self: center; }
.cat__blurb { color: var(--terracotta); font-style: italic; font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 18px; }

.item { padding: 15px 0; border-bottom: 1px dotted rgba(42,33,24,.22); }
.item:last-child { border-bottom: none; }
.item__top { display: flex; align-items: baseline; gap: 8px; }
.item__name { font-weight: 700; font-size: 1.06rem; color: var(--ink); flex: none; }
.item__leader { flex: 1; border-bottom: 1.5px dotted rgba(42,33,24,.28); transform: translateY(-4px); min-width: 18px; }
.item__price { font-family: var(--font-display); font-weight: 500; font-size: 1.08rem; color: var(--plum); flex: none; }
.item__desc { margin-top: 3px; color: var(--muted); font-size: .95rem; line-height: 1.55; max-width: 54ch; }

.mugclub {
  margin-top: 56px; max-width: 760px; margin-left: auto; margin-right: auto;
  display: flex; align-items: center; gap: 18px;
  padding: 24px 26px; border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(246,180,90,.16), rgba(232,104,60,.12) 60%, rgba(110,59,82,.14));
  border: 1px solid rgba(232,104,60,.28);
  box-shadow: var(--shadow-sm);
}
.mugclub__mark { font-size: 34px; line-height: 1; flex: none; filter: saturate(1.1); }
.mugclub__text { flex: 1; }
.mugclub__title { font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; color: var(--ink); }
.mugclub__desc { color: var(--ink-2); font-size: .96rem; margin-top: 4px; }
.mugclub__price { font-family: var(--font-display); font-weight: 600; font-size: 1.7rem; color: var(--terracotta); flex: none; }

/* ---------------------------- LIVE MUSIC ------------------------------- */
.music { background-image: radial-gradient(120% 80% at 90% 0%, rgba(246,180,90,.16), transparent 55%),
                            radial-gradient(90% 70% at 0% 100%, rgba(110,59,82,.4), transparent 55%); }
.music__grid { display: grid; gap: 40px; }
.music .kicker { color: var(--amber); }
.music .section__title { color: var(--cream); }
.music__time {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 18px;
  font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; color: var(--amber);
}
.music__time .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--terracotta); box-shadow: 0 0 0 4px rgba(232,104,60,.25); animation: livePulse 2s ease-in-out infinite; }
@keyframes livePulse { 0%,100% { box-shadow: 0 0 0 3px rgba(232,104,60,.35) } 50% { box-shadow: 0 0 0 8px rgba(232,104,60,0) } }
.music__copy { margin-top: 18px; color: rgba(251,246,236,.82); font-size: 1.05rem; line-height: 1.75; max-width: 48ch; }
.schedule { margin-top: 26px; border-top: 1px solid rgba(251,246,236,.16); }
.schedule li { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; padding: 15px 2px; border-bottom: 1px solid rgba(251,246,236,.16); }
.schedule__day { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; color: var(--cream); }
.schedule__detail { color: rgba(251,246,236,.72); font-size: .95rem; text-align: right; }
.music__note {
  margin-top: 24px; padding: 16px 18px; border-radius: var(--radius-sm);
  background: rgba(246,180,90,.12); border: 1px solid rgba(246,180,90,.3);
  color: #FCE8C9; font-size: .92rem; line-height: 1.6;
}

/* ----------------------------- GALLERY --------------------------------- */
.gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.gallery__item {
  position: relative; overflow: hidden; border-radius: var(--radius-sm);
  aspect-ratio: 1 / 1; background: var(--sunset-soft); box-shadow: var(--shadow-sm);
}
.gallery__item .ph { transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.gallery__item:hover .ph { transform: scale(1.07); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(42,25,18,.35)); opacity: 0; transition: opacity .4s; }
.gallery__item:hover::after { opacity: 1; }
.gallery__item--wide { grid-column: span 2; aspect-ratio: 2 / 1; }

/* ------------------------------ VISIT ---------------------------------- */
.visit__grid { display: grid; gap: 40px; }
.visit__cols { display: grid; gap: 30px; margin-top: 26px; }
.visit__label {
  font-family: var(--font-body); font-weight: 800; font-size: 12px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--terracotta);
  margin-bottom: 12px;
}
.visit__label--sp { margin-top: 26px; }
.hours li { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; border-bottom: 1px solid var(--line-soft); }
.hours__days { font-weight: 700; color: var(--ink); }
.hours__time { color: var(--muted); }
.visit__season { margin-top: 14px; color: var(--plum); font-style: italic; font-family: var(--font-display); font-size: 1.05rem; }
.visit__address { font-style: normal; font-size: 1.1rem; color: var(--ink); line-height: 1.55; margin-bottom: 8px; }
.visit__phone {
  display: inline-block; font-family: var(--font-display); font-weight: 500;
  font-size: 1.6rem; color: var(--ink); margin: 4px 0 14px;
  transition: color .2s;
}
.visit__phone:hover { color: var(--terracotta); }
.visit__socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px; min-height: 44px;
  border: 1px solid var(--line); background: var(--cream); font-weight: 700; font-size: 14px;
  transition: border-color .2s, color .2s, background .2s;
}
.social-btn:hover { border-color: var(--terracotta); color: var(--terracotta); }

/* ============================ RESERVATION ============================== */
.reserve__head { text-align: center; display: flex; flex-direction: column; align-items: center; }
.reserve__intro { max-width: 54ch; color: var(--muted); margin-top: 16px; font-size: 1.05rem; line-height: 1.7; }

.rescard {
  max-width: 620px; margin: 40px auto 0;
  background: #fff; border-radius: 22px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.rescard__progress { padding: 22px 26px 0; }
.rescard__body { padding: 22px 26px 30px; }

/* progress indicator */
.progress__meta { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.progress__step { font-weight: 800; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--terracotta); }
.progress__label { font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; color: var(--ink); }
.progress__track { display: flex; gap: 5px; }
.progress__seg { flex: 1; height: 5px; border-radius: 999px; background: var(--cream-3); transition: background .4s ease; }
.progress__seg.is-done { background: var(--sunset); }
.progress__seg.is-active { background: var(--terracotta); }

/* step scaffolding */
.step__title { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; color: var(--ink); margin-bottom: 4px; }
.step__hint { color: var(--muted); font-size: .95rem; margin-bottom: 20px; }
.step__actions { display: flex; gap: 12px; margin-top: 24px; }
.step__actions .btn { flex: 1; }
.btn-back {
  display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--muted);
  padding: 13px 18px; border-radius: 999px; min-height: 46px; border: 1px solid var(--line);
  transition: color .2s, border-color .2s; flex: none;
}
.btn-back:hover { color: var(--ink); border-color: var(--ink); }
.field-error-msg { color: #B4402A; font-size: .85rem; margin-top: 6px; font-weight: 700; }

/* summary chips rail */
.res-summary { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; }
.res-summary__chip {
  font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 999px;
  background: var(--cream-2); color: var(--ink-2); border: 1px solid var(--line-soft);
}
.res-summary__chip b { color: var(--terracotta); font-weight: 800; }

/* calendar */
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal__month { font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; color: var(--ink); }
.cal__nav { display: flex; gap: 8px; }
.cal__navbtn {
  width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center; font-size: 18px; color: var(--ink);
  transition: background .2s, border-color .2s;
}
.cal__navbtn:hover:not(:disabled) { background: var(--cream-2); border-color: var(--terracotta); }
.cal__navbtn:disabled { opacity: .35; cursor: not-allowed; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal__dow { text-align: center; font-size: 11px; font-weight: 800; letter-spacing: .04em; color: var(--muted); padding: 4px 0; text-transform: uppercase; }
.cal__cell {
  position: relative; aspect-ratio: 1 / 1; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; color: var(--ink);
  border: 1px solid transparent; background: var(--cream-2);
  transition: background .18s, color .18s, border-color .18s, transform .12s;
  min-height: 40px;
}
.cal__cell:hover:not(:disabled) { background: #fff; border-color: var(--terracotta); transform: translateY(-1px); }
.cal__cell:disabled { background: transparent; color: rgba(122,107,87,.4); cursor: not-allowed; text-decoration: line-through; }
.cal__cell.is-empty { background: transparent; border: none; }
.cal__cell.is-today { border-color: var(--amber); }
.cal__cell.is-selected { background: var(--sunset); color: #fff; border-color: transparent; box-shadow: var(--shadow-sm); }
.cal__music { position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%); width: 5px; height: 5px; border-radius: 50%; background: var(--plum); }
.cal__cell.is-selected .cal__music { background: #fff; }
.cal__legend { display: flex; gap: 18px; margin-top: 16px; font-size: 12.5px; color: var(--muted); flex-wrap: wrap; }
.cal__legend span { display: inline-flex; align-items: center; gap: 7px; }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--plum); }
.legend-box { width: 14px; height: 14px; border-radius: 4px; background: var(--sunset); }

/* time slots */
.music-banner {
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
  padding: 14px 16px; border-radius: var(--radius-sm);
  background: linear-gradient(120deg, rgba(246,180,90,.16), rgba(110,59,82,.14));
  border: 1px solid rgba(232,104,60,.28);
}
.music-banner__mark { font-size: 22px; }
.music-banner__text { font-size: .9rem; color: var(--ink-2); line-height: 1.5; }
.music-banner__text b { color: var(--plum); }
.slotgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.slot {
  position: relative; padding: 13px 6px; border-radius: 12px; min-height: 52px;
  border: 1px solid var(--line); background: var(--cream-2); color: var(--ink);
  font-weight: 700; font-size: 14.5px; display: flex; flex-direction: column; align-items: center; gap: 2px;
  transition: background .18s, border-color .18s, transform .12s;
}
.slot:hover:not(:disabled) { background: #fff; border-color: var(--terracotta); transform: translateY(-1px); }
.slot:disabled { opacity: .4; cursor: not-allowed; }
.slot.is-selected { background: var(--sunset); color: #fff; border-color: transparent; box-shadow: var(--shadow-sm); }
.slot__badge { font-size: 9.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--plum); background: rgba(110,59,82,.12); padding: 1px 6px; border-radius: 999px; }
.slot.is-selected .slot__badge { color: #fff; background: rgba(255,255,255,.24); }
.slot-note { margin-top: 12px; font-size: .84rem; color: var(--muted); line-height: 1.5; padding-left: 4px; }

/* party size */
.partygrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.party {
  aspect-ratio: 1.4 / 1; border-radius: 14px; border: 1px solid var(--line); background: var(--cream-2);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  transition: background .18s, border-color .18s, transform .12s; min-height: 64px;
}
.party:hover { background: #fff; border-color: var(--terracotta); transform: translateY(-1px); }
.party.is-selected { background: var(--sunset); color: #fff; border-color: transparent; box-shadow: var(--shadow-sm); }
.party__num { font-family: var(--font-display); font-weight: 500; font-size: 1.9rem; line-height: 1; }
.party__lbl { font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; opacity: .8; }

/* table cards */
.tablecard {
  display: flex; align-items: flex-start; gap: 14px; width: 100%; text-align: left;
  padding: 18px; border-radius: var(--radius-sm); border: 1px solid var(--line);
  background: var(--cream-2); transition: background .18s, border-color .18s, transform .12s;
}
.tablecard + .tablecard { margin-top: 12px; }
.tablecard:hover { background: #fff; border-color: var(--terracotta); transform: translateY(-1px); }
.tablecard.is-selected { border-color: var(--plum); background: #fff; box-shadow: 0 0 0 2px rgba(110,59,82,.18), var(--shadow-sm); }
.tablecard__body { flex: 1; }
.tablecard__name { font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; color: var(--ink); }
.tablecard__cap { font-size: 12px; font-weight: 700; color: var(--terracotta); letter-spacing: .02em; margin: 2px 0 5px; }
.tablecard__blurb { color: var(--muted); font-size: .92rem; line-height: 1.5; }
.tablecard__price { text-align: right; flex: none; }
.tablecard__amt { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--plum); }
.tablecard__amtnote { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }

/* forms */
.field { margin-bottom: 16px; }
.field__label { display: block; font-weight: 800; font-size: 12.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 7px; }
.field__input {
  width: 100%; padding: 14px 15px; border-radius: 12px; min-height: 50px;
  border: 1.5px solid var(--line); background: var(--cream); color: var(--ink);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field__input::placeholder { color: rgba(122,107,87,.6); }
.field__input:focus { outline: none; border-color: var(--terracotta); background: #fff; box-shadow: 0 0 0 3px rgba(232,104,60,.14); }
.field.has-error .field__input { border-color: #C34B31; box-shadow: 0 0 0 3px rgba(195,75,49,.12); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.paynote {
  display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border-radius: var(--radius-sm);
  background: var(--cream-2); border: 1px solid var(--line-soft); margin-bottom: 20px;
}
.paynote__amt { font-family: var(--font-display); font-weight: 600; font-size: 2rem; color: var(--terracotta); line-height: 1; flex: none; }
.paynote__text { font-size: .88rem; color: var(--ink-2); line-height: 1.5; }
.testcard { font-size: .82rem; color: var(--muted); margin-top: 4px; padding: 10px 12px; background: var(--cream-2); border-radius: 10px; border: 1px dashed var(--line); }
.testcard b { color: var(--ink); font-variant-numeric: tabular-nums; }

/* review */
.review { border: 1px solid var(--line-soft); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 8px; }
.review__row { display: flex; justify-content: space-between; gap: 14px; padding: 14px 16px; border-bottom: 1px solid var(--line-soft); align-items: baseline; }
.review__row:last-child { border-bottom: none; }
.review__k { font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); flex: none; }
.review__v { text-align: right; font-weight: 700; color: var(--ink); }
.review__row--total { background: var(--cream-2); }
.review__row--total .review__v { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--terracotta); }
.review__note { margin: 14px 0 0; padding: 12px 14px; border-radius: 10px; background: rgba(110,59,82,.08); border: 1px solid rgba(110,59,82,.2); color: var(--plum); font-size: .88rem; line-height: 1.5; }
.form-error { padding: 12px 14px; border-radius: 10px; background: rgba(195,75,49,.1); border: 1px solid rgba(195,75,49,.3); color: #A83B22; font-weight: 700; font-size: .9rem; margin-bottom: 14px; }

/* confirmation */
.confirm { text-align: center; padding: 8px 0; }
.confirm__mark {
  width: 76px; height: 76px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--sunset); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -14px rgba(232,104,60,.8);
  animation: confPop .5s cubic-bezier(.2,1.3,.4,1) both;
}
@keyframes confPop { from { transform: scale(.4); opacity: 0 } to { transform: scale(1); opacity: 1 } }
.confirm__mark svg { width: 38px; height: 38px; stroke: #fff; stroke-width: 3; fill: none; }
.confirm__title { font-family: var(--font-display); font-weight: 500; font-size: 1.9rem; color: var(--ink); }
.confirm__sub { color: var(--muted); margin-top: 6px; }
.confirm__id {
  display: inline-block; margin: 18px 0; padding: 12px 22px; border-radius: 12px;
  background: var(--cream-2); border: 1px dashed var(--terracotta);
  font-weight: 800; letter-spacing: .06em; color: var(--ink); font-size: 1.05rem;
}
.confirm__id span { display: block; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 3px; }
.confirm__details { text-align: left; margin: 8px 0 0; }
.confirm__note { margin-top: 16px; font-size: .9rem; color: var(--muted); line-height: 1.6; }
.confirm__phone { font-weight: 800; color: var(--terracotta); }

.finelist { max-width: 620px; margin: 26px auto 0; }
.finelist li { position: relative; padding: 7px 0 7px 24px; color: var(--muted); font-size: .9rem; line-height: 1.55; }
.finelist li::before { content: ""; position: absolute; left: 4px; top: 15px; width: 7px; height: 7px; border-radius: 50%; background: var(--amber); }

/* =============================== FOOTER ================================ */
.foot { background: var(--ink); color: var(--cream); padding: 64px 0 28px; }
.foot__grid { display: grid; gap: 34px; }
.foot__brand .sunmark { margin-bottom: 12px; }
.foot__name { font-family: var(--font-display); font-weight: 500; font-size: 1.7rem; }
.foot__tag { color: rgba(251,246,236,.6); font-style: italic; font-family: var(--font-display); margin-top: 4px; }
.foot__label { font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; }
.foot__address { font-style: normal; color: rgba(251,246,236,.8); line-height: 1.6; }
.foot__link { display: inline-block; margin-top: 8px; font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); transition: color .2s; }
.foot__link:hover { color: var(--amber); }
.foot__socials { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.foot__social { display: inline-flex; align-items: center; padding: 9px 15px; border-radius: 999px; border: 1px solid rgba(251,246,236,.22); font-size: 13.5px; font-weight: 700; transition: border-color .2s, color .2s; min-height: 42px; }
.foot__social:hover { border-color: var(--amber); color: var(--amber); }
.foot__season { color: rgba(251,246,236,.55); font-size: .88rem; line-height: 1.5; }
.foot__bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(251,246,236,.14); color: rgba(251,246,236,.55); font-size: .85rem; }
.foot__staff { font-weight: 700; color: var(--amber); transition: opacity .2s; }
.foot__staff:hover { opacity: .78; }

/* ========================= MOBILE STICKY BAR ========================== */
.stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
  background: rgba(251,246,236,.96);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px -18px rgba(42,33,24,.6);
  transform: translateY(120%); transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.stickybar.is-visible { transform: translateY(0); }
.stickybar__info { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.stickybar__eyebrow { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; color: var(--ink); }
.stickybar__sub { font-size: 11.5px; color: var(--muted); }
.stickybar .btn { flex: none; }

/* ============================== RESPONSIVE ============================= */
@media (min-width: 560px) {
  .gallery__grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .gallery__item--wide { grid-column: span 2; aspect-ratio: 2/1; }
  .slotgrid { grid-template-columns: repeat(4, 1fr); }
  .partygrid { grid-template-columns: repeat(6, 1fr); }
}

@media (min-width: 860px) {
  :root { --nav-h: 76px; }
  .wrap { padding-left: 40px; padding-right: 40px; }
  .nav__links { display: flex; align-items: center; gap: 8px; }
  .nav__link {
    position: relative; padding: 9px 4px; margin: 0 8px; font-weight: 700; font-size: 15px; color: #fff;
    transition: color .25s;
  }
  .nav__link::after { content: ""; position: absolute; left: 0; bottom: 2px; height: 2px; width: 100%; background: var(--sunset); transform: scaleX(0); transform-origin: left; transition: transform .3s cubic-bezier(.2,.7,.2,1); }
  .nav__link:hover::after, .nav__link[aria-current="true"]::after { transform: scaleX(1); }
  .nav__links .btn { margin-left: 12px; }
  .nav__toggle { display: none; }

  .hero__scroll { display: flex; }
  .hero__cta .btn { flex: 0 0 auto; min-width: auto; }

  .about__grid { grid-template-columns: 1fr 1.05fr; align-items: center; gap: 60px; }
  .music__grid { grid-template-columns: 1.05fr 1fr; align-items: center; gap: 60px; }
  .visit__grid { grid-template-columns: 1.1fr .9fr; align-items: center; gap: 60px; }
  .visit__cols { grid-template-columns: 1fr 1fr; gap: 40px; }

  .menu__head, .reserve__head { align-items: center; }
  .gallery__grid { grid-template-columns: repeat(4, 1fr); }

  .foot__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; }

  .stickybar { display: none !important; }
}

@media (min-width: 1024px) {
  .hero__title { font-size: clamp(4rem, 9vw, 8rem); }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .hero__photo { transform: none; animation: none; }
}

/* ---- Premium table badge + minimum explainer (choose-a-table step) ------- */
.tablecard__flag {
  display: inline-block; margin-left: 8px; padding: 2px 9px; border-radius: 999px;
  background: rgba(246, 180, 90, .22); color: #8a5a1a;
  font-size: 11px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; vertical-align: 2px;
}
.minnote {
  margin-top: 14px; padding: 12px 16px; border-radius: 12px;
  background: #F4ECDD; color: #7A6B57; font-size: 13.5px; line-height: 1.6;
}

/* Mobile: stack the price under the table info so narrow cards don't strand
   whitespace beside wrapped names/blurbs. */
@media (max-width: 480px) {
  .tablecard { flex-direction: column; gap: 8px; }
  .tablecard__price {
    text-align: left; display: flex; align-items: baseline; gap: 8px;
    padding-top: 8px; border-top: 1px dashed var(--line); width: 100%;
  }
  .tablecard__amt { font-size: 1.35rem; }
}

/* ---- TikTok rail (click-to-play carousel) --------------------------------- */
.tiktok__rail { position: relative; }
.tiktok__track {
  list-style: none; margin: 0; padding: 4px 2px 14px;
  display: flex; gap: 16px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.tiktok__card {
  flex: 0 0 auto; width: min(325px, 80vw); height: 580px;
  scroll-snap-align: start; border-radius: var(--radius-sm);
  overflow: hidden; background: var(--cream-2); border: 1px solid var(--line);
}
.tiktok__facade {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; padding: 24px;
  border: 0; cursor: pointer; text-align: center;
  background: linear-gradient(160deg, #F4ECDD, #EDE1CD 55%, rgba(246,180,90,.35));
  transition: transform .15s ease;
}
.tiktok__facade:hover { transform: scale(1.015); }
.tiktok__play {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: var(--sunset, linear-gradient(103deg, #F6B45A, #E8683C 52%, #6E3B52));
  color: #fff; font-size: 20px; padding-left: 4px;
  box-shadow: 0 14px 30px -14px rgba(232,104,60,.7);
}
.tiktok__label { font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; color: var(--ink); max-width: 24ch; }
.tiktok__hint { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.tiktok__frame { width: 100%; height: 100%; border: 0; }
.tiktok__nav { display: flex; gap: 8px; justify-content: flex-end; margin-top: 4px; }
.tiktok__btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; color: var(--ink); font-size: 20px; cursor: pointer;
  transition: border-color .15s, color .15s;
}
.tiktok__btn:hover { border-color: var(--terracotta); color: var(--terracotta); }
.tiktok__follow { display: inline-block; margin-top: 16px; font-weight: 700; color: var(--terracotta); text-decoration: none; border-bottom: 2px solid rgba(232,104,60,.4); }
.tiktok__follow:hover { border-bottom-color: var(--terracotta); }


/* ---- TikTok cards: real-thumbnail state (image synced locally) ------------ */
.tiktok__facade { position: relative; }
.tiktok__facade.has-thumb {
  background-size: cover; background-position: center;
  justify-content: flex-end; padding-bottom: 22px;
}
.tiktok__facade.has-thumb .tiktok__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.tiktok__facade.has-thumb:hover .tiktok__play { transform: translate(-50%, -50%) scale(1.06); }
.tiktok__facade.has-thumb .tiktok__label { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.55); }
.tiktok__facade.has-thumb .tiktok__hint { color: rgba(255,255,255,.92); }


/* ---- Hero background video (vibe reel) ------------------------------------
   Sits over the hero photo and under the text overlay; fades in only once
   playback actually starts, so the photo remains the graceful fallback. */
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  opacity: 0; transition: opacity .8s ease;
}
.hero__video.is-playing { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hero__video { display: none; } }


/* ---- Hero text over video: stronger anchoring ----------------------------- */
.hero__kicker, .hero__tagline, .hero__sub { text-shadow: 0 2px 18px rgba(0,0,0,.45); }
.hero__title { text-shadow: 0 6px 40px rgba(0,0,0,.45); }


/* ============================ GARDEN MAP (floor plan) ================= */
.planpanel {
  max-width: 620px;
  margin: 6px auto 0;
  background: linear-gradient(180deg, #fff, var(--cream));
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  padding: 22px 22px 20px;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.planpanel:empty { display: none; }
.planpanel.is-live { border-color: rgba(232, 104, 60, .30); }
.planpanel.is-picking {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(232, 104, 60, .16), var(--shadow-lg);
}
.planpanel__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.planpanel__eyebrow { font-weight: 800; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--terracotta); }
.planpanel__title { font-family: var(--font-display); font-weight: 500; font-size: 1.35rem; color: var(--ink); margin-top: 2px; }
.planpanel__caption { color: var(--muted); font-size: .92rem; line-height: 1.55; margin: 10px 0 16px; }
.planpanel__caption b { color: var(--ink); font-weight: 800; }

/* horizontal-scroll shell: on narrow phones the board keeps a usable minimum
   size and this wrapper scrolls, instead of shrinking tiles below tap size */
.planboard-wrap { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; padding: 4px 2px; margin: 0 -2px; }

/* the board — a relative box; tiles are placed by %, so it scales fluidly.
   container-type makes the tile fonts (cqw units below) scale with the board
   width, so text never over/under-shoots the tile at any size. */
.planboard {
  position: relative;
  width: 100%;
  min-width: 380px;
  max-width: 500px;
  margin: 0 auto;
  aspect-ratio: 720 / 1016; /* 900 tables + 116 lake band; app.js sets this inline too */
  container-type: inline-size;
  background:
    radial-gradient(120% 55% at 50% -6%, rgba(246, 180, 90, .26), transparent 60%),
    linear-gradient(180deg, #E9EFE4 0%, #E3EADB 100%);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  box-shadow: inset 0 2px 14px rgba(42, 33, 24, .07);
  overflow: hidden;
}
/* the lake along the top edge — a setting sun over water, so guests instantly
   see which way the garden faces (premium front tables sit closest to it) */
.planboard__lake {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden; pointer-events: none;
  background: linear-gradient(180deg,
    #F9C889 0%, #F1A65F 24%, #E4885E 40%,
    #8FB1CC 58%, #5E88A8 78%, #3E6B8A 100%);
  border-bottom: 2px solid rgba(255, 255, 255, .55);
}
.planboard__sun {
  position: absolute; left: 50%; top: 30%; transform: translateX(-50%);
  width: 12%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, #FFF3D6 0%, #FFDA8E 44%, #F6B45A 72%, rgba(246, 180, 90, 0) 100%);
}
.planboard__lake::after {  /* faint ripples on the water */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 40%;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, .15) 0 1px, transparent 1px 7px);
  opacity: .6;
}
.planboard__lakelabel {
  position: relative; z-index: 1; margin-bottom: 3.5%;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(11px, 3.3cqw, 16px); color: #fff;
  text-shadow: 0 1px 5px rgba(42, 33, 24, .55); letter-spacing: .01em;
}

/* tiles */
.plan-tbl {
  position: absolute;
  display: flex; align-items: center; justify-content: center;
  border-radius: 7px;
  border: 1.5px solid rgba(42, 33, 24, .26);
  background: #C9D3C6;
  color: var(--ink);
  font-family: var(--font-body);
  padding: 0; margin: 0;
  box-shadow: 0 1px 2px rgba(42, 33, 24, .14);
  overflow: hidden;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
button.plan-tbl { cursor: default; }
.plan-tbl__inner { display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1.04; gap: 1px; padding: 1px; }
/* cqw = 1% of the board width (container-type on .planboard), so the label
   scales with the tile at every board size and never clips. */
.plan-tbl__no { font-weight: 800; font-size: clamp(10px, 3.4cqw, 15px); }
.plan-tbl__price { font-size: clamp(8px, 2.6cqw, 11px); font-weight: 800; color: #43203A; }
.plan-tbl__tag { font-size: clamp(7px, 2cqw, 9px); font-weight: 800; text-transform: uppercase; letter-spacing: .02em; color: var(--muted); }

/* section colors (garden / premium-front / picnic) */
.plan-tbl--standard { background: #C9D3C6; }
.plan-tbl--premium  { background: #E7A08C; border-color: rgba(200, 70, 40, .5); }  /* the red front tables */
.plan-tbl--picnic   { background: #D9CBB0; }

/* table 17 sits on the diagonal — rotate the tile, keep the label upright */
.plan-tbl--diamond { border-radius: 8px; transform: rotate(45deg); }
.plan-tbl--diamond .plan-tbl__inner { transform: rotate(-45deg); }

/* states */
.plan-tbl.is-open {
  cursor: pointer; background: #fff; border-color: var(--terracotta);
  box-shadow: 0 0 0 1.5px rgba(232, 104, 60, .35), 0 3px 8px -3px rgba(42, 33, 24, .4);
}
.plan-tbl.is-open:hover, .plan-tbl.is-open:focus-visible {
  transform: translateY(-1px) scale(1.07); z-index: 5; outline: none;
  box-shadow: 0 0 0 2px var(--terracotta), var(--shadow-sm);
}
.plan-tbl--diamond.is-open:hover, .plan-tbl--diamond.is-open:focus-visible { transform: rotate(45deg) scale(1.07); }
.plan-tbl.is-selected {
  background: var(--sunset); color: #fff; border-color: transparent;
  box-shadow: 0 0 0 2.5px var(--plum), var(--shadow-md); z-index: 6;
}
.plan-tbl.is-selected .plan-tbl__price { color: #fff; }
.plan-tbl.is-selected .plan-tbl__tag { color: rgba(255, 255, 255, .85); }
.plan-tbl.is-booked {
  background: repeating-linear-gradient(45deg, #D7CFC4, #D7CFC4 4px, #C9BEAF 4px, #C9BEAF 8px);
  color: var(--muted); border-style: dashed; cursor: not-allowed; opacity: .9;
}
.plan-tbl.is-small { opacity: .38; cursor: not-allowed; }
/* holiday ($225) tables: an amber border marks them — the price keeps the dark,
   high-contrast ink rather than a low-contrast accent color (WCAG 1.4.3). */
.plan-tbl.is-special { border-color: var(--amber); }

/* decor: The PAV building + the Deck */
.plan-decor { position: absolute; display: flex; align-items: center; justify-content: center; border-radius: 8px; text-align: center; }
.plan-decor span { font-family: var(--font-display); font-weight: 600; letter-spacing: .02em; }
.plan-decor--pav {
  background: linear-gradient(160deg, #9A9384, #837C6D); color: var(--cream);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, .18);
}
.plan-decor--pav span { font-size: clamp(10px, 2.8cqw, 13px); }
.plan-decor--deck {
  border: 1.5px dashed rgba(122, 107, 87, .55); background: rgba(255, 255, 255, .22);
}
.plan-decor--deck span { font-size: clamp(11px, 3.2cqw, 15px); color: var(--olive); font-style: italic; }

/* legend */
.plan-legend {
  list-style: none; display: flex; flex-wrap: wrap; gap: 6px 16px;
  margin-top: 16px; font-size: 12px; font-weight: 600; color: var(--ink-2);
}
.plan-legend li { display: inline-flex; align-items: center; gap: 7px; }
.plan-swatch { width: 13px; height: 13px; border-radius: 4px; border: 1.5px solid rgba(42, 33, 24, .26); flex: none; }
.plan-swatch--standard { background: #C9D3C6; }
.plan-swatch--premium { background: #E7A08C; }
.plan-swatch--picnic { background: #D9CBB0; }
.plan-swatch--booked { background: repeating-linear-gradient(45deg, #D7CFC4, #D7CFC4 3px, #C9BEAF 3px, #C9BEAF 6px); border-style: dashed; }

/* the "your table" panel inside the reservation card at the Table step */
.tablepick { border-radius: 14px; padding: 16px 18px; margin-bottom: 18px; }
.tablepick--empty {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--cream-2); border: 1px dashed var(--line);
  color: var(--ink-2); font-size: .95rem; line-height: 1.5;
}
.tablepick__arrow { font-size: 1.5rem; color: var(--terracotta); font-weight: 800; line-height: 1; }
.tablepick--set { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.tablepick__no {
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: #fff;
  background: var(--sunset); padding: 12px 16px; min-width: 56px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex: none; text-align: center; line-height: 1.05;
}
.tablepick__meta { flex: 1; font-size: .9rem; color: var(--muted); font-weight: 600; }
.tablepick__price { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--plum); text-align: right; flex: none; }
.tablepick__price span { display: block; font-family: var(--font-body); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }

@media (min-width: 560px) {
  .planboard { max-width: 460px; }
}
@media (prefers-reduced-motion: reduce) {
  .plan-tbl, .planpanel { transition: none; }
  .plan-tbl.is-open:hover, .plan-tbl.is-open:focus-visible { transform: none; }
  .plan-tbl--diamond.is-open:hover { transform: rotate(45deg); }
}
