/* =========================================================
   Bubba Gump Shrimp Co. — Sandgate
   Brand-compliant styles per official Brand Guidelines.
   ========================================================= */

/* ---------- Brand fonts (local) ---------- */
@font-face {
  font-family: "Nexa Rust Sans Black 2";
  src: url("../fonts/nexa-rust-sans-black-2/Nexa_Rust_Sans_Black_2.woff2") format("woff2");
  font-weight: 900; font-style: normal; font-display: swap;
}
/* DM Sans — self-hosted (was on Google Fonts, moved local to eliminate FOUT flicker) */
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DM Sans/dm-sans-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DM Sans/dm-sans-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DM Sans/dm-sans-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* Brand palette — AU Sandgate project (see design spec deviations) */
  --navy:        #004FA3;   /* Site blue — matches the native footer-image blue (was #204B7C) */
  --navy-deep:   #003B7D;   /* Darker for hover */
  --heading:     #004FA3;   /* Heading + nav-link blue */
  --red:         #DC291E;   /* Brand Red — PMS 485 */
  --red-deep:    #B41E15;   /* Hover/darker red */
  --pink:        #FFB8AD;   /* Shrimp Pink — retained as token but largely unused now */
  --cream:       #FFFFFF;   /* Was brand parchment — now white. Cards use this. */
  --cream-warm:  #F4F2EE;   /* Subtle off-white for text on dark sections */
  --black:       #231F20;   /* Brand black */
  --ink:         #231F20;   /* Body text */
  --charcoal:    #231F20;
  --paper:       #ECEEF0;   /* Page bg FALLBACK while background-new.jpg loads — cool off-white matching the parchment tone (no warm cream) */
  --sand:        #E8D5A7;   /* legacy */
  --gold:        #E0A458;   /* legacy */
  --seafoam:     #4F8A8B;   /* legacy */

  --maxw:        1200px;
  --gutter:      clamp(1.5rem, 3vw, 2.5rem);
  --radius-sm:   6px;
  --radius:      14px;
  --radius-lg:   22px;

  --shadow-sm:   0 2px 8px rgba(0,79,163,0.10);
  --shadow:      0 12px 32px rgba(0,79,163,0.14);
  --shadow-lg:   0 30px 60px rgba(0,79,163,0.20);

  /* Brand fonts (locally loaded) with Google Font fallbacks */
  --font-display:     "Nexa Rust Sans Black 2", "Alfa Slab One", Georgia, serif;
  --font-display-dot: "Nexa Rust Sans Black 2", Georgia, serif;
  --font-body:        "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-script:      var(--font-display-dot); /* legacy alias for old .script usages */

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background-color: var(--paper);   /* shows in iOS overscroll bounce (top and below footer) */
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background-image: url("../assets/background-new.jpg");
  background-repeat: repeat-y;
  background-position: top left;
  background-size: 100% auto;
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* Paper grain removed. No wrapper z-index needed — sticky elements compete at body level. */

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.0;
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); letter-spacing: 0.005em; line-height: 0.95; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); letter-spacing: 0.02em; }
h4 { font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--font-body); font-weight: 700; }
p { margin: 0 0 1em; max-width: 62ch; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--ink); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--red);
}

/* .script class — repurposed from handwritten script to Eveleth Dot
   (brand-correct decorative typeface). Kept as a class so existing
   markup still renders with a distinct decorative treatment. */
