/* ===========================================================
   Christian's Restaurant — shared styles
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600&display=swap');

@font-face {
  font-family: 'Elegant';
  src: url('fonts/Elegant.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #be393b;
  --red-dark: #a52f31;
  --red-deep: #8a2628;
  --cream: #efe4ce;
  --cream-light: #f6efe0;
  --cream-card: #e6d8bb;
  --ink: #2b2422;
  --muted: #6f635c;
  --white: #ffffff;
  --serif: 'Playfair Display', Georgia, serif;
  --display: 'Elegant', 'Playfair Display', Georgia, serif;
  --sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --maxw: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; margin: 0; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.serif { font-family: var(--serif); }

.tracked {
  letter-spacing: .32em;
  text-transform: uppercase;
}

/* ---------- top strip ---------- */
.topbar {
  background: #f3f3f3;
  color: #7a7a7a;
  font-size: 11px;
  letter-spacing: .05em;
  padding: 6px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; }

/* ---------- header / nav ---------- */
.site-header {
  background: var(--red);
  color: var(--cream-light);
  position: sticky;
  top: 0;
  z-index: 60;
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 62px;
}
.hamburger {
  background: none; border: none; color: var(--cream-light);
  font-size: 22px; cursor: pointer; line-height: 1; padding: 4px;
}
.brand {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-light);
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.brand-logo { height: 34px; width: auto; display: block; }
.nav-spacer { flex: 1; }
.nav-links {
  display: flex; gap: 26px; align-items: center;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
}
.nav-links a { transition: opacity .2s; }
.nav-links a:hover { opacity: .7; }
.btn-reserve {
  border: 1px solid var(--cream-light);
  background: var(--cream-light); color: var(--red);
  padding: 9px 16px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  transition: opacity .2s;
}
.btn-reserve:hover { opacity: .85; }

/* ---------- slide-out menu ---------- */
.menu-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.4);
  opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 80;
}
.menu-overlay.open { opacity: 1; pointer-events: auto; }
.side-menu {
  position: fixed; top: 0; left: 0; height: 100%; width: 320px; max-width: 84vw;
  background: var(--red); color: var(--cream-light);
  transform: translateX(-100%); transition: transform .3s ease;
  z-index: 90; padding: 30px 34px; box-shadow: 2px 0 24px rgba(0,0,0,.2);
}
.side-menu.open { transform: translateX(0); }
.side-menu .close {
  background: none; border: none; color: var(--cream-light);
  font-size: 26px; cursor: pointer; margin-bottom: 30px;
}
.side-menu nav a {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-light);
  padding: 11px 0;
  border-bottom: 1px solid rgba(246,239,224,.25);
}
.side-menu nav a:hover { opacity: .7; padding-left: 6px; transition: padding .2s, opacity .2s; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  padding: 13px 30px; cursor: pointer; border: 1px solid transparent;
  transition: all .2s; text-align: center;
}
.btn-cream { background: var(--cream); color: var(--red); }
.btn-cream:hover { background: var(--cream-light); }
.btn-outline-red { background: transparent; border-color: var(--red); color: var(--red); }
.btn-outline-red:hover { background: var(--red); color: var(--cream-light); }
.btn-red { background: var(--red); color: var(--cream-light); }
.btn-red:hover { background: var(--red-dark); }
.btn-outline-cream { background: transparent; border: 1px solid var(--cream-light); color: var(--cream-light); }
.btn-outline-cream:hover { background: var(--cream-light); color: var(--red); }

/* ---------- hero ---------- */
.hero {
  position: relative; height: 78vh; min-height: 520px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--cream-light); overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(30,18,16,.35), rgba(30,18,16,.55));
}
.hero img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.hero-inner { position: relative; z-index: 2; padding: 0 20px; }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(46px, 8vw, 104px);
  font-weight: 500; line-height: 1; letter-spacing: .02em;
  text-shadow: 0 2px 30px rgba(0,0,0,.45);
}
.hero-sub {
  margin-top: 14px; letter-spacing: .5em; text-transform: uppercase;
  font-size: clamp(13px, 2vw, 20px); padding-left: .5em;
}
.hero-est { margin-top: 10px; font-style: italic; font-family: var(--serif); letter-spacing: .2em; opacity: .9; }

/* page banner (shorter hero) */
.banner {
  position: relative; height: 300px; display: flex; align-items: center; justify-content: center;
  color: var(--cream-light); overflow: hidden; text-align: center;
}
.banner::after { content:""; position:absolute; inset:0; background: rgba(30,18,16,.45); }
.banner img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.banner h1 { position: relative; z-index: 2; font-size: clamp(34px,6vw,60px); letter-spacing: .28em; text-transform: uppercase; }

