@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/cormorant-400.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/cormorant-600.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/cormorant-700.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/cormorant-italic-400.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/cormorant-italic-500.woff2") format("woff2");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("../assets/fonts/outfit.woff2") format("woff2");
}

:root {
  --ink: #1c1914;
  --ink-soft: #3a342c;
  --bottle: #101612;
  --bottle-mid: #1a2420;
  --moss: #3d4e3a;
  --moss-light: #5c6d55;
  --copper: #b07a3a;
  --copper-text: #8a5520;
  --copper-bright: #c9954a;
  --amber: #d4a85a;
  --parchment: #f3eee3;
  --cream: #f8f4eb;
  --paper: #ebe3d3;
  --sand: #d6ccb8;
  --muted: #5c564e;
  --line: rgba(138, 85, 32, 0.28);
  --line-light: rgba(243, 238, 227, 0.18);
  --focus: #8a5520;
  --serif: "Cormorant Garamond", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --sans: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.25rem;
  --safe-top: env(safe-area-inset-top, 0px);
  --header-offset: calc(var(--header-h) + var(--safe-top));
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --measure: 38rem;
  --wide: 72rem;
  --full: 92rem;
  --scroll: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--parchment);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--parchment);
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 400;
  opacity: 0.045;
  background-image: url("../assets/svg/grain.svg");
  background-size: 180px;
  mix-blend-mode: multiply;
}

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

a {
  color: inherit;
  text-decoration-color: color-mix(in srgb, var(--copper) 70%, transparent);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--copper-text);
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 500;
  padding: 0.7rem 1rem;
  background: var(--cream);
  color: var(--ink);
  font-size: 0.85rem;
}

.skip-link:focus {
  top: 1rem;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 360;
  width: 2px;
  height: calc(var(--scroll) * 100%);
  background: linear-gradient(to bottom, var(--copper-bright), var(--copper));
  pointer-events: none;
}