.script {
  font-family: var(--font-display-dot);
  font-weight: 400;
  font-size: 1em;
  color: var(--red);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section--tight { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 880px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
/* Primary button — painted PNG IS the button. No background-color (the PNG
   has transparent areas around the brush strokes; a solid bg colour was
   filling them and hiding the painted texture). Hover keeps the image
   and adds a subtle lift + darken. */
.btn--primary {
  background-color: transparent;
  background-image: url("../assets/redbuttonfinal.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  color: #fff;
  border: 0;
  border-radius: 0;
  padding: 18px 38px 20px;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
  transition: transform .25s var(--ease), filter .25s var(--ease);
}
.btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(0.92) saturate(1.05);
}
.btn--primary:active { transform: translateY(1px); }
.btn--ghost {
  background: transparent;
  color: var(--heading);
  border: 2px solid var(--heading);
  border-radius: 4px;
  padding: 14px 28px;
}
.btn--ghost:hover { background: #000; color: #fff; border-color: #000; transform: translateY(-1px); }
.btn--light {
  background: #fff;
  color: var(--heading);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.btn--light:hover { background: #000; color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn .arrow {
  display: inline-block;
  font-size: 1.15em;
  line-height: 0.9;
  transition: transform .25s var(--ease);
}
.btn:hover .arrow { transform: translateX(5px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(0,79,163,0.10);
  --nav-h: 70px;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px var(--gutter);
  gap: 12px;
  min-height: var(--nav-h);
}
/* Logo overflows the nav bar — bigger than the nav itself, like bubbagump.com */
.nav__brand { display: flex; align-items: center; gap: 14px; min-width: 0; flex-shrink: 1; }
.nav__brand img {
  height: 130px;
  width: auto;
  flex-shrink: 0;
  margin-top: 8px;
  margin-bottom: -56px;     /* overflows below the nav line */
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.15));
}
.nav__brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--heading);
  line-height: 1;
}
.nav__brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--red);
  margin-top: 5px;
  font-weight: 700;
}
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  color: var(--heading);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 3px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__burger {
  display: none;
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--cream);
  align-items: center; justify-content: center;
}
.nav__burger span {
  display: block; width: 16px; height: 2px; background: currentColor;
  position: relative;
}
.nav__burger span::before,
.nav__burger span::after {
  content: ""; position: absolute; left: 0; width: 16px; height: 2px; background: currentColor;
}
.nav__burger span::before { top: -5px; }
.nav__burger span::after { top: 5px; }

@media (max-width: 980px) {
  .nav {
    --nav-h: 64px;
    /* Remove backdrop-filter on mobile — it traps position:fixed children inside
       the nav's stacking context, preventing z-index from working correctly.
       The dropdown (z-index:40) must be in the root stacking context to sit
       below the nav (z-index:50). Desktop keeps the blur; mobile doesn't need it. */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.97);
  }
  .nav__inner { padding: 6px var(--gutter); }
  .nav__brand { gap: 10px; }
  .nav__brand img { height: 92px; margin-top: 6px; margin-bottom: -34px; }
  .nav__brand-text { font-size: 0.85rem; letter-spacing: 0.06em; }
  .nav__brand-text small { font-size: 0.6rem; margin-top: 2px; letter-spacing: 0.22em; }
  .nav__links {
    position: fixed; left: 0; right: 0; top: var(--nav-h); z-index: 40;
    flex-direction: column; align-items: stretch;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: saturate(160%) blur(10px);
    -webkit-backdrop-filter: saturate(160%) blur(10px);
    padding: 16px var(--gutter) 24px;
    gap: 0;
    border-bottom: 1px solid rgba(0,79,163,0.12);
    box-shadow: 0 12px 24px rgba(0,79,163,0.10);
    transform: translateY(-120%);
    transition: transform .35s var(--ease);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { padding: 14px 4px; font-size: 1.05rem; border-bottom: 1px solid rgba(20,42,71,0.08); }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__burger { display: inline-flex; }
  .nav__cta { gap: 8px; }
  .nav__cta .btn--primary { padding: 8px 14px; font-size: 0.78rem; }
  .nav__cta .btn--primary .arrow { display: none; }
}
@media (max-width: 640px) {
  /* Hide CTA button on phones — Register Interest is in the hamburger dropdown.
     Prevents nav content overflowing and pushing the burger to the screen edge. */
  .nav__cta .btn--primary { display: none; }
}
@media (max-width: 540px) {
  .nav__brand { gap: 8px; }
  .nav__brand img { height: 78px; margin-bottom: -28px; }
  .nav__brand-text { font-size: 0.72rem; letter-spacing: 0.05em; line-height: 1.05; }
  .nav__brand-text small { font-size: 0.52rem; letter-spacing: 0.18em; }
  .nav__burger { width: 34px; height: 34px; }
}
@media (max-width: 380px) {
  .nav__brand-text { display: none; }
  .nav__brand img { height: 70px; margin-bottom: -24px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(900px 320px at 92% -5%, rgba(220, 41, 30, 0.10), transparent 65%);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 980px) { .hero__grid { grid-template-columns: 1fr; } }

.hero__eyebrow { margin-bottom: 18px; }
.hero h1 .accent { color: var(--red); }
.hero h1 .ribbon {
  display: inline-block;
  background: var(--red);
  color: var(--cream);
  padding: 0 14px;
  border-radius: 8px;
  transform: rotate(-1.5deg);
  margin: 0 4px;
}
.hero__sub { font-size: clamp(1.05rem, 1.5vw, 1.2rem); margin: 18px 0 28px; max-width: 52ch; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__meta {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 28px;
  font-size: 0.9rem;
  color: var(--navy);
}
.hero__meta strong { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--red); }

.hero__art {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy);
}
.hero__art img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute;
  bottom: -26px; left: -26px;
  background: #fff;
  color: var(--navy);
  width: 158px; height: 158px;
  border-radius: 50%;
  display: grid; place-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  box-shadow: var(--shadow);
  border: 3px solid var(--red);
  outline: 3px dashed var(--red);
  outline-offset: -10px;
  transform: rotate(-8deg);
}
.hero__badge span { display: block; font-size: 1.7rem; color: var(--red); letter-spacing: 0.04em; }