/* ---------- info bar (location / hours) ---------- */
.infobar { background: var(--red); color: var(--cream-light); padding: 40px 0; }
.infobar .wrap { display: grid; grid-template-columns: 1fr 1fr auto; gap: 40px; align-items: start; }
.infobar h4 { letter-spacing: .28em; text-transform: uppercase; font-size: 13px; margin-bottom: 14px; font-family: var(--sans); font-weight: 600; }
.infobar p { margin: 0 0 4px; font-size: 13px; letter-spacing: .04em; }
.infobar .col-actions { display: flex; flex-direction: column; gap: 10px; min-width: 210px; }
.infobar .mini { font-size: 11px; letter-spacing: .12em; }
.socials { display: flex; gap: 12px; margin-top: 8px; }
.socials a {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--cream-light);
  display: grid; place-items: center; transition: all .2s;
}
.socials a:hover { background: var(--cream-light); color: var(--red); }
.socials svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- sections ---------- */
section { padding: 84px 0; }
.section-cream { background: var(--cream); }
.section-cream-light { background: var(--cream-light); }
.section-red { background: var(--red); color: var(--cream-light); }
.center { text-align: center; }
.section-title {
  font-family: var(--serif); letter-spacing: .3em; text-transform: uppercase;
  font-size: clamp(24px, 4vw, 40px); color: var(--red);
}
.section-red .section-title { color: var(--cream-light); }
.eyebrow { color: var(--red); letter-spacing: .3em; text-transform: uppercase; font-size: 12px; font-weight: 600; }

/* press quote */
.quote-row { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.quote-row.rev { direction: rtl; }
.quote-row.rev > * { direction: ltr; }
.quote-img { height: 300px; object-fit: cover; width: 100%; }
.quote-text h3 { font-style: italic; font-size: clamp(22px,3vw,32px); color: var(--red); line-height: 1.3; margin-bottom: 8px; }
.quote-text .src { font-family: var(--serif); font-style: italic; color: var(--muted); margin-bottom: 18px; }
.quote-text p { color: var(--muted); font-size: 14px; }

/* menu CTA blocks */
.menu-cta { display: grid; gap: 18px; max-width: 460px; margin: 34px auto 0; }
.menu-cta a {
  display: block; background: var(--cream); color: var(--red);
  font-family: var(--serif); font-size: 22px; letter-spacing: .2em; text-transform: uppercase;
  padding: 22px; text-align: center; transition: all .2s;
}
.section-red .menu-cta a:hover { background: var(--cream-light); transform: translateY(-2px); }

/* two feature cards */
.feature-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.feature-card { position: relative; overflow: hidden; min-height: 320px; display: flex; align-items: flex-end; }
.feature-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.feature-card:hover img { transform: scale(1.05); }
.feature-card .cap {
  position: relative; z-index: 2; width: 100%; background: rgba(190,57,59,.92);
  color: var(--cream-light); padding: 22px; text-align: center;
}
.feature-card .cap h3 { letter-spacing: .24em; text-transform: uppercase; font-size: 18px; margin-bottom: 8px; }
.feature-card .cap p { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; margin: 0; opacity: .9; }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.gallery img { height: 210px; width: 100%; object-fit: cover; }
.gallery .tall { grid-row: span 2; height: 426px; }

/* contact / form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info h2 { color: var(--red); letter-spacing: .28em; text-transform: uppercase; font-size: 30px; margin-bottom: 24px; }
.contact-line { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; color: var(--muted); font-size: 14px; letter-spacing: .06em; }
.contact-line .ic { width: 34px; height: 34px; border-radius: 50%; background: var(--red); color: var(--cream-light); display: grid; place-items: center; flex: none; }
.contact-line svg { width: 15px; height: 15px; fill: currentColor; }
.form input, .form textarea {
  width: 100%; background: var(--cream-card); border: none; padding: 14px 16px;
  margin-bottom: 14px; font-family: var(--sans); font-size: 13px; color: var(--ink);
  letter-spacing: .08em;
}
.form textarea { min-height: 120px; resize: vertical; }
.form input::placeholder, .form textarea::placeholder { color: var(--muted); letter-spacing: .12em; text-transform: uppercase; font-size: 11px; }
.form .btn-red { float: right; }
.mapbox { width: 100%; height: 320px; border: 0; filter: grayscale(1) contrast(1.05); }

/* newsletter */
.newsletter { text-align: center; }
.newsletter h2 { color: var(--red); letter-spacing: .34em; text-transform: uppercase; font-size: clamp(24px,3.5vw,34px); margin-bottom: 26px; }
.news-form { display: flex; justify-content: center; gap: 0; max-width: 520px; margin: 0 auto 26px; }
.news-form input { flex: 1; border: 1px solid var(--red); background: transparent; padding: 13px 16px; letter-spacing: .1em; }
.news-form button { border: none; }
.handle { color: var(--red); letter-spacing: .2em; text-transform: uppercase; font-size: 13px; margin-bottom: 18px; }

/* press / history lane */
.press { padding: 90px 0 70px; background: var(--cream); overflow: hidden; }
.press .press-head { text-align: center; max-width: 640px; margin: 0 auto 10px; padding: 0 24px; }
.press .press-head h2 { color: var(--red); letter-spacing: .28em; text-transform: uppercase; font-size: 26px; }
.press .press-head p { color: var(--muted); font-size: 14px; margin-top: 12px; font-style: italic; }
.press-lane {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x proximity;
  padding: 34px clamp(24px, 6vw, 90px) 26px; -webkit-overflow-scrolling: touch;
}
.press-lane::-webkit-scrollbar { height: 6px; }
.press-lane::-webkit-scrollbar-thumb { background: rgba(190,57,59,.35); border-radius: 3px; }
.press-card { flex: 0 0 auto; width: 210px; scroll-snap-align: start; text-align: center; }
.press-card a { display: block; }
.press-card .frame {
  height: 280px; background: #fff; padding: 10px; box-shadow: 0 10px 28px rgba(0,0,0,.12);
  display: flex; align-items: center; justify-content: center; overflow: hidden; transition: transform .3s, box-shadow .3s;
}
.press-card a:hover .frame { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(0,0,0,.18); }
.press-card .frame img { max-width: 100%; max-height: 100%; object-fit: contain; }
.press-card .yr { color: var(--red); font-weight: 600; letter-spacing: .18em; font-size: 12px; margin-top: 16px; }
.press-card .pub { font-family: var(--serif); font-size: 16px; color: var(--ink); margin-top: 3px; }
.press-hint { text-align: center; color: var(--muted); letter-spacing: .2em; text-transform: uppercase; font-size: 10px; margin-top: 6px; }
.press-card .pages-note { color: var(--muted); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; margin-top: 4px; }

/* press article lightbox */
.press-modal { position: fixed; inset: 0; z-index: 200; background: rgba(20,12,10,.92); opacity: 0; pointer-events: none; transition: opacity .3s; overflow-y: auto; }
.press-modal.open { opacity: 1; pointer-events: auto; }
.press-modal .pm-bar { position: sticky; top: 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 24px; background: rgba(0,0,0,.5); color: var(--cream-light); z-index: 2; }
.press-modal .pm-title { font-family: var(--display); font-size: clamp(16px,2.4vw,22px); letter-spacing: .05em; }
.press-modal .pm-close { background: none; border: none; color: var(--cream-light); font-size: 30px; cursor: pointer; line-height: 1; padding: 0 6px; }
.press-pages { max-width: 840px; margin: 0 auto; padding: 26px 16px 70px; display: flex; flex-direction: column; gap: 22px; }
.press-pages img { width: 100%; background: #fff; box-shadow: 0 12px 44px rgba(0,0,0,.5); }

/* full-width rotating photo marquee (no gaps) */
.photo-marquee { overflow: hidden; width: 100%; background: var(--ink); }
.photo-marquee .pm-track { display: flex; width: max-content; animation: marquee 55s linear infinite; }
.photo-marquee .pm-item { position: relative; flex: 0 0 auto; }
.photo-marquee .pm-item img { height: clamp(190px, 22vw, 320px); width: auto; display: block; }
.photo-marquee .pm-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(0,0,0,.55)); pointer-events: none; }
.photo-marquee .pm-label { position: absolute; left: 18px; bottom: 16px; z-index: 2; color: var(--cream-light); letter-spacing: .16em; text-transform: uppercase; font-size: 13px; text-shadow: 0 1px 10px rgba(0,0,0,.7); }
.photo-marquee:hover .pm-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* cellar hero */
.cellar-hero { position: relative; height: 82vh; min-height: 540px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; color: var(--cream-light); }
.cellar-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cellar-hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(rgba(20,12,10,.4), rgba(20,12,10,.55)); }
.cellar-hero .ch-text { position: relative; z-index: 2; padding: 0 24px; }
.cellar-hero h1 { font-family: var(--display); font-weight: 400; font-size: clamp(40px, 7vw, 88px); line-height: 1.08; letter-spacing: .01em; text-shadow: 0 2px 30px rgba(0,0,0,.5); }
.cellar-hero h1 em { font-style: italic; color: #cf6f66; }

/* instagram feed */
.ig-section { text-align: center; padding: 90px 0 20px; }
.ig-handle {
  display: inline-block; margin-top: 10px; color: var(--red);
  font-family: var(--display); letter-spacing: .12em; text-transform: lowercase;
  font-size: clamp(26px, 4vw, 44px); transition: opacity .2s;
}
.ig-handle:hover { opacity: .65; }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 5px; margin-top: 40px; }
.ig-grid a { position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; }
.ig-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s, opacity .3s; }
.ig-grid a::after {
  content: ""; position: absolute; inset: 0; background: rgba(190,57,59,0);
  transition: background .3s;
}
.ig-grid a:hover::after { background: rgba(190,57,59,.35); }
.ig-grid a:hover img { transform: scale(1.07); }
@media (max-width: 700px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }

