:root {
  --yellow: #ffd60a;
  --black: #0f0f0f;
  --paper: #f1eee6;
  --paper-2: #e7e2d6;
  --white: #ffffff;
  --muted: #b8b5ad;
  --line-dark: rgba(15,15,15,.18);
  --line-light: rgba(255,255,255,.18);
  --sans: 'DM Sans', Arial, sans-serif;
  --display: 'Anton', Impact, sans-serif;
  --shell: min(1420px, calc(100vw - 64px));
  --header-h: 92px;
  --ease: cubic-bezier(.2,.75,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body { margin: 0; background: var(--black); color: var(--white); font-family: var(--sans); overflow-x: hidden; }
body.menu-open, body.modal-open, body.is-loading { overflow: hidden; }
img, video { display: block; width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--yellow); color: var(--black); }

.skip-link {
  position: fixed; z-index: 9999; left: 16px; top: 12px; transform: translateY(-160%);
  background: var(--yellow); color: var(--black); padding: 10px 14px; font-weight: 700;
  transition: transform .2s ease;
}
.skip-link:focus { transform: none; }

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9990; opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E");
}

.shell { width: var(--shell); margin-inline: auto; }
.section { position: relative; padding: clamp(92px, 10vw, 160px) 0; }
.section--paper { background: var(--paper); color: var(--black); }
.section--black { background: var(--black); color: var(--white); }
.section--yellow { background: var(--yellow); color: var(--black); }

.eyebrow {
  margin: 0 0 18px; font-size: 11px; line-height: 1; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow--yellow { color: var(--yellow); }

.button {
  min-height: 56px; display: inline-flex; align-items: center; justify-content: space-between; gap: 32px;
  padding: 0 20px; border: 1px solid transparent; background: transparent; color: inherit;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
  transition: transform .28s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
}
.button span { font-size: 18px; line-height: 1; }
.button--yellow { background: var(--yellow); color: var(--black); }
.button--black { background: var(--black); color: var(--white); }
.button--ghost { border-color: rgba(15,15,15,.4); color: var(--black); }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-button:focus-visible, .inline-link:focus-visible, .header-quote:focus-visible, .header-menu-link:focus-visible, .desktop-nav a:focus-visible, .menu-button:focus-visible { outline: 2px solid var(--yellow); outline-offset: 4px; }

.inline-link {
  display: inline-flex; align-items: center; gap: 12px; border-bottom: 1px solid currentColor; padding-bottom: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.inline-link span { transition: transform .25s var(--ease); }
.inline-link:hover span { transform: translate(3px, 3px); }
.inline-link--light { color: var(--white); }

/* Loader */
.loader {
  position: fixed; inset: 0; z-index: 10000; display: grid; place-items: center; background: var(--black);
  transition: opacity .5s ease, visibility .5s ease;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__brand { width: min(360px, 74vw); }
.loader__brand img { width: 190px; max-width: 55vw; margin-bottom: 28px; }
.loader__bar { height: 1px; background: rgba(255,255,255,.25); overflow: hidden; }
.loader__bar i { display: block; height: 100%; background: var(--yellow); transform: scaleX(0); transform-origin: 0 50%; }
.loader__meta { margin-top: 12px; display: flex; justify-content: space-between; font-size: 9px; letter-spacing: .15em; color: rgba(255,255,255,.64); }
.loader__meta b { color: var(--yellow); font-weight: 600; }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 5000; height: var(--header-h); color: var(--white);
  transition: background .35s ease, transform .35s var(--ease), height .35s var(--ease), border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { background: rgba(15,15,15,.94); border-color: rgba(255,255,255,.12); backdrop-filter: blur(12px); --header-h: 76px; }
.site-header.is-hidden:not(.menu-visible) { transform: translateY(-105%); }
.site-header__inner { height: 100%; display: grid; grid-template-columns: 180px 1fr auto; align-items: center; gap: 24px; }
.brand img { width: 132px; height: auto; }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: clamp(28px, 3.5vw, 60px); }
.desktop-nav a { position: relative; display: flex; align-items: baseline; gap: 7px; padding-block: 12px; font-size: 12px; font-weight: 700; letter-spacing: .06em; }
.desktop-nav a small { font-size: 8px; font-weight: 600; color: rgba(255,255,255,.48); }
.desktop-nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 6px; height: 1px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-menu-link { padding: 12px 8px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.header-quote { min-height: 46px; display: inline-flex; align-items: center; gap: 22px; padding: 0 17px; background: var(--yellow); color: var(--black); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.header-quote span { font-size: 14px; }
.menu-button { display: none; width: 48px; height: 48px; padding: 0; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.04); cursor: pointer; position: relative; }
.menu-button span { position: absolute; left: 13px; right: 13px; height: 1px; background: currentColor; transition: transform .25s var(--ease), top .25s var(--ease); }
.menu-button span:first-child { top: 19px; }
.menu-button span:last-child { top: 28px; }
.menu-button[aria-expanded='true'] span:first-child { top: 23px; transform: rotate(45deg); }
.menu-button[aria-expanded='true'] span:last-child { top: 23px; transform: rotate(-45deg); }
.scroll-progress { position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; overflow: hidden; }
.scroll-progress i { display: block; width: 100%; height: 100%; background: var(--yellow); transform: scaleX(0); transform-origin: 0 50%; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 4900; padding: calc(var(--header-h) + 36px) 5vw 34px; background: var(--black); color: var(--white);
  visibility: hidden; opacity: 0; transform: translateY(-10px); pointer-events: none;
  transition: opacity .3s ease, transform .35s var(--ease), visibility .3s;
}
.mobile-menu.is-open { visibility: visible; opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu__meta { display: flex; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--line-light); color: rgba(255,255,255,.5); font-size: 9px; letter-spacing: .14em; }
.mobile-menu > a:not(.mobile-menu__quote) { display: grid; grid-template-columns: 42px 1fr; align-items: baseline; min-height: 68px; padding: 16px 0 10px; border-bottom: 1px solid var(--line-light); font-family: var(--display); font-size: clamp(32px, 11vw, 54px); line-height: 1; }
.mobile-menu > a span { font-family: var(--sans); font-size: 9px; color: rgba(255,255,255,.42); }
.mobile-menu__quote { margin-top: 24px; min-height: 56px; display: flex; align-items: center; justify-content: space-between; background: var(--yellow); color: var(--black); padding: 0 18px; font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.mobile-menu__links { display: flex; gap: 24px; margin-top: 22px; font-size: 11px; }

/* Hero */
.hero { position: relative; min-height: 100svh; overflow: hidden; background: var(--black); }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 54%; transform: scale(1.035); will-change: transform; }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,15,15,.55) 0%, rgba(15,15,15,.14) 32%, rgba(15,15,15,.28) 58%, rgba(15,15,15,.86) 100%), linear-gradient(90deg, rgba(15,15,15,.58), transparent 55%); }
.hero__content { position: relative; z-index: 2; min-height: 100svh; padding-top: calc(var(--header-h) + 24px); padding-bottom: 34px; display: grid; grid-template-rows: auto 1fr auto; }
.hero__topline { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; padding: 16px 0 15px; border-top: 1px solid rgba(255,255,255,.28); border-bottom: 1px solid rgba(255,255,255,.18); font-size: 9px; font-weight: 600; letter-spacing: .15em; color: rgba(255,255,255,.7); }
.hero__topline span:nth-child(2) { text-align: center; }
.hero__topline span:last-child { text-align: right; }
.hero__headline { align-self: end; max-width: min(100%, 1180px); padding-bottom: clamp(34px, 4vw, 60px); }
.hero__eyebrow { margin: 0 0 18px 4px; font-size: 11px; font-weight: 700; letter-spacing: .18em; color: rgba(255,255,255,.82); }
.hero h1 { margin: 0; font-family: var(--display); font-weight: 400; text-transform: uppercase; line-height: .79; letter-spacing: -.025em; }
.hero__word { display: block; width: max-content; max-width: 100%; white-space: nowrap; will-change: transform; }
.hero__word--white { font-size: clamp(92px, 12.3vw, 205px); color: var(--white); }
.hero__word--yellow { font-size: clamp(98px, 13.8vw, 230px); color: var(--yellow); margin-top: .04em; }
.hero__bottom { display: grid; grid-template-columns: minmax(280px, 560px) 1fr; align-items: end; gap: 32px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.25); }
.hero__bottom > p { margin: 0; max-width: 560px; font-size: clamp(15px, 1.5vw, 22px); line-height: 1.35; color: rgba(255,255,255,.88); }
.hero__actions { justify-self: end; display: flex; align-items: center; gap: 26px; }
.text-button { min-height: 44px; border: 0; background: transparent; display: inline-flex; align-items: center; gap: 14px; font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; cursor: pointer; }
.text-button span { font-size: 12px; }
.hero__rail { position: absolute; z-index: 2; right: 18px; top: 50%; transform: translateY(-30%) rotate(90deg); transform-origin: center; display: flex; align-items: center; gap: 14px; font-size: 8px; letter-spacing: .16em; color: rgba(255,255,255,.6); }
.hero__rail i { display: block; width: 42px; height: 1px; background: currentColor; }

/* Ticker */
.ticker { overflow: hidden; background: var(--yellow); color: var(--black); border-block: 1px solid var(--black); }
.ticker__track { width: max-content; display: flex; align-items: center; gap: 28px; padding: 12px 0; animation: ticker 24s linear infinite; }
.ticker__track span { font-family: var(--display); font-size: 20px; letter-spacing: .015em; }
.ticker__track i { font-style: normal; font-size: 11px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Section intro */
.section-intro, .product__intro { display: grid; grid-template-columns: 130px 1.2fr .7fr; gap: clamp(28px, 4vw, 72px); align-items: start; }
.section-index { display: flex; align-items: center; gap: 14px; padding-top: 8px; font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.section-index b { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid currentColor; border-radius: 50%; font-weight: 600; }
.section-index--light { color: rgba(255,255,255,.78); }
.section-intro h2, .product__intro h2, .locations__intro h2, .history__copy h2, .quote__title, .closing h2 {
  margin: 0; font-family: var(--display); font-weight: 400; font-size: clamp(58px, 6.7vw, 118px); line-height: .88; text-transform: uppercase; letter-spacing: -.02em;
}
.section-intro h2 em, .product__intro h2 em, .locations__intro h2 em, .history__copy h2 em, .quote__title em, .closing h2 em { font-style: normal; color: var(--yellow); }
.section-intro__lead { align-self: end; margin: 0 0 8px; max-width: 440px; font-size: 17px; line-height: 1.55; }

/* Events */
.events { padding-bottom: 110px; }
.experience { display: grid; grid-template-columns: minmax(360px, .85fr) 1.15fr; gap: clamp(40px, 7vw, 110px); margin-top: clamp(70px, 8vw, 120px); align-items: start; }
.experience__media { position: sticky; top: calc(var(--header-h) + 28px); height: min(75vh, 760px); min-height: 560px; overflow: hidden; background: var(--black); }
.experience__media video { width: 100%; height: 100%; object-fit: cover; }
.experience__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(15,15,15,.62)); pointer-events: none; }
.experience__play { position: absolute; z-index: 2; left: 18px; bottom: 18px; min-width: 150px; min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 1px solid rgba(255,255,255,.38); background: rgba(15,15,15,.66); color: var(--white); backdrop-filter: blur(8px); padding: 0 16px; font-size: 10px; letter-spacing: .1em; cursor: pointer; }
.experience__play b { color: var(--yellow); font-weight: 600; }
.experience__meta { position: absolute; z-index: 2; left: 18px; right: 18px; top: 18px; display: flex; justify-content: space-between; font-size: 8px; letter-spacing: .14em; color: rgba(255,255,255,.7); }
.experience__story { min-width: 0; }
.experience__sticky { position: sticky; top: calc(var(--header-h) + 36px); padding-bottom: 50px; }
.experience__big { margin: 0 0 26px; font-family: var(--display); font-size: clamp(72px, 8vw, 132px); line-height: .85; text-transform: uppercase; }
.experience__copy { margin: 0 0 26px; max-width: 600px; font-size: 16px; line-height: 1.6; }
.experience__steps { margin-top: 70vh; }
.event-step { min-height: 50vh; display: grid; grid-template-columns: 56px 1fr; gap: 24px; align-content: start; padding: 32px 0; border-top: 1px solid var(--line-dark); opacity: .34; transition: opacity .35s ease; }
.event-step.is-active { opacity: 1; }
.event-step > span { font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.event-step h3 { margin: -5px 0 12px; font-family: var(--display); font-size: clamp(34px, 4vw, 62px); font-weight: 400; line-height: 1; }
.event-step p { margin: 0; max-width: 480px; font-size: 15px; line-height: 1.55; }

.event-gallery { margin-top: clamp(70px, 8vw, 120px); display: grid; grid-template-columns: 1.4fr .72fr .72fr; gap: 16px; align-items: end; }
.event-gallery figure { margin: 0; position: relative; overflow: hidden; background: #ddd; }
.event-gallery__main { aspect-ratio: 1.15 / 1; }
.event-gallery__side { aspect-ratio: .78 / 1; }
.event-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .6s ease; filter: saturate(.92) contrast(1.03); }
.event-gallery figure:hover img { transform: scale(1.025); filter: saturate(1.05) contrast(1.04); }
.event-gallery figcaption { position: absolute; left: 14px; right: 14px; bottom: 14px; display: flex; justify-content: space-between; gap: 20px; padding: 11px 12px; background: rgba(15,15,15,.88); color: var(--white); font-size: 9px; font-weight: 700; letter-spacing: .1em; }
.event-gallery figcaption span { color: var(--yellow); }

/* Quote */
.quote { padding-top: 120px; padding-bottom: 130px; }
.quote__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(44px, 7vw, 110px); align-items: start; }
.quote__copy { position: sticky; top: calc(var(--header-h) + 34px); }
.quote__copy .section-index { margin-bottom: 42px; }
.quote__title { font-size: clamp(62px, 7vw, 112px); }
.quote__lead { margin: 30px 0 0; max-width: 520px; font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.72); }
.quote__proof { margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; color: rgba(255,255,255,.48); font-size: 9px; letter-spacing: .12em; }
.quote__proof i { color: var(--yellow); font-style: normal; }
.quote__photo { margin: 48px 0 0; width: min(100%, 420px); aspect-ratio: 1.65 / 1; position: relative; overflow: hidden; }
.quote__photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) contrast(1.08); }
.quote__photo figcaption { position: absolute; left: 12px; bottom: 12px; padding: 8px 10px; background: var(--black); color: var(--yellow); font-size: 8px; letter-spacing: .12em; }