/* gingham accent strip */
.gingham {
  height: 14px;
  background:
    linear-gradient(45deg, var(--red) 25%, transparent 25%, transparent 75%, var(--red) 75%),
    linear-gradient(45deg, var(--red) 25%, transparent 25%, transparent 75%, var(--red) 75%),
    var(--cream);
  background-size: 14px 14px;
  background-position: 0 0, 7px 7px;
  opacity: 0.7;
}

/* ---------- Strip / banner ---------- */
.strip {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 18px var(--gutter);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.strip span { color: var(--red); margin: 0 14px; font-size: 0.7em; vertical-align: 2px; }

/* ---------- Section header ---------- */
.section-head { max-width: 760px; margin: 0 auto clamp(2rem, 4vw, 3.5rem); text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head .eyebrow { justify-content: center; }
.section-head.left .eyebrow { justify-content: flex-start; }
.section-head p { margin: 1em auto 0; }
.section-head.left p { margin-left: 0; }

/* ---------- Bubba's Ways ---------- */
.ways {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  border-top: 6px solid var(--red);
  border-bottom: 6px solid var(--red);
}
.ways h2 { color: #fff; }
.ways .eyebrow { color: var(--red); }
.ways .eyebrow::before { background: var(--red); }
.ways__quote {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--cream-warm);
}
.ways__quote::before, .ways__quote::after {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.4em;
  line-height: 0;
  position: relative;
  top: 0.15em;
}
.ways__quote::before { content: "“"; margin-right: 6px; }
.ways__quote::after  { content: "”"; margin-left: 6px; }

.ways__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px 24px;
  position: relative;
}
.ways__list li {
  display: flex; align-items: baseline; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dotted rgba(255,255,255,0.2);
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 400;
}
.ways__list li::before {
  content: "★";
  color: var(--red);
  font-size: 0.8em;
  flex-shrink: 0;
}

/* ---------- Dish cards ---------- */
.dishes {
  background: transparent;
}
.dish {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--red);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
}
.dish:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.dish__img { aspect-ratio: 4/3; overflow: hidden; background: #ECECEC; }
.dish__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.dish:hover .dish__img img { transform: scale(1.06); }
.dish__body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.dish__tag {
  align-self: flex-start;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); font-weight: 700;
  background: rgba(200,32,31,0.08);
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 12px;
}
.dish h3 { margin-bottom: 8px; }
.dish__price {
  margin-top: auto;
  padding-top: 14px;
  font-family: var(--font-display); font-weight: 700;
  color: var(--navy); font-size: 1.2rem;
}