/* gift cards band */
.giftband { background: var(--red); color: var(--cream-light); text-align: center; padding: 70px 0; }
.giftband h2 { letter-spacing: .34em; text-transform: uppercase; font-size: clamp(28px,4vw,44px); margin-bottom: 26px; }

/* ---------- footer ---------- */
.site-footer { background: var(--red); color: var(--cream-light); padding: 42px 0 30px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 42px; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; }
.footer-links a:hover { opacity: .7; }
.footer-sub { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; margin-top: 22px; opacity: .82; }
.footer-sub span { opacity: .5; }

/* ---------- menu page ---------- */
.menu-layout { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; }
.menu-tabs { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 90px; }
.menu-tabs button {
  background: var(--cream-card); border: none; color: var(--red);
  font-family: var(--serif); font-size: 18px; letter-spacing: .12em; text-transform: uppercase;
  padding: 16px; cursor: pointer; transition: all .2s; text-align: center;
}
.menu-tabs button.active, .menu-tabs button:hover { background: var(--red); color: var(--cream-light); }
.menu-panel { border: 2px solid var(--red); background: var(--cream-light); padding: 46px; }
.menu-panel:not(.active) { display: none; }
.menu-panel h2 { text-align: center; color: var(--red); letter-spacing: .24em; text-transform: uppercase; font-size: 30px; margin-bottom: 30px; }
.menu-cat { text-align: center; color: var(--red); font-family: var(--serif); font-style: italic; letter-spacing: .1em; font-size: 22px; margin: 30px 0 16px; position: relative; }
.menu-item { padding: 12px 0; border-bottom: 1px dotted rgba(190,57,59,.25); font-size: 14px; }
.menu-item .mi-head { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; }
.menu-item .nm { letter-spacing: .05em; font-weight: 500; color: var(--ink); text-transform: uppercase; font-size: 13px; }
.menu-item .pr { color: var(--red); font-weight: 500; white-space: nowrap; }
.menu-item .desc { color: var(--muted); font-size: 13px; margin-top: 4px; font-style: italic; max-width: 90%; }
.menu-intro { text-align: center; margin-bottom: 10px; }
.menu-intro .kicker { color: var(--red); letter-spacing: .3em; text-transform: uppercase; font-size: 12px; font-weight: 600; }
.menu-intro h2 { color: var(--red); font-size: clamp(28px,4vw,42px); letter-spacing: .06em; margin: 8px 0; }
.menu-intro p { color: var(--muted); font-style: italic; font-family: var(--serif); }
.disclaimer { text-align: center; font-size: 11px; color: var(--muted); font-style: italic; margin-top: 30px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* location select */
.locselect { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 20px 0 40px; }
.locselect select { background: var(--cream-card); border: 1px solid var(--red); padding: 10px 16px; color: var(--red); letter-spacing: .1em; font-family: var(--sans); text-transform: uppercase; font-size: 12px; }

/* locations cards */
.loc-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 820px; margin: 0 auto; }
.loc-card { text-align: center; }
.loc-card .imgwrap { position: relative; overflow: hidden; }
.loc-card img { height: 260px; width: 100%; object-fit: cover; filter: grayscale(1); transition: filter .3s, transform .5s; }
.loc-card:hover img { filter: grayscale(0); transform: scale(1.03); }
.loc-card h3 { color: var(--red); letter-spacing: .2em; text-transform: uppercase; font-size: 22px; margin-top: 18px; }
.loc-card .sub { color: var(--muted); letter-spacing: .2em; text-transform: uppercase; font-size: 11px; margin-top: 4px; }
.soon { position: absolute; inset: 0; background: rgba(190,57,59,.78); color: var(--cream-light); display: grid; place-items: center; letter-spacing: .24em; text-transform: uppercase; font-size: 14px; }