.event-form { padding: clamp(24px, 3.5vw, 48px); background: var(--paper); color: var(--black); color-scheme: light; display: grid; grid-template-columns: 1fr 1fr; gap: 24px 18px; border-top: 5px solid var(--yellow); }
.event-form__head { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line-dark); font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.field { display: grid; gap: 9px; }
.field--wide { grid-column: 1 / -1; }
.field > span:first-child { font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; min-width: 0; border: 0; border-bottom: 1px solid rgba(15,15,15,.55); border-radius: 0; background: transparent; color: var(--black); padding: 11px 0 13px; outline: 0; font-size: 15px; }
.field textarea { resize: vertical; min-height: 96px; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--black) 50%), linear-gradient(135deg, var(--black) 50%, transparent 50%); background-position: calc(100% - 12px) 50%, calc(100% - 7px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 28px; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--yellow); box-shadow: 0 2px 0 -1px var(--yellow); }
.field input::placeholder, .field textarea::placeholder { color: rgba(15,15,15,.42); }
.date-control { display: block; border-bottom: 1px solid rgba(15,15,15,.55); padding: 11px 0 13px; }
.date-control input { display: block; width: 100%; min-width: 0; border: 0; padding: 0; background: transparent; }
.event-form__submit { grid-column: 1 / -1; width: 100%; margin-top: 8px; }
.event-form__note { grid-column: 1 / -1; margin: 0; min-height: 20px; font-size: 11px; line-height: 1.45; color: rgba(15,15,15,.62); }
.event-form.is-success .event-form__note { color: #195e3a; }
.event-form.is-error .event-form__note { color: #a21f1f; }

/* Product */
.product { padding-bottom: 120px; }
.food-editorial { margin-top: clamp(70px, 8vw, 120px); display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; }
.food-editorial figure { margin: 0; position: relative; overflow: hidden; background: #ddd; }
.food-editorial__hero { aspect-ratio: 1.16 / 1; }
.food-editorial__stack { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.food-editorial__stack figure { min-height: 100%; }
.food-editorial img { width: 100%; height: 100%; object-fit: cover; transition: transform .85s var(--ease); }
.food-editorial figure:hover img { transform: scale(1.03); }
.food-editorial figcaption { position: absolute; inset: auto 16px 16px; display: flex; justify-content: space-between; align-items: end; gap: 20px; color: var(--white); text-shadow: 0 1px 20px rgba(0,0,0,.55); font-size: 9px; letter-spacing: .11em; }
.food-editorial__hero figcaption strong { font-family: var(--display); font-size: clamp(28px, 3.8vw, 62px); line-height: .9; font-weight: 400; text-align: right; }
.production-notes { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 18px; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.production-notes article { padding: 28px 26px 32px 0; }
.production-notes article + article { padding-left: 26px; border-left: 1px solid var(--line-dark); }
.production-notes span { font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.production-notes h3 { margin: 18px 0 12px; font-family: var(--display); font-size: clamp(28px, 3vw, 48px); font-weight: 400; }
.production-notes p { margin: 0; font-size: 14px; line-height: 1.55; }
.menu-strip { margin-top: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.menu-strip p { margin: 0; max-width: 620px; font-size: 14px; line-height: 1.5; }
.menu-strip p span { font-weight: 700; }

/* History */
.history__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(50px, 8vw, 120px); align-items: start; }
.history__visual { position: sticky; top: calc(var(--header-h) + 32px); }
.history__visual figure { margin: 0; aspect-ratio: 1.05 / 1; overflow: hidden; }
.history__visual figure img { width: 100%; height: 100%; object-fit: cover; }
.history__year { display: grid; grid-template-columns: auto 1fr; gap: 0 18px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line-light); }
.history__year span, .history__year small { font-size: 9px; letter-spacing: .12em; color: rgba(255,255,255,.52); }
.history__year b { grid-row: 1 / span 2; grid-column: 2; font-family: var(--display); font-size: clamp(70px, 8vw, 124px); font-weight: 400; line-height: .78; color: var(--yellow); justify-self: end; }
.history__year small { align-self: end; }
.history__copy .section-index { margin-bottom: 60px; }
.history__copy h2 { font-size: clamp(48px, 5.7vw, 94px); margin-bottom: 34px; }
.history__copy > p:not(.eyebrow) { margin: 0 0 18px; max-width: 680px; font-size: 16px; line-height: 1.62; color: rgba(255,255,255,.72); }
.history__copy .inline-link { margin-top: 22px; }
.brand-band { margin-top: 100px; display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 16px; }
.brand-band figure { margin: 0; aspect-ratio: 1.25 / 1; overflow: hidden; background: #222; }
.brand-band figure:nth-child(2), .brand-band figure:nth-child(3) { aspect-ratio: 1 / 1; }
.brand-band img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); filter: saturate(.84); }
.brand-band figure:hover img { transform: scale(1.025); filter: saturate(1); }

/* Locations */
.locations__intro { display: grid; grid-template-columns: 130px 1fr; gap: clamp(28px, 4vw, 72px); }
.locations__grid { margin-top: 70px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.location { background: var(--black); color: var(--white); }
.location figure { margin: 0; aspect-ratio: 1.45 / 1; overflow: hidden; }
.location img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.location:hover img { transform: scale(1.025); }
.location__body { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: end; padding: 24px; }
.location__body span { font-size: 8px; letter-spacing: .13em; color: rgba(255,255,255,.48); }
.location__body h3 { margin: 8px 0 0; font-family: var(--display); font-size: clamp(34px, 4vw, 58px); font-weight: 400; }
.location__body p { margin: 0; font-size: 14px; line-height: 1.5; color: rgba(255,255,255,.7); }
.location__body a { grid-column: 2; width: max-content; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.5); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.phones { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line-dark); display: grid; grid-template-columns: 130px 1fr; gap: 40px; align-items: baseline; }
.phones span { font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.phones p { margin: 0; font-family: var(--display); font-size: clamp(27px, 3.4vw, 54px); }
.phones i { font-style: normal; color: rgba(15,15,15,.35); }

/* Closing */
.closing { position: relative; min-height: 78svh; display: grid; align-items: end; overflow: hidden; }
.closing__media { position: absolute; inset: 0 0 0 54%; overflow: hidden; }
.closing__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--yellow) 0%, rgba(255,214,10,.13) 35%, transparent 80%); }
.closing__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); opacity: .58; }
.closing__content { position: relative; z-index: 2; padding-top: 90px; padding-bottom: 80px; }
.closing h2 { font-size: clamp(76px, 10vw, 166px); max-width: 960px; }
.closing h2 em { color: var(--black); }
.closing__actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }

/* Footer */
.site-footer { padding: 78px 0 24px; background: var(--black); color: var(--white); }
.site-footer__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding-bottom: 60px; }
.site-footer__logo { width: 160px; height: auto; }
.site-footer__grid p { margin: 22px 0 0; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.5; }
.site-footer__links { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.site-footer__links > div { display: grid; align-content: start; gap: 10px; }
.site-footer__links span { margin-bottom: 10px; color: rgba(255,255,255,.42); font-size: 9px; letter-spacing: .13em; }
.site-footer__links a { width: max-content; font-size: 13px; }
.site-footer__bottom { display: grid; grid-template-columns: 1fr 1fr auto; gap: 20px; padding-top: 18px; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.46); font-size: 9px; letter-spacing: .11em; }
.site-footer__bottom span:nth-child(2) { text-align: center; }
.site-footer__bottom a { color: var(--white); }

/* Film modal */
.film-modal { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; border: 0; padding: 24px; background: rgba(15,15,15,.97); color: var(--white); }
.film-modal::backdrop { background: rgba(0,0,0,.88); }
.film-modal[open] { display: grid; grid-template-rows: auto 1fr auto; gap: 16px; }
.film-modal__close { justify-self: end; border: 0; background: transparent; color: var(--white); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.film-modal__frame { min-height: 0; display: grid; place-items: center; }
.film-modal video { width: auto; max-width: min(82vw, 880px); height: min(78vh, 900px); max-height: 100%; object-fit: contain; }
.film-modal__meta { display: flex; justify-content: space-between; border-top: 1px solid var(--line-light); padding-top: 12px; font-size: 9px; letter-spacing: .12em; color: rgba(255,255,255,.5); }

/* Motion */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .72s var(--ease), transform .72s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  :root { --shell: min(100% - 40px, 1180px); --header-h: 80px; }
  .site-header__inner { grid-template-columns: 150px 1fr auto; }
  .desktop-nav { gap: 24px; }
  .header-quote { display: none; }
  .hero__word--white { font-size: clamp(86px, 14vw, 170px); }
  .hero__word--yellow { font-size: clamp(92px, 15.2vw, 184px); }
  .section-intro, .product__intro { grid-template-columns: 90px 1.15fr .85fr; }
  .quote__grid { grid-template-columns: .8fr 1.2fr; gap: 52px; }
}

