/* ── self-hosted fonts (latin subsets, variable where available) ── */

/* Archivo — normal 100-900 */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url('../assets/fonts/archivo-normal-100-900.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* DM Mono — italic 400 */
@font-face {
  font-family: 'DM Mono';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/dmmono-italic-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* DM Mono — normal 300 */
@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../assets/fonts/dmmono-normal-300.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* DM Mono — normal 400 */
@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/dmmono-normal-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* DM Mono — normal 500 */
@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/dmmono-normal-500.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Fraunces — italic 300-900 */
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
  src: url('../assets/fonts/fraunces-italic-300-900.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Fraunces — normal 300-900 */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('../assets/fonts/fraunces-normal-300-900.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ═══════════════════════════════════════════════════════════════
   HIGHLAND MORNING — design system
   Palette: cream paper, espresso ink, egg-yolk gold, marmalade,
   green-door kelly. Type: Fraunces (display) / Archivo (text) /
   DM Mono (labels & prices).
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* color */
  --cream:      #F6EFE3;
  --cream-2:    #EFE4D0;
  --cream-3:    #E7D9BE;
  --espresso:   #221711;
  --espresso-2: #2E2119;
  --espresso-3: #3B2C21;
  --yolk:       #F2A93B;
  --yolk-deep:  #DE8F1F;
  --marmalade:  #DF5B33;
  --leaf:       #2E7D46;
  --leaf-deep:  #1F5C32;

  --ink:        var(--espresso);
  --paper:      var(--cream);

  /* type */
  --font-serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-sans:  "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-mono:  "DM Mono", "SFMono-Regular", Menlo, monospace;

  /* scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lede: clamp(1.125rem, 1rem + 0.6vw, 1.5rem);
  --title-md:  clamp(2rem, 1.4rem + 3vw, 4rem);
  --title-lg:  clamp(2.75rem, 1.8rem + 4.6vw, 6.25rem);
  --title-xl:  clamp(3.9rem, 1.6rem + 11.5vw, 12.5rem);

  /* rhythm */
  --space-section: clamp(6rem, 5rem + 8vw, 11rem);
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --container: 90rem;

  /* motion */
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.45, 0, 0.15, 1);
  --dur: 0.8s;

  --header-h: 5rem;
}

/* ── reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul[role="list"] { list-style: none; }
address { font-style: normal; }
table { border-collapse: collapse; }
em { font-style: italic; }

::selection { background: var(--yolk); color: var(--espresso); }

:focus-visible {
  outline: 2px dashed var(--yolk-deep);
  outline-offset: 4px;
  border-radius: 2px;
}

.skip-link {
  position: fixed;
  top: 0.75rem; left: 0.75rem;
  z-index: 300;
  padding: 0.75rem 1.25rem;
  background: var(--espresso);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  border-radius: 999px;
  transform: translateY(-200%);
  transition: transform 0.3s var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }

/* ── utilities ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.mono {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.serif { font-family: var(--font-serif); }

.section { padding-block: var(--space-section); position: relative; }
.section--dark {
  background: var(--espresso);
  color: var(--cream);
}
.section--cream2 { background: var(--cream-2); }
.section--band {
  background: var(--yolk);
  color: var(--espresso);
  padding-block: clamp(4.5rem, 4rem + 5vw, 8rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  margin-bottom: clamp(1.25rem, 1rem + 1.5vw, 2.5rem);
  color: var(--espresso);
  opacity: 0.85;
}
.eyebrow::before {
  content: "";
  width: 2.5rem; height: 1px;
  background: currentColor;
}
.eyebrow--gold { color: var(--yolk); opacity: 1; }
.eyebrow--ink  { color: var(--espresso); }

.section-head { margin-bottom: clamp(3rem, 2rem + 4vw, 5.5rem); }
.section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.section-title {
  font-family: var(--font-serif);
  font-size: var(--title-lg);
  font-weight: 480;
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 60, "WONK" 0, "opsz" 100;
  max-width: 18ch;
  text-wrap: balance;
}

/* ── grain overlay ─────────────────────────────────────────────── */
.grain {
  position: fixed;
  inset: -50%;
  z-index: 120;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  animation: grain-shift 0.9s steps(2) infinite;
}
@keyframes grain-shift {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(1.5%, -1%); }
  100% { transform: translate(-1%, 1.5%); }
}