/* order platforms */
.platforms { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; max-width: 820px; margin: 0 auto; }
.platform { background: var(--cream-light); border: 1px solid var(--cream-card); padding: 44px 20px; text-align: center; transition: transform .2s, box-shadow .2s; }
.platform:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.platform .pname { font-weight: 600; font-size: 22px; letter-spacing: .02em; }
.platform .psub { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* about */
.about-block { max-width: 820px; margin: 0 auto; text-align: center; }
.about-block h2 { color: var(--red); letter-spacing: .28em; text-transform: uppercase; font-size: 26px; margin-bottom: 18px; }
.about-block p { color: var(--muted); font-size: 15px; }
.section-red .about-block h2 { color: var(--cream-light); }
.section-red .about-block p { color: var(--cream-light); }
.section-red .eyebrow-line { color: var(--cream-light); opacity: .85; }
.section-red .display-heading { color: var(--cream-light); }
.section-red .lede { color: var(--cream-light); }
.section-red .learn { color: var(--cream-light); border-color: rgba(246,239,224,.7); }
.section-red .contact-info h2 { color: var(--cream-light); }
.section-red .contact-line { color: var(--cream-light); }
.section-red .contact-line .ic { background: var(--cream-light); color: var(--red); }
/* red buttons blend on red sections — flip to cream */
.section-red .btn-red { background: var(--cream-light); color: var(--red); border-color: var(--cream-light); }
.section-red .btn-red:hover { background: #fff; }
.founder { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; margin-top: 30px; text-align: left; }
.founder .founder-copy { order: 1; }
.founder > img { order: 2; width: 280px; height: 280px; border-radius: 50%; object-fit: cover; position: sticky; top: 90px; margin: 0 auto; }
.founder p { margin-bottom: 14px; }
.founder .signature { margin-top: 8px; }
.founder .signature img { max-width: 170px; height: auto; }
.team { display: grid; grid-template-columns: repeat(3,1fr); gap: 34px; max-width: 900px; margin: 0 auto; }
.team-member { text-align: center; }
.team-member img { width: 230px; height: 230px; border-radius: 50%; object-fit: cover; filter: grayscale(1); margin: 0 auto; }
.team-member .monogram { width: 230px; height: 230px !important; border-radius: 50%; margin: 0 auto; }
.team-member h4 { color: var(--red); letter-spacing: .16em; text-transform: uppercase; margin-top: 16px; font-size: 16px; }
.team-member .role { color: var(--muted); letter-spacing: .2em; text-transform: uppercase; font-size: 11px; margin-top: 4px; }

/* private events rows */
.pe-row { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; margin-bottom: 60px; }
.pe-row img { aspect-ratio: 1 / 1; width: 100%; object-fit: cover; }
.pe-row h3 { color: var(--red); letter-spacing: .2em; text-transform: uppercase; font-size: 22px; margin-bottom: 14px; }
.pe-row p { color: var(--muted); font-size: 14px; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav-links .hide-sm { display: none; }
  .infobar .wrap { grid-template-columns: 1fr; gap: 24px; }
  .quote-row, .contact-grid, .founder, .pe-row, .menu-layout { grid-template-columns: 1fr; }
  .quote-row.rev { direction: ltr; }
  .feature-cards, .loc-cards, .platforms, .team { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2,1fr); }
  .gallery .tall { grid-row: span 1; height: 210px; }
  .menu-tabs { flex-direction: row; flex-wrap: wrap; position: static; }
  .menu-tabs button { flex: 1; }
  .founder > img { order: -1; position: static; margin: 0 auto 8px; }
  section { padding: 60px 0; }
}
@media (max-width: 560px) {
  .team, .platforms { grid-template-columns: 1fr; }
  .menu-panel { padding: 24px; }
}

/* ===========================================================
   MILOS-STYLE EDITORIAL LAYER
   airy, minimal, image-forward — red kept as accent
   =========================================================== */

/* full-screen hero video */
.hero-cinema {
  position: relative; height: 100vh; min-height: 560px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center; color: #fff;
}
.hero-cinema img.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-cinema video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.hero-cinema::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.45));
}
.hero-cinema .hero-content { position: relative; z-index: 3; padding: 0 24px; }
.hero-logo { max-width: min(460px, 74vw); width: 100%; margin: 0 auto 22px; display: block; filter: drop-shadow(0 4px 24px rgba(0,0,0,.4)); }
.hero-logo-text {
  font-family: var(--serif); font-size: clamp(44px,8vw,96px); letter-spacing: .14em;
  text-transform: uppercase; color: var(--cream-light); text-shadow: 0 2px 30px rgba(0,0,0,.5);
}
.hero-tagline {
  margin-top: 14px; letter-spacing: .42em; text-transform: uppercase;
  font-size: clamp(11px,1.6vw,15px); font-weight: 400; opacity: .95; padding-left: .42em;
}
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3;
  color: #fff; letter-spacing: .3em; text-transform: uppercase; font-size: 10px; opacity: .85;
}
.hero-scroll::after { content: ""; display: block; width: 1px; height: 34px; background: rgba(255,255,255,.7); margin: 10px auto 0; }