@media (max-width: 920px) {
  :root { --shell: min(100% - 34px, 900px); --header-h: 74px; }
  .desktop-nav, .header-menu-link { display: none; }
  .site-header__inner { grid-template-columns: 1fr auto; }
  .menu-button { display: block; }
  .brand img { width: 116px; }
  .hero__content { padding-bottom: 24px; }
  .hero__topline { grid-template-columns: 1fr 1fr; }
  .hero__topline span:nth-child(2) { text-align: right; }
  .hero__topline span:last-child { display: none; }
  .hero__headline { padding-bottom: 40px; }
  .hero__bottom { grid-template-columns: 1fr; }
  .hero__actions { justify-self: start; }
  .hero__rail { display: none; }
  .section-intro, .product__intro { grid-template-columns: 70px 1fr; }
  .section-intro__lead { grid-column: 2; margin-top: 10px; }
  .experience { grid-template-columns: 1fr; }
  .experience__media { position: relative; top: auto; height: auto; min-height: 0; aspect-ratio: 4 / 5; }
  .experience__sticky { position: static; padding-top: 50px; }
  .experience__steps { margin-top: 30px; }
  .event-step { min-height: 0; }
  .event-gallery { grid-template-columns: 1fr 1fr; }
  .event-gallery__main { grid-column: 1 / -1; aspect-ratio: 1.5 / 1; }
  .event-gallery__side { aspect-ratio: .92 / 1; }
  .quote__grid, .history__grid { grid-template-columns: 1fr; }
  .quote__copy, .history__visual { position: static; }
  .quote__photo { display: none; }
  .food-editorial { grid-template-columns: 1fr; }
  .food-editorial__hero { aspect-ratio: 1.3 / 1; }
  .production-notes { grid-template-columns: 1fr; }
  .production-notes article, .production-notes article + article { padding: 22px 0; border-left: 0; border-top: 1px solid var(--line-dark); }
  .production-notes article:first-child { border-top: 0; }
  .brand-band { grid-template-columns: 1.2fr .8fr; }
  .brand-band figure:last-child { grid-column: 1 / -1; aspect-ratio: 1.6 / 1; }
  .locations__intro { grid-template-columns: 70px 1fr; }
  .location__body { grid-template-columns: 1fr; }
  .location__body a { grid-column: 1; }
  .phones { grid-template-columns: 70px 1fr; }
  .closing__media { left: 46%; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); --header-h: 68px; }
  .section { padding: 80px 0; }
  .grain { opacity: .035; }
  .site-header.is-scrolled { --header-h: 64px; }
  .brand img { width: 104px; }
  .menu-button { width: 44px; height: 44px; }
  .hero { min-height: 100svh; }
  .hero__media img { object-position: 62% center; }
  .hero__content { padding-top: calc(var(--header-h) + 20px); }
  .hero__topline { font-size: 8px; }
  .hero__eyebrow { margin-bottom: 12px; font-size: 9px; }
  .hero__headline { align-self: end; padding-bottom: 24px; }
  .hero h1 { line-height: .84; }
  .hero__word--white { font-size: clamp(78px, 25vw, 128px); }
  .hero__word--yellow { font-size: clamp(68px, 21vw, 108px); margin-top: 0; }
  .hero__bottom { gap: 18px; padding-top: 16px; }
  .hero__bottom > p { font-size: 14px; line-height: 1.45; }
  .hero__actions { width: 100%; display: grid; grid-template-columns: 1fr auto; gap: 12px; }
  .hero__actions .button { min-height: 52px; }
  .text-button { padding-inline: 8px; }
  .ticker__track { padding: 10px 0; gap: 20px; }
  .ticker__track span { font-size: 17px; }
  .section-intro, .product__intro, .locations__intro { grid-template-columns: 1fr; gap: 24px; }
  .section-intro__lead { grid-column: 1; }
  .section-index { padding: 0 0 20px; border-bottom: 1px solid var(--line-dark); }
  .section-intro h2, .product__intro h2, .locations__intro h2, .quote__title, .closing h2 { font-size: clamp(52px, 16vw, 76px); }
  .section-intro__lead { font-size: 15px; }
  .experience { margin-top: 56px; gap: 0; }
  .experience__media { aspect-ratio: 4 / 5; }
  .experience__big { font-size: clamp(56px, 18vw, 84px); }
  .experience__copy { font-size: 14px; }
  .event-step { grid-template-columns: 38px 1fr; gap: 14px; padding: 24px 0; }
  .event-gallery { grid-template-columns: 1fr; gap: 12px; }
  .event-gallery__main, .event-gallery__side { grid-column: auto; aspect-ratio: 1.04 / 1; }
  .event-gallery__side:nth-child(2) { aspect-ratio: .84 / 1; }
  .quote { padding-top: 82px; }
  .quote__copy .section-index { margin-bottom: 30px; }
  .quote__lead { font-size: 14px; }
  .event-form { grid-template-columns: 1fr; padding: 22px 16px; gap: 20px; }
  .event-form__head, .field, .field--wide, .event-form__submit, .event-form__note { grid-column: 1; }
  .event-form__head { flex-direction: column; gap: 8px; }
  .food-editorial { margin-top: 56px; }
  .food-editorial__hero { aspect-ratio: .92 / 1; }
  .food-editorial__stack { gap: 10px; }
  .food-editorial__stack figure { aspect-ratio: .72 / 1; }
  .food-editorial__hero figcaption { align-items: end; }
  .food-editorial__hero figcaption strong { font-size: 30px; }
  .menu-strip { align-items: stretch; flex-direction: column; }
  .menu-strip .button { width: 100%; }
  .history__copy .section-index { margin-bottom: 30px; border-color: var(--line-light); }
  .history__copy h2 { font-size: clamp(46px, 14vw, 68px); }
  .history__visual figure { aspect-ratio: .92 / 1; }
  .brand-band { margin-top: 58px; grid-template-columns: 1fr 1fr; gap: 10px; }
  .brand-band figure, .brand-band figure:nth-child(2) { aspect-ratio: 1 / 1; }
  .brand-band figure:last-child { aspect-ratio: 1.5 / 1; }
  .locations__grid { grid-template-columns: 1fr; margin-top: 50px; }
  .location figure { aspect-ratio: 1.12 / 1; }
  .phones { grid-template-columns: 1fr; gap: 14px; }
  .phones p { font-size: 28px; line-height: 1.08; }
  .closing { min-height: 76svh; }
  .closing__media { left: 34%; opacity: .7; }
  .closing__content { padding-top: 70px; padding-bottom: 54px; }
  .closing__actions { display: grid; grid-template-columns: 1fr; }
  .closing__actions .button { width: 100%; }
  .site-footer { padding-top: 58px; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__links { gap: 24px; }
  .site-footer__bottom { grid-template-columns: 1fr auto; }
  .site-footer__bottom span:nth-child(2) { display: none; }
  .film-modal { padding: 14px; }
  .film-modal video { width: 100%; height: auto; max-width: 100%; max-height: 82vh; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .loader { display: none; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .hero__media img, .hero__word { transform: none !important; }
}

/* ========================================================================== 
   CAYO2 V3 refinement layer — quieter UI, stronger events/product storytelling
   ========================================================================== */
:root {
  --warm: #d8d1c3;
  --warm-deep: #c8c0b1;
  --ink: #171612;
  --ink-soft: #211f1a;
  --ink-panel: #26231d;
}

.section--warm {
  background:
    radial-gradient(circle at 12% 8%, rgba(255,255,255,.2), transparent 30%),
    linear-gradient(180deg, var(--warm) 0%, #d2cabb 100%);
  color: var(--black);
}

/* Buttons: simple, calm, no icon dependency. */
.button {
  min-height: 54px;
  justify-content: center;
  gap: 0;
  padding: 0 26px;
  border: 1px solid transparent;
  font-size: 11px;
  letter-spacing: .1em;
  transition: background .22s ease, color .22s ease, border-color .22s ease;
}
.button:hover { transform: none; }
.button--yellow { background: var(--yellow); color: var(--black); }
.button--yellow:hover { background: #ffe044; }
.button--black { background: var(--black); color: var(--white); }
.button--black:hover { background: var(--yellow); color: var(--black); }
.button--ghost { border-color: rgba(15,15,15,.48); color: var(--black); }
.button--ghost:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.inline-link {
  gap: 0;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  transition: opacity .2s ease;
}
.inline-link:hover { opacity: .62; }

/* Header: navigation grouped to the right instead of floating in the center. */
.site-header { border-bottom: 0; }
.site-header.is-scrolled { border-bottom: 0; background: rgba(15,15,15,.95); }
.site-header__inner { grid-template-columns: 180px 1fr auto; gap: 18px; }
.desktop-nav {
  justify-self: end;
  gap: 4px;
  margin-right: 10px;
  padding: 5px;
  background: rgba(15,15,15,.18);
}
.desktop-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  font-size: 11px;
  letter-spacing: .04em;
  color: rgba(255,255,255,.72);
  transition: color .18s ease, background .18s ease;
}
.desktop-nav a::after { display: none; }
.desktop-nav a:hover,
.desktop-nav a.is-active { color: var(--white); background: rgba(255,255,255,.08); }
.header-actions { gap: 6px; }
.header-menu-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  font-size: 10px;
  letter-spacing: .1em;
  color: rgba(255,255,255,.86);
  transition: color .18s ease, background .18s ease;
}
.header-menu-link:hover { color: var(--yellow); background: rgba(255,255,255,.05); }
.header-quote {
  min-height: 42px;
  gap: 0;
  padding: 0 20px;
  font-size: 10px;
  letter-spacing: .1em;
  transition: background .2s ease;
}
.header-quote:hover { background: #ffe044; }
.scroll-progress { display: none; }
.mobile-menu__quote { justify-content: center; }
.mobile-menu__links a { opacity: .72; }

/* Hero: remove ornamental divider lines and secondary copy/film controls. */
.hero__content { padding-bottom: 40px; }
.hero__topline {
  border: 0;
  padding: 12px 0 0;
  color: rgba(255,255,255,.62);
}
.hero__headline { padding-bottom: clamp(22px, 3vw, 42px); }
.hero__bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  padding-top: 0;
  border-top: 0;
}
.hero__actions { justify-self: auto; }
.hero__actions .button { min-width: 220px; }
.hero__rail { display: none; }

/* Events: static editorial composition to eliminate sticky text collisions. */
.events { overflow: hidden; }
.events-intro {
  display: grid;
  grid-template-columns: 1.5fr .7fr;
  gap: clamp(34px, 6vw, 96px);
  align-items: end;
}
.events-intro__meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(15,15,15,.54);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.events-intro__headline h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(72px, 8.3vw, 142px);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.events-intro__headline h2 em { font-style: normal; color: var(--black); -webkit-text-stroke: 1px rgba(15,15,15,.2); }
.events-intro__lead {
  margin: 0 0 8px;
  max-width: 500px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(15,15,15,.72);
}
.events-stage {
  margin-top: clamp(62px, 8vw, 118px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  min-height: 690px;
  background: var(--ink);
  color: var(--white);
}
.events-stage__media {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: #0a0a0a;
}
.events-stage__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.03) 55%, rgba(0,0,0,.46));
  pointer-events: none;
}
.events-stage__media video { width: 100%; height: 100%; object-fit: cover; }
.events-stage__media-meta {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 8px;
  letter-spacing: .14em;
  color: rgba(255,255,255,.66);
}
.events-stage__content {
  padding: clamp(42px, 5vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.events-stage__content h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 5.2vw, 90px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.015em;
}
.events-stage__copy {
  margin: 28px 0 36px;
  max-width: 520px;
  color: rgba(255,255,255,.66);
  font-size: 15px;
  line-height: 1.65;
}
.events-stage__steps { display: grid; gap: 0; margin-bottom: 34px; }
.events-stage__steps article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.13);
}
.events-stage__steps article:last-child { border-bottom: 1px solid rgba(255,255,255,.13); }
.events-stage__steps article > span { color: var(--yellow); font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.events-stage__steps strong { display: block; margin-bottom: 4px; font-size: 11px; letter-spacing: .1em; }
.events-stage__steps p { margin: 0; color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.5; }
.events-stage__cta { align-self: flex-start; min-width: 230px; }
.event-gallery { margin-top: 18px; }
.event-gallery figure { background: var(--ink); }
.event-gallery figcaption {
  background: rgba(15,15,15,.94);
  color: var(--white);
  min-height: 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0 16px;
  font-size: 9px;
  letter-spacing: .1em;
}
.event-gallery figcaption strong { color: var(--yellow); font-weight: 700; }

/* Event quote/form: dark editorial form, no white-input look. */
.quote { background: #0d0d0c; }
.quote__grid { grid-template-columns: .82fr 1.18fr; }
.event-form {
  background: var(--ink-soft);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.11);
  padding: clamp(28px, 4vw, 54px);
  gap: 26px 18px;
}
.event-form__head {
  color: rgba(255,255,255,.52);
  border-bottom: 1px solid rgba(255,255,255,.16);
  padding-bottom: 18px;
}
.field > span:first-child { color: rgba(255,255,255,.62); }
.field input,
.field select,
.field textarea {
  color: var(--white);
  background: #171612;
  border: 1px solid rgba(255,255,255,.13);
  padding: 14px 15px;
  min-height: 52px;
  outline: none;
  transition: border-color .18s ease, background .18s ease;
}
.field textarea { min-height: 118px; resize: vertical; }
.field select {
  background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,.7) 50%), linear-gradient(135deg, rgba(255,255,255,.7) 50%, transparent 50%);
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--yellow); box-shadow: none; background: #1c1a16; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,.32); }
.date-control { border: 0; padding: 0; }
.date-control input { border: 1px solid rgba(255,255,255,.13); padding: 14px 15px; }
.event-form__note { color: rgba(255,255,255,.48); }
.event-form.is-success .event-form__note { color: #9ad8b6; }
.event-form.is-error .event-form__note { color: #ff9f9f; }
.event-form__submit { margin-top: 4px; min-height: 58px; }
.quote__proof { color: rgba(255,255,255,.4); }

/* Product: warmer background + one dark editorial block instead of white-separated notes. */
.section--warm-product {
  background:
    radial-gradient(circle at 78% 15%, rgba(255,214,10,.11), transparent 28%),
    linear-gradient(180deg, #cec6b7 0%, #d9d1c2 100%);
}
.product__intro { grid-template-columns: 110px 1.25fr .65fr; }
.food-editorial { gap: 12px; }
.food-editorial figure { background: #aaa296; }
.food-editorial img { filter: saturate(.9) contrast(1.04); }
.food-editorial figure:hover img { transform: scale(1.018); filter: saturate(1) contrast(1.04); }
.production-notes {
  background: var(--ink);
  color: var(--white);
  border: 0;
  margin-top: 12px;
}
.production-notes article { padding: 34px 28px; }
.production-notes article + article { border-left-color: rgba(255,255,255,.12); }
.production-notes span { color: var(--yellow); }
.production-notes p { color: rgba(255,255,255,.62); }
.menu-strip {
  margin-top: 12px;
  background: rgba(255,255,255,.25);
  padding: 22px 24px;
}

/* External text links are deliberately plain. */
.location__body a,
.site-footer__links a,
.site-footer__bottom a { transition: opacity .2s ease; }
.location__body a:hover,
.site-footer__links a:hover,
.site-footer__bottom a:hover { opacity: .62; }

@media (max-width: 1180px) {
  .desktop-nav { gap: 2px; margin-right: 2px; }
  .desktop-nav a { padding-inline: 10px; }
  .product__intro { grid-template-columns: 90px 1.15fr .7fr; }
  .events-stage { grid-template-columns: 1fr .85fr; }
}

@media (max-width: 920px) {
  .site-header__inner { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-menu-link, .header-quote { display: none; }
  .events-intro { grid-template-columns: 1fr; }
  .events-intro__meta { grid-column: auto; }
  .events-intro__lead { max-width: 680px; }
  .events-stage { grid-template-columns: 1fr; min-height: 0; }
  .events-stage__media { min-height: 0; aspect-ratio: 16 / 11; }
  .events-stage__content { padding: 44px 34px; }
  .product__intro { grid-template-columns: 70px 1fr; }
  .quote__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero__content { padding-bottom: 24px; }
  .hero__topline { grid-template-columns: 1fr 1fr; padding-top: 4px; }
  .hero__bottom { padding-top: 0; }
  .hero__actions { width: 100%; display: block; }
  .hero__actions .button { width: 100%; min-width: 0; }
  .events-intro__meta { flex-direction: column; gap: 8px; }
  .events-intro__headline h2 { font-size: clamp(58px, 18vw, 86px); }
  .events-intro__lead { font-size: 15px; }
  .events-stage { margin-top: 48px; }
  .events-stage__media { aspect-ratio: 4 / 5; }
  .events-stage__content { padding: 34px 20px 30px; }
  .events-stage__content h3 { font-size: clamp(52px, 15vw, 74px); }
  .events-stage__steps article { grid-template-columns: 32px 1fr; gap: 12px; }
  .events-stage__cta { width: 100%; min-width: 0; }
  .event-gallery figcaption { min-height: 52px; }
  .event-form { padding: 22px 16px; }
  .field input,
  .field select,
  .field textarea,
  .date-control input { padding: 13px 12px; }
  .product__intro { grid-template-columns: 1fr; }
  .production-notes { margin-top: 10px; }
  .production-notes article,
  .production-notes article + article { padding: 24px 20px; border-top: 1px solid rgba(255,255,255,.12); }
  .production-notes article:first-child { border-top: 0; }
  .menu-strip { padding: 20px; }
}

/* QA refinements */
.field select {
  appearance: auto;
  -webkit-appearance: menulist;
  background-image: none !important;
  background-color: #171612;
  color: var(--white);
  padding-right: 14px;
}
.section--warm-product .section-index { border: 0; }

@media (max-width: 640px) {
  .hero__topline { grid-template-columns: 1fr; }
  .hero__topline span:nth-child(2),
  .hero__topline span:last-child { display: none; }
  .hero__word--yellow { font-size: clamp(56px, 16vw, 78px); }
  .section--warm-product .section-index { padding-bottom: 0; }
}

/* ========================================================================== 
   CAYO2 V4 refinement layer — tighter navigation and faster visual rhythm
   ========================================================================== */

/* Header: one connected navigation object instead of isolated controls. */
.site-header__inner {
  grid-template-columns: 154px 1fr;
  gap: 24px;
}
.header-cluster {
  justify-self: end;
  display: flex;
  align-items: stretch;
  min-height: 50px;
  background: rgba(15,15,15,.46);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.site-header.is-scrolled .header-cluster {
  background: rgba(255,255,255,.035);
  border-color: rgba(255,255,255,.1);
}
.desktop-nav {
  justify-self: auto;
  gap: 0;
  margin: 0;
  padding: 0;
  background: transparent;
}
.desktop-nav a {
  min-height: 50px;
  padding: 0 17px;
  color: rgba(255,255,255,.76);
  border-right: 1px solid rgba(255,255,255,.08);
  font-size: 10px;
  letter-spacing: .07em;
}
.desktop-nav a:hover,
.desktop-nav a.is-active {
  background: rgba(255,255,255,.07);
  color: var(--white);
}
.header-actions {
  gap: 0;
  align-items: stretch;
}
.header-menu-link {
  min-height: 50px;
  padding: 0 18px;
  border-right: 1px solid rgba(255,255,255,.08);
  font-size: 10px;
  background: transparent;
}
.header-menu-link:hover { background: rgba(255,255,255,.07); color: var(--white); }
.header-quote {
  min-height: 50px;
  padding: 0 23px;
  font-size: 10px;
  white-space: nowrap;
}

/* Hero: remove the meta strip completely and let the image breathe. */
.hero__content {
  grid-template-rows: 1fr auto;
  padding-top: calc(var(--header-h) + 28px);
}
.hero__headline {
  align-self: end;
  padding-bottom: clamp(28px, 3vw, 44px);
}

/* Shared compact section label for Events/Product. */
.section-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 8px;
  font-size: 9px;
  letter-spacing: .14em;
  font-weight: 700;
  text-transform: uppercase;
}
.section-kicker span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: var(--black);
  color: var(--yellow);
  font-size: 8px;
  letter-spacing: .08em;
}
.section-kicker strong { font-weight: 700; }

/* Events: less preamble, earlier video, tighter title. */
.events.section {
  padding-top: clamp(68px, 7vw, 108px);
  padding-bottom: clamp(92px, 9vw, 138px);
}
.events-intro {
  grid-template-columns: 116px minmax(0, 1.25fr) minmax(280px, .62fr);
  gap: clamp(26px, 4.4vw, 70px);
  align-items: end;
}
.events-intro__headline h2 {
  font-size: clamp(58px, 6.4vw, 108px);
  line-height: .9;
  max-width: 820px;
}
.events-intro__headline h2 em {
  display: inline;
  color: var(--yellow);
  -webkit-text-stroke: 0;
}
.events-intro__aside {
  align-self: end;
  padding-bottom: 4px;
}
.events-intro__lead {
  margin: 0;
  max-width: 430px;
  font-size: 15px;
  line-height: 1.58;
  color: rgba(15,15,15,.72);
}
.events-intro__types {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(15,15,15,.16);
  color: rgba(15,15,15,.48);
  font-size: 8px;
  line-height: 1.55;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.events-stage {
  margin-top: clamp(34px, 4.6vw, 64px);
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
  min-height: 620px;
}
.events-stage__media { min-height: 620px; }
.events-stage__content { padding: clamp(38px, 4.4vw, 66px); }
.events-stage__content h3 { font-size: clamp(50px, 4.7vw, 80px); }
.events-stage__copy { margin: 22px 0 28px; }
.events-stage__steps article { padding: 15px 0; }

/* Budget: keep the successful structure but tighten hierarchy and form finish. */
.quote.section { padding-top: clamp(84px, 8vw, 126px); padding-bottom: clamp(92px, 9vw, 140px); }
.quote__grid { grid-template-columns: .88fr 1.12fr; gap: clamp(42px, 6vw, 88px); }
.quote__copy .section-index { margin-bottom: 34px; }
.quote__title { font-size: clamp(54px, 5.7vw, 94px); line-height: .9; }
.quote__lead { margin-top: 24px; }
.event-form {
  background: #1a1814;
  border: 1px solid rgba(255,214,10,.18);
  border-top: 4px solid var(--yellow);
  padding: clamp(28px, 3.8vw, 48px);
}
.event-form__head {
  position: relative;
  padding-left: 16px;
}
.event-form__head::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 6px;
  height: 6px;
  background: var(--yellow);
}
.field input,
.field select,
.field textarea,
.date-control input {
  background: #12110f;
  border-color: rgba(255,255,255,.15);
}
.field input:hover,
.field select:hover,
.field textarea:hover,
.date-control input:hover { border-color: rgba(255,255,255,.25); }
.event-form__submit { min-height: 60px; }

/* Product: smaller headline, less blank preamble and images arrive sooner. */
.product.section {
  padding-top: clamp(74px, 7.2vw, 112px);
  padding-bottom: clamp(92px, 8.5vw, 128px);
}
.product__intro {
  grid-template-columns: 116px minmax(0, 1.18fr) minmax(280px, .62fr);
  gap: clamp(26px, 4.4vw, 70px);
  align-items: end;
}
.product__intro h2 {
  font-size: clamp(56px, 5.9vw, 98px);
  line-height: .9;
  max-width: 850px;
}
.product__intro h2 em { display: inline; }
.product__intro .section-intro__lead {
  margin: 0 0 5px;
  max-width: 430px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(15,15,15,.7);
}
.food-editorial {
  margin-top: clamp(36px, 4.4vw, 62px);
  grid-template-columns: 1.28fr .72fr;
  gap: 12px;
}
.food-editorial__hero { aspect-ratio: 1.34 / 1; }
.food-editorial__stack { gap: 12px; }
.production-notes { margin-top: 12px; }
.menu-strip { margin-top: 12px; }

@media (max-width: 1180px) {
  .desktop-nav a { padding-inline: 13px; }
  .header-menu-link { padding-inline: 15px; }
  .header-quote { padding-inline: 18px; }
  .events-intro,
  .product__intro { grid-template-columns: 90px minmax(0, 1fr) minmax(250px, .62fr); gap: 34px; }
}

@media (max-width: 920px) {
  .site-header__inner { grid-template-columns: 1fr auto; }
  .header-cluster { min-height: 0; border: 0; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .events-intro,
  .product__intro { grid-template-columns: 74px 1fr; gap: 22px 28px; align-items: start; }
  .events-intro__aside,
  .product__intro .section-intro__lead { grid-column: 2; }
  .events-stage { grid-template-columns: 1fr; min-height: 0; }
  .events-stage__media { min-height: 0; aspect-ratio: 16 / 10; }
  .quote__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero__content { padding-top: calc(var(--header-h) + 16px); }
  .events.section,
  .product.section { padding-top: 62px; padding-bottom: 82px; }
  .events-intro,
  .product__intro { grid-template-columns: 1fr; gap: 18px; }
  .events-intro__aside,
  .product__intro .section-intro__lead { grid-column: auto; }
  .section-kicker { padding: 0; }
  .events-intro__headline h2 { font-size: clamp(54px, 15vw, 72px); }
  .events-intro__types { margin-top: 14px; }
  .events-stage { margin-top: 30px; }
  .events-stage__media { aspect-ratio: 4 / 5; }
  .events-stage__content { padding: 30px 18px 28px; }
  .product__intro h2 { font-size: clamp(50px, 14vw, 68px); }
  .food-editorial { margin-top: 30px; }
  .food-editorial__hero { aspect-ratio: 1 / 1.05; }
  .quote__title { font-size: clamp(50px, 14vw, 68px); }
}

/* ==========================================================
   CAYO2 V5 refinement layer — viewport-fit events, budget, product
   ========================================================== */

/* Events: keep the cinematic split, but let the full composition breathe
   inside a normal desktop viewport instead of behaving like a tall poster. */
@media (min-width: 921px) {
  .events.section {
    padding-top: clamp(60px, 5.8vw, 88px);
  }

  .events-intro {
    grid-template-columns: 104px minmax(0, 1.2fr) minmax(260px, .58fr);
    gap: clamp(24px, 3.4vw, 52px);
  }

  .events-intro__headline h2 {
    font-size: clamp(54px, 5.6vw, 90px);
    max-width: 760px;
  }

  .events-stage {
    margin-top: clamp(26px, 3vw, 42px);
    grid-template-columns: minmax(0, 1.22fr) minmax(350px, .78fr);
    min-height: 0;
    align-items: stretch;
  }

  .events-stage__media {
    min-height: 0;
    aspect-ratio: 16 / 9.4;
  }

  .events-stage__content {
    padding: clamp(28px, 3vw, 42px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .events-stage__content h3 {
    margin-top: 10px;
    font-size: clamp(44px, 4vw, 66px);
    line-height: .92;
  }

  .events-stage__copy {
    margin: 16px 0 18px;
    font-size: 14px;
    line-height: 1.52;
  }

  .events-stage__steps {
    margin-bottom: 20px;
  }

  .events-stage__steps article {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 10px 0;
  }

  .events-stage__steps strong {
    margin-bottom: 2px;
    font-size: 10px;
  }

  .events-stage__steps p {
    font-size: 12px;
    line-height: 1.4;
  }

  .events-stage__cta {
    min-height: 50px;
    min-width: 210px;
  }
}

/* Budget: slightly wider form, tighter vertical rhythm, same content. */
@media (min-width: 921px) {
  .quote.section {
    padding-top: clamp(70px, 6vw, 96px);
    padding-bottom: clamp(76px, 6.6vw, 106px);
  }

  .quote__grid {
    grid-template-columns: .74fr 1.26fr;
    gap: clamp(34px, 4.6vw, 68px);
  }

  .quote__copy .section-index {
    margin-bottom: 26px;
  }

  .quote__title {
    font-size: clamp(50px, 5vw, 82px);
  }

  .quote__lead {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.52;
  }

  .quote__proof {
    margin-top: 20px;
  }

  .quote__photo {
    margin-top: 30px;
    width: min(100%, 360px);
  }

  .event-form {
    padding: clamp(24px, 2.7vw, 36px);
    gap: 16px 16px;
  }

  .event-form__head {
    padding-bottom: 13px;
  }

  .field {
    gap: 6px;
  }

  .field input,
  .field select,
  .field textarea {
    padding: 8px 0 10px;
    font-size: 14px;
  }

  .date-control {
    padding: 8px 0 10px;
  }

  .field textarea {
    min-height: 70px;
  }

  .event-form__submit {
    min-height: 52px;
  }

  .event-form__note {
    min-height: 16px;
    font-size: 10px;
  }
}

/* Product: the editorial photos enter the viewport sooner and the main burger
   reads as an image, not as a full-screen crop. */
@media (min-width: 921px) {
  .product.section {
    padding-top: clamp(60px, 5.5vw, 86px);
    padding-bottom: clamp(82px, 7vw, 108px);
  }

  .product__intro {
    grid-template-columns: 104px minmax(0, 1.14fr) minmax(260px, .58fr);
    gap: clamp(24px, 3.4vw, 52px);
  }

  .product__intro h2 {
    font-size: clamp(50px, 5vw, 82px);
    max-width: 760px;
  }

  .product__intro .section-intro__lead {
    font-size: 14px;
    line-height: 1.5;
  }

  .food-editorial {
    margin-top: clamp(24px, 2.8vw, 38px);
    grid-template-columns: 1.3fr .7fr;
  }

  .food-editorial__hero {
    aspect-ratio: 1.72 / 1;
  }

  .food-editorial__stack {
    align-items: stretch;
  }

  .food-editorial__stack figure {
    min-height: 0;
  }

  .food-editorial__hero figcaption strong {
    font-size: clamp(26px, 3vw, 48px);
  }

  .production-notes article {
    padding-top: 26px;
    padding-bottom: 26px;
  }
}

@media (min-width: 921px) and (max-height: 820px) {
  .events-stage__media { aspect-ratio: 16 / 8.8; }
  .events-stage__content { padding-block: 24px; }
  .events-stage__content h3 { font-size: clamp(42px, 3.8vw, 60px); }
  .events-stage__copy { margin-block: 12px 14px; }
  .events-stage__steps article { padding-block: 8px; }

  .quote.section,
  .product.section { padding-top: 58px; padding-bottom: 78px; }
  .quote__title { font-size: clamp(48px, 4.6vw, 74px); }
  .product__intro h2 { font-size: clamp(48px, 4.7vw, 76px); }
  .food-editorial__hero { aspect-ratio: 1.82 / 1; }
}

/* Mobile remains intentionally stacked, but with less dead space. */
@media (max-width: 920px) {
  .events-stage__content h3 { font-size: clamp(48px, 13vw, 68px); }
  .events-stage__copy { margin: 16px 0 20px; }
  .quote.section { padding-top: 68px; padding-bottom: 78px; }
  .product.section { padding-top: 58px; }
  .food-editorial { margin-top: 26px; }
}

@media (max-width: 640px) {
  .events-stage__media { aspect-ratio: 4 / 4.5; }
  .events-stage__content { padding: 26px 18px 26px; }
  .events-stage__content h3 { font-size: clamp(46px, 13vw, 62px); }
  .quote__title { font-size: clamp(46px, 13vw, 64px); }
  .event-form { gap: 16px; }
  .field textarea { min-height: 78px; }
  .product__intro h2 { font-size: clamp(46px, 13vw, 64px); }
  .food-editorial__hero { aspect-ratio: 1.08 / 1; }
}

/* V5 final tuning after visual QA. */
@media (min-width: 1100px) {
  .quote__grid {
    grid-template-columns: .68fr 1.32fr;
  }

  .event-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px 14px;
  }

  .event-form__head,
  .field--wide,
  .event-form__submit,
  .event-form__note {
    grid-column: 1 / -1;
  }

  .quote__title {
    font-size: clamp(48px, 4.65vw, 76px);
  }

  .field textarea {
    min-height: 60px;
  }

  .event-form__submit {
    min-height: 50px;
  }

  .product.section {
    padding-top: clamp(50px, 4.8vw, 72px);
  }

  .product__intro h2 {
    font-size: clamp(48px, 4.65vw, 76px);
    max-width: 720px;
  }

  .food-editorial {
    margin-top: clamp(18px, 2vw, 28px);
  }

  .food-editorial__hero {
    aspect-ratio: 1.9 / 1;
  }
}

/* ==========================================================
   CAYO2 V6 refinement layer — native vertical event film + form spacing
   ========================================================== */

/* Events: respect the source film's native 9:16 ratio and keep it deliberately
   smaller. This prevents the low-resolution clip from being blown up and gives
   the "Así funciona" panel enough width to read without clipping. */
@media (min-width: 921px) {
  .events-stage {
    width: min(1080px, var(--shell));
    margin-top: clamp(28px, 3vw, 42px);
    grid-template-columns: minmax(250px, 330px) minmax(0, 1fr);
    justify-content: center;
    align-items: stretch;
    background: transparent;
  }

  .events-stage__media {
    width: 100%;
    max-width: 330px;
    min-height: 0;
    aspect-ratio: 9 / 16;
    justify-self: end;
    align-self: center;
    background: #050505;
  }

  .events-stage__media video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #050505;
  }

  .events-stage__media-meta {
    left: 14px;
    right: 14px;
    top: 14px;
    font-size: 7px;
    letter-spacing: .12em;
  }

  .events-stage__media-meta span:last-child {
    display: none;
  }

  .events-stage__content {
    min-width: 0;
    min-height: 100%;
    padding: clamp(34px, 3.4vw, 48px) clamp(34px, 4vw, 58px);
    background: var(--ink);
  }

  .events-stage__content h3 {
    max-width: 100%;
    margin-top: 8px;
    font-size: clamp(46px, 4.1vw, 64px);
    line-height: .9;
    overflow-wrap: normal;
  }

  .events-stage__copy {
    max-width: 560px;
    margin: 16px 0 18px;
  }
}

/* Budget form: restore intentional inner padding. V5 became too aggressive
   while compacting the form and pushed placeholder/value text against borders. */
@media (min-width: 921px) {
  .event-form {
    padding: clamp(28px, 2.9vw, 40px);
    gap: 15px 16px;
  }

  .field {
    gap: 7px;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 50px;
    padding: 12px 15px;
    font-size: 14px;
    line-height: 1.35;
  }

  .field select {
    padding-right: 38px;
    background-position: calc(100% - 17px) 50%, calc(100% - 12px) 50%;
  }

  .field textarea {
    min-height: 82px;
    padding-top: 13px;
  }

  .date-control {
    display: block;
    padding: 0;
    border: 0;
  }

  .date-control input {
    min-height: 50px;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,.13);
    background: #171612;
  }

  .date-control input:hover {
    border-color: rgba(255,255,255,.25);
  }

  .date-control input:focus {
    border-color: var(--yellow);
    background: #1c1a16;
  }
}

/* Medium desktop / laptop: keep the film modest and the panel readable. */
@media (min-width: 921px) and (max-width: 1180px) {
  .events-stage {
    width: min(960px, var(--shell));
    grid-template-columns: minmax(230px, 290px) minmax(0, 1fr);
  }

  .events-stage__media {
    max-width: 290px;
  }

  .events-stage__content {
    padding: 30px 34px;
  }

  .events-stage__content h3 {
    font-size: clamp(42px, 4.8vw, 56px);
  }
}

/* Mobile/tablet: keep the source vertical and centered instead of stretching it
   into a wide banner. The content card follows at full available width. */
@media (max-width: 920px) {
  .events-stage {
    width: var(--shell);
    background: transparent;
    justify-items: center;
  }

  .events-stage__media {
    width: min(100%, 360px);
    max-width: 360px;
    aspect-ratio: 9 / 16;
    min-height: 0;
  }

  .events-stage__media video {
    object-fit: contain;
    background: #050505;
  }

  .events-stage__media-meta span:last-child {
    display: none;
  }

  .events-stage__content {
    width: 100%;
    max-width: 640px;
    background: var(--ink);
  }

  .field input,
  .field select,
  .field textarea {
    padding-left: 14px;
    padding-right: 14px;
  }

  .date-control {
    padding: 0;
    border: 0;
  }

  .date-control input {
    padding: 13px 14px;
    border: 1px solid rgba(255,255,255,.13);
    background: #171612;
  }
}

@media (max-width: 640px) {
  .events-stage__media {
    width: min(100%, 320px);
    max-width: 320px;
  }

  .events-stage__content {
    padding: 24px 18px 26px;
  }

  .event-form {
    padding-inline: 18px;
  }
}

/* ==========================================================
   CAYO2 V7 refinement layer — real locations + direct event form
   ========================================================== */

/* Locations: use the real Cay2 Street View frame supplied by the user. */
.location__photo--streetview img {
  object-position: center 54%;
  filter: saturate(.92) contrast(1.02);
}

/* The old La Casita image was not a real Paraná location. Until the exact
   second Street View binary is available in the package, use a truthful
   branded address treatment instead of fabricated photography. */
.location__photo--address {
  display: grid;
  place-items: center;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
  background:
    linear-gradient(rgba(15,15,15,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,15,15,.08) 1px, transparent 1px),
    var(--yellow);
  background-size: 28px 28px;
}
.location-address-art {
  width: min(78%, 430px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 20px;
  align-items: end;
  color: var(--black);
}
.location-address-art img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  grid-row: 1 / span 2;
}
.location-address-art span,
.location-address-art small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}
.location-address-art strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(46px, 5vw, 76px);
  line-height: .82;
}
.location-address-art small { grid-column: 2; }

/* Event form: submit on-site, show clear inline feedback and avoid mail-client handoff. */
.event-form__honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  clip-path: inset(50%) !important;
}
.event-form__submit {
  position: relative;
  overflow: hidden;
  transition: transform .2s var(--ease), filter .2s ease, opacity .2s ease;
}
.event-form__submit:disabled {
  cursor: wait;
  opacity: .7;
  transform: none;
}
.event-form__status {
  grid-column: 1 / -1;
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.035);
}
.event-form__status[hidden] { display: none; }
.event-form__status strong {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.event-form__status span {
  max-width: 68ch;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,.68);
}
.event-form.is-success .event-form__status {
  border-color: rgba(154,216,182,.38);
  background: rgba(25,94,58,.14);
}
.event-form.is-success .event-form__status strong { color: #9ad8b6; }
.event-form.is-error .event-form__status {
  border-color: rgba(255,159,159,.38);
  background: rgba(162,31,31,.13);
}
.event-form.is-error .event-form__status strong { color: #ff9f9f; }
.event-form.is-info .event-form__status {
  border-color: rgba(255,214,10,.35);
  background: rgba(255,214,10,.06);
}
.event-form.is-info .event-form__status strong { color: var(--yellow); }

@media (max-width: 920px) {
  .location__photo--address { aspect-ratio: 1.12 / 1; }
  .location-address-art {
    width: min(84%, 390px);
    grid-template-columns: 70px 1fr;
    gap: 8px 16px;
  }
  .location-address-art img { width: 70px; height: 70px; }
  .location-address-art strong { font-size: clamp(42px, 13vw, 66px); }
  .event-form__status { grid-column: 1; }
}

/* ==========================================================
   CAYO2 V8 refinement layer — mobile conversion + resilient media
   ========================================================== */

@media (min-width: 1041px) and (max-width: 1180px) {
  .header-quote { display: inline-flex; min-height: 48px; padding-inline: 14px; font-size: 9px; }
  .desktop-nav a { padding-inline: 10px; }
  .header-menu-link { padding-inline: 12px; }
}

.events-stage__media { isolation: isolate; }
.events-stage__video-control {
  position: absolute; z-index: 4; left: 50%; bottom: 18px; transform: translateX(-50%);
  min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 0 16px; border: 1px solid rgba(255,255,255,.34); background: rgba(15,15,15,.82);
  color: var(--white); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
}
.events-stage__video-control[hidden] { display: none; }
.events-stage__video-control span { color: var(--yellow); font-size: 10px; }
.events-stage__video-control:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }

.event-form { color-scheme: dark; }
.date-control input { min-width: 0; }

.location__photo--streetview { position: relative; background: #171612; }
.location__photo--casita img { object-position: 50% 46%; filter: saturate(.9) contrast(1.025); }
.location__streetview-label {
  position: absolute; z-index: 2; left: 12px; bottom: 12px; margin: 0; padding: 7px 9px;
  background: rgba(15,15,15,.88); color: rgba(255,255,255,.76); font-size: 7px;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase; pointer-events: none;
}

@media (max-width: 920px) {
  .event-form__status { grid-column: 1 / -1; }
  .events-stage__video-control { bottom: 16px; min-height: 44px; }
}

@media (max-width: 640px) {
  .events.section { padding-top: 54px; padding-bottom: 72px; }
  .events-intro { gap: 15px; }
  .events-intro__aside { margin-top: -2px; }
  .events-intro__lead { max-width: 32ch; font-size: 14px; line-height: 1.5; }
  .events-intro__types { display: none; }

  .events-stage { margin-top: 20px; justify-items: center; }
  .events-stage__media, .events-stage__content { width: min(100%, 320px); max-width: 320px; }
  .events-stage__media { aspect-ratio: 9 / 16; }
  .events-stage__content { padding: 22px 16px 24px; }
  .events-stage__content .eyebrow { margin-bottom: 14px; }
  .events-stage__content h3 { font-size: clamp(44px, 13.4vw, 60px); line-height: .91; }
  .events-stage__copy { margin: 15px 0 18px; font-size: 13px; line-height: 1.5; }
  .events-stage__steps { margin-bottom: 20px; }
  .events-stage__steps article { grid-template-columns: 30px 1fr; gap: 10px; padding: 13px 0; }
  .events-stage__steps p { font-size: 12px; }
  .events-stage__cta { min-height: 52px; }
  .events-stage__media-meta { left: 12px; right: 12px; top: 12px; }
  .events-stage__video-control { width: calc(100% - 28px); bottom: 14px; }
  .event-gallery { margin-top: 14px; }

  .location figure { aspect-ratio: 1.45 / 1; }
}


/* ==========================================================
   CAYO2 V9 refinement layer — cleaner locations + visual polish
   ========================================================== */

/* Better anchor landing with the fixed header. */
main section[id] { scroll-margin-top: calc(var(--header-h) + 18px); }

/* Small typographic polish without changing the established art direction. */
.hero h1,
.events-intro__headline h2,
.quote__title,
.product__intro h2,
.history__copy h2,
.locations__intro h2,
.closing h2 { text-wrap: balance; }

.events-intro__lead,
.events-stage__copy,
.quote__lead,
.product__intro .section-intro__lead,
.history__copy > p,
.location__body p { text-wrap: pretty; }

/* Images should feel photographic rather than like interactive screenshots. */
.locations.section {
  padding-top: clamp(84px, 8vw, 126px);
  padding-bottom: clamp(92px, 9vw, 136px);
  overflow: hidden;
}

.locations__intro {
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: end;
}

.locations__intro h2 {
  max-width: 900px;
  font-size: clamp(60px, 6.3vw, 104px);
  line-height: .88;
}

.locations__grid {
  margin-top: clamp(42px, 5vw, 70px);
  gap: 14px;
  align-items: stretch;
}

.location {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #11110f;
  border: 1px solid rgba(15,15,15,.12);
}

.location__photo {
  position: relative;
  isolation: isolate;
  aspect-ratio: 1.45 / 1;
  background: #1a1916;
  overflow: hidden;
}

.location__photo::after {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,15,15,.02) 52%, rgba(15,15,15,.52) 100%);
  pointer-events: none;
}