/* ── custom cursor ─────────────────────────────────────────────── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  z-index: 250;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--espresso);
  pointer-events: none;
  opacity: 0;
  display: none;
  align-items: center;
  justify-content: center;
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
              background-color 0.3s var(--ease-out), opacity 0.3s ease;
  will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  .cursor { display: flex; }
}
.cursor__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.cursor.is-active {
  width: 64px; height: 64px;
  background: var(--yolk);
  mix-blend-mode: normal;
}
.cursor.is-active .cursor__label { opacity: 1; color: var(--espresso); }
.cursor.is-down { transform: scale(0.8); }

/* ── buttons ───────────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65em;
  padding: 1.05em 1.9em;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.35s var(--ease-out), background-color 0.35s var(--ease-out),
              border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  overflow: hidden;
}
.btn__label { position: relative; z-index: 1; transition: transform 0.35s var(--ease-out); }
.btn__dot {
  position: relative;
  z-index: 1;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  transition: transform 0.35s var(--ease-out);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--yolk);
  transform: translateY(101%);
  transition: transform 0.4s var(--ease-out);
}
.btn:hover::after { transform: translateY(0); }
.btn:hover .btn__dot { transform: scale(1.8); }

.btn--solid { background: var(--espresso); color: var(--cream); }
.btn--solid:hover { color: var(--espresso); }

.btn--line { border: 1px solid var(--espresso); color: var(--espresso); background: transparent; }
.btn--line:hover { color: var(--espresso); border-color: var(--yolk); }

.btn--ghost { color: var(--espresso); background: transparent; }
.btn--ghost::after { background: var(--cream-3); }

.btn--dark { background: var(--espresso); color: var(--cream); }
.btn--dark::after { background: var(--cream); }
.btn--dark:hover { color: var(--espresso); }

.btn--darkline { border: 1px solid var(--espresso); color: var(--espresso); }
.btn--darkline::after { background: var(--espresso); }
.btn--darkline:hover { color: var(--yolk); }

.btn--sm { padding: 0.8em 1.4em; }

/* ── header / nav ──────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: transform 0.5s var(--ease-out), background-color 0.4s ease,
              box-shadow 0.4s ease;
}
.header.is-scrolled {
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--espresso) 12%, transparent);
}
.header.is-hidden { transform: translateY(-100%); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.nav__mark { width: 2.1rem; height: 2.1rem; color: var(--espresso); flex: none; }
.nav__wordmark {
  font-family: var(--font-serif);
  font-weight: 560;
  font-size: 0.95rem;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
}
.nav__link {
  position: relative;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-block: 0.4rem;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--espresso);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__actions { display: flex; align-items: center; gap: 1rem; }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  align-items: center;
}
.nav__burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--espresso);
  transition: transform 0.35s var(--ease-out), opacity 0.3s ease;
}
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child  { transform: translateY(-4px) rotate(-45deg); }

/* header sits above the dark overlay when the mobile menu is open */
body.menu-open .header {
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
body.menu-open .nav__brand,
body.menu-open .nav__mark { color: var(--cream); }
body.menu-open .nav__burger span { background: var(--cream); }

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--espresso);
  color: var(--cream);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.45s var(--ease-out), visibility 0s linear 0.45s;
}
.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.mobile-menu__inner {
  height: 100%;
  padding: calc(var(--header-h) + 2rem) var(--gutter) 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.mobile-menu__eyebrow { color: var(--yolk); }
.mobile-menu nav a {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 10vw, 4rem);
  font-weight: 480;
  line-height: 1.15;
  letter-spacing: -0.02em;
  padding-block: 0.15em;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.6s var(--ease-out), opacity 0.6s ease;
}
.mobile-menu.is-open nav a { transform: translateY(0); opacity: 1; }
.mobile-menu.is-open nav li:nth-child(1) a { transition-delay: 0.08s; }
.mobile-menu.is-open nav li:nth-child(2) a { transition-delay: 0.14s; }
.mobile-menu.is-open nav li:nth-child(3) a { transition-delay: 0.2s; }
.mobile-menu.is-open nav li:nth-child(4) a { transition-delay: 0.26s; }
.mobile-menu.is-open nav li:nth-child(5) a { transition-delay: 0.32s; }
.mobile-menu__foot {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.mobile-menu__foot .mono { color: color-mix(in srgb, var(--cream) 70%, transparent); }
.mobile-menu__foot .btn--solid { background: var(--yolk); color: var(--espresso); }

/* ── preloader ─────────────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--cream);
  display: grid;
  place-items: center;
  transition: transform 0.8s var(--ease-soft);
}
.preloader.is-done {
  transform: translateY(-100%);
}
.preloader.is-gone { display: none; }
.preloader__scene { text-align: center; }
.preloader__sun {
  width: clamp(80px, 12vw, 130px);
  margin-inline: auto;
  color: var(--yolk);
  overflow: visible;
}
.preloader__sun path,
.preloader__sun .sun-rays {
  animation: sun-rise 1.1s var(--ease-out) both;
}
.preloader__sun .sun-rays { animation-name: rays-in; animation-delay: 0.45s; }
@keyframes sun-rise {
  from { transform: translateY(26px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes rays-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.preloader__word {
  margin-top: 1.25rem;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.01em;
}
.preloader__word span {
  display: inline-block;
  animation: word-up 0.7s var(--ease-out) both;
}
@keyframes word-up {
  from { transform: translateY(0.8em); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ── hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: var(--header-h);
  overflow: clip;
}
.hero__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--espresso) 18%, transparent);
}
.hero__meta-item { opacity: 0.9; display: inline-flex; align-items: center; gap: 0.5em; }
.hero__meta-item--right { text-align: right; }

.hero__stage {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-block: clamp(1rem, 2vh, 2rem) clamp(3rem, 5vh, 4rem);
}

.hero__sun {
  position: absolute;
  left: 0; right: 0;
  top: clamp(-1.5rem, -1vh, 0rem);
  width: clamp(240px, 30vw, 440px);
  margin-inline: auto;
  color: var(--yolk);
  z-index: 0;
  overflow: visible;
}
.sun-rays--spin {
  animation: rays-sway 7s ease-in-out infinite alternate;
  transform-box: view-box;
  transform-origin: 50% 90%;
}
.js body:not(.is-loaded) .hero__sun { opacity: 0; }
.is-loaded .hero__sun { animation: sun-rise 1.4s var(--ease-out) 0.15s both; }
@keyframes rays-sway {
  from { transform: rotate(-5deg); }
  to   { transform: rotate(5deg); }
}

.hero__title {
  position: relative;
  z-index: 1;
  margin-top: clamp(2rem, 5vh, 3rem);
  font-family: var(--font-serif);
  font-weight: 470;
  font-size: var(--title-xl);
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-variation-settings: "SOFT" 40, "WONK" 0, "opsz" 144;
  text-align: center;
}
.hero__line { display: block; overflow: hidden; padding-block: 0.04em; }
.hero__line-inner { display: inline-block; position: relative; }
.js body:not(.is-loaded) .hero__line-inner { transform: translateY(115%); }
.is-loaded .hero__line-inner { animation: line-up 1.1s var(--ease-out) 0.3s both; }
.is-loaded .hero__line--2 .hero__line-inner { animation-delay: 0.42s; }
@keyframes line-up {
  from { transform: translateY(115%); }
  to   { transform: translateY(0); }
}
.hero__ast {
  color: var(--marmalade);
  font-style: normal;
  font-size: 0.5em;
  vertical-align: 0.55em;
  margin-left: 0.05em;
}
.hero__footnote {
  text-align: center;
  margin-top: 0.5rem;
  color: var(--marmalade);
}
.js body:not(.is-loaded) .hero__footnote { opacity: 0; }
.is-loaded .hero__footnote { animation: rays-in 0.8s ease 1.1s both; }

.hero__row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(2rem, 4vw, 5rem);
  margin-top: auto;
  padding-top: clamp(1rem, 2vh, 1.75rem);
}

.hero__photo {
  position: relative;
  width: clamp(170px, 13.5vw, 240px);
  flex: none;
  margin-right: clamp(0rem, 3vw, 4rem);
}

/* short laptop viewports: tighten the fold */
@media (min-width: 64em) and (max-height: 850px) {
  :root { --title-xl: clamp(3.9rem, 1.2rem + 9.8vw, 10.5rem); }
  .hero__title { margin-top: 1.5rem; }
  .hero__sun { width: 26vw; }
  .hero__photo { width: clamp(160px, 12vw, 210px); }
}
.js body:not(.is-loaded) .hero__photo { opacity: 0; }
.is-loaded .hero__photo { animation: photo-in 1.2s var(--ease-out) 0.75s both; }
@keyframes photo-in {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.arch {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--cream-3);
}
.arch img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 0.9s var(--ease-out);
}
.hero__photo:hover .arch img { transform: scale(1.12); }