.wrap {
  width: min(var(--wide), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.wrap-full {
  width: min(var(--full), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.measure {
  max-width: var(--measure);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--copper-text);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.display {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.display em,
.italic {
  font-style: italic;
  font-weight: 400;
}

.section-title {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.1;
}

.lede {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink-soft);
}

.muted {
  color: var(--muted);
}

.rule {
  width: 3.5rem;
  height: 1px;
  margin: 1.4rem 0;
  border: 0;
  background: var(--copper);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 300;
  height: var(--header-offset);
  padding-top: var(--safe-top);
  display: flex;
  align-items: center;
  color: var(--parchment);
  background: color-mix(in srgb, var(--bottle) 72%, transparent);
  border: 0;
  transition: background 0.45s var(--ease), color 0.45s var(--ease), transform 0.4s var(--ease);
}

.site-header.is-hidden {
  transform: translateY(-100%);
  pointer-events: none;
}

.site-header.is-scrolled,
body:not(.is-hero-dark) .site-header {
  color: var(--ink);
  background: var(--parchment);
}

@media (max-width: 839px) {
  .site-header:has(.site-nav.is-open) {
    color: var(--ink);
    background: var(--parchment);
  }

  body.is-hero-dark .site-header:has(.site-nav.is-open) img.brand-mark--ink {
    display: block !important;
  }

  body.is-hero-dark .site-header:has(.site-nav.is-open) img.brand-mark--paper {
    display: none !important;
  }
}

.header-inner {
  width: min(var(--full), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  grid-column: 1;
  min-width: 0;
}

img.brand-mark {
  --mark-h: 2.16rem; /* 20% smaller than 2.7rem */
  --mark-ratio: 2.4975; /* 1004 / 402 */
  display: block;
  width: calc(var(--mark-h) * var(--mark-ratio));
  height: var(--mark-h);
  max-width: none;
  flex: 0 0 calc(var(--mark-h) * var(--mark-ratio));
  object-fit: contain;
  object-position: center;
}

img.brand-mark--paper {
  display: none !important;
}

body.is-hero-dark .site-header:not(.is-scrolled) img.brand-mark--ink {
  display: none !important;
}

body.is-hero-dark .site-header:not(.is-scrolled) img.brand-mark--paper {
  display: block !important;
}

@media (min-width: 600px) {
  img.brand-mark {
    --mark-h: 2.52rem; /* 20% smaller than 3.15rem */
  }
}

.header-end {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  grid-column: 3;
  justify-self: end;
}

.nav-door {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.05rem;
  padding: 0.25rem 0.7rem;
  border: 1px solid color-mix(in srgb, currentColor 36%, transparent);
  color: inherit;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
}

.nav-door:hover,
.nav-door:focus-visible,
.nav-door[aria-current="page"] {
  border-color: var(--copper-bright);
  color: var(--copper-bright);
}

.site-header.is-scrolled .nav-door:hover,
.site-header.is-scrolled .nav-door:focus-visible,
.site-header.is-scrolled .nav-door[aria-current="page"],
body:not(.is-hero-dark) .nav-door:hover,
body:not(.is-hero-dark) .nav-door:focus-visible,
body:not(.is-hero-dark) .nav-door[aria-current="page"] {
  border-color: var(--copper-text);
  color: var(--copper-text);
}

.nav-door-menu {
  display: none;
}

@media (max-width: 839px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-end {
    grid-column: 2;
  }

  .header-end .nav-door {
    display: none;
  }

  .nav-door-menu {
    display: inline-flex;
    margin: 1.6rem 0 0.2rem;
    color: var(--ink);
    border-color: color-mix(in srgb, var(--ink) 28%, transparent);
  }

  .nav-door-menu:hover,
  .nav-door-menu:focus-visible,
  .nav-door-menu[aria-current="page"] {
    border-color: var(--copper-text);
    color: var(--copper-text);
  }

  .site-header:has(.site-nav.is-open) .nav-door:hover,
  .site-header:has(.site-nav.is-open) .nav-door:focus-visible,
  .site-header:has(.site-nav.is-open) .nav-door[aria-current="page"] {
    border-color: var(--copper-text);
    color: var(--copper-text);
  }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-height: var(--header-h);
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.site-nav {
  position: fixed;
  top: var(--header-offset);
  left: 0;
  right: 0;
  z-index: 280;
  max-height: calc(100svh - var(--header-offset));
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0.35rem var(--gutter) 2.1rem;
  background: var(--parchment);
  color: var(--ink);
  border: 0;
  box-shadow: 0 22px 40px color-mix(in srgb, var(--ink) 8%, transparent);
  transform: translateY(calc(-100% - var(--header-offset)));
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.4s var(--ease), visibility 0.4s var(--ease);
}

.site-nav.is-open {
  transform: none;
  visibility: visible;
  pointer-events: auto;
}

.site-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--copper-bright);
}

.site-nav.is-open a[aria-current="page"],
.site-nav.is-open a:hover {
  color: var(--copper-text);
}

.site-header.is-scrolled .site-nav a[aria-current="page"],
.site-header.is-scrolled .site-nav a:hover,
body:not(.is-hero-dark) .site-nav a[aria-current="page"],
body:not(.is-hero-dark) .site-nav a:hover {
  color: var(--copper-text);
}

.nav-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.nav-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.nav-more::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-0.12rem);
  transition: transform 0.28s var(--ease);
}

.has-sub.is-open > .nav-item-row > .nav-more::after {
  transform: rotate(225deg) translateY(-0.12rem);
}

.site-nav .nav-sub {
  display: none;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0.55rem 0 0.15rem;
  padding: 0.15rem 0 0.15rem 0.9rem;
  border-left: 1px solid var(--line);
}

.site-nav .has-sub.is-open > .nav-sub {
  display: flex;
}

.site-nav .nav-mega {
  gap: 1.35rem;
  padding-left: 0;
  border-left: 0;
}

.nav-mega-intro {
  max-width: 22rem;
}

.nav-mega-intro .eyebrow {
  display: none;
}

.nav-mega-intro p {
  margin: 0 0 0.9rem;
}

.nav-mega-intro .btn {
  padding: 0.7rem 1rem;
}

.nav-mega-cats {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-mega-close {
  display: none;
}

.site-nav .nav-sub a {
  font-size: 1.05rem;
  letter-spacing: 0.1em;
}

.site-nav .nav-sub-nested a {
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  text-transform: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--parchment);
  background: var(--bottle);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: saturate(0.78) contrast(1.05);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 22, 18, 0.28) 0%, rgba(16, 22, 18, 0.18) 40%, rgba(16, 22, 18, 0.82) 100%),
    linear-gradient(90deg, rgba(16, 22, 18, 0.45), transparent 55%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: min(var(--full), calc(100vw - var(--gutter) * 2));
  margin: 0 auto 5.5rem;
}

.hero-belief {
  max-width: 22ch;
  margin: 1.1rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.4rem 0 0;
}

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: 2rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--parchment);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
}