/* ---------- About preview ---------- */
.about-preview { background: transparent; }
.about-preview__grid { align-items: center; }
.about-preview__art {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: var(--shadow);
}
.about-preview__art img { width: 100%; height: 100%; object-fit: cover; }
.stat-row {
  display: flex; gap: clamp(1.5rem, 3vw, 3rem); flex-wrap: wrap;
  margin-top: 28px; padding-top: 28px;
  border-top: 1px dashed rgba(20,42,71,0.25);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--red);
  line-height: 1;
}
.stat span { font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); }

/* ---------- Location preview ---------- */
.location-cta { background: transparent; }
.location-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
@media (max-width: 880px) {
  .location-card { grid-template-columns: 1fr; }
  .location-card__body {
    min-width: 0;
    text-align: center;
  }
  .location-card__body .btn { width: 100%; justify-content: center; }
  .location-card__details {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .location-card__details > div { justify-content: flex-start; }
}
.location-card__map { min-height: 320px; background: var(--navy); }
.location-card__map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.location-card__body { padding: clamp(1.5rem, 3vw, 2.5rem); }
.location-card__body h3 { color: var(--heading); }
.location-card__details { display: grid; gap: 14px; margin: 24px 0; }
.location-card__details > div { display: flex; gap: 12px; align-items: flex-start; }
.location-card__details strong {
  display: block; font-size: 0.75rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--red); margin-bottom: 2px;
}
.location-card__icon {
  flex-shrink: 0; width: 22px; height: 22px; color: var(--navy);
}

/* ---------- Quote block ---------- */
.pull-quote { background: var(--red); color: var(--cream); text-align: center; padding: clamp(3rem, 6vw, 5rem) var(--gutter); }
.pull-quote blockquote {
  margin: 0 auto;
  max-width: 880px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--cream);
}
.pull-quote cite { display: block; font-family: var(--font-body); font-weight: 400; font-size: 1rem; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 22px; color: var(--cream-warm); }

/* ---------- Footer ---------- */
.footer {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: clamp(3rem, 6vw, 5rem) 0 1.5rem;
  margin-top: clamp(4rem, 8vw, 7rem);
}
.footer::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 0;
  height: clamp(60px, 7vw, 100px);
  transform: translateY(-50%);                   /* 50% above footer top, 50% inside */
  background: url("../assets/footerfinal.png") no-repeat center bottom / 100% 100%;
  pointer-events: none;
  z-index: 1;
}
.footer > * { position: relative; z-index: 2; }
.footer a { color: var(--cream-warm); transition: color .2s var(--ease); }
.footer a:hover { color: var(--red); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 { color: var(--red); letter-spacing: 0.14em; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 700; }
.footer__brand { display: flex; flex-direction: column; gap: 18px; max-width: 320px; }
/* Logo MUST appear on light background per brand guidelines — wrap in white panel */
.footer__logo-panel {
  background: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  align-self: flex-start;
  display: inline-block;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.footer__logo-panel img {
  height: 64px;
  width: auto;
  display: block;
  max-width: 100%;
  object-fit: contain;
}
.footer__brand p { font-size: 0.92rem; color: var(--cream); }
.footer__brand .script { color: var(--red); font-size: 1.05rem; }
.footer__links { display: grid; gap: 10px; font-size: 0.95rem; }
.footer__links a { display: inline-flex; align-items: center; gap: 5px; }
.footer__bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 0.8rem; color: rgba(255,255,255,0.7);
}

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.25rem; max-width: 640px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-size: 0.78rem; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 700; color: var(--navy);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(20,42,71,0.18);
  border-radius: var(--radius);
  background: var(--paper);
  font: inherit;
  font-size: max(1em, 16px); /* prevent iOS auto-zoom on focus */
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(200,32,31,0.12);
}
.field textarea { min-height: 120px; resize: vertical; }
.form__note { font-size: 0.85rem; color: rgba(20,42,71,0.65); }
.form__success {
  display: none;
  padding: 20px 24px;
  border-radius: var(--radius);
  background: #E9F5E1;
  color: #2F5E1F;
  border: 1.5px solid #B8DDA0;
}
.form__success.is-visible { display: block; }
.form__success strong { display: block; font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 4px; }
.form__error {
  display: none;
  padding: 20px 24px;
  border-radius: var(--radius);
  background: #FDECEA;
  color: #8B1A13;
  border: 1.5px solid #F5B7B1;
}
.form__error.is-visible { display: block; }
.form__error strong { display: block; font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 4px; }