/* rotating circular badge */
.badge {
  position: absolute;
  display: grid;
  place-items: center;
  width: clamp(90px, 9vw, 130px);
  aspect-ratio: 1;
}
.badge > svg:first-child { animation: badge-spin 18s linear infinite; }
@keyframes badge-spin { to { transform: rotate(360deg); } }
.badge--hero { top: -16%; right: -22%; color: var(--espresso); }
.badge svg { width: 100%; height: 100%; }
.badge text {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0;
  text-transform: uppercase;
  fill: currentColor;
}
.badge__center {
  position: absolute;
  width: 26%;
  color: var(--marmalade);
}
.badge__star {
  position: absolute;
  font-size: clamp(1.4rem, 2vw, 2rem);
  color: var(--yolk);
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 32rem;
}
.js body:not(.is-loaded) .hero__copy { opacity: 0; }
.is-loaded .hero__copy { animation: photo-in 1s var(--ease-out) 0.9s both; }
.hero__lede { font-size: var(--text-lede); line-height: 1.45; text-wrap: pretty; }
.hero__rotator { margin-top: 1.1rem; color: var(--espresso); opacity: 0.85; display: flex; gap: 0.6em; flex-wrap: wrap; }
.rotator { position: relative; display: inline-block; min-width: 18ch; height: 1.4em; vertical-align: bottom; }
.rotator__word {
  position: absolute;
  inset: 0;
  color: var(--marmalade);
  opacity: 0;
  transform: translateY(60%);
  transition: transform 0.5s var(--ease-out), opacity 0.4s ease;
  white-space: nowrap;
}
.rotator__word.is-active { opacity: 1; transform: translateY(0); }
.rotator__word.is-leaving { opacity: 0; transform: translateY(-60%); }
.hero__cta { display: flex; gap: 0.9rem; margin-top: 1.6rem; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  translate: -50% 0;
  display: flex;
  align-items: center;
  gap: 0.8em;
  opacity: 0.65;
}
.hero__scroll-line {
  display: block;
  width: 3.5rem; height: 1px;
  background: var(--espresso);
  transform-origin: left;
  animation: scroll-hint 2.2s var(--ease-soft) infinite;
}
@keyframes scroll-hint {
  0%   { transform: scaleX(0); transform-origin: left; }
  45%  { transform: scaleX(1); transform-origin: left; }
  55%  { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* ── ticker ────────────────────────────────────────────────────── */
.ticker {
  border-block: 1px solid var(--espresso);
  background: var(--cream);
  overflow: clip;
  padding-block: 1.1rem;
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker__item {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1rem + 1vw, 1.75rem);
  font-weight: 500;
  font-style: italic;
  white-space: nowrap;
}
.ticker__sep { color: var(--marmalade); font-size: 1.2rem; }

/* ── story ─────────────────────────────────────────────────────── */
.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.2fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 5rem);
}
.story__aside { position: relative; }
.story__aside .eyebrow { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.story__statement {
  font-family: var(--font-serif);
  font-size: var(--title-md);
  font-weight: 470;
  line-height: 1.12;
  letter-spacing: -0.015em;
  font-variation-settings: "SOFT" 70, "WONK" 0, "opsz" 72;
  text-wrap: balance;
  margin-bottom: clamp(2rem, 2vw, 3rem);
}
.story__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  max-width: 56rem;
}
.story__cols p { text-wrap: pretty; opacity: 0.92; }
.story__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: color-mix(in srgb, var(--espresso) 22%, transparent);
  border-block: 1px solid color-mix(in srgb, var(--espresso) 22%, transparent);
  margin-top: clamp(2.5rem, 3vw, 4rem);
}
.story__stats li {
  background: var(--cream);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.story__stats .mono { opacity: 0.75; line-height: 1.5; }
.story__stat-num {
  font-size: clamp(2.5rem, 2rem + 2.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--marmalade);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.story__photo { position: relative; align-self: start; }
.story__photo img { border-radius: 0; }
.story__photo figcaption {
  margin-top: 0.7rem;
  opacity: 0.7;
}
.story__photo--a { transform: rotate(2.5deg); margin-top: 22vh; }
.story__photo--b {
  transform: rotate(-2deg);
  width: min(100%, 250px);
  margin-top: clamp(4rem, 24vh, 15rem);
}

/* ── signatures / legends ──────────────────────────────────────── */
.legends { background: var(--cream); }
.legends__list { border-top: 1px solid color-mix(in srgb, var(--espresso) 30%, transparent); }
.legends__row { border-bottom: 1px solid color-mix(in srgb, var(--espresso) 30%, transparent); }
.legends__link {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1.35fr) minmax(0, 1fr) auto;
  align-items: baseline;
  gap: clamp(1rem, 2.5vw, 3rem);
  padding: clamp(1.4rem, 1.5vw, 2.2rem) clamp(0.5rem, 1.5vw, 2rem);
  position: relative;
  transition: background-color 0.4s var(--ease-out), color 0.4s var(--ease-out),
              padding-left 0.4s var(--ease-out);
}
.legends__num { opacity: 0.55; }
.legends__name {
  font-size: clamp(1.6rem, 1.2rem + 2.2vw, 3.25rem);
  font-weight: 480;
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-variation-settings: "SOFT" 60, "WONK" 0, "opsz" 60;
  transition: font-variation-settings 0.4s ease, font-style 0.4s ease;
}
.legends__desc { opacity: 0.75; font-size: var(--text-sm); line-height: 1.5; }
.legends__price { font-size: 1rem; }
.legends__price::before { content: "$"; opacity: 0.6; margin-right: 0.1em; }
.legends__row:hover .legends__link,
.legends__link:focus-visible {
  background: var(--espresso);
  color: var(--cream);
  padding-left: clamp(1rem, 2.5vw, 3rem);
}
.legends__row:hover .legends__name { font-style: italic; }
.legends__row:hover .legends__num { color: var(--yolk); opacity: 1; }

.legends__preview {
  position: fixed;
  top: 0; left: 0;
  z-index: 90;
  width: clamp(200px, 20vw, 300px);
  aspect-ratio: 1;
  border-radius: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.85) rotate(3deg);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  will-change: transform;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .legends__preview { display: block; }
}
.legends__preview.is-visible { opacity: 1; }
.legends__preview img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ── gravy / award section ─────────────────────────────────────── */
.gravy { overflow: clip; }
.gravy__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(3rem, 5vw, 6rem);
  align-items: center;
}
.gravy__title {
  font-family: var(--font-serif);
  font-size: var(--title-lg);
  font-weight: 440;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--yolk);
  font-variation-settings: "SOFT" 80, "WONK" 1, "opsz" 100;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.gravy__lede {
  font-size: var(--text-lede);
  line-height: 1.5;
  opacity: 0.85;
  max-width: 34rem;
  text-wrap: pretty;
}
.badge--gravy {
  position: absolute;
  top: -6%;
  right: 46%;
  width: clamp(110px, 11vw, 150px);
  color: var(--yolk);
  opacity: 0.9;
}
.gravy__tickets {
  display: grid;
  gap: 1.5rem;
}
.ticket {
  position: relative;
  background: var(--cream);
  color: var(--espresso);
  border-radius: 14px;
  padding: 1.8rem 2rem 1.6rem;
  transform: rotate(-1.2deg);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
  box-shadow: 0 12px 40px -18px rgb(0 0 0 / 0.55);
}
.ticket--featured { transform: rotate(1.4deg); background: var(--yolk); }
.ticket:hover { transform: rotate(0deg) translateY(-4px); }
.ticket__tag {
  display: inline-block;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0.35em 0.9em;
  margin-bottom: 0.9rem;
  opacity: 0.8;
}
.ticket__name {
  font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.4rem);
  font-weight: 520;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}