.location__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transform: scale(1.002);
  transition: transform .65s var(--ease), filter .45s ease;
}

.location__photo--cay2 img { object-position: 50% 50%; }
.location__photo--casita img { object-position: 50% 50%; filter: saturate(.94) contrast(1.01); }

.location__photo-tag {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 15px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  background: rgba(15,15,15,.9);
  color: var(--white);
  border-left: 3px solid var(--yellow);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.location__body {
  min-height: 190px;
  grid-template-columns: minmax(0, 1fr) minmax(180px, .72fr);
  gap: 24px 38px;
  align-items: end;
  padding: 26px 28px 28px;
}

.location__body > div:first-child { align-self: start; }
.location__body span { color: var(--yellow); font-size: 8px; font-weight: 700; }
.location__body h3 {
  margin-top: 9px;
  font-size: clamp(42px, 4.4vw, 66px);
  line-height: .9;
  letter-spacing: -.012em;
}
.location__body p { align-self: end; color: rgba(255,255,255,.68); font-size: 13px; }
.location__body a {
  grid-column: 2;
  position: relative;
  width: max-content;
  padding: 0 0 6px;
  border-bottom-color: rgba(255,214,10,.72);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  transition: color .2s ease, border-color .2s ease, opacity .2s ease;
}
.location__body a:hover { opacity: 1; color: var(--yellow); border-color: var(--yellow); }

.phones {
  margin-top: 34px;
  padding-top: 24px;
  grid-template-columns: 112px 1fr;
}
.phones p { letter-spacing: -.01em; }

/* Calm, consistent image interaction. Avoid touch-device hover artifacts. */
@media (hover: hover) and (pointer: fine) {
  .location:hover .location__photo img { transform: scale(1.018); }
  .event-gallery figure:hover img,
  .food-editorial figure:hover img,
  .brand-band figure:hover img { transform: scale(1.018); }
}

/* Slightly cleaner hierarchy in the product and history transitions. */
.production-notes article h3 { letter-spacing: -.01em; }
.menu-strip { border: 1px solid rgba(15,15,15,.08); }
.history__copy h2 { max-width: 900px; }
.history__copy > p:not(.eyebrow) { max-width: 64ch; }

/* The final CTA keeps the photograph present without looking washed out. */
.closing__media img {
  filter: grayscale(.82) contrast(1.04);
  opacity: .64;
}

@media (max-width: 920px) {
  .locations__intro { grid-template-columns: 72px minmax(0, 1fr); }
  .locations__grid { gap: 14px; }
  .location__body {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
    padding: 24px;
  }
  .location__body a { grid-column: 2; }
  .phones { grid-template-columns: 72px 1fr; }
}

@media (max-width: 640px) {
  main section[id] { scroll-margin-top: calc(var(--header-h) + 10px); }

  .locations.section { padding-top: 68px; padding-bottom: 78px; }
  .locations__intro { grid-template-columns: 1fr; gap: 18px; }
  .locations__intro h2 { font-size: clamp(50px, 14.5vw, 68px); }
  .locations__grid { margin-top: 34px; gap: 12px; }

  .location__photo { aspect-ratio: 1.24 / 1; }
  .location__photo--cay2 img { object-position: 50% 50%; }
  .location__photo--casita img { object-position: 50% 50%; }
  .location__photo-tag { left: 12px; bottom: 12px; min-height: 26px; }

  .location__body {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 18px 22px;
  }
  .location__body h3 { margin-top: 6px; font-size: clamp(40px, 13vw, 56px); }
  .location__body p { font-size: 13px; }
  .location__body a { grid-column: 1; margin-top: 2px; }

  .phones { grid-template-columns: 1fr; gap: 10px; margin-top: 26px; padding-top: 18px; }
  .phones p { font-size: clamp(24px, 7.5vw, 30px); }

  .closing__media { left: 29%; }
  .closing__media img { opacity: .58; }
}

@media (prefers-reduced-motion: reduce) {
  .location__photo img { transform: none !important; }
}


/* ==========================================================
   CAYO2 V11 refinement layer — dual hero CTA
   ========================================================== */

/* Keep Events as the primary conversion while exposing the short path to Fudo. */
.hero__actions {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.hero__actions .button {
  min-width: 220px;
}

.button--hero-menu {
  min-height: 54px;
  border-color: rgba(255,255,255,.42);
  background: rgba(15,15,15,.52);
  color: var(--white);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

@media (hover: hover) and (pointer: fine) {
  .button--hero-menu:hover {
    border-color: rgba(255,255,255,.76);
    background: rgba(15,15,15,.74);
    color: var(--white);
  }
}

.button--hero-menu:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

@media (max-width: 640px) {
  .hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero__actions .button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding-inline: 10px;
    font-size: 10px;
    letter-spacing: .075em;
  }

  .button--hero-menu {
    background: rgba(15,15,15,.66);
  }
}


/* ==========================================================
   CAYO2 V12 refinement layer — iPhone stability + mobile polish
   ========================================================== */

/* Hard stop for accidental side-to-side panning on mobile Safari. */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body { overflow-x: clip; }
}

body {
  position: relative;
  touch-action: pan-y pinch-zoom;
}

main,
.site-header,
.mobile-menu,
.hero,
section {
  max-width: 100%;
}

img,
video { max-width: 100%; }

/* iOS-safe scroll lock. The JS writes the negative scroll offset to body.top. */
html.menu-open { overflow: hidden; }
body.menu-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

/* The first impression is one complete hero viewport, not hero + a slice of Events. */
.hero,
.hero__content {
  min-height: 100vh;
  min-height: 100dvh;
}

/* Full-screen mobile navigation with its own explicit close action. */
.mobile-menu {
  z-index: 6000;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0 max(20px, env(safe-area-inset-right)) max(26px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,214,10,.075), transparent 34%),
    var(--black);
  transform: translateY(-8px);
}

