/* ============================================================
   GP's Restaurant — Guttenberg, NJ
   Old-world Italian-American, built with modern web craft.
   ============================================================ */

/* ---------- Theme tokens ---------- */
:root {
  /* Light — warm linen daytime */
  --bg:        #F6EDDF;
  --bg-2:      #FCF6EC;
  --bg-3:      #EFE2CF;
  --ink:       #241813;
  --ink-2:     #4C3A2F;
  --muted:     #8C7660;
  --wine:      #6E1423;
  --wine-2:    #8C1D2C;
  --brass:     #A9792B;
  --brass-2:   #C49A46;
  --olive:     #5E6B43;
  --line:      rgba(36, 24, 19, 0.14);
  --line-2:    rgba(36, 24, 19, 0.08);
  --card:      #FBF4E8;
  --card-edge: rgba(36, 24, 19, 0.10);
  --scrim:     rgba(20, 11, 8, 0.46);
  --scrim-2:   rgba(20, 11, 8, 0.78);
  --shadow:    0 18px 48px -22px rgba(46, 26, 15, 0.45);
  --shadow-sm: 0 6px 22px -14px rgba(46, 26, 15, 0.5);
  --nav-bg:    rgba(246, 237, 223, 0.86);
  --texture-opacity: 0.5;
  --hero-grade: linear-gradient(180deg, rgba(18,10,7,0.30) 0%, rgba(18,10,7,0.12) 38%, rgba(18,10,7,0.55) 100%);
}

[data-theme="dark"] {
  /* Dark — candlelit night */
  --bg:        #160F0A;
  --bg-2:      #1E140D;
  --bg-3:      #271A11;
  --ink:       #F3E7D5;
  --ink-2:     #DBC8AE;
  --muted:     #A48D72;
  --wine:      #A62A38;
  --wine-2:    #C24450;
  --brass:     #CDA45A;
  --brass-2:   #E1BE76;
  --olive:     #93A06B;
  --line:      rgba(243, 231, 213, 0.15);
  --line-2:    rgba(243, 231, 213, 0.08);
  --card:      #20160E;
  --card-edge: rgba(243, 231, 213, 0.10);
  --scrim:     rgba(8, 4, 2, 0.55);
  --scrim-2:   rgba(8, 4, 2, 0.82);
  --shadow:    0 22px 60px -26px rgba(0, 0, 0, 0.75);
  --shadow-sm: 0 8px 26px -16px rgba(0, 0, 0, 0.7);
  --nav-bg:    rgba(18, 12, 8, 0.82);
  --texture-opacity: 0.85;
  --hero-grade: linear-gradient(180deg, rgba(8,4,2,0.45) 0%, rgba(8,4,2,0.22) 38%, rgba(8,4,2,0.72) 100%);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Hanken Grotesk', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(1rem, 0.96rem + 0.22vw, 1.16rem);
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background-color .5s ease, color .5s ease;
}