/* editorial section + typography */
.editorial { padding: 110px 0; }
.editorial-narrow { max-width: 760px; margin: 0 auto; text-align: center; padding: 0 24px; }
.eyebrow-line {
  color: var(--red); letter-spacing: .34em; text-transform: uppercase;
  font-size: 12px; font-weight: 500; margin-bottom: 22px;
}
.display-heading {
  font-family: var(--display); font-weight: 400; line-height: 1.12;
  font-size: clamp(32px, 4.8vw, 58px); letter-spacing: .015em; color: var(--ink);
}
.hero-logo-text, .banner h1, .section-title, .feature-block .fb-inner h3,
.menu-intro h2, .brand { font-family: var(--display); }
.display-heading.on-red { color: var(--cream-light); }
.display-heading.one-line { white-space: nowrap; font-size: clamp(28px, 5vw, 52px); }
@media (max-width: 680px) { .display-heading.one-line { white-space: normal; font-size: clamp(26px, 8vw, 40px); } }
.attribution { font-family: var(--serif); font-style: italic; color: var(--muted); margin-top: 16px; font-size: 18px; letter-spacing: .04em; }
.lede { font-size: 17px; line-height: 1.9; color: var(--muted); margin-top: 26px; }

/* thin underlined "learn more" link */
.learn {
  display: inline-block; margin-top: 22px; color: var(--red);
  letter-spacing: .24em; text-transform: uppercase; font-size: 12px; font-weight: 500;
  padding-bottom: 4px; border-bottom: 1px solid var(--red); transition: opacity .2s;
}
.learn.light { color: #fff; border-color: rgba(255,255,255,.7); }
.learn:hover { opacity: .6; }

/* full-bleed feature block: image with centered overlay text */
.feature-block {
  position: relative; height: 78vh; min-height: 460px; display: flex;
  align-items: center; justify-content: center; text-align: center; color: #fff; overflow: hidden;
}
.feature-block img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 1.2s ease; }
.feature-block:hover img { transform: scale(1.04); }
.feature-block::after { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(0,0,0,.34); }
.feature-block .fb-inner { position: relative; z-index: 2; padding: 0 24px; }
.feature-block .fb-inner h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(26px,3.6vw,44px); letter-spacing: .03em; }
.feature-block .fb-inner .eyebrow-line { color: #fff; opacity: .9; }

/* alternating image/text editorial rows */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.split .split-img { height: 88vh; min-height: 520px; }
.split .split-img img { width: 100%; height: 100%; object-fit: cover; }
.split .split-text { padding: 60px clamp(30px,6vw,90px); }
.split .split-text .display-heading { font-size: clamp(26px,3.4vw,42px); }
.split.rev .split-img { order: 2; }

/* horizontal image strip (mosaic) */
.strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.strip img { width: 100%; height: 46vh; min-height: 320px; object-fit: cover; }

/* ---- kitchen: scrolling photo roll + phrase ---- */
.kitchen { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.roll { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; height: 92vh; min-height: 620px; overflow: hidden; padding: 12px; background: var(--ink); }
.roll-col { display: flex; flex-direction: column; gap: 12px; will-change: transform; }
.roll-col img { width: 100%; aspect-ratio: 1 / 1.04; object-fit: cover; }
.roll-col.up { animation: rollUp 34s linear infinite; }
.roll-col.down { animation: rollDown 34s linear infinite; }
.roll:hover .roll-col { animation-play-state: paused; }
@keyframes rollUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes rollDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }
.kitchen-text { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 40px clamp(24px, 5vw, 80px); }
.kitchen-text .display-heading em { font-style: italic; }
.btn-dark {
  display: inline-block; background: var(--red); color: var(--cream-light);
  letter-spacing: .22em; text-transform: uppercase; font-size: 12px; font-weight: 500;
  padding: 17px 32px; margin-top: 32px; transition: background .2s, letter-spacing .2s;
}
.btn-dark:hover { background: var(--red-dark); letter-spacing: .26em; }
@media (max-width: 900px) {
  .kitchen { grid-template-columns: 1fr; }
  .kitchen-text { padding: 60px 24px; order: 2; }
  .roll { height: 70vh; min-height: 460px; order: 1; }
}

/* minimal centered newsletter (light) */
.news-light { background: var(--cream-light); text-align: center; padding: 100px 0; }
.news-light .display-heading { margin-bottom: 18px; }
.news-light .lede { max-width: 560px; margin: 0 auto 30px; }
.news-light .news-form input { border-color: var(--muted); }

@media (max-width: 900px) {
  .split, .strip { grid-template-columns: 1fr; }
  .split .split-img { height: 60vh; min-height: 360px; }
  .split.rev .split-img { order: 0; }
  .strip img { height: 40vh; }
  .editorial { padding: 72px 0; }
  .feature-block { height: 62vh; }
}

/* ===========================================================
   MOBILE POLISH — scale everything down on phones
   =========================================================== */
@media (max-width: 600px) {
  section { padding: 46px 0; }
  .wrap { padding: 0 18px; }

  /* header */
  .site-header .nav { height: 54px; }
  .brand-logo { height: 26px; }

  /* heroes */
  .hero-cinema { height: 84vh; min-height: 440px; }
  .hero-logo { max-width: 76vw; margin-bottom: 16px; }
  .hero-tagline { letter-spacing: .3em; font-size: 10px; }
  .cellar-hero { height: 82vh; min-height: 500px; }
  .cellar-hero h1 { font-size: clamp(32px, 12vw, 50px); }
  .banner { height: 40vh; min-height: 260px; }
  .banner h1 { font-size: clamp(24px, 8vw, 38px); letter-spacing: .16em; }

  /* typography */
  .display-heading { font-size: clamp(24px, 7.5vw, 34px); }
  .display-heading.one-line { white-space: normal; font-size: clamp(22px, 7.5vw, 30px); }
  .section-title { font-size: 20px; letter-spacing: .2em; }
  .lede { font-size: 14px; line-height: 1.7; margin-top: 16px; }
  .eyebrow-line { font-size: 10px; letter-spacing: .24em; margin-bottom: 14px; }
  .learn { font-size: 11px; margin-top: 16px; }
  .btn { padding: 11px 22px; font-size: 11px; }
  .btn-dark { padding: 14px 24px; margin-top: 24px; }

  /* editorial / sections */
  .editorial { padding: 46px 0; }

  /* kitchen roll */
  .roll { height: 56vh; min-height: 360px; gap: 8px; padding: 8px; }
  .kitchen-text { padding: 40px 20px; }

  /* feature + splits */
  .feature-block { height: 50vh; min-height: 320px; }
  .feature-block .fb-inner h3 { font-size: clamp(24px, 7.5vw, 32px); }
  .strip img { height: 32vh; min-height: 220px; }
  .split .split-img { min-height: 300px; height: auto; aspect-ratio: 1 / 1; }
  .split .split-text { padding: 38px 22px; }

  /* menu */
  .menu-panel { padding: 22px 16px; }
  .menu-panel h2 { font-size: 21px; }
  .menu-tabs { gap: 8px; }
  .menu-tabs button { font-size: 13px; padding: 12px 6px; letter-spacing: .06em; }
  .menu-cat { font-size: 18px; }
  .menu-item .nm { font-size: 12px; }
  .menu-item .desc { font-size: 12px; }
  .menu-item .pr { font-size: 13px; }

  /* pe rows — image always above text on mobile */
  .pe-row { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
  .pe-row img { order: -1; }
  .pe-row h3 { font-size: 19px; }
  .pe-row p { font-size: 13px; }

  /* instagram + marquee */
  .ig-section { padding: 60px 0 14px; }
  .ig-handle { font-size: clamp(20px, 7.5vw, 28px); }
  .ig-grid { gap: 3px; }
  .photo-marquee .pm-item img { height: 180px; }
  .photo-marquee .pm-label { font-size: 11px; left: 12px; bottom: 12px; letter-spacing: .1em; }

  /* press lane */
  .press { padding: 60px 0 50px; }
  .press-card { width: 158px; }
  .press-card .frame { height: 214px; }
  .press-card .pub { font-size: 14px; }
  .press-modal .press-pages { padding: 20px 12px 50px; }

  /* founder / team */
  .founder { gap: 28px; }
  .founder > img { width: 220px; height: 220px; position: static; }
  .founder-copy p { font-size: 14px; }
  .team-member img { width: 220px; height: 220px; }
  .team-member .monogram { width: 220px; height: 220px !important; }

  /* newsletter form stacks */
  .news-form { flex-direction: column; gap: 10px; max-width: 340px; }
  .news-form input, .news-form button { width: 100%; }

  /* footer */
  .footer-links { gap: 18px 22px; font-size: 11px; }
  .footer-sub { gap: 10px; font-size: 9px; }

  /* contact form */
  .mapbox { height: 260px; }
}

/* home hours/location stack on small screens (inline-grid override) */
@media (max-width: 600px) {
  .section-red .wrap[style*="grid-template-columns:1fr 1fr"],
  .section-red .wrap[style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; gap: 34px !important; }
}

/* ===========================================================
   PROFESSIONAL ELEVATION LAYER
   Refines typography, motion, imagery & consistency.
   Brand tokens (colors, fonts, logo, name) are UNCHANGED —
   every value below reuses the existing --red / --cream / font vars.
   =========================================================== */

/* --- global typographic refinement --- */
body {
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4,
.display-heading, .section-title, .hero-title, .cellar-hero h1,
.hero-logo-text, .menu-intro h2, .menu-panel h2 {
  text-wrap: balance;
  font-feature-settings: "kern" 1, "liga" 1, "dlig" 1;
}
.lede, .founder p, .about-block p, .quote-text p, .pe-row p,
.menu-item .desc, .press .press-head p {
  text-wrap: pretty;
}
/* tighten the reading measure on long body copy for an editorial feel */
.founder .founder-copy p { max-width: 62ch; }

/* refined selection + focus states (accessibility) */
::selection { background: var(--red); color: var(--cream-light); }
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 1px;
}
.site-header :focus-visible,
.side-menu :focus-visible,
.section-red :focus-visible,
.hero-cinema :focus-visible { outline-color: var(--cream-light); }

/* thin refined scrollbar (desktop) */
@media (hover: hover) and (pointer: fine) {
  html { scrollbar-width: thin; scrollbar-color: rgba(190,57,59,.5) transparent; }
}

/* --- sticky header polish: subtle shrink + lift on scroll --- */
.site-header {
  transition: box-shadow .35s ease, background-color .35s ease;
  will-change: box-shadow;
}
.site-header .nav { transition: height .35s cubic-bezier(.2,.6,.2,1); }
.site-header .brand-logo { transition: height .35s cubic-bezier(.2,.6,.2,1); }
.site-header.scrolled {
  background: var(--red-dark);
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
}
.site-header.scrolled .nav { height: 54px; }
.site-header.scrolled .brand-logo { height: 28px; }

/* --- buttons: smoother easing, gentle lift, real depth --- */
.btn, .btn-dark, .btn-reserve, .menu-cta a, .platform, .learn,
.nav-links a, .feature-card img, .loc-card img, .ig-grid img,
.press-card .frame, .feature-block img, .split-img img {
  transition-timing-function: cubic-bezier(.2,.6,.2,1);
}
.btn, .btn-reserve, .btn-dark {
  transition-property: background-color, color, box-shadow, transform, letter-spacing;
  transition-duration: .3s;
}
.btn:hover, .btn-reserve:hover, .btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(138,38,40,.28);
}
.btn:active, .btn-reserve:active, .btn-dark:active { transform: translateY(0); }
/* cream buttons cast a softer neutral shadow */
.btn-cream:hover, .section-red .btn-red:hover { box-shadow: 0 10px 26px rgba(0,0,0,.22); }

/* --- animated underline for the "learn more" links --- */
.learn {
  position: relative; border-bottom-color: transparent; overflow: hidden;
}
.learn::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.2,.6,.2,1);
}
.learn:hover { opacity: 1; }
.learn:hover::after { transform: scaleX(1); }