/* ---------- Interest success modal ---------- */
html.modal-open { overflow: hidden; }
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 900;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-backdrop.is-open {
  display: flex;
  animation: backdrop-in 0.22s ease;
}
@keyframes backdrop-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.modal {
  position: relative;
  background: #fff;
  border-radius: 12px;
  max-width: 480px;
  width: 100%;
  padding: clamp(2rem, 6vw, 3rem) clamp(1.5rem, 5vw, 2.5rem);
  text-align: center;
  position: relative;
  animation: modal-in 0.28s cubic-bezier(0.34, 1.30, 0.64, 1);
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .modal-backdrop.is-open, .modal { animation: none; }
}
.modal__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 2rem;
  line-height: 64px;
  margin: 0 auto 1.25rem;
}
.modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  color: var(--navy);
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.modal__body {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.6;
  margin: 0 0 1.75rem;
}
.modal__btn {
  display: inline-block;
}
.modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  font-size: 1.6rem;
  line-height: 36px;
  text-align: center;
  color: var(--ink);
  cursor: pointer;
  opacity: 0.45;
  border-radius: 50%;
  transition: opacity .15s, background .15s;
  padding: 0;
}
.modal__close:hover { opacity: 0.9; background: rgba(0,0,0,0.06); }

/* ---------- Page banner ---------- */
.page-banner {
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 5vw, 4rem);
  background:
    radial-gradient(700px 280px at 50% 0%, rgba(220, 41, 30, 0.10), transparent 70%);
  text-align: center;
  border-bottom: 3px solid var(--red);
}
.page-banner h1 { margin-bottom: 16px; }
.page-banner p { margin: 0 auto; max-width: 56ch; }

/* ---------- Menu page ---------- */
.menu-nav {
  position: sticky; top: 90px; z-index: 30;        /* sits BELOW nav (z 50) — logo overhang sits on top */
  background: #ffffff;
  border-top: 1px solid rgba(0,79,163,0.12);
  border-bottom: 1px solid rgba(0,79,163,0.12);
  box-shadow: 0 8px 20px rgba(0,79,163,0.08);
  padding: 12px 0;
}
@media (max-width: 980px) {
  .menu-nav { top: 80px; padding: 10px 0; }
}
@media (max-width: 540px) {
  .menu-nav { top: 70px; }
}
.menu-nav__inner {
  display: flex; gap: 8px; overflow-x: auto;
  justify-content: center;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 720px) {
  /* On narrow screens, switch to left-aligned scroll so the first pill is always reachable. */
  .menu-nav__inner { justify-content: flex-start; }
}
.menu-nav a {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  border: 1.5px solid transparent;
  transition: all .2s var(--ease);
}
.menu-nav a:hover { background: var(--cream-warm); }
.menu-nav a.is-active { background: var(--navy); color: var(--cream); }

.menu-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: 1px dashed rgba(0,79,163,0.18);
  scroll-margin-top: 160px;        /* menu-nav top 90 + ~60 height + buffer */
}
@media (max-width: 980px) {
  .menu-section { scroll-margin-top: 145px; }
}
@media (max-width: 540px) {
  .menu-section { scroll-margin-top: 130px; }
}
.menu-section:last-child { border-bottom: 0; }
.menu-section__head { display: flex; align-items: end; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 2rem; }
.menu-section__head h2 { margin-bottom: 0; }
.menu-section__head .script { color: var(--red); font-size: 1.6rem; }