.ticket__desc { opacity: 0.85; max-width: 30rem; text-wrap: pretty; }
.ticket__price {
  margin-top: 1rem;
  font-size: 1.15rem;
}
.ticket__price::before { content: "$"; opacity: 0.6; }
.ticket__punch {
  position: absolute;
  top: 50%; right: -11px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--espresso);
  transform: translateY(-50%);
}

/* ── menu preview / tabs ───────────────────────────────────────── */
.tabs__bar {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 2vw, 3rem);
}
.tabs__tab {
  padding: 0.75em 1.5em;
  border: 1px solid color-mix(in srgb, var(--espresso) 45%, transparent);
  border-radius: 999px;
  transition: background-color 0.3s var(--ease-out), color 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out);
}
.tabs__tab:hover { border-color: var(--espresso); }
.tabs__tab.is-active {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}
.tabs__panel { display: none; }
.tabs__panel.is-active { display: block; animation: panel-in 0.55s var(--ease-out); }
@keyframes panel-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(2.5rem, 5vw, 6rem);
}
.menu-item {
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr auto;
  align-items: baseline;
  gap: 0 0.75rem;
  padding-block: 1.1rem;
  border-bottom: 1px dashed color-mix(in srgb, var(--espresso) 35%, transparent);
}
.menu-item__name {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.05rem + 0.5vw, 1.45rem);
  font-weight: 540;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.menu-item__dots {
  border-bottom: 1.5px dotted color-mix(in srgb, var(--espresso) 45%, transparent);
  transform: translateY(-0.3em);
  min-width: 1.5rem;
}
.menu-item__price { white-space: nowrap; }
.menu-item__price::before { content: "$"; opacity: 0.6; }
.menu-item__desc {
  grid-column: 1 / -1;
  font-size: var(--text-sm);
  opacity: 0.72;
  margin-top: 0.35rem;
  max-width: 42ch;
  text-wrap: pretty;
}