.scroll-cue i {
  width: 1px;
  height: 2.6rem;
  background: currentColor;
  opacity: 0.7;
  animation: cue 2.4s var(--ease) infinite;
}

@keyframes cue {
  0%, 100% { transform: scaleY(0.45); transform-origin: top; opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 0.9; }
}

.page-hero {
  padding: calc(var(--header-offset) + 4.5rem) 0 3.5rem;
  background: var(--parchment);
}

.page-hero .display {
  max-width: 16ch;
}

.section {
  padding: clamp(4.5rem, 10vw, 8rem) 0;
}

.section[id] {
  scroll-margin-top: calc(var(--header-offset) + 0.75rem);
}

.section-dark {
  color: var(--parchment);
  background: var(--bottle);
}

.section-moss {
  color: var(--parchment);
  background: #243028;
}

.hero .eyebrow,
.section-dark .eyebrow,
.section-moss .eyebrow,
.site-footer .eyebrow,
.section-dark .chapter-num,
.section-moss .chapter-num {
  color: var(--copper-bright);
}

.section-dark .muted,
.section-moss .muted,
.site-footer .muted {
  color: color-mix(in srgb, var(--parchment) 68%, transparent);
}

.section-paper {
  background: var(--paper);
}

.grid-2 {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
}

@media (min-width: 840px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .grid-2.grid-start {
    align-items: start;
  }

  /* Copy first in the document (mobile reading order); media sits left on desktop. */
  .grid-2.grid-media-start > figure {
    order: -1;
  }
}

.place-lead {
  margin-bottom: clamp(2.75rem, 6vw, 5.5rem);
}

@media (max-width: 839px) {
  /* The estate photo is a second illustration, not a second hero. */
  .grid-media-start .frame-tall {
    aspect-ratio: 16 / 10;
  }
}

.chapter-num {
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  color: var(--copper-text);
}

.pullquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  font-style: italic;
  line-height: 1.25;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--copper);
  color: var(--ink);
  background: transparent;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.btn::after {
  content: "→";
  font-family: var(--serif);
  font-size: 1.1rem;
}

.btn:hover,
.btn:focus-visible {
  background: var(--bottle);
  color: var(--parchment);
  border-color: var(--bottle);
}

.btn-light {
  color: var(--parchment);
  border-color: color-mix(in srgb, var(--parchment) 45%, transparent);
}

.btn-light:hover,
.btn-light:focus-visible {
  background: var(--parchment);
  color: var(--bottle);
  border-color: var(--parchment);
}

.ph {
  margin: 0;
  position: relative;
}

.ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
}

.ph-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 2;
  padding: 0.28rem 0.5rem;
  background: color-mix(in srgb, var(--parchment) 92%, transparent);
  color: var(--copper-text);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ph figcaption {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.frame {
  overflow: hidden;
  background: var(--bottle-mid);
}

.frame-clear {
  background: transparent;
}

.frame-tall { aspect-ratio: 3 / 4; }
.frame-wide { aspect-ratio: 16 / 10; }
.frame-square { aspect-ratio: 1; }
.frame-hero-card { aspect-ratio: 4 / 5; min-height: 22rem; }

.homes {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .homes {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 78vh;
  }

  .homes.homes-single {
    grid-template-columns: 1fr;
    min-height: 68vh;
  }
}

.homes-single .home-card {
  min-height: 32rem;
}

.home-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 26rem;
  padding: 2rem;
  color: var(--parchment);
  text-decoration: none;
  overflow: hidden;
}

.home-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}

.home-card:hover img {
  transform: scale(1.05);
}

.home-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(16, 22, 18, 0.82));
}

.home-card-copy {
  position: relative;
  z-index: 1;
}

.home-card .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.4rem;
}

.process {
  position: relative;
}

.process-intro {
  margin-bottom: 2.5rem;
}

.process-stage {
  display: grid;
  gap: 1.5rem;
}

.process-scenes {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bottle);
}

/* Scenes rise from the bottom like a glass filling; the previous scene stays underneath until covered. */
.process-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.1s var(--ease);
  z-index: 0;
}

.process-scene:nth-child(1) { object-position: 58% 46%; }
.process-scene:nth-child(2) { object-position: 42% 55%; }
.process-scene:nth-child(3) { object-position: 18% 48%; }
.process-scene:nth-child(4) { object-position: 45% 68%; }
.process-scene:nth-child(5) { object-position: 48% 50%; }

.process-track:not(.is-ready) .process-scene:first-child,
.process-scene.is-prev {
  clip-path: inset(0);
  transition: none;
  z-index: 1;
}