.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 3rem; }
@media (max-width: 720px) { .menu-list { grid-template-columns: 1fr; } }
.menu-item { display: grid; gap: 6px; }
.menu-item__head {
  display: flex; align-items: baseline; gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}
.menu-item__head .dots {
  flex: 1; border-bottom: 1.5px dotted rgba(20,42,71,0.3);
  transform: translateY(-4px);
}
.menu-item__head .price { color: var(--red); font-weight: 800; }
.menu-item__desc { font-size: 0.95rem; color: rgba(28,42,71,0.75); margin: 0; }
.menu-item__tag {
  display: inline-block;
  font-size: 0.7rem; letter-spacing: 0.16em;
  font-weight: 700; text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

/* ---------- About page ---------- */
.story { padding: clamp(3rem, 6vw, 5rem) 0; background: transparent; }
.story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 880px) { .story__grid { grid-template-columns: 1fr; } }
.story__grid img { border-radius: var(--radius-lg); aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow); }
.story:nth-of-type(even) .story__grid { direction: rtl; }
.story:nth-of-type(even) .story__grid > * { direction: ltr; }

.values { background: transparent; }
.value-card {
  background: var(--cream);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease);
}
.value-card:hover { transform: translateY(-4px); }
.value-card h3 { overflow-wrap: break-word; }
.value-card__num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 3.2rem; color: var(--red); line-height: 1;
  display: block; margin-bottom: 16px;
}

/* ---------- Location page ---------- */
.location-hero { background: transparent; padding: 0; }
.location-hero__map iframe { width: 100%; height: 420px; border: 0; display: block; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
@media (max-width: 880px) { .info-grid { grid-template-columns: 1fr; } }
.info-card {
  background: var(--cream);
  padding: 28px;
  border-radius: var(--radius-lg);
  border-top: 5px solid var(--red);
}
.info-card h3 { font-size: 1.15rem; }
.info-card p { margin: 0; }
.info-card strong { color: var(--navy); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(20,42,71,0.18);
  font-size: 0.95rem;
}
.hours-table tr:last-child td { border-bottom: 0; }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--navy); }

/* ---------- Reservations page ---------- */
.reserve-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 880px) { .reserve-grid { grid-template-columns: 1fr; } }
.reserve-aside {
  background: var(--navy); color: var(--cream);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  border-top: 6px solid var(--red);
  position: sticky; top: 100px;
}
.reserve-aside h3 { color: #fff; }
.reserve-aside ul { display: grid; gap: 14px; margin-top: 20px; }
.reserve-aside li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--cream);
}
.reserve-aside li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--red);
  font-weight: 700;
  font-size: 0.9em;
}
.reserve-aside li strong { color: #fff; font-weight: 700; }
.reserve-aside .eyebrow { color: var(--red); }
.reserve-aside .eyebrow::before { background: var(--red); }

/* ---------- Coming Soon page ---------- */
.cs-hero {
  padding: clamp(5rem, 11vw, 9rem) 0 clamp(4rem, 8vw, 7rem);
  text-align: center;
  background: radial-gradient(900px 320px at 50% -5%, rgba(220,41,30,0.10), transparent 65%);
}
.cs-hero__inner { max-width: 780px; margin: 0 auto; }
.cs-hero__inner .eyebrow { justify-content: center; }
.cs-hero__inner h1 { margin: 16px 0 24px; }
.cs-hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  margin: 0 auto 2.5rem;
  max-width: 54ch;
}
.cs-hero__ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center;
  margin-top: 2.5rem;
}
.cs-hero__meta {
  display: flex; flex-wrap: wrap; gap: 28px;
  justify-content: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px dashed rgba(20,42,71,0.2);
  font-size: 0.9rem;
  color: var(--navy);
}
.cs-hero__meta strong { display: block; font-family: var(--font-display); font-size: 1.1rem; color: var(--red); }

/* ---------- Utility ---------- */
.center { text-align: center; }
.muted { color: rgba(28,42,71,0.65); }
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20,42,71,0.18), transparent);
  margin: 2rem 0;
}
.kicker { color: var(--red); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.78rem; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