/* ── locations ─────────────────────────────────────────────────── */
.locations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
}
.location {
  display: grid;
  grid-template-columns: minmax(120px, 0.65fr) 1.35fr;
  gap: clamp(1.5rem, 2vw, 2.5rem);
  background: var(--cream);
  border: 1px solid color-mix(in srgb, var(--espresso) 15%, transparent);
  border-radius: 20px;
  padding: clamp(1.5rem, 2vw, 2.5rem);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.location:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px -30px rgb(34 23 17 / 0.35);
}
.location__door {
  position: relative;
  align-self: stretch;
  min-height: 240px;
  background: var(--leaf);
  border-radius: 0;
  border: 3px solid var(--leaf-deep);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.location__door::after {
  content: "";
  position: absolute;
  inset: 8% 14% 40%;
  border-radius: 0;
  border: 2px solid color-mix(in srgb, var(--cream) 55%, transparent);
}
.location__door-glass {
  position: absolute;
  inset: 10% 16% 42%;
  border-radius: 0;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--cream) 30%, var(--leaf)) 0%,
    color-mix(in srgb, var(--cream) 8%, var(--leaf)) 45%,
    color-mix(in srgb, var(--cream) 26%, var(--leaf)) 50%,
    color-mix(in srgb, var(--cream) 6%, var(--leaf)) 100%);
}
.location__door-num {
  position: absolute;
  bottom: 16%;
  color: var(--cream);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
}
.location__tag { opacity: 0.65; margin-bottom: 0.5rem; }
.location__name {
  font-size: clamp(1.8rem, 1.4rem + 1.6vw, 2.6rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 0.75rem;
}
.location__addr { opacity: 0.85; margin-bottom: 0.9rem; }
.location__status { display: flex; align-items: center; gap: 0.5em; margin-bottom: 0.9rem; }
.status-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--leaf);
  animation: pulse 2s ease-in-out infinite;
  flex: none;
}
.status-dot.is-closed { background: var(--marmalade); animation: none; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--leaf) 45%, transparent); }
  50%      { box-shadow: 0 0 0 6px transparent; }
}
.location__hours { width: 100%; margin-bottom: 1.25rem; }
.location__hours td {
  padding-block: 0.5rem;
  border-bottom: 1px dashed color-mix(in srgb, var(--espresso) 25%, transparent);
}
.location__hours td:last-child { text-align: right; }
.location__cta { display: flex; gap: 0.7rem; flex-wrap: wrap; }