.process-scene.is-active {
  clip-path: inset(0);
  z-index: 2;
  animation: process-drift 9s var(--ease) both;
}

@keyframes process-drift {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.process-count {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0.9rem 0 0;
  font-family: var(--serif);
  color: var(--parchment);
}

.process-track:not(.is-ready) .process-count {
  display: none;
}

/* Cormorant's old-style figures descend, so each reel slot is taller than 1em to avoid clipping neighbours into view. */
.process-count-window {
  display: inline-block;
  height: 1.3em;
  overflow: hidden;
  font-size: 2.6rem;
  line-height: 1.3;
}

.process-count-reel {
  display: flex;
  flex-direction: column;
  transform: translateY(calc(var(--i, 0) * -1.3em));
  transition: transform 0.8s var(--ease);
}

.process-count-total {
  font-size: 1.05rem;
  opacity: 0.55;
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-step {
  border-top: 1px solid var(--line-light);
  opacity: 0.4;
  transition: opacity 0.45s var(--ease);
}

.process-track:not(.is-ready) .process-step,
.process-step.is-active {
  opacity: 1;
}

.process-step.is-passed {
  opacity: 0.65;
}

.process-step h3 {
  margin: 0;
  font: inherit;
}

.process-step-head {
  display: grid;
  gap: 0.25rem;
  width: 100%;
  padding: 1rem 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.process-step-head .eyebrow {
  margin: 0;
}

.process-step-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.15;
}

.process-step-head:focus-visible .process-step-title {
  color: var(--copper-bright);
}

@media (hover: hover) {
  .process-step-head:hover .process-step-title {
    color: var(--copper-bright);
  }
}

.process-step-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s var(--ease);
}

.process-step-body > div {
  overflow: hidden;
}

.process-step-body p {
  margin: 0 0 1.2rem;
  max-width: 34rem;
}

.process-track:not(.is-ready) .process-step-body,
.process-step.is-active .process-step-body {
  grid-template-rows: 1fr;
}

.process-route {
  display: none;
}

@media (min-width: 900px) and (min-height: 680px) {
  .process-track.is-ready {
    height: calc(100svh + var(--steps) * 60svh);
  }

  .process-track.is-ready .process-stage {
    position: sticky;
    top: var(--header-offset);
    height: calc(100svh - var(--header-offset));
    grid-template-columns: 0.9fr 1.1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    column-gap: 3.5rem;
    row-gap: 1.25rem;
    padding-block: 1.5rem;
  }

  .process-track.is-ready .process-visual {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .process-track.is-ready .process-scenes {
    flex: 1;
    min-height: 0;
    aspect-ratio: auto;
  }

  .process-track.is-ready .process-steps {
    align-self: center;
  }

  .process-track.is-ready .process-route {
    display: block;
    grid-column: 1 / -1;
    position: relative;
    height: 2.75rem;
  }

  .process-route::before,
  .process-route-fill {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0.45rem;
    height: 1px;
  }

  .process-route::before {
    background: var(--line-light);
  }

  .process-route-fill {
    background: var(--copper-bright);
    transform-origin: left;
    transform: scaleX(var(--p, 0));
  }

  .process-station {
    position: absolute;
    top: 0;
    left: calc((var(--n) + 0.5) / var(--steps) * 100%);
    transform: translateX(-50%);
    display: grid;
    justify-items: center;
    gap: 0.6rem;
    padding: 0;
    border: 0;
    background: none;
    color: var(--parchment);
    cursor: pointer;
    font: 500 0.68rem/1 var(--sans);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.45;
    transition: opacity 0.4s var(--ease);
  }

  .process-station::before {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    margin-top: 0.175rem;
    border: 1px solid var(--copper-bright);
    background: var(--bottle);
    transform: rotate(45deg);
    transition: background 0.4s var(--ease);
  }

  .process-station:hover,
  .process-station.is-passed,
  .process-station.is-active {
    opacity: 1;
  }

  .process-station.is-passed::before,
  .process-station.is-active::before {
    background: var(--copper-bright);
  }
}

.timeline {
  position: relative;
  margin: 3rem 0 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0.3rem;
  bottom: 0.3rem;
  width: 1px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  padding: 0 0 2.4rem 2.4rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0.3rem;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--parchment);
  border: 1px solid var(--copper);
}

.timeline-item.is-open::before,
.timeline-item:focus-within::before {
  background: var(--copper);
}

.timeline-year {
  margin: 0;
  color: var(--copper-text);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.timeline-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.timeline-btn h3 {
  margin: 0.2rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 400;
}

.timeline-panel {
  display: none;
  padding-top: 0.7rem;
  max-width: 38rem;
  color: var(--ink-soft);
}

.timeline-item.is-open .timeline-panel {
  display: block;
}

.compare-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0 1.2rem;
}

.chip {
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.chip[aria-pressed="true"],
.chip[aria-selected="true"],
.chip.is-on {
  background: var(--bottle);
  color: var(--parchment);
  border-color: var(--bottle);
}

.compare-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bottle);
}