.mobile-menu__top {
  position: sticky;
  top: 0;
  z-index: 2;
  min-height: calc(82px + env(safe-area-inset-top));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: env(safe-area-inset-top);
  background: linear-gradient(180deg, rgba(15,15,15,1) 62%, rgba(15,15,15,.93) 82%, rgba(15,15,15,0));
}

.mobile-menu__brand {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
}

.mobile-menu__brand img {
  width: 112px;
  height: auto;
  display: block;
}

.mobile-menu__close {
  position: relative;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.035);
  color: var(--white);
  cursor: pointer;
}

.mobile-menu__close span {
  position: absolute;
  left: 15px;
  right: 15px;
  top: 26px;
  height: 1px;
  background: currentColor;
}
.mobile-menu__close span:first-child { transform: rotate(45deg); }
.mobile-menu__close span:last-child { transform: rotate(-45deg); }
.mobile-menu__close:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }

.mobile-menu__meta {
  padding: 18px 0 17px;
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,.11);
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.mobile-menu > a:not(.mobile-menu__quote) {
  grid-template-columns: 44px 1fr auto;
  min-height: 76px;
  padding: 18px 0 12px;
  font-size: clamp(38px, 12.8vw, 58px);
  letter-spacing: -.015em;
  transition: color .18s ease, padding-left .18s ease;
}