/* nav link hover underline */
.nav-links a:not(.btn-reserve) { position: relative; }
.nav-links a:not(.btn-reserve)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: center;
  transition: transform .35s cubic-bezier(.2,.6,.2,1);
}
.nav-links a:not(.btn-reserve):hover { opacity: 1; }
.nav-links a:not(.btn-reserve):hover::after { transform: scaleX(1); }

/* --- imagery: richer hover on interactive images --- */
.feature-card img, .feature-block img { transition-duration: 1.1s; }
.loc-card img, .ig-grid img { transition-property: transform, filter, opacity; transition-duration: .7s; }
.feature-card:hover img { transform: scale(1.06); }
.platform, .menu-panel { transition: transform .3s cubic-bezier(.2,.6,.2,1), box-shadow .3s cubic-bezier(.2,.6,.2,1); }
.menu-panel { box-shadow: 0 18px 50px rgba(138,38,40,.06); }

/* softer, deeper card depth on the press frames */
.press-card .frame { box-shadow: 0 8px 22px rgba(43,36,34,.12); }
.press-card a:hover .frame { box-shadow: 0 20px 44px rgba(43,36,34,.20); }

/* --- scroll-reveal (added via JS; degrades gracefully) --- */
.reveal { opacity: 0; transform: translateY(26px); }
.reveal-in {
  opacity: 1; transform: none;
  transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1);
}