.compare-pane {
  position: absolute;
  inset: 0;
}

.compare-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-urban {
  clip-path: inset(0 50% 0 0);
}

.compare-range {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 2;
  width: 1px;
  background: var(--parchment);
  pointer-events: none;
}

.compare-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--parchment);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: color-mix(in srgb, var(--bottle) 45%, transparent);
}

.compare-label {
  position: absolute;
  bottom: 1rem;
  z-index: 2;
  padding: 0.3rem 0.55rem;
  background: color-mix(in srgb, var(--bottle) 70%, transparent);
  color: var(--parchment);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.compare-label.left { left: 1rem; }
.compare-label.right { right: 1rem; }

.fact-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

@media (min-width: 700px) {
  .fact-grid { grid-template-columns: repeat(3, 1fr); }
}

.fact {
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}

.fact dt {
  margin: 0 0 0.35rem;
  color: var(--copper-text);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fact dt a {
  text-decoration: none;
}

.fact dt a:hover {
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.page-hero .fact-grid {
  margin-top: 2.75rem;
}

.fact dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.3;
}

.format-grid {
  display: grid;
  gap: clamp(3rem, 6vw, 4.5rem);
}

@media (min-width: 840px) {
  .format-grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
  }
}

.format-card {
  display: flex;
  flex-direction: column;
  scroll-margin-top: calc(var(--header-offset) + 0.75rem);
}

.format-card .ph {
  margin: 0 0 1.6rem;
}

.format-card > p:not(.eyebrow) {
  max-width: 34rem;
}

.format-title {
  margin: 0.5rem 0 1rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.format-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: auto 0 0;
  padding-top: 1rem;
}

.format-meta > div {
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
}

.format-meta dt {
  margin: 0 0 0.35rem;
  color: var(--copper-text);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.format-meta dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.3;
}

.house-note {
  margin-top: clamp(3.5rem, 8vw, 5.5rem);
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-light);
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--parchment) 72%, transparent);
  scroll-margin-top: calc(var(--header-offset) + 0.75rem);
}

.house-note p {
  margin: 0;
}

.house-note .eyebrow {
  margin-bottom: 0.6rem;
}

.spirit-grid {
  display: grid;
  gap: 0;
  scroll-margin-top: calc(var(--header-offset) + 0.75rem);
}

.spirit-card {
  display: grid;
  gap: 1.15rem;
  padding: 1.75rem 0 2rem;
  border-top: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-offset) + 0.75rem);
}

.spirit-card[hidden] { display: none; }

.spirit-photo {
  margin: 0;
  aspect-ratio: 3 / 4;
}

.spirit-photo img {
  filter: saturate(1);
  transition: transform 0.7s var(--ease);
}

.spirit-photo--standing {
  aspect-ratio: auto;
  height: 30rem;
  background: transparent;
}

.spirit-photo--standing img {
  object-fit: contain;
  object-position: center;
}

.spirit-card:hover .spirit-photo img {
  transform: scale(1.035);
}

.spirit-card:hover .spirit-photo--standing img {
  transform: none;
}

.spirit-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

@media (min-width: 700px) {
  .spirit-card {
    grid-template-columns: minmax(11.5rem, 15.5rem) minmax(0, 1fr);
    gap: 1.5rem 2rem;
    align-items: start;
    padding: 2rem 0 2.25rem;
  }

  .spirit-photo--standing {
    height: 22rem;
  }
}

.spirit-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.spirit-card h2 {
  margin: 0 0 0.7rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 400;
}

.spirit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin-top: 1.15rem;
  padding-bottom: 0.12rem;
  border-bottom: 1px solid var(--line);
  color: var(--copper-text);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}

.spirit-link::after {
  content: "↗";
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1;
}

.spirit-link:hover,
.spirit-link:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--copper);
}

.tasting {
  display: grid;
  gap: 0.65rem;
  margin: 1.1rem 0 0.4rem;
}