/* ── catering band ─────────────────────────────────────────────── */
.catering__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
}
.catering__title {
  font-family: var(--font-serif);
  font-size: var(--title-lg);
  font-weight: 460;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 80, "WONK" 1;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}
.catering__lede { font-size: var(--text-lede); line-height: 1.5; max-width: 34rem; opacity: 0.9; text-wrap: pretty; }
.catering__cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

/* ── gallery marquee ───────────────────────────────────────────── */
.gallery {
  overflow: clip;
  padding-block: clamp(3rem, 4vw, 5rem);
  background: var(--cream);
}
.gallery__track {
  display: flex;
  gap: clamp(1rem, 1.5vw, 1.75rem);
  width: max-content;
  animation: marquee 55s linear infinite;
}
.gallery__item {
  width: clamp(220px, 24vw, 340px);
  aspect-ratio: 1;
  border-radius: 0;
  overflow: hidden;
  flex: none;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.gallery__item:hover img { transform: scale(1.07); }

/* ── footer ────────────────────────────────────────────────────── */
.footer { padding-block: var(--space-section) 2rem; }
.footer__hello {
  text-align: center;
  margin-bottom: clamp(4rem, 6vw, 7rem);
}
.footer__sun {
  width: clamp(70px, 8vw, 110px);
  margin: 0 auto 1.75rem;
  color: var(--yolk);
}
.footer__big {
  font-size: var(--title-lg);
  font-weight: 440;
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 90, "WONK" 1;
  text-wrap: balance;
  max-width: 16ch;
  margin-inline: auto;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2rem, 3vw, 4rem);
  padding-block: 2.5rem;
  border-top: 1px solid color-mix(in srgb, var(--cream) 20%, transparent);
}
.footer__col { display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-start; }
.footer__col > p { opacity: 0.85; }
.footer__label {
  color: var(--yolk);
  margin-bottom: 0.5rem;
}
.footer__link {
  position: relative;
  width: fit-content;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.footer__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--yolk);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.footer__link:hover { opacity: 1; }