/* gentle fade-up for hero content on load */
@keyframes heroRise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero-cinema .hero-content,
.cellar-hero .ch-text { animation: heroRise 1.1s cubic-bezier(.2,.6,.2,1) both; }

/* --- respect reduced-motion & ensure content is always visible --- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important;
      transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .photo-marquee .pm-track, .roll-col { animation: none !important; }
}
/* safety net: if JS is disabled, nothing stays hidden */
.no-js .reveal { opacity: 1 !important; transform: none !important; }

/* ===========================================================
   BOLD REDESIGN LAYER
   - Headings unified to the front-page display font (Elegant)
   - Larger editorial type scale, section-header accent rules
   - Reworked 2-column menu with a horizontal category nav
   Brand tokens (colors, logo, name, font FAMILIES) unchanged.
   =========================================================== */

/* ---- 1. headings share the homepage display font ---- */
h1, h2, h3 { font-family: var(--display); letter-spacing: .02em; }
.menu-panel h2, .about-block h2, .contact-info h2, .pe-row h3, .loc-card h3,
.press .press-head h2, .newsletter h2, .giftband h2, .quote-text h3,
.team-member h4, .platform .pname, .menu-intro h2, .section-title,
.contact-info h2, .infobar h4 {
  font-family: var(--display);
}
/* keep functional labels in the sans face for legibility */
.nav-links, .footer-links, .footer-sub, .btn, .btn-reserve, .btn-dark,
.eyebrow, .eyebrow-line, .menu-item .nm, .menu-tabs button,
.press-card .yr, .press-card .pages-note, .team-member .role,
.loc-card .sub, .platform .psub, .infobar p, .contact-line, .hero-tagline {
  font-family: var(--sans);
}
/* Playfair italic stays for accent lines (matches homepage "Served with soul") */
.menu-item .desc, .menu-cat, .attribution, .menu-intro p,
.cellar-hero h1 em, .kitchen-text .display-heading em { font-family: var(--serif); }

