:root {
  --ink: #15120f;
  --night: #0c0b09;
  --night-2: #14110e;
  --coffee: #2e281f;
  --coffee-2: #3a3328;
  --cream: #f2e7d2;
  --cream-2: #dfd1b8;
  --paper: #eee5d5;
  --paper-2: #e7dcc8;
  --gold: #c7a15a;
  --gold-soft: #e4c88d;
  --muted-dark: #766e61;
  --muted-light: #b9ad9b;
  --line-dark: rgba(242, 231, 210, .13);
  --line-light: rgba(21, 18, 15, .14);
  --max: 1240px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
main section[id] { scroll-margin-top: 100px; }
body {
  margin: 0;
  background: var(--night);
  color: var(--cream);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::selection { background: var(--gold-soft); color: var(--ink); }
body.menu-page { background: #f5efe5; color: var(--ink); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

.container { width: min(var(--max), calc(100% - 64px)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 18px; top: 18px; z-index: 1000; background: var(--cream); color: var(--ink); padding: 10px 14px; }

/* Typography */
.kicker,
.eyebrow {
  margin: 0 0 20px;
  color: var(--gold-soft);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow { display: block; }
.eyebrow::before { content: none !important; display: none !important; }

.section-index {
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: #6d6254;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-index span:first-child { font-family: var(--serif); font-size: 1rem; letter-spacing: .05em; }
.section-index.on-dark { color: #988c7c; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  background: linear-gradient(to bottom, rgba(8, 7, 6, .82), rgba(8, 7, 6, .32), transparent);
  will-change: transform;
  transition: transform .32s ease, background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(11, 10, 8, .88);
  border-bottom: 1px solid rgba(255,255,255,.055);
  backdrop-filter: blur(18px);
}
.site-header.header-hidden { transform: translateY(-110%); }
.site-header.header-visible { transform: translateY(0); }
.nav { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: max-content; }
.brand img { width: 46px; height: auto; object-fit: contain; }
.brand-word { font-family: var(--serif); font-weight: 600; font-size: 1.12rem; line-height: 1; letter-spacing: .2em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 25px; color: #d6cbb8; font-size: .84rem; }
.nav-links a { position: relative; padding: 8px 0; transition: color .2s ease; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 1px; background: var(--gold-soft); transition: right .25s ease; }
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active { color: var(--cream); }
.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 25px; height: 1px; margin: 6px 0; background: var(--cream); }

.btn {
  min-height: 46px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .01em;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-light { background: var(--cream); color: var(--ink); }
.btn-light:hover { background: #fff8ed; }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: #050504; }
.btn-ghost { border-color: rgba(242,231,210,.25); background: rgba(255,255,255,.025); }
.btn-ghost:hover { border-color: rgba(242,231,210,.52); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--cream-2); font-size: .86rem; font-weight: 600; }
.text-link span { color: var(--gold-soft); transition: transform .2s ease; }
.text-link:hover span { transform: translate(2px, -2px); }

/* Hero */
.hero { position: relative; overflow: hidden; background: var(--night); }
.hero::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  left: -380px;
  top: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,161,90,.12), rgba(199,161,90,0) 70%);
  pointer-events: none;
}
.hero-grid {
  min-height: 790px;
  padding-top: 126px;
  padding-bottom: 78px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(410px, .75fr);
  gap: clamp(54px, 7vw, 108px);
  align-items: center;
}
.hero-copy { padding-top: 26px; }
.hero h1 {
  max-width: 780px;
  margin: 0;
  font: 500 clamp(4.2rem, 7.1vw, 7.2rem)/.86 var(--serif);
  letter-spacing: -.055em;
  text-wrap: balance;
}
.hero h1 em { color: var(--gold-soft); font-weight: 500; }
.hero-lead { max-width: 650px; margin: 30px 0 30px; color: #d1c4af; font-size: clamp(1rem, 1.5vw, 1.17rem); }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-typing { min-height: 30px; display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; margin-top: 47px; font-size: .82rem; }
.hero-typing-label { color: #8f8577; }
.hero-typing-word { color: var(--gold-soft); font-weight: 700; }
.typing-caret { width: 1px; height: 1.05em; background: var(--gold-soft); display: inline-block; transform: translateY(2px); animation: caret-blink .82s steps(1) infinite; }
@keyframes caret-blink { 50% { opacity: 0; } }

.hero-visual { position: relative; align-self: stretch; display: flex; align-items: center; justify-content: center; padding: 55px 0 20px; }
.hero-photo { position: relative; width: min(100%, 495px); aspect-ratio: .82; margin: 0; overflow: hidden; background: #191510; }
.hero-photo::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); pointer-events: none; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 54% center; filter: saturate(.82) contrast(1.04) brightness(.78); }
.hero-caption {
  position: absolute;
  right: -12px;
  bottom: 46px;
  width: 192px;
  padding: 18px 18px 17px;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  gap: 4px;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
}
.hero-caption span:last-child { color: #8d6c38; }
.hero-mark { position: absolute; left: -36px; top: 42px; width: 105px; opacity: .92; }
.hero-mark img { width: 100%; }

/* Marquee */
.marquee { overflow: hidden; border-block: 1px solid var(--line-dark); background: #11100e; }
.marquee-track { width: max-content; display: flex; animation: marquee 44s linear infinite; }
.marquee-group { display: flex; align-items: center; flex-shrink: 0; padding: 17px 0; }
.marquee-group span { color: #b9ad9b; font-size: .69rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; white-space: nowrap; }
.marquee-group span::after { content: "✦"; margin-inline: 31px; color: var(--gold); font-size: .65rem; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Sections */
.section { padding: 120px 0; }
.about-section { background: var(--paper); color: var(--ink); }
.about-grid { display: grid; grid-template-columns: 150px minmax(0, 1.1fr) minmax(320px, .68fr); gap: clamp(36px, 5vw, 78px); align-items: start; }
.about-copy h2,
.events-head h2,
.process-head h2,
.menu-teaser h2 {
  margin: 0;
  font: 500 clamp(3rem, 5.2vw, 5.25rem)/.92 var(--serif);
  letter-spacing: -.045em;
  text-wrap: balance;
}
.about-text-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 38px; color: #5e5549; font-size: .95rem; }
.about-text-columns p { margin: 0; }
.about-copy blockquote { margin: 42px 0 0; max-width: 720px; color: #2e281f; font: 500 italic clamp(1.55rem, 2.2vw, 2.1rem)/1.25 var(--serif); }
.about-image { margin: 12px 0 0; }
.about-image img { width: 100%; aspect-ratio: .78; object-fit: cover; }
.about-image figcaption { margin-top: 11px; color: #776c5d; font-size: .7rem; letter-spacing: .05em; }

.experience-section { background: var(--night); position: relative; overflow: hidden; }
.experience-section::after { content: ""; position: absolute; right: -280px; top: 40px; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(199,161,90,.08), rgba(199,161,90,0) 70%); pointer-events: none; }
.experience-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(52px, 8vw, 120px); }
.experience-intro { position: sticky; top: 130px; align-self: start; }
.experience-intro h2 { margin: 24px 0 24px; font: 500 clamp(3rem, 4.6vw, 4.8rem)/.92 var(--serif); letter-spacing: -.04em; }
.experience-intro p { max-width: 470px; margin: 0; color: var(--muted-light); font-size: .94rem; }
.experience-list { border-top: 1px solid var(--line-dark); }
.experience-row { display: grid; grid-template-columns: 66px 1fr; gap: 28px; padding: 33px 0 35px; border-bottom: 1px solid var(--line-dark); }
.experience-number { color: var(--gold); font-family: var(--serif); font-size: 1.08rem; }
.experience-row h3 { margin: 0 0 10px; font: 500 clamp(1.9rem, 2.7vw, 2.65rem)/1 var(--serif); }
.experience-row p { margin: 0; max-width: 640px; color: #aa9e8d; font-size: .92rem; }
.experience-statement { margin-top: 105px; display: grid; grid-template-columns: .82fr 1.18fr; min-height: 430px; background: #191611; position: relative; z-index: 1; }
.statement-image { overflow: hidden; min-height: 430px; }
.statement-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 64%; filter: saturate(.68) brightness(.68); }
.experience-statement p { margin: 0; padding: clamp(44px, 6vw, 82px); align-self: center; font: 500 clamp(2.2rem, 3.7vw, 4.2rem)/1 var(--serif); letter-spacing: -.035em; color: #e2d6c1; }
.experience-statement strong { color: var(--gold-soft); font-weight: 500; }

.events-section { background: var(--paper-2); color: var(--ink); }
.events-layout { display: grid; gap: 64px; }
.events-head { display: grid; grid-template-columns: 150px minmax(0, 1fr) 300px; gap: clamp(34px, 5vw, 70px); align-items: end; }
.events-head p { margin: 0 0 8px; color: #716758; font-size: .9rem; }
.event-showcase { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr); gap: 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.event-stage { margin: 0; position: relative; min-height: 570px; overflow: hidden; background: #2c261e; }
.event-stage img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; filter: saturate(.72) contrast(1.02) brightness(.72); transition: opacity .25s ease, transform .5s ease; }
.event-stage.is-changing img { opacity: .25; transform: scale(1.015); }
.event-stage::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,8,6,.62), transparent 55%); pointer-events: none; }
.event-stage figcaption { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 24px; display: flex; justify-content: space-between; gap: 20px; color: #f0e5d0; font-size: .72rem; letter-spacing: .11em; text-transform: uppercase; }
.event-options { display: flex; flex-direction: column; }
.event-option { flex: 1; width: 100%; display: grid; grid-template-columns: 45px 1fr; grid-template-areas: "n title" "n sub"; column-gap: 14px; align-content: center; padding: 23px 28px; background: transparent; color: var(--ink); border: 0; border-bottom: 1px solid var(--line-light); text-align: left; cursor: pointer; transition: background .2s ease, padding-left .2s ease; }
.event-option:last-child { border-bottom: 0; }
.event-option:hover,
.event-option.active { background: rgba(255,255,255,.34); padding-left: 34px; }
.event-option > span { grid-area: n; color: #8c795d; font-family: var(--serif); font-size: 1rem; }
.event-option strong { grid-area: title; font: 600 1.45rem/1 var(--serif); }
.event-option small { grid-area: sub; margin-top: 5px; color: #73695b; font-size: .72rem; }
.event-detail { display: grid; grid-template-columns: 150px minmax(0, 730px); gap: 52px; align-items: baseline; }
.event-detail > span { color: #807363; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.event-detail p { margin: 0; font: 500 clamp(1.6rem, 2.6vw, 2.7rem)/1.12 var(--serif); color: #342e26; }

.process-section { background: #13110e; }
.process-head { display: grid; grid-template-columns: 150px 1fr; gap: 52px; align-items: end; }
.process-head h2 { color: var(--cream); max-width: 840px; }
.process-rail { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 72px; border-top: 1px solid var(--line-dark); }
.process-step { padding: 27px 28px 20px 0; min-height: 245px; border-right: 1px solid var(--line-dark); }
.process-step + .process-step { padding-left: 28px; }
.process-step:last-child { border-right: 0; }
.process-step > span { color: var(--gold); font-family: var(--serif); }
.process-step h3 { margin: 52px 0 12px; font: 500 1.7rem/1.05 var(--serif); }
.process-step p { margin: 0; color: #a99e8d; font-size: .82rem; }

.menu-teaser { background: var(--paper); color: var(--ink); }
.menu-teaser-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 90px; align-items: end; }
.menu-teaser h2 { margin-top: 22px; max-width: 800px; }
.menu-teaser p { max-width: 670px; margin: 28px 0 0; color: #695f52; }
.menu-teaser-action { min-height: 290px; background: #d9ccb6; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; padding: 34px; position: relative; overflow: hidden; }
.menu-teaser-mark { position: absolute; width: 165px; right: 24px; top: 26px; opacity: .27; filter: brightness(.25); }
.menu-teaser-action small { margin-top: 12px; color: #756a5c; font-size: .69rem; }

.contact-section { background: var(--night); padding-top: 92px; }
.contact-panel { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 520px; background: #211c16; }
.contact-image { overflow: hidden; }
.contact-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) brightness(.72); }
.contact-copy { padding: clamp(44px, 6vw, 82px); align-self: center; }
.contact-copy h2 { margin: 0 0 20px; max-width: 620px; font: 500 clamp(3.2rem, 5.4vw, 5.7rem)/.88 var(--serif); letter-spacing: -.045em; }
.contact-copy > p:not(.kicker) { max-width: 580px; color: #c2b5a2; font-size: .92rem; }
.contact-actions { margin-top: 30px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

/* Footer */
.site-footer { background: #080706; border-top: 1px solid rgba(255,255,255,.06); padding: 52px 0 26px; }
.footer-layout { display: flex; align-items: flex-start; justify-content: space-between; gap: 70px; }
.footer-brand { max-width: 420px; }
.footer-brand p { margin: 20px 0 0; color: #8d8478; font-size: .82rem; }
.footer-nav { display: flex; gap: 68px; }
.footer-nav div { min-width: 130px; }
.footer-nav span { display: block; margin-bottom: 13px; color: #80786e; font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.footer-nav a { display: block; margin: 7px 0; color: #c2b8a8; font-size: .82rem; }
.footer-nav a:hover { color: var(--gold-soft); }
.footer-bottom { margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.06); display: flex; justify-content: space-between; gap: 20px; color: #67615a; font-size: .7rem; }

/* Interactions */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.back-to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 48px; height: 48px; display: grid; place-items: center;
  border: 1px solid rgba(242,231,210,.22); border-radius: 50%;
  background: rgba(14,12,10,.86); color: var(--cream); backdrop-filter: blur(14px);
  cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease, background .2s ease;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--cream); color: var(--ink); }
.back-to-top svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.back-to-top-light { background: rgba(245,239,229,.94); color: var(--ink); border-color: rgba(21,18,15,.15); }

/* Menu page */
.menu-header { position: sticky; top: 0; z-index: 50; background: rgba(245,239,229,.91); border-bottom: 1px solid #ddd2c1; backdrop-filter: blur(16px); }
.menu-nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.menu-brand { display: flex; align-items: center; gap: 12px; }
.menu-brand img { width: 42px; height: auto; }
.menu-brand span { font: 600 .97rem/1 var(--serif); letter-spacing: .18em; text-transform: uppercase; }
.menu-back { font-size: .79rem; font-weight: 700; }
.menu-back:hover { color: #8e6a2e; }
.menu-hero { padding: 84px 0 50px; background: var(--coffee); color: var(--cream); }
.menu-hero h1 { margin: 0; font: 500 clamp(3.7rem, 8vw, 7rem)/.86 var(--serif); letter-spacing: -.05em; }
.menu-hero p { max-width: 650px; margin: 23px 0 0; color: #d1c4af; font-size: .9rem; }
.menu-toolbar { padding-top: 29px; display: flex; gap: 9px; flex-wrap: wrap; }
.menu-filter { border: 1px solid rgba(242,231,210,.22); background: transparent; color: var(--cream); padding: 9px 14px; border-radius: 999px; cursor: pointer; font-size: .78rem; }
.menu-filter.active { background: var(--cream); color: var(--ink); }
.menu-content { padding: 72px 0 96px; }
.menu-section { margin-bottom: 64px; }
.menu-section[hidden] { display: none; }
.menu-section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-bottom: 18px; border-bottom: 1px solid #d7cdbd; }
.menu-section h2 { margin: 0; font: 600 clamp(2.2rem, 4vw, 3.5rem)/.95 var(--serif); }
.menu-section-head p { margin: 0; color: #73695d; font-size: .78rem; }
.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 14px; padding: 22px 0; border-bottom: 1px solid #ded4c4; }
.menu-item h3 { margin: 0 0 5px; font: 600 1.18rem/1.1 var(--serif); }
.menu-item p { margin: 0; color: #766d61; font-size: .78rem; }
.menu-price { white-space: nowrap; font-size: .8rem; font-weight: 800; }
.menu-badge { display: inline-block; margin-left: 8px; color: #87642b; font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.menu-empty { padding: 40px 0; color: #6f675b; }
.menu-note { margin-top: 40px; padding: 22px; background: #e8dfd2; color: #4b453c; font-size: .8rem; }
.menu-site-cta { background: var(--ink); color: var(--cream); padding: 72px 0; }
.menu-site-cta-inner { display: flex; align-items: end; justify-content: space-between; gap: 44px; }
.menu-site-cta h2 { margin: 0; font: 500 clamp(2.5rem, 4vw, 4rem)/.92 var(--serif); }
.menu-site-cta p { max-width: 590px; color: #b9ad9d; font-size: .82rem; }

@media (max-width: 1080px) {
  .nav-links { gap: 18px; }
  .nav-links a:nth-child(4) { display: none; }
  .hero-grid { grid-template-columns: 1fr .72fr; gap: 50px; }
  .about-grid { grid-template-columns: 110px 1fr .7fr; gap: 42px; }
  .events-head { grid-template-columns: 110px 1fr; }
  .events-head p { grid-column: 2; }
  .event-showcase { grid-template-columns: 1.05fr .95fr; }
  .process-step { padding-right: 20px; }
  .process-step + .process-step { padding-left: 20px; }
}

@media (max-width: 900px) {
  .container { width: min(var(--max), calc(100% - 40px)); }
  .nav-links {
    position: fixed; inset: 78px 0 auto; display: flex; flex-direction: column; align-items: flex-start;
    gap: 8px; padding: 24px 22px 30px; background: rgba(10,9,8,.98); border-bottom: 1px solid rgba(255,255,255,.07);
    transform: translateY(-120%); opacity: 0; pointer-events: none; transition: .25s ease;
  }
  .nav-links a:nth-child(4) { display: block; }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-toggle { display: block; }
  .nav-menu-link { display: none; }
  .hero-grid { min-height: auto; padding-top: 132px; grid-template-columns: 1fr; }
  .hero-copy { max-width: 790px; }
  .hero-visual { padding: 8px 0 10px; justify-content: flex-start; }
  .hero-photo { width: min(78vw, 560px); aspect-ratio: 1.05; }
  .hero-caption { right: auto; left: min(62vw, 420px); bottom: 30px; }
  .hero-mark { left: auto; right: 4%; top: -6px; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-grid > .section-index { grid-column: 1 / -1; }
  .about-copy { grid-column: 1; }
  .about-image { grid-column: 2; }
  .about-text-columns { grid-template-columns: 1fr; }
  .experience-layout { grid-template-columns: 1fr; }
  .experience-intro { position: static; }
  .experience-statement { grid-template-columns: 1fr; }
  .statement-image { min-height: 330px; max-height: 430px; }
  .events-head { grid-template-columns: 1fr; }
  .events-head p { grid-column: auto; }
  .event-showcase { grid-template-columns: 1fr; }
  .event-stage { min-height: 470px; }
  .event-option { min-height: 105px; }
  .event-detail { grid-template-columns: 1fr; gap: 12px; }
  .process-head { grid-template-columns: 1fr; }
  .process-rail { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(3), .process-step:nth-child(4) { border-top: 1px solid var(--line-dark); }
  .menu-teaser-grid { grid-template-columns: 1fr; gap: 46px; }
  .contact-panel { grid-template-columns: 1fr; }
  .contact-image { min-height: 360px; }
  .footer-layout { flex-direction: column; }
  .menu-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  main section[id] { scroll-margin-top: 84px; }
  .container { width: min(100% - 28px, var(--max)); }
  .nav { min-height: 74px; }
  .brand img { width: 39px; }
  .brand-word { font-size: .98rem; letter-spacing: .16em; }
  .site-header .btn-light { min-height: 40px; padding-inline: 14px; font-size: .74rem; }
  .nav-links { inset: 74px 0 auto; }
  .hero-grid { padding-top: 112px; padding-bottom: 58px; gap: 44px; }
  .hero h1 { font-size: clamp(3.8rem, 17.5vw, 5.6rem); }
  .hero-lead { font-size: .98rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .hero-typing { margin-top: 34px; font-size: .78rem; }
  .hero-photo { width: 100%; aspect-ratio: .95; }
  .hero-caption { left: auto; right: -1px; bottom: 16px; width: 175px; }
  .hero-mark { display: none; }
  .marquee-group span::after { margin-inline: 24px; }
  .section { padding: 86px 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-copy, .about-image, .about-grid > .section-index { grid-column: auto; }
  .about-copy h2, .events-head h2, .process-head h2, .menu-teaser h2 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .about-image { margin-top: 10px; }
  .about-copy blockquote { font-size: 1.55rem; }
  .experience-intro h2 { font-size: clamp(2.9rem, 13vw, 4.15rem); }
  .experience-row { grid-template-columns: 44px 1fr; gap: 14px; padding: 26px 0; }
  .experience-row h3 { font-size: 1.9rem; }
  .experience-statement { margin-top: 64px; }
  .statement-image { min-height: 260px; }
  .experience-statement p { padding: 34px 28px 38px; font-size: 2.25rem; }
  .events-layout { gap: 45px; }
  .event-stage { min-height: 350px; }
  .event-stage figcaption { left: 18px; right: 18px; bottom: 17px; }
  .event-option { grid-template-columns: 36px 1fr; padding: 18px 16px; min-height: 94px; }
  .event-option:hover, .event-option.active { padding-left: 21px; }
  .event-option strong { font-size: 1.25rem; }
  .event-option small { font-size: .66rem; }
  .process-rail { grid-template-columns: 1fr; }
  .process-step, .process-step + .process-step { padding: 24px 0 28px; border-right: 0; border-top: 1px solid var(--line-dark); min-height: auto; }
  .process-step:first-child { border-top: 0; }
  .process-step h3 { margin-top: 27px; }
  .menu-teaser-action { min-height: 240px; padding: 28px; }
  .contact-image { min-height: 280px; }
  .contact-copy { padding: 38px 26px 44px; }
  .contact-copy h2 { font-size: clamp(3rem, 13.5vw, 4.25rem); }
  .footer-nav { flex-direction: column; gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .back-to-top { right: 15px; bottom: 15px; width: 46px; height: 46px; }
  .menu-nav { min-height: 68px; }
  .menu-brand img { width: 36px; }
  .menu-brand span { font-size: .86rem; }
  .menu-back { font-size: .72rem; }
  .menu-hero { padding: 60px 0 40px; }
  .menu-toolbar { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .menu-filter { flex: 0 0 auto; }
  .menu-content { padding: 50px 0 72px; }
  .menu-section-head { display: block; }
  .menu-section-head p { margin-top: 8px; }
  .menu-site-cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 380px) {
  /* Em telas muito estreitas, prioriza marca + navegação sem comprimir o cabeçalho. */
  .site-header .btn-light { display: none; }
  .nav-actions { gap: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .site-header, .reveal, .back-to-top, .event-stage img { transition: none; }
  .reveal { opacity: 1; transform: none; }
  .typing-caret { animation: none; }
  .marquee-track { animation: none; }
}