.footer__link:hover::after { transform: scaleX(1); transform-origin: left; }
.footer__hours { opacity: 0.6; }
.footer__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.75rem;
  border-top: 1px solid color-mix(in srgb, var(--cream) 20%, transparent);
}
.footer__bar .mono { opacity: 0.6; }
.footer__top {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.footer__top:hover { color: var(--yolk); opacity: 1; }

/* ── reveal system ─────────────────────────────────────────────
   Uses the standalone `translate` property so it composes with
   each component's own `transform` (ticket tilts, hover lifts).
   The transition list also covers common hover properties, since
   a higher-specificity `transition` would otherwise replace them. */
.js [data-reveal] {
  opacity: 0;
  translate: 0 30px;
  transition:
    opacity var(--dur) var(--ease-out) var(--reveal-delay, 0ms),
    translate var(--dur) var(--ease-out) var(--reveal-delay, 0ms),
    transform 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out),
    background-color 0.35s var(--ease-out),
    color 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out);
}
.js [data-reveal].is-inview {
  opacity: 1;
  translate: 0 0;
}
/* word-split reveal */
.js [data-words] .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.js [data-words] .word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease-out);
  transition-delay: var(--word-delay, 0ms);
}
.js [data-words].is-inview .word > span { transform: translateY(0); }

/* parallax elements get GPU hint */
[data-parallax] { will-change: transform; }

/* ── menu page ─────────────────────────────────────────────────── */
.menu-hero {
  padding-top: calc(var(--header-h) + clamp(3rem, 6vw, 6rem));
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
  border-bottom: 1px solid color-mix(in srgb, var(--espresso) 18%, transparent);
}
.menu-hero__title {
  font-family: var(--font-serif);
  font-size: var(--title-xl);
  font-weight: 470;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-variation-settings: "SOFT" 40, "opsz" 144;
}
.menu-hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.menu-hero__note { max-width: 30rem; opacity: 0.8; text-wrap: pretty; }