/* ---- 2. bolder editorial type scale ---- */
.display-heading { font-size: clamp(36px, 5.4vw, 66px); letter-spacing: .01em; }
.editorial { padding: 128px 0; }
section { padding: 96px 0; }
.eyebrow-line { font-size: 13px; letter-spacing: .4em; margin-bottom: 26px; }

/* ---- 3. editorial section-header treatment (accent rule) ---- */
.menu-panel h2, .about-block h2, .contact-info h2, .press .press-head h2,
.newsletter h2, .menu-intro h2 {
  font-size: clamp(30px, 4.4vw, 50px);
  letter-spacing: .03em;
  line-height: 1.1;
}
.menu-panel h2::after, .about-block h2::after, .press .press-head h2::after,
.newsletter h2::after {
  content: ""; display: block; width: 56px; height: 2px;
  background: currentColor; opacity: .55; margin: 20px auto 0;
}
.section-red .about-block h2::after { background: var(--cream-light); }

/* ---- 4. redesigned MENU: horizontal nav + 2-column editorial flow ---- */
.menu-layout { grid-template-columns: 1fr; gap: 0; }
.menu-tabs {
  flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 10px;
  position: sticky; top: 62px; z-index: 40;
  background: rgba(255,255,255,.94); backdrop-filter: blur(6px);
  padding: 18px 0; margin: 0 0 26px; border-bottom: 1px solid var(--cream-card);
}
.menu-tabs button {
  flex: 0 0 auto; background: transparent; color: var(--muted);
  font-size: 13px; letter-spacing: .16em; padding: 10px 20px;
  border: 1px solid transparent; border-radius: 2px;
}
.menu-tabs button.active, .menu-tabs button:hover {
  background: var(--red); color: var(--cream-light);
}
.menu-panel { border: none; background: transparent; padding: 10px 0 30px; box-shadow: none; }
.menu-panel.active {
  display: grid; grid-template-columns: 1fr 1fr; column-gap: 60px; row-gap: 0;
}
.menu-panel > h2, .menu-panel > .menu-cat, .menu-panel > p,
.menu-panel > .disclaimer { grid-column: 1 / -1; }
.menu-panel h2 { margin-bottom: 26px; }
.menu-item { break-inside: avoid; padding: 15px 0; }
.menu-item .nm { font-size: 14px; letter-spacing: .08em; }
/* decorative flanked category label */
.menu-cat {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  font-size: 24px; margin: 34px 0 18px;
}
.menu-cat::before, .menu-cat::after {
  content: ""; height: 1px; flex: 1; max-width: 90px;
  background: rgba(190,57,59,.35);
}
@media (max-width: 760px) {
  .menu-panel.active { grid-template-columns: 1fr; column-gap: 0; }
  .menu-tabs { top: 54px; padding: 12px 0; gap: 7px; }
  .menu-tabs button { padding: 9px 14px; font-size: 12px; letter-spacing: .1em; }
}

/* ---- 5. bolder buttons ---- */
.btn { padding: 15px 34px; letter-spacing: .2em; }
.btn-dark { padding: 18px 38px; }

/* ---- 6. richer info/contact headings on red ---- */
.section-red .contact-info h2, .infobar h4 { letter-spacing: .04em; }

/* ---- menu redesign refinements ---- */
.menu-tabs { top: 54px; }
.menu-panel.active { padding-top: 22px; }
.menu-panel h2 {
  scroll-margin-top: 130px;
  font-size: clamp(28px, 3.6vw, 44px);
}
/* keep the big section title from colliding with the sticky nav on load */
.menu-layout { scroll-margin-top: 120px; }