/* Subtle linen/paper grain over everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: var(--texture-opacity);
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 2px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, .display {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.012em;
  font-optical-sizing: auto;
  color: var(--ink);
}
.serif-i { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-weight: 400; }

.eyebrow {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brass);
}
[data-theme="dark"] .eyebrow { color: var(--brass-2); }

p { color: var(--ink-2); }
.lead { font-size: clamp(1.12rem, 1rem + 0.6vw, 1.42rem); line-height: 1.6; color: var(--ink-2); }

/* ---------- Layout ---------- */
.wrap { width: min(1180px, 92vw); margin-inline: auto; position: relative; z-index: 1; }
.wrap--narrow { width: min(820px, 92vw); }
.section { padding: clamp(4.5rem, 9vw, 8.5rem) 0; position: relative; z-index: 1; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.center { text-align: center; }
.stack > * + * { margin-top: 1.1rem; }

/* Ornament divider */
.ornament { display: flex; align-items: center; justify-content: center; gap: 1rem; color: var(--brass); }
.ornament::before, .ornament::after {
  content: ""; height: 1px; width: clamp(40px, 12vw, 130px);
  background: linear-gradient(90deg, transparent, var(--brass));
}
.ornament::after { background: linear-gradient(90deg, var(--brass), transparent); }
.ornament__mark { width: 8px; height: 8px; transform: rotate(45deg); border: 1.5px solid var(--brass); }

.section-head { max-width: 44rem; }
.section-head.center { margin-inline: auto; }
.section-head .eyebrow { display: block; margin-bottom: 1rem; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.section-head p { margin-top: 1.2rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  padding: .95em 1.7em; border-radius: 3px; border: 1.5px solid transparent;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--wine); color: #FCEFE0; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--wine-2); }
[data-theme="dark"] .btn--primary { color: #F7E7D8; }
.btn--ghost { border-color: var(--brass); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--brass); color: #1a0d0a; }
.btn--brass { background: var(--brass); color: #1a0d0a; }
.btn--brass:hover { background: var(--brass-2); }
.btn--lg { padding: 1.05em 2.1em; font-size: .86rem; }
.btn--block { width: 100%; justify-content: center; }

.textlink {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; letter-spacing: .04em; color: var(--wine);
  border-bottom: 1.5px solid currentColor; padding-bottom: 2px;
  transition: gap .25s ease, color .25s ease;
}
[data-theme="dark"] .textlink { color: var(--brass-2); }
.textlink:hover { gap: .85em; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem clamp(1rem, 4vw, 2.4rem);
  transition: background-color .4s ease, padding .4s ease, box-shadow .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: var(--nav-bg);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom-color: var(--line);
  padding-top: .7rem; padding-bottom: .7rem;
}
.brand { display: flex; flex-direction: column; line-height: 1; gap: .18rem; }
.brand__name { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.65rem; letter-spacing: .01em; color: var(--ink); }
.brand__name em { font-style: italic; color: var(--wine); }
[data-theme="dark"] .brand__name em { color: var(--wine-2); }
.brand__sub { font-size: .58rem; letter-spacing: .34em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.nav-hero-light:not(.is-scrolled) .brand__name,
.nav-hero-light:not(.is-scrolled) .nav__link { color: #F6ECDD; }
.nav-hero-light:not(.is-scrolled) .brand__sub { color: rgba(246,236,221,.72); }
.nav-hero-light:not(.is-scrolled) .theme-toggle,
.nav-hero-light:not(.is-scrolled) .nav__burger { color: #F6ECDD; }
.nav-hero-light:not(.is-scrolled) .theme-toggle { border-color: rgba(246,236,221,.42); }
.nav-hero-light:not(.is-scrolled) .btn--ghost { border-color: rgba(246,236,221,.6); color: #F6ECDD; }
.nav-hero-light:not(.is-scrolled) .btn--ghost:hover { background: #F6ECDD; color: #1a0d0a; }

.nav__links { display: flex; align-items: center; gap: clamp(1.1rem, 2.4vw, 2.1rem); }
.nav__link {
  font-size: .82rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); position: relative; padding: .3rem 0;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--brass); transition: width .3s ease;
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: .8rem; }

.theme-toggle {
  width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--line);
  display: grid; place-items: center; color: var(--ink);
  transition: border-color .25s ease, transform .4s ease, background-color .25s ease;
}
.theme-toggle:hover { border-color: var(--brass); transform: rotate(18deg); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .ico-moon { display: none; }
[data-theme="dark"] .theme-toggle .ico-sun { display: none; }
[data-theme="dark"] .theme-toggle .ico-moon { display: block; }

.nav__burger { display: none; width: 42px; height: 42px; place-items: center; color: var(--ink); }
.nav__burger svg { width: 24px; height: 24px; }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--bg-2);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.6rem;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .4s ease, transform .4s ease, visibility .4s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a { font-family: 'Fraunces', serif; font-size: 1.9rem; font-weight: 500; }
.mobile-menu a:hover { color: var(--wine); }
[data-theme="dark"] .mobile-menu a:hover { color: var(--wine-2); }
.mobile-menu .mm-actions { display: flex; flex-direction: column; align-items: center; gap: .7rem; margin-top: 1.9rem; width: 100%; }
.mobile-menu .mm-actions .btn { width: min(260px, 74vw); justify-content: center; padding: .82em 1.4em; font-size: .76rem; }
.mobile-menu a { font-size: clamp(1.5rem, 5.5vw, 1.9rem); }
.mobile-menu__close { position: absolute; top: 1.4rem; right: 1.4rem; width: 44px; height: 44px; display: grid; place-items: center; color: var(--ink); }
.mobile-menu__close svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: var(--hero-grade); }
.hero__inner { position: relative; z-index: 2; padding-bottom: clamp(3.5rem, 8vh, 7rem); padding-top: 8rem; color: #F8EFE2; }
.hero__est { display: inline-flex; align-items: center; gap: .7rem; margin-bottom: 1.4rem; }
.hero__est .eyebrow { color: var(--brass-2); }
.hero__est .rule { height: 1px; width: 46px; background: var(--brass-2); }
.hero h1 { color: #FBF3E7; font-size: clamp(3rem, 8.4vw, 7rem); font-weight: 400; letter-spacing: -0.02em; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.hero h1 em { font-style: italic; color: #F0C97A; }
.hero__sub { max-width: 38rem; margin-top: 1.4rem; font-size: clamp(1.1rem, 1rem + .6vw, 1.4rem); color: #EFE3D2; line-height: 1.5; text-shadow: 0 1px 14px rgba(0,0,0,.4); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }
.hero__scroll { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 2; color: #F0E4D3; font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: .5rem; opacity: .9; }
.hero__scroll .dot { width: 1px; height: 38px; background: linear-gradient(var(--brass-2), transparent); animation: scrolldrop 2.2s ease-in-out infinite; }
@keyframes scrolldrop { 0%,100%{ transform: scaleY(.4); transform-origin: top; opacity:.4 } 50%{ transform: scaleY(1); opacity:1 } }

/* Marquee strip */
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--bg-3); padding: .9rem 0; }
.marquee__track { display: flex; gap: 3rem; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee span { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.15rem; color: var(--ink-2); display: inline-flex; align-items: center; gap: 3rem; white-space: nowrap; }
.marquee span::after { content: "✦"; color: var(--brass); font-style: normal; font-size: .8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } .hero__scroll .dot { animation: none; } }

/* ---------- Story / split ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 4px; box-shadow: var(--shadow); }
.split__media .frame { position: absolute; inset: 14px; border: 1px solid var(--brass); border-radius: 4px; pointer-events: none; mix-blend-mode: overlay; }
.badge-est {
  position: absolute; bottom: -22px; right: -10px; width: 116px; height: 116px; border-radius: 50%;
  background: var(--wine); color: #F6E7C8; display: grid; place-items: center; text-align: center;
  font-family: 'Fraunces', serif; line-height: 1.05; box-shadow: var(--shadow); border: 1px solid var(--brass-2);
}
.badge-est b { display: block; font-size: 1.7rem; font-weight: 600; }
.badge-est span { font-size: .56rem; letter-spacing: .2em; text-transform: uppercase; }

/* ---------- Dish grid ---------- */
.dish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 2.2vw, 1.8rem); margin-top: 3.4rem; }
.dish {
  background: var(--card); border: 1px solid var(--card-edge); border-radius: 5px; overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.dish:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--brass); }
.dish__img { aspect-ratio: 4/3; overflow: hidden; }
.dish__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.dish:hover .dish__img img { transform: scale(1.06); }
.dish__body { padding: 1.3rem 1.4rem 1.6rem; }
.dish__body h3 { font-size: 1.32rem; font-weight: 500; }
.dish__body p { margin-top: .4rem; font-size: .95rem; color: var(--muted); }

/* ---------- Feature rows / experience ---------- */
.feature-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 3rem); margin-top: 3.4rem; }
.feature { text-align: left; }
.feature__num { font-family: 'Fraunces', serif; font-style: italic; font-size: 1rem; color: var(--brass); }
.feature h3 { font-size: 1.45rem; margin: .7rem 0 .6rem; }
.feature p { font-size: .98rem; }
.feature__line { width: 34px; height: 2px; background: var(--brass); margin-bottom: 1.1rem; }

/* ---------- Menu list ---------- */
.menu-section { margin-top: 3rem; }
.menu-section__title { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.6rem; }
.menu-section__title h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); white-space: nowrap; }
.menu-section__title .ln { flex: 1; height: 1px; background: var(--line); }
.menu-section__title .ssub { font-style: italic; font-family: 'Fraunces', serif; color: var(--muted); font-size: .95rem; }
.menu-list { display: grid; gap: 1.05rem; }
.menu-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem clamp(2rem, 5vw, 4.5rem); }
.menu-item { display: flex; align-items: baseline; gap: .6rem; }
.menu-item__name { font-family: 'Fraunces', serif; font-size: 1.14rem; font-weight: 500; color: var(--ink); }
.menu-item__lead { flex: 1; border-bottom: 1.5px dotted var(--line); transform: translateY(-3px); min-width: 1.5rem; }
.menu-item__price { font-weight: 600; color: var(--wine); font-variant-numeric: tabular-nums; }
[data-theme="dark"] .menu-item__price { color: var(--brass-2); }
.menu-item__desc { display: block; font-size: .9rem; color: var(--muted); margin-top: .15rem; max-width: 90%; }
.menu-note { margin-top: 1rem; font-style: italic; font-family: 'Fraunces', serif; color: var(--muted); }
.menu-prep { display: flex; flex-wrap: wrap; gap: .5rem .9rem; margin-top: .5rem; }
.menu-prep span { font-size: .9rem; color: var(--ink-2); }
.menu-prep span:not(:last-child)::after { content: "·"; color: var(--brass); margin-left: .9rem; }