.menu-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 80;
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid color-mix(in srgb, var(--espresso) 15%, transparent);
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-nav::-webkit-scrollbar { display: none; }
.menu-nav__track {
  display: flex;
  gap: 0.5rem;
  padding-block: 0.8rem;
  width: max-content;
  min-width: 100%;
}
.menu-nav__chip {
  padding: 0.6em 1.2em;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.menu-nav__chip:hover { border-color: color-mix(in srgb, var(--espresso) 40%, transparent); }
.menu-nav__chip.is-active {
  background: var(--espresso);
  color: var(--cream);
}

.menu-section { padding-block: clamp(3.5rem, 5vw, 6rem); scroll-margin-top: calc(var(--header-h) + 4rem); }
.menu-section + .menu-section { border-top: 1px solid color-mix(in srgb, var(--espresso) 15%, transparent); }
.menu-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: clamp(1.75rem, 2vw, 2.5rem);
}
.menu-section__title {
  font-family: var(--font-serif);
  font-size: var(--title-md);
  font-weight: 470;
  letter-spacing: -0.015em;
  line-height: 1.05;
  font-variation-settings: "SOFT" 70, "opsz" 72;
}
.menu-section__note { opacity: 0.65; }
.veg-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--leaf);
  border: 1px solid var(--leaf);
  border-radius: 999px;
  padding: 0.1em 0.55em;
  vertical-align: 0.2em;
  margin-left: 0.5em;
}
.menu-item__addon {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  opacity: 0.55;
  margin-top: 0.4rem;
  text-transform: uppercase;
}

.menu-cta {
  text-align: center;
  padding-block: clamp(3rem, 5vw, 5rem);
  border-top: 1px solid color-mix(in srgb, var(--espresso) 15%, transparent);
}
.menu-cta p { margin-bottom: 1.5rem; }

/* ── responsive ────────────────────────────────────────────────── */
@media (max-width: 64em) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__actions .btn--solid { display: none; }

  .hero__meta-item--right { display: none; }

  .story__grid { grid-template-columns: 1fr; }
  .story__aside .eyebrow { position: static; }
  .story__photo--a { margin-top: 0; width: min(60%, 300px); grid-row: auto; }
  .story__photo--b { display: none; }

  .gravy__grid { grid-template-columns: 1fr; }
  .badge--gravy { position: relative; top: auto; right: auto; margin: -1rem auto 0; }

  .menu-list { grid-template-columns: 1fr; }

  .locations__grid { grid-template-columns: 1fr; }

  .catering__grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 40em) {
  :root { --header-h: 4.25rem; }

  .hero__meta { justify-content: center; }
  .hero__meta-item:not(.hero__meta-item--status) { display: none; }
  .hero__stage { padding-top: clamp(1rem, 3vh, 2rem); }
  .hero__sun { width: 72vw; top: 0; }
  .hero__title { margin-top: clamp(3rem, 9vh, 5rem); }
  .hero__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
    padding-top: 2.5rem;
  }
  .hero__photo { width: min(58%, 240px); margin: 0 auto; }
  .badge--hero { right: -18%; }
  .hero__scroll { display: none; }

  .legends__link {
    grid-template-columns: 2.25rem 1fr auto;
    row-gap: 0.4rem;
  }
  .legends__desc { grid-column: 2 / 4; }

  .story__cols { grid-template-columns: 1fr; }
  .story__stats { grid-template-columns: 1fr; }

  .location { grid-template-columns: 1fr; }
  .location__door { min-height: 180px; max-width: 220px; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar { justify-content: center; text-align: center; }
}

/* ── reduced motion ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal],
  .js [data-words] .word > span,
  .js body:not(.is-loaded) .hero__line-inner,
  .js body:not(.is-loaded) .hero__sun,
  .js body:not(.is-loaded) .hero__photo,
  .js body:not(.is-loaded) .hero__copy,
  .js body:not(.is-loaded) .hero__footnote {
    opacity: 1 !important;
    transform: none !important;
    translate: none !important;
  }
  .ticker__track, .gallery__track { animation: none !important; }
  .cursor, .grain { display: none !important; }
  .preloader { display: none !important; }
}