.tasting-row {
  display: grid;
  grid-template-columns: 4.6rem 1fr;
  gap: 0.8rem;
  align-items: center;
}

.tasting-row dt {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.bar {
  height: 4px;
  background: color-mix(in srgb, var(--copper) 18%, var(--paper));
}

.bar > span {
  display: block;
  height: 100%;
  background: var(--copper);
}

.notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
}

.notes li {
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.botanical-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

@media (min-width: 700px) {
  .botanical-grid { grid-template-columns: repeat(4, 1fr); }
}

.botanical {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 11rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--cream);
  color: inherit;
  text-align: left;
  cursor: pointer;
  font-family: var(--sans);
  transition: border-color 0.3s, background 0.3s;
}

.botanical:hover,
.botanical[aria-expanded="true"] {
  border-color: var(--copper);
  background: var(--parchment);
}

.bot-icon {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--moss);
}

.botanical strong {
  display: block;
  margin-top: 1.2rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.botanical span {
  color: var(--muted);
  font-size: 0.75rem;
}

.dialog {
  width: min(36rem, calc(100% - 2rem));
  padding: 0;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
}

.dialog::backdrop {
  background: color-mix(in srgb, var(--bottle) 62%, transparent);
}

.dialog-inner {
  padding: 1.6rem;
}

.dialog-close {
  float: right;
  border: 0;
  background: none;
  color: var(--ink);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.award-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.award-list li {
  display: grid;
  gap: 0.35rem 1.5rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
}

@media (min-width: 760px) {
  .award-list li {
    grid-template-columns: 5rem 1fr auto;
    align-items: baseline;
  }
}

.award-year {
  color: var(--copper-text);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.award-title {
  font-family: var(--serif);
  font-size: 1.35rem;
}

.award-comp {
  color: var(--muted);
  font-size: 0.85rem;
}

.principle {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line-light);
}

.principle h3 {
  margin: 0 0 0.5rem;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
}

.faq-list {
  max-width: var(--measure);
}

.faq-item {
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0 0 0.5rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  font-weight: 400;
}

.faq-item p {
  margin: 0;
}

.site-footer {
  padding: 3.5rem 0 2.4rem;
  color: var(--parchment);
  background: var(--bottle);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

.site-footer a {
  color: var(--parchment);
  text-decoration-color: color-mix(in srgb, var(--copper-bright) 60%, transparent);
}

.footer-note {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.85rem 2rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-light);
  color: color-mix(in srgb, var(--parchment) 70%, transparent);
  font-size: 0.8rem;
}

.footer-door {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--parchment);
  border-bottom: 1px solid color-mix(in srgb, var(--copper-bright) 45%, transparent);
}

.footer-door:hover,
.footer-door:focus-visible,
.footer-door[aria-current="page"] {
  color: var(--copper-bright);
  border-bottom-color: var(--copper-bright);
}

.footer-quiet {
  margin: 0.9rem 0 0;
  font-size: 0.88rem;
  color: color-mix(in srgb, var(--parchment) 72%, transparent);
}

.section-dark .ph figcaption {
  color: color-mix(in srgb, var(--parchment) 68%, transparent);
}

.house-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.house-list li {
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
}

.house-list .ph-badge {
  position: static;
  display: inline-block;
  margin: 0 0 0.45rem;
}

.house-list strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.house-kind {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.contact-lines {
  margin: 1.6rem 0 0;
}

.contact-lines a {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.35;
  text-decoration-thickness: 1px;
}

.contact-lines a + a {
  margin-top: 0.2rem;
}

.section-dark .contact-lines a:hover,
.section-dark .contact-lines a:focus-visible {
  color: var(--copper-bright);
}

.note-box {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--amber) 10%, var(--cream));
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.specimen {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: 3rem;
  padding: clamp(1.4rem, 3vw, 2.2rem) 0 0;
  border-top: 1px solid var(--line);
  align-items: center;
}

@media (min-width: 840px) {
  .specimen {
    grid-template-columns: minmax(13rem, 19rem) 1fr;
  }
}

.specimen-sheet {
  display: block;
  width: min(19rem, 100%);
  aspect-ratio: 1 / 1.414;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  text-decoration: none;
}

.specimen-sheet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.86) contrast(1.02);
  transition: transform 1.2s var(--ease);
}

.specimen-sheet:hover img {
  transform: scale(1.03);
}

.specimen-copy h3 {
  margin: 0 0 0.7rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.1;
}