/* ---------- Panels / quote ---------- */
.panel { background: var(--bg-2); border: 1px solid var(--line); border-radius: 6px; padding: clamp(2rem, 5vw, 4rem); box-shadow: var(--shadow-sm); }
.quote { text-align: center; max-width: 50rem; margin-inline: auto; }
.quote blockquote { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; font-size: clamp(1.5rem, 3.6vw, 2.6rem); line-height: 1.32; color: var(--ink); }
.quote cite { display: block; margin-top: 1.6rem; font-style: normal; font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; color: var(--brass); font-weight: 600; }

/* ---------- Timeline ---------- */
.timeline { display: grid; gap: 0; margin-top: 3rem; border-left: 2px solid var(--line); padding-left: 0; }
.tl-item { display: grid; grid-template-columns: 7rem 1fr; gap: clamp(1rem,3vw,2.4rem); padding: 1.6rem 0 1.8rem clamp(1.4rem, 3vw, 2.4rem); position: relative; }
.tl-item::before { content:""; position:absolute; left:-7px; top:2.1rem; width:12px; height:12px; background: var(--brass); border-radius:50%; transform: rotate(45deg); box-shadow: 0 0 0 4px var(--bg); }
.tl-year { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.7rem; color: var(--wine); font-weight:500; }
[data-theme="dark"] .tl-year { color: var(--wine-2); }
.tl-item h3 { font-size: 1.3rem; margin-bottom: .4rem; }