.mobile-menu > a:not(.mobile-menu__quote)::after {
  content: '↗';
  align-self: center;
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255,214,10,.62);
  transform: rotate(45deg);
}

.mobile-menu > a:not(.mobile-menu__quote):active { color: var(--yellow); }

.mobile-menu__quote {
  margin-top: 24px;
  min-height: 60px;
  justify-content: center;
  font-size: 11px;
}

.mobile-menu__links {
  gap: 28px;
  margin-top: 22px;
  padding-bottom: 10px;
  font-size: 12px;
}

/* No floating play UI: the video autoplays muted and retries after the first interaction if Safari delays it. */
.events-stage__video-control { display: none !important; }

@media (max-width: 640px) {
  .hero {
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero__content {
    min-height: 100%;
    height: 100%;
    padding-bottom: max(30px, env(safe-area-inset-bottom));
  }

  /* Keep mobile title motion vertical-only; no transformed word can widen the page. */
  .hero__word { max-width: 100%; }

  .mobile-menu > a:not(.mobile-menu__quote) {
    font-size: clamp(40px, 12.6vw, 54px);
  }
}

@media (max-width: 380px), (max-height: 700px) and (max-width: 640px) {
  .mobile-menu__top { min-height: calc(70px + env(safe-area-inset-top)); }
  .mobile-menu__brand img { width: 98px; }
  .mobile-menu__close { width: 48px; height: 48px; }
  .mobile-menu__close span { top: 23px; left: 13px; right: 13px; }
  .mobile-menu__meta { padding-block: 12px; }
  .mobile-menu > a:not(.mobile-menu__quote) { min-height: 62px; padding-block: 12px 9px; font-size: clamp(34px, 10.8vw, 46px); }
  .mobile-menu__quote { min-height: 52px; margin-top: 18px; }
  .mobile-menu__links { margin-top: 16px; }
}

/* ==========================================================
   CAYO2 V13 refinement layer — editorial finish + brand consistency
   ========================================================== */

/* Global finish: slightly cleaner paper, quieter motion and more consistent rules. */
:root {
  --warm: #ddd5c7;
  --warm-deep: #cec5b6;
  --paper: #eee9df;
  --paper-2: #e2dbcf;
  --ink: #121210;
  --ink-soft: #191815;
  --ink-panel: #211f1a;
  --line-dark: rgba(15,15,15,.16);
  --line-light: rgba(255,255,255,.16);
}

html { text-rendering: optimizeLegibility; }
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.section { padding: clamp(84px, 8.6vw, 138px) 0; }
.eyebrow {
  margin-bottom: 16px;
  font-size: 10px;
  letter-spacing: .17em;
}

.js .reveal {
  transform: translateY(14px);
  transition-duration: .62s;
}

/* One section-number language across the site: square, direct, unmistakably Cayó. */
.section-index,
.section-kicker {
  font-size: 9px;
  letter-spacing: .14em;
}

.section-index b,
.section-kicker span {
  width: 31px;
  height: 31px;
  border: 0;
  border-radius: 0;
  background: var(--black);
  color: var(--yellow);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
}

.section-index--light b {
  background: var(--yellow);
  color: var(--black);
}

/* Buttons stay flat and graphic: no glassmorphism, no decorative motion. */
.button {
  min-height: 56px;
  padding-inline: 24px;
  border-radius: 0;
  font-size: 10px;
  letter-spacing: .11em;
}
.button:active { transform: translateY(1px); }
.button--yellow { border-color: var(--yellow); }
.button--black { border-color: var(--black); }

/* Header: remove the glassy/tech container and return to an editorial navigation bar. */
.site-header {
  border-bottom: 0;
}
.site-header.is-scrolled {
  background: rgba(15,15,15,.97);
  border-bottom: 1px solid rgba(255,255,255,.09);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.site-header__inner {
  grid-template-columns: 150px 1fr;
  gap: 24px;
}
.header-cluster,
.site-header.is-scrolled .header-cluster {
  min-height: 48px;
  background: transparent;
  border: 0;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.desktop-nav a {
  min-height: 48px;
  padding-inline: 14px;
  border-right: 0;
  background: transparent;
  color: rgba(255,255,255,.78);
  position: relative;
}
.desktop-nav a::after {
  display: block;
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease);
}
.desktop-nav a:hover,
.desktop-nav a.is-active {
  background: transparent;
  color: var(--white);
}
.desktop-nav a:hover::after,
.desktop-nav a.is-active::after { transform: scaleX(1); }
.header-menu-link {
  min-height: 48px;
  padding-inline: 14px;
  border-right: 0;
  background: transparent;
}
.header-menu-link:hover { background: transparent; color: var(--yellow); }
.header-quote {
  min-height: 48px;
  margin-left: 8px;
  padding-inline: 20px;
}
.menu-button {
  border-color: rgba(255,255,255,.28);
  background: rgba(15,15,15,.72);
}

/* Hero: better contrast and calmer crop. V14 removes the decorative yellow bottom rule. */
.hero__media img {
  transform: scale(1.02);
  filter: saturate(.95) contrast(1.02);
}
.hero__shade {
  background:
    linear-gradient(180deg, rgba(15,15,15,.42) 0%, rgba(15,15,15,.09) 30%, rgba(15,15,15,.24) 58%, rgba(15,15,15,.91) 100%),
    linear-gradient(90deg, rgba(15,15,15,.56) 0%, rgba(15,15,15,.18) 46%, transparent 72%);
}
.hero__eyebrow {
  margin-left: 2px;
  color: rgba(255,255,255,.9);
}
.hero__headline {
  max-width: min(100%, 1080px);
}
.hero h1 { letter-spacing: -.018em; }
.hero__bottom { max-width: 760px; }
.hero__actions { gap: 9px; }
.hero__actions .button { min-width: 224px; }
.button--hero-menu {
  border-color: rgba(255,255,255,.48);
  background: rgba(15,15,15,.88);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
@media (hover: hover) and (pointer: fine) {
  .button--hero-menu:hover {
    border-color: var(--white);
    background: var(--black);
  }
}

/* Events: stronger editorial alignment, cleaner film frame and a more deliberate panel. */
.events.section {
  border-top: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.13), transparent 24%),
    var(--warm);
}
.events-intro {
  grid-template-columns: 104px minmax(0, 1.3fr) minmax(260px, .58fr);
  gap: clamp(24px, 4vw, 62px);
}
.events-intro__headline h2 {
  max-width: 790px;
  letter-spacing: -.02em;
}
.events-intro__aside {
  padding: 4px 0 2px 26px;
  border-left: 1px solid rgba(15,15,15,.18);
}
.events-intro__lead {
  font-size: 14px;
  line-height: 1.62;
}
.events-intro__types {
  margin-top: 16px;
  padding-top: 14px;
  line-height: 1.65;
}
.events-stage {
  border: 1px solid rgba(15,15,15,.15);
  background: transparent;
}
.events-stage__media {
  border: 1px solid rgba(255,255,255,.08);
  background: #050505;
}
.events-stage__media::after {
  background: linear-gradient(180deg, rgba(0,0,0,.02) 62%, rgba(0,0,0,.38));
}
.events-stage__media-meta {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.events-stage__content {
  position: relative;
  background: var(--ink);
  border-top: 4px solid var(--yellow);
}
.events-stage__content h3 {
  letter-spacing: -.01em;
}
.events-stage__copy {
  color: rgba(255,255,255,.7);
}
.events-stage__steps article {
  grid-template-columns: 38px 1fr;
  gap: 14px;
}
.events-stage__steps article > span {
  padding-top: 1px;
  font-size: 8px;
}
.events-stage__steps strong { color: rgba(255,255,255,.94); }
.events-stage__steps p { color: rgba(255,255,255,.59); }
.event-gallery { gap: 10px; }
.event-gallery figure { border: 1px solid rgba(15,15,15,.15); }
.event-gallery img { filter: saturate(.9) contrast(1.035); }
.event-gallery figcaption {
  left: 10px;
  right: 10px;
  bottom: 10px;
  min-height: 48px;
  padding-inline: 13px;
  border-left: 3px solid var(--yellow);
  background: rgba(15,15,15,.92);
}

/* Budget: visually connect the sales message and form without making it corporate. */
.quote.section {
  border-top: 1px solid rgba(255,255,255,.07);
}
.quote__copy .section-index { margin-bottom: 30px; }
.quote__lead {
  max-width: 48ch;
  color: rgba(255,255,255,.7);
}
.quote__proof {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.quote__photo {
  border: 1px solid rgba(255,255,255,.1);
}
.event-form {
  position: relative;
  overflow: hidden;
  background: #151512;
  border: 1px solid rgba(255,255,255,.12);
  border-top: 4px solid var(--yellow);
}
.event-form__head {
  color: rgba(255,255,255,.58);
}
.field { gap: 8px; }
.field > span:first-child {
  font-size: 8px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.68);
}
.field input,
.field select,
.field textarea,
.date-control input {
  border-color: rgba(255,255,255,.15);
  background: #1a1916;
}
.field input:hover,
.field select:hover,
.field textarea:hover,
.date-control input:hover {
  border-color: rgba(255,255,255,.28);
}
.event-form__submit { margin-top: 7px; }

/* Product: quieter background and stronger hierarchy around the photography. */
.section--warm-product {
  background: #d7cfc0;
}
.product__intro {
  border-top: 1px solid rgba(15,15,15,.14);
  padding-top: 28px;
}
.product__intro h2 { letter-spacing: -.018em; }
.product__intro .section-intro__lead { color: rgba(15,15,15,.68); }
.food-editorial { gap: 10px; }
.food-editorial figure {
  border: 1px solid rgba(15,15,15,.14);
  background: #a9a196;
}
.food-editorial img {
  filter: saturate(.94) contrast(1.025);
}
.food-editorial__hero img { object-position: center 47%; }
.food-editorial figcaption {
  inset: auto 12px 12px;
  padding: 10px 12px;
  background: rgba(15,15,15,.82);
  text-shadow: none;
}
.food-editorial__hero figcaption {
  border-left: 3px solid var(--yellow);
}
.production-notes {
  background: var(--ink);
  border-top: 4px solid var(--yellow);
}
.production-notes article { min-width: 0; }
.production-notes h3 { margin-top: 14px; }
.menu-strip {
  border: 1px solid rgba(15,15,15,.18);
  background: rgba(255,255,255,.19);
}

/* History: use the photo/year as one editorial object and reduce visual noise. */
.history.section { border-top: 1px solid rgba(255,255,255,.07); }
.history__visual figure {
  border: 1px solid rgba(255,255,255,.1);
}
.history__visual figure img { filter: saturate(.9) contrast(1.02); }
.history__year {
  margin-top: 14px;
  padding-top: 16px;
}
.history__year b { letter-spacing: -.02em; }
.history__copy .section-index { margin-bottom: 38px; }
.history__copy h2 {
  margin-bottom: 28px;
  letter-spacing: -.015em;
}
.history__copy > p:not(.eyebrow) {
  color: rgba(255,255,255,.7);
}
.brand-band {
  margin-top: 78px;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.brand-band figure { border: 1px solid rgba(255,255,255,.09); }
.brand-band img { filter: saturate(.9) contrast(1.015); }

/* Locations: let the photography lead, with a restrained branded information block. */
.locations.section {
  background: var(--paper);
}
.locations__intro {
  padding-top: 4px;
}
.locations__grid {
  gap: 12px;
}
.location {
  border: 1px solid rgba(15,15,15,.2);
  background: var(--black);
}
.location__photo {
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.location__photo::after {
  background: linear-gradient(180deg, transparent 68%, rgba(0,0,0,.28));
}
.location__photo-tag {
  min-height: 27px;
  padding-inline: 8px;
  border-left-width: 2px;
  background: rgba(15,15,15,.92);
}
.location__body {
  border-top: 3px solid var(--yellow);
}
.location__body h3 { letter-spacing: -.008em; }
.location__body p { color: rgba(255,255,255,.72); }
.phones {
  margin-top: 28px;
  padding-top: 20px;
  border-top-color: rgba(15,15,15,.22);
}

/* Closing: more photographic, less washed-out, while yellow remains dominant. */
.closing {
  min-height: 72svh;
  border-top: 1px solid rgba(15,15,15,.2);
}
.closing__media { left: 50%; }
.closing__media::after {
  background: linear-gradient(90deg, var(--yellow) 0%, rgba(255,214,10,.66) 22%, rgba(255,214,10,.08) 68%, transparent 88%);
}
.closing__media img {
  filter: grayscale(.58) contrast(1.05) saturate(.8);
  opacity: .72;
}
.closing__content { padding-bottom: 72px; }
.closing h2 { letter-spacing: -.018em; }

/* Footer: compact, ordered, with a final yellow rule rather than a decorative flourish. */
.site-footer {
  padding-top: 64px;
  border-top: 4px solid var(--yellow);
}
.site-footer__grid {
  padding-bottom: 48px;
}
.site-footer__logo { width: 148px; }
.site-footer__grid p { color: rgba(255,255,255,.6); }
.site-footer__links span { color: rgba(255,255,255,.46); }
.site-footer__links a { color: rgba(255,255,255,.86); }
.site-footer__bottom { color: rgba(255,255,255,.5); }

/* Tablet / mobile finish. */
@media (max-width: 920px) {
  .site-header__inner { grid-template-columns: 1fr auto; }

  .events-intro {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 20px 24px;
  }
  .events-intro__aside {
    grid-column: 2;
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(15,15,15,.16);
  }

  .events-stage { border: 0; }
  .events-stage__content { border-top-width: 4px; }

  .product__intro { border-top: 0; padding-top: 0; }
  .history__visual figure { aspect-ratio: 1.25 / 1; }
  .closing__media { left: 42%; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 30px); }
  .section { padding: 72px 0; }

  .brand img { width: 110px; }
  .menu-button {
    width: 46px;
    height: 46px;
    background: rgba(15,15,15,.82);
  }

  .hero__media img {
    object-position: 60% center;
    filter: saturate(.92) contrast(1.03);
  }
  .hero__shade {
    background:
      linear-gradient(180deg, rgba(15,15,15,.34) 0%, rgba(15,15,15,.08) 30%, rgba(15,15,15,.24) 57%, rgba(15,15,15,.94) 100%),
      linear-gradient(90deg, rgba(15,15,15,.34), transparent 72%);
  }
  .hero__content {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: max(26px, env(safe-area-inset-bottom));
  }
  .hero__headline { padding-bottom: 20px; }
  .hero__eyebrow { font-size: 8px; letter-spacing: .19em; }
  .hero h1 { line-height: .82; }
  .hero__word--white { font-size: clamp(76px, 24.6vw, 116px); }
  .hero__word--yellow { font-size: clamp(57px, 17.5vw, 82px); }
  .hero__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }
  .hero__actions .button {
    min-height: 54px;
    padding-inline: 8px;
    font-size: 9px;
    letter-spacing: .085em;
  }

  /* Mobile menu becomes a composed black editorial page, not a floating app panel. */
  .mobile-menu {
    display: flex;
    flex-direction: column;
    background: var(--black);
    border-top: 4px solid var(--yellow);
  }
  .mobile-menu__top {
    background: var(--black);
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .mobile-menu__close {
    width: 50px;
    height: 50px;
    background: transparent;
    border-color: rgba(255,255,255,.24);
  }
  .mobile-menu__brand img { width: 106px; }
  .mobile-menu__meta {
    margin-top: 0;
    padding-block: 15px;
    border-top: 0;
  }
  .mobile-menu > a:not(.mobile-menu__quote) {
    min-height: 66px;
    grid-template-columns: 38px 1fr auto;
    padding: 13px 0 9px;
    font-size: clamp(35px, 10.8vw, 48px);
    letter-spacing: -.01em;
  }
  .mobile-menu > a:not(.mobile-menu__quote)::after {
    content: '→';
    transform: none;
    font-size: 12px;
    color: var(--yellow);
  }
  .mobile-menu__quote {
    min-height: 56px;
    margin-top: 18px;
  }
  .mobile-menu__links {
    margin-top: auto;
    padding-top: 18px;
    padding-bottom: max(6px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255,255,255,.12);
  }

  .section-kicker,
  .section-index {
    gap: 10px;
  }
  .section-index { padding-bottom: 16px; }

  .events.section { padding-top: 66px; padding-bottom: 82px; }
  .events-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .events-intro__headline h2 {
    font-size: clamp(52px, 15.5vw, 72px);
    line-height: .9;
  }
  .events-intro__aside {
    grid-column: 1;
    padding-top: 16px;
  }
  .events-intro__lead { font-size: 14px; }
  .events-intro__types { font-size: 7px; }
  .events-stage { margin-top: 32px; }
  .events-stage__media { width: min(100%, 300px); }
  .events-stage__content {
    padding: 24px 18px 25px;
  }
  .events-stage__content h3 {
    font-size: clamp(45px, 12.6vw, 58px);
    line-height: .91;
  }
  .events-stage__copy {
    margin-block: 14px 18px;
    font-size: 13px;
  }
  .events-stage__steps { margin-bottom: 24px; }
  .events-stage__steps article { padding-block: 12px; }
  .event-gallery { margin-top: 12px; gap: 9px; }
  .event-gallery figcaption {
    left: 8px;
    right: 8px;
    bottom: 8px;
    min-height: 44px;
  }

  .quote.section { padding-top: 70px; padding-bottom: 78px; }
  .quote__copy .section-index { margin-bottom: 24px; }
  .quote__title { font-size: clamp(44px, 12.5vw, 58px); }
  .quote__lead { margin-top: 20px; }
  .quote__proof { margin-top: 22px; }
  .event-form {
    padding: 20px 16px;
    border-top-width: 4px;
  }

  .product.section { padding-top: 66px; padding-bottom: 78px; }
  .product__intro { gap: 18px; }
  .product__intro h2 { font-size: clamp(44px, 12.5vw, 60px); }
  .food-editorial { margin-top: 24px; gap: 9px; }
  .food-editorial__hero { aspect-ratio: 1 / 1.04; }
  .food-editorial__stack { gap: 9px; }
  .food-editorial__stack figure { aspect-ratio: .82 / 1; }
  .food-editorial figcaption { inset: auto 8px 8px; }
  .production-notes { border-top-width: 4px; }
  .production-notes article,
  .production-notes article + article { padding: 22px 18px; }
  .production-notes h3 { margin-block: 12px 8px; }
  .menu-strip { padding: 18px; }

  .history.section { padding-top: 72px; padding-bottom: 78px; }
  .history__visual figure { aspect-ratio: 1.12 / 1; }
  .history__year b { font-size: clamp(64px, 20vw, 88px); }
  .history__copy { margin-top: 48px; }
  .history__copy .section-index { margin-bottom: 24px; }
  .history__copy h2 { font-size: clamp(43px, 12.4vw, 58px); }
  .history__copy > p:not(.eyebrow) { font-size: 14px; line-height: 1.58; }
  .brand-band { margin-top: 48px; padding-top: 12px; gap: 8px; }

  .locations.section { padding-top: 68px; padding-bottom: 74px; }
  .locations__intro { gap: 16px; }
  .locations__intro h2 { font-size: clamp(48px, 13.8vw, 64px); }
  .locations__grid { margin-top: 30px; gap: 10px; }
  .location__photo { aspect-ratio: 1.22 / 1; }
  .location__body {
    padding: 18px 16px 20px;
    border-top-width: 3px;
  }
  .location__body h3 { font-size: clamp(40px, 12vw, 52px); }
  .phones { margin-top: 24px; padding-top: 18px; }
  .phones p { font-size: clamp(23px, 7vw, 29px); }

  .closing {
    min-height: 68svh;
  }
  .closing__media { left: 30%; }
  .closing__media::after {
    background: linear-gradient(90deg, var(--yellow) 0%, rgba(255,214,10,.72) 28%, rgba(255,214,10,.1) 76%, transparent 100%);
  }
  .closing__media img { opacity: .66; }
  .closing__content { padding-top: 62px; padding-bottom: 48px; }
  .closing h2 { font-size: clamp(50px, 14vw, 68px); }
  .closing__actions { margin-top: 28px; gap: 8px; }

  .site-footer {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  .site-footer__grid { gap: 36px; padding-bottom: 38px; }
  .site-footer__links { gap: 22px; }
  .site-footer__bottom { padding-top: 16px; }
}

@media (max-width: 360px) {
  .hero__actions { grid-template-columns: 1fr; }
  .hero__actions .button { min-height: 50px; }
  .mobile-menu > a:not(.mobile-menu__quote) { font-size: 34px; }
  .events-stage__media { width: min(100%, 282px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__media img,
  .event-gallery img,
  .food-editorial img,
  .brand-band img,
  .location__photo img { transform: none !important; }
}