.specimen-copy p {
  margin: 0 0 1.1rem;
  max-width: 36rem;
}

.specimen-meta {
  display: grid;
  gap: 0;
  margin: 0 0 1.5rem;
}

@media (min-width: 640px) {
  .specimen-meta {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
}

.specimen-meta > div {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.specimen-meta dt {
  margin: 0 0 0.35rem;
  color: var(--copper-text);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.specimen-meta dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.3;
}

.record-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 760px) {
  .record-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.record-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  background: var(--cream);
  border: 1px solid var(--line);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.record-card:hover,
.record-card:focus-visible {
  border-color: var(--copper);
  background: var(--parchment);
}

.record-cover {
  display: block;
  height: 22rem;
  overflow: hidden;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (min-width: 760px) {
  .record-cover {
    height: 28rem;
  }
}

.record-cover-mid img {
  object-position: center 40%;
}

.record-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.88);
  transition: transform 1.2s var(--ease);
}

.record-card:hover img {
  transform: scale(1.04);
}

.record-body {
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.25rem 0.35rem;
}

.record-body-end {
  flex: 1;
  padding: 1.05rem 1.25rem 1.4rem;
}

.record-body .eyebrow {
  margin-bottom: 0.45rem;
}

.record-body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.4vw, 2.15rem);
  font-weight: 400;
  line-height: 1.15;
}