/* ---------- Events / CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: 8px; isolation: isolate; }
.cta-band__media { position: absolute; inset: 0; z-index: -1; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__media::after { content:""; position: absolute; inset: 0; background: var(--scrim-2); }
.cta-band__inner { padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem); text-align: center; color: #F7EEE0; }
.cta-band__inner h2 { color: #FBF3E7; font-size: clamp(2rem, 4.6vw, 3.4rem); }
.cta-band__inner h2 em { font-style: italic; color: #F0C97A; }
.cta-band__inner p { color: #E9DCC9; max-width: 40rem; margin: 1.2rem auto 2rem; }

/* ---------- Visit / contact ---------- */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: stretch; }
.info-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 6px; padding: clamp(1.8rem, 4vw, 2.8rem); }
.info-row { display: grid; grid-template-columns: 1.6rem 1fr; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line-2); }
.info-row:last-child { border-bottom: 0; }
.info-row svg { width: 20px; height: 20px; color: var(--brass); margin-top: 3px; }
.info-row h4 { font-family: 'Hanken Grotesk', sans-serif; font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: .25rem; }
.info-row p, .info-row a { font-size: 1.06rem; color: var(--ink); }
.info-row a:hover { color: var(--wine); }
.map-embed { border: 1px solid var(--line); border-radius: 6px; overflow: hidden; min-height: 320px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; filter: saturate(.9); }
[data-theme="dark"] .map-embed iframe { filter: invert(.9) hue-rotate(180deg) saturate(.8) brightness(.9); }