.record-body p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.record-action {
  margin-top: auto;
  color: var(--copper-text);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.record-action::after {
  content: " →";
  font-family: var(--serif);
  font-size: 1.05rem;
}

.reveal {
  opacity: 0;
  transform: translateY(1.1rem);
  animation: rise 1s var(--ease) forwards;
  animation-timeline: view();
  animation-range: entry 0% entry 40%;
}

@supports not (animation-timeline: view()) {
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .reveal.js-ready {
    opacity: 0;
    transform: translateY(1.1rem);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  }

  .reveal.is-in {
    opacity: 1;
    transform: none;
  }
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 840px) {
  .site-header.is-scrolled,
  body:not(.is-hero-dark) .site-header {
    border-bottom: 1px solid var(--line);
  }

  .nav-toggle { display: none; }

  .nav-door {
    min-height: 2.15rem;
    padding: 0.32rem 0.85rem;
    font-size: 0.7rem;
  }

  .header-end {
    grid-column: 3;
  }

  .site-nav {
    position: static;
    grid-column: 2;
    visibility: visible;
    max-height: none;
    overflow: visible;
    padding: 0;
    background: transparent;
    color: inherit;
    border: 0;
    box-shadow: none;
    transform: none;
    pointer-events: auto;
  }

  .site-nav > ul {
    flex-direction: row;
    align-items: stretch;
    min-height: var(--header-h);
    gap: 1.5rem;
  }

  .site-nav > ul > li {
    display: flex;
    align-items: center;
  }

  .site-nav a {
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
  }

  .site-nav > ul > li > a,
  .site-nav > ul > .has-sub > .nav-item-row > a {
    white-space: nowrap;
  }

  .site-nav > ul > .has-sub {
    position: static;
  }

  .site-nav > ul > .has-sub > .nav-item-row {
    height: 100%;
    align-items: center;
  }

  .nav-item-row {
    gap: 0.2rem;
  }

  .nav-more {
    width: 1.15rem;
    height: 1.15rem;
  }

  .nav-more::after {
    width: 0.32rem;
    height: 0.32rem;
  }

  .site-nav .nav-mega {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 320;
    display: none;
    grid-template-columns: minmax(16rem, 22rem) minmax(16rem, 26rem);
    align-items: start;
    justify-content: start;
    gap: 3.5rem 5rem;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 2.35rem max(var(--gutter), calc((100% - var(--full)) / 2 + var(--gutter))) 2.6rem;
    background: var(--parchment);
    color: var(--ink);
    border: 0;
    border-top: 1px solid var(--line);
    box-shadow: 0 28px 50px color-mix(in srgb, var(--ink) 12%, transparent);
    transform: none;
  }

  .site-nav > ul > .has-sub.is-open > .nav-mega {
    display: grid;
  }

  @media (hover: hover) {
    .site-nav > ul > .has-sub:hover > .nav-mega {
      display: grid;
    }
  }

  .nav-mega-intro {
    max-width: none;
    padding: 0.2rem 0 0;
    background: transparent;
  }

  .nav-mega-intro .eyebrow {
    display: block;
    margin-bottom: 0.55rem;
  }

  .nav-mega-intro p {
    margin: 0 0 1.2rem;
    max-width: 22ch;
    font-size: 1.02rem;
    line-height: 1.5;
  }

  .nav-mega-cats {
    gap: 0;
    width: 100%;
    max-width: 24rem;
    padding-top: 0.15rem;
  }

  .nav-mega-cats > .has-sub {
    background: transparent;
  }

  .nav-mega-cats > .has-sub > .nav-item-row {
    width: auto;
    padding: 0.85rem 0.15rem;
    border-bottom: 1px solid var(--line);
    background: transparent;
  }

  .site-nav .nav-mega a {
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .nav-mega-cats .nav-more {
    width: 2rem;
    height: 2rem;
  }

  .site-nav .nav-mega-cats .nav-item-row a {
    flex: 1;
  }

  .site-nav .nav-mega-cats .nav-sub-nested {
    position: static;
    left: auto;
    top: auto;
    width: auto;
    min-width: 0;
    margin: 0;
    padding: 0.2rem 0 0.65rem 0.15rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
    gap: 0.15rem;
  }

  .site-nav .nav-mega-cats .nav-sub-nested a {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.38rem 0.1rem;
    font-family: var(--serif);
    font-size: 1.08rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
  }

  .site-nav .nav-mega-cats .nav-sub-nested a::before {
    content: "→";
    font-size: 0.95rem;
    color: var(--copper-text);
  }

  .nav-mega-close {
    position: absolute;
    top: 1.25rem;
    right: var(--gutter);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.45rem;
    height: 2.45rem;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    appearance: none;
  }

  .nav-mega-close::before,
  .nav-mega-close::after {
    content: "";
    position: absolute;
    width: 0.85rem;
    height: 1px;
    background: currentColor;
  }

  .nav-mega-close::before { transform: rotate(45deg); }
  .nav-mega-close::after { transform: rotate(-45deg); }

  .nav-mega-close:hover {
    border-color: var(--copper);
    color: var(--copper-text);
  }

  .site-nav > ul > .has-sub.is-open > .nav-item-row > .nav-more::after {
    transform: rotate(225deg) translateY(-0.12rem);
  }

  @media (hover: hover) {
    .site-nav > ul > .has-sub:hover > .nav-item-row > .nav-more::after {
      transform: rotate(225deg) translateY(-0.12rem);
    }
  }
}

@media (min-width: 840px) and (max-width: 1024px) {
  .site-nav .nav-mega {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding-right: calc(var(--gutter) + 3.2rem);
  }

  .nav-mega-cats { max-width: none; }
}

html:not(.is-age-ok),
html:not(.is-age-ok) body {
  background: var(--bottle);
  overflow: hidden;
}

html:not(.is-age-ok) body > *:not(.age-gate) {
  visibility: hidden;
  pointer-events: none;
}

html:not(.is-age-ok) body::after {
  display: none;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: max(1.25rem, env(safe-area-inset-top, 0px))
    max(var(--gutter), env(safe-area-inset-right, 0px))
    max(1.25rem, env(safe-area-inset-bottom, 0px))
    max(var(--gutter), env(safe-area-inset-left, 0px));
  background: var(--bottle);
  color: var(--parchment);
  animation: age-gate-in 0.5s var(--ease);
}

html.is-age-ok .age-gate {
  display: none;
}

.age-gate-panel {
  width: min(28rem, 100%);
  text-align: center;
}

.age-gate-mark {
  width: min(12.5rem, 70vw);
  height: auto;
  margin: 0 auto 1.6rem;
}

.age-gate .section-title {
  margin-bottom: 0.85rem;
  color: var(--parchment);
}

.age-gate-copy {
  margin: 0 auto 1.8rem;
  max-width: 22rem;
  color: color-mix(in srgb, var(--parchment) 78%, transparent);
}

.age-gate-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1.1rem;
  margin: 0;
}

.age-gate .btn {
  color: var(--parchment);
  border-color: color-mix(in srgb, var(--parchment) 40%, transparent);
}

.age-gate .btn:hover,
.age-gate .btn:focus-visible {
  background: var(--parchment);
  color: var(--bottle);
  border-color: var(--parchment);
}

.age-gate-decline::after {
  content: none;
}

@keyframes age-gate-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal.js-ready {
    opacity: 1;
    transform: none;
  }

  .home-card:hover img,
  .hero-media img,
  .specimen-sheet:hover img,
  .record-card:hover img,
  .spirit-card:hover .spirit-photo img {
    transform: none;
  }
}