.hours-line { display: flex; justify-content: space-between; padding: .55rem 0; border-bottom: 1px dashed var(--line-2); }
.hours-line:last-child { border-bottom: 0; }
.hours-line .d { color: var(--ink-2); }
.hours-line .h { font-weight: 600; }
.hours-line.closed .h { color: var(--muted); font-style: italic; font-weight: 400; }

/* ---------- Page header (interior pages) ---------- */
.page-hero { position: relative; padding: 12rem 0 4rem; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; z-index:0; background:
   radial-gradient(120% 100% at 50% 0%, var(--bg-3), var(--bg) 70%); }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 400; }
.page-hero h1 em { font-style: italic; color: var(--wine); }
[data-theme="dark"] .page-hero h1 em { color: var(--wine-2); }
.page-hero .lead { margin-top: 1.2rem; max-width: 40rem; }
.crumbs { font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.4rem; }
.crumbs a:hover { color: var(--brass); }

/* ---------- Footer ---------- */
.foot { background: var(--bg-2); border-top: 1px solid var(--line); position: relative; z-index: 1; }
.foot__main { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); padding: clamp(3.5rem, 6vw, 5.5rem) 0 3rem; }
.foot__brandname { font-family: 'Fraunces', serif; font-size: 2.1rem; font-weight: 600; }
.foot__brandname em { font-style: italic; color: var(--wine); }
[data-theme="dark"] .foot__brandname em { color: var(--wine-2); }
.foot p { color: var(--muted); margin-top: .9rem; max-width: 26rem; font-size: .98rem; }
.foot h4 { font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--brass); margin-bottom: 1.1rem; font-family: 'Hanken Grotesk',sans-serif; font-weight: 700; }
.foot__links { display: grid; gap: .7rem; }
.foot__links a { color: var(--ink-2); font-size: .98rem; width: fit-content; }
.foot__links a:hover { color: var(--wine); }
[data-theme="dark"] .foot__links a:hover { color: var(--brass-2); }
.foot__socials { display: flex; gap: .8rem; margin-top: 1.4rem; }
.foot__socials a { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--ink); transition: all .25s ease; }
.foot__socials a:hover { background: var(--wine); border-color: var(--wine); color: #F6E7C8; transform: translateY(-2px); }
.foot__socials svg { width: 18px; height: 18px; }
.foot__bar { border-top: 1px solid var(--line); padding: 1.4rem 0; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; align-items: center; }
.foot__bar p { margin: 0; font-size: .84rem; color: var(--muted); }

/* Omniscient credit — every page, every site */
.foot__credit { border-top: 1px solid var(--line-2); text-align: center; padding: 1.1rem 0 1.5rem; }
.foot__credit p { margin: 0; font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }
.foot__credit a { color: var(--ink-2); font-weight: 600; border-bottom: 1px solid var(--brass); padding-bottom: 1px; transition: color .25s ease; }
.foot__credit a:hover { color: var(--brass); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .nav__links { display: none; }
  .nav__actions .btn { display: none; }
  .nav__burger { display: grid; }
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .badge-est { width: 96px; height: 96px; bottom: -16px; }
  .dish-grid { grid-template-columns: 1fr 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 2rem; }
  .menu-cols { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .foot__main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .dish-grid { grid-template-columns: 1fr; }
  .foot__main { grid-template-columns: 1fr; }
  .tl-item { grid-template-columns: 1fr; gap: .3rem; }
  .hero__cta .btn { flex: 1; justify-content: center; }
}

/* ---------- Pride page ---------- */
.rainbow-band { height: 12px; width: 100%; background: linear-gradient(90deg,#E40303 0 16.66%,#FF8C00 16.66% 33.33%,#FFED00 33.33% 50%,#008026 50% 66.66%,#004DFF 66.66% 83.33%,#732982 83.33% 100%); }
.rainbow-text { background: linear-gradient(95deg,#E40303,#FF8C00,#E6C200,#008026,#004DFF,#732982); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.rainbow-rule { height: 5px; width: 84px; border-radius: 4px; background: linear-gradient(90deg,#E40303,#FF8C00,#FFED00,#008026,#004DFF,#732982); }

.pride-hero { position: relative; min-height: 86svh; display: flex; align-items: center; overflow: hidden; }
.pride-hero__media { position: absolute; inset: 0; z-index: 0; }
.pride-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.pride-hero__media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, var(--scrim) 0%, rgba(20,11,8,.30) 45%, var(--scrim-2) 100%); }
.pride-hero__inner { position: relative; z-index: 2; padding: 9rem 0 4rem; color:#FBF3E7; display:grid; grid-template-columns: 1.3fr .7fr; gap: 2rem; align-items:center; }
.pride-hero h1 { color:#FBF3E7; font-size: clamp(2.8rem,7.5vw,6rem); font-weight:400; letter-spacing:-.02em; text-shadow:0 2px 30px rgba(0,0,0,.4); }
.pride-hero__sub { max-width: 34rem; margin-top:1.3rem; font-size: clamp(1.08rem,1rem+.5vw,1.34rem); color:#EFE3D2; line-height:1.5; text-shadow:0 1px 14px rgba(0,0,0,.4); }
.pride-hero__cta { display:flex; flex-wrap:wrap; gap:.9rem; margin-top:2rem; }
.pride-eyebrow { display:inline-flex; align-items:center; gap:.7rem; font-size:.76rem; font-weight:700; letter-spacing:.22em; text-transform:uppercase; color:#FBF3E7; margin-bottom:1.2rem; }
.pride-eyebrow .rainbow-rule { width:42px; height:4px; }

/* Waving rainbow flag */
.flagwrap { display:flex; justify-content:center; align-items:flex-start; gap:0; }
.flagpole { width:6px; min-height:210px; border-radius:6px; background:linear-gradient(180deg,#E7D6B6,#8A7355); box-shadow:0 6px 20px rgba(0,0,0,.4); position:relative; }
.flagpole::before { content:""; position:absolute; top:-10px; left:-3px; width:12px; height:12px; border-radius:50%; background:#E7D6B6; box-shadow:0 0 12px rgba(231,214,182,.6); }
.flag { width:200px; height:132px; border-radius:2px 6px 6px 2px; overflow:hidden; box-shadow: 0 18px 50px -16px rgba(0,0,0,.6); transform-origin: left center; animation: flagwave 5s ease-in-out infinite; }
.flag .s { height:16.6667%; }
@keyframes flagwave { 0%,100%{ transform: perspective(420px) rotateY(0deg) skewY(0deg);} 25%{ transform: perspective(420px) rotateY(-7deg) skewY(.6deg);} 50%{ transform: perspective(420px) rotateY(0deg) skewY(0deg);} 75%{ transform: perspective(420px) rotateY(7deg) skewY(-.6deg);} }
@media (prefers-reduced-motion: reduce){ .flag{ animation:none; } }

/* Pride event feature */
.pride-event { background: var(--bg-2); border:1px solid var(--line); border-radius:14px; overflow:hidden; box-shadow: var(--shadow); }
.pride-event__grid { display:grid; grid-template-columns: 1.05fr 1fr; }
.pride-event__media { position:relative; min-height:340px; }
.pride-event__media img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.pride-event__body { padding: clamp(1.8rem,4vw,3rem); }
.datechip { display:inline-flex; flex-direction:column; align-items:center; line-height:1; border:1px solid var(--brass); border-radius:10px; overflow:hidden; min-width:84px; }
.datechip .m { background:var(--wine); color:#FBE9D6; font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; font-weight:700; padding:.4rem .8rem; width:100%; text-align:center; }
[data-theme="dark"] .datechip .m { color:#1a0d0a; background: var(--brass); }
.datechip .d { font-family:'Fraunces',serif; font-size:2.2rem; font-weight:600; color:var(--ink); padding:.35rem .8rem .5rem; }
.pride-event__meta { display:flex; flex-wrap:wrap; gap:.6rem 1.6rem; margin:1.1rem 0 1.2rem; }
.pride-event__meta span { display:inline-flex; align-items:center; gap:.5rem; color:var(--ink-2); font-weight:500; }
.pride-event__meta svg { width:18px; height:18px; color:var(--brass); }

/* Pride two-up (catering / parties) */
.pride-two { display:grid; grid-template-columns:1fr 1fr; gap:clamp(1.2rem,2.5vw,2rem); margin-top:3rem; }
.pride-tile { background:var(--card); border:1px solid var(--card-edge); border-radius:12px; overflow:hidden; transition:transform .4s ease, box-shadow .4s ease; display:flex; flex-direction:column; }
.pride-tile:hover { transform:translateY(-5px); box-shadow:var(--shadow); }
.pride-tile__img { aspect-ratio:16/10; overflow:hidden; }
.pride-tile__img img { width:100%; height:100%; object-fit:cover; }
.pride-tile__body { padding:1.6rem 1.7rem 1.8rem; flex:1; display:flex; flex-direction:column; align-items:flex-start; }
.pride-tile__body h3 { font-size:1.5rem; margin:.3rem 0 .5rem; }
.pride-tile__body p { font-size:.98rem; flex:1; }
.pride-tile__body .btn { margin-top:1.2rem; }
@media (max-width:820px){ .pride-hero__inner{ grid-template-columns:1fr; } .flagwrap{ justify-content:flex-start; } .pride-event__grid{ grid-template-columns:1fr; } .pride-event__media{ min-height:240px; } .pride-two{ grid-template-columns:1fr; } }

/* ---------- Inquiry form ---------- */
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: grid; gap: .45rem; }
.field label { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.field input, .field select, .field textarea {
  font-family: 'Hanken Grotesk', sans-serif; font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line); border-radius: 4px; padding: .85rem 1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brass) 22%, transparent); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A9792B' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem; }
.form__ok { display: none; padding: 1.3rem 1.5rem; border: 1px solid var(--brass); border-radius: 5px; background: color-mix(in srgb, var(--brass) 12%, var(--bg)); color: var(--ink); }
.form__ok.show { display: block; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }

/* ---------- Wine / drinks list ---------- */
.house-wine { display:grid; grid-template-columns:1fr 1fr; gap:0; background:var(--bg-2); border:1px solid var(--line); border-radius:10px; overflow:hidden; }
.house-wine > div { padding:1.6rem 1.8rem; }
.house-wine > div:first-child { border-right:1px solid var(--line); }
.house-wine h4 { font-family:'Hanken Grotesk',sans-serif; font-size:.74rem; letter-spacing:.22em; text-transform:uppercase; color:var(--wine); font-weight:700; margin-bottom:.7rem; }
[data-theme="dark"] .house-wine h4 { color:var(--brass-2); }
.house-wine p { margin:0; color:var(--ink); font-family:'Fraunces',serif; font-size:1.12rem; }
.house-wine__price { grid-column:1/-1; border-top:1px solid var(--line); padding:1rem 1.8rem; text-align:center; color:var(--ink-2); font-weight:500; letter-spacing:.02em; }
.house-wine__price b { color:var(--wine); font-weight:700; }
[data-theme="dark"] .house-wine__price b { color:var(--brass-2); }

.winelist { margin-top:1.5rem; }
.winelist__head { display:grid; grid-template-columns:1fr 52px 52px; gap:.4rem 1.3rem; padding:0 0 .55rem; border-bottom:1px solid var(--line); }
.winelist__head span { font-size:.66rem; letter-spacing:.16em; text-transform:uppercase; color:var(--muted); font-weight:700; text-align:right; }
.winelist__head span:first-child { text-align:left; }
.wrow { display:grid; grid-template-columns:1fr 52px 52px; gap:.2rem 1.3rem; align-items:baseline; padding:.72rem 0; border-bottom:1px solid var(--line-2); }
.wrow:last-child { border-bottom:0; }
.wrow .nm { font-family:'Fraunces',serif; font-size:1.12rem; font-weight:500; color:var(--ink); line-height:1.2; }
.wrow .rg { display:block; font-size:.86rem; color:var(--muted); margin-top:.12rem; }
.wrow .pg, .wrow .pb { font-weight:600; font-variant-numeric:tabular-nums; text-align:right; white-space:nowrap; }
.wrow .pg { color:var(--wine); }
[data-theme="dark"] .wrow .pg { color:var(--brass-2); }
.wrow .pb { color:var(--ink-2); }
.wrow .pg.na, .wrow .pb.na { color:var(--muted); font-weight:400; }
@media (max-width:560px){ .house-wine{ grid-template-columns:1fr; } .house-wine > div:first-child{ border-right:0; border-bottom:1px solid var(--line); } }

/* Dessert list */
.dolci { display:grid; grid-template-columns:1fr 1fr; gap:.2rem 2.5rem; margin-top:1.6rem; }
.dolci .d-item { display:flex; align-items:baseline; gap:.6rem; padding:.7rem 0; border-bottom:1px solid var(--line-2); }
.dolci .d-item .nm { font-family:'Fraunces',serif; font-size:1.14rem; color:var(--ink); }
.dolci .d-item .lead { flex:1; border-bottom:1.5px dotted var(--line); transform:translateY(-3px); }
@media (max-width:560px){ .dolci{ grid-template-columns:1fr; } }

/* ---------- Video facade (click-to-load YouTube) ---------- */
.video-embed { position:relative; aspect-ratio:16/9; border-radius:12px; overflow:hidden; cursor:pointer; background:#0c0907; border:1px solid var(--line); box-shadow:var(--shadow); }
.video-embed img { width:100%; height:100%; object-fit:cover; transition:transform .9s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.video-embed:hover img, .video-embed:focus-visible img { transform:scale(1.04); filter:brightness(.82); }
.video-embed::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(8,4,2,.05),rgba(8,4,2,.35)); pointer-events:none; transition:opacity .4s; }
.video-embed.is-playing::after, .video-embed.is-playing .ve-play, .video-embed.is-playing .ve-label { display:none; }
.ve-play { position:absolute; inset:0; display:grid; place-items:center; pointer-events:none; }
.ve-play span { width:84px; height:84px; border-radius:50%; display:grid; place-items:center; background:rgba(110,20,35,.92); border:1.5px solid rgba(246,236,221,.5); box-shadow:0 14px 40px -10px rgba(0,0,0,.7); transition:transform .35s ease, background-color .35s ease; }
.video-embed:hover .ve-play span, .video-embed:focus-visible .ve-play span { transform:scale(1.09); background:var(--wine); }
.ve-play svg { width:30px; height:30px; margin-left:5px; fill:#F8EFE2; }
.ve-label { position:absolute; left:0; bottom:0; z-index:2; display:inline-flex; align-items:center; gap:.6rem; margin:1.1rem; padding:.55rem 1rem; border-radius:100px; background:rgba(12,9,7,.6); -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px); color:#F6ECDD; font-size:.8rem; letter-spacing:.04em; font-weight:600; pointer-events:none; }
.ve-label b { color:#F0C97A; font-weight:700; }
.video-embed iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }

/* QA: house-wine price line fits small screens */
.house-wine__price{ font-size:clamp(.84rem,2.9vw,1rem); }
.house-wine__price .nw{ white-space:nowrap; }
