@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/inter-400.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/inter-500.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/inter-600.ttf") format("truetype");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/playfair-display-500.ttf") format("truetype");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/playfair-display-600.ttf") format("truetype");
}

:root {
  /* Semantic design tokens: quiet, warm, editorial, and intentionally restrained. */
  --color-background: #171614;
  --color-background-deep: #11100e;
  --color-background-elevated: #20231f;
  --color-background-soft: #1d211e;
  --color-background-legal: #141611;
  --color-surface: rgba(35, 39, 37, 0.64);
  --color-surface-soft: rgba(245, 240, 231, 0.18);
  --color-text-primary: #f3ecdf;
  --color-text-secondary: rgba(243, 236, 223, 0.84);
  --color-text-muted: rgba(243, 236, 223, 0.74);
  --color-border: rgba(245, 240, 231, 0.34);
  --color-border-strong: rgba(245, 240, 231, 0.74);
  --color-border-subtle: rgba(245, 240, 231, 0.16);
  --color-accent: #d3ad73;
  --color-accent-hover: #e3c187;
  --color-overlay: rgba(13, 15, 14, 0.66);
  --color-footer-background: #171614;
  --shadow-soft: rgba(0, 0, 0, 0.46);
  --shadow-strong: rgba(0, 0, 0, 0.72);

  --font-sans: Inter, Arial, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-heavy: 800;
  --leading-tight: 0.92;
  --leading-copy: 1.56;
  --tracking-none: 0;

  --space-frame: clamp(18px, 3vw, 42px);
  --space-section-x: clamp(24px, 8vw, 132px);
  --space-section-y: clamp(72px, 8vw, 120px);
  --space-hero-bottom: clamp(104px, 13vh, 158px);
  --layout-copy: min(700px, 52vw);
  --layout-detail-copy: min(760px, 56vw);
  --radius-none: 0;
  --ease-smooth: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-wipe: cubic-bezier(0.77, 0, 0.18, 1);
  --duration-fast: 180ms;
  --duration-menu: 360ms;
  --duration-page: 900ms;
  --z-content: 1;
  --z-footer: 2;
  --z-frame: 50;
  --z-menu: 69;
  --z-menu-toggle: 70;
  --z-transition: 100;

  /* Legacy aliases kept so existing components can be migrated incrementally. */
  --cream: var(--color-text-primary);
  --paper: #e8dfcf;
  --ink: var(--color-background);
  --muted: var(--color-text-muted);
  --line: var(--color-border);
  --shadow: var(--shadow-soft);
  --surface: var(--color-surface);
  --surface-soft: var(--color-surface-soft);
  --surface-line: rgba(245, 240, 231, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  overflow-y: auto;
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--color-text-primary);
  background: var(--color-background);
  font-family: var(--font-sans);
  letter-spacing: var(--tracking-none);
  animation: pageArrive var(--duration-page) ease both;
}

body.menu-open {
  overflow-y: auto;
}

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

a:focus-visible,
button:focus-visible {
  outline: 1px solid var(--color-border-strong);
  outline-offset: 5px;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: var(--z-transition);
  pointer-events: none;
  background:
    radial-gradient(circle at 52% 42%, rgba(255, 245, 216, 0.22), transparent 32%),
    rgba(12, 10, 8, 0.82);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
}

.page-transition.is-active {
  animation: sectionWipe 680ms var(--ease-wipe) both;
}

.site-frame {
  position: fixed;
  inset: 0;
  z-index: var(--z-frame);
  pointer-events: none;
  padding: clamp(18px, 3vw, 42px);
}

.site-frame::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: rgba(13, 15, 14, 0.66);
  opacity: 0;
  transition: opacity 360ms ease;
}

body.menu-open .site-frame::before {
  opacity: 1;
}

.logo,
.main-menu,
.menu-toggle {
  pointer-events: auto;
  z-index: 2;
}

.logo {
  position: fixed;
  top: clamp(18px, 3vw, 42px);
  left: clamp(18px, 3vw, 42px);
  display: block;
  width: clamp(260px, 28vw, 520px);
  color: var(--cream);
  filter: drop-shadow(0 2px 18px rgba(0, 0, 0, 0.48));
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 220ms ease;
}

body.logo-hidden:not(.menu-open) .logo {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.site-logo-mark {
  display: block;
  width: 100%;
  height: auto;
}

.menu-toggle {
  position: fixed;
  top: clamp(22px, 3vw, 44px);
  right: clamp(18px, 3vw, 42px);
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 42px;
  border: 0;
  padding: 0;
  color: var(--cream);
  background: transparent;
  cursor: pointer;
  z-index: var(--z-menu-toggle);
}

.main-menu {
  position: fixed;
  top: clamp(96px, 15vh, 150px);
  right: clamp(28px, 5vw, 62px);
  display: grid;
  gap: 0;
  justify-items: end;
  width: min(430px, calc(100vw - 56px));
  text-align: right;
  font-size: clamp(18px, 2.35vw, 32px);
  font-weight: var(--font-weight-medium);
  line-height: 1.08;
  text-transform: uppercase;
  text-shadow: 0 2px 18px var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(14px, 0, 0);
  transition: opacity 280ms ease, visibility 280ms ease, transform var(--duration-menu) var(--ease-smooth);
  z-index: var(--z-menu);
}

.menu-icon {
  position: relative;
  display: grid;
  gap: 8px;
  width: 46px;
}

.menu-icon span {
  display: block;
  height: 3px;
  background: currentColor;
  transform-origin: center;
  transition: transform 260ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.main-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.main-menu a {
  width: 100%;
  padding: 10px 0 11px;
  border-top: 1px solid rgba(245, 240, 231, 0.74);
  opacity: 0.92;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.main-menu a:last-child {
  border-bottom: 1px solid rgba(245, 240, 231, 0.74);
}

.main-menu a:hover,
.main-menu a.is-active {
  color: var(--color-accent);
  opacity: 1;
  transform: translateX(-3px);
}

.main-menu a:focus-visible,
.taste-link:focus-visible,
.text-link:focus-visible {
  outline: 1px solid var(--color-border-strong);
  outline-offset: 4px;
}

.menu-toggle:focus {
  outline: 0;
}

body.using-keyboard .menu-toggle:focus-visible .menu-icon {
  outline: 1px solid var(--color-border-strong);
  outline-offset: 8px;
}

.panel {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  overflow: hidden;
  background: transparent;
  --bg-y: 0px;
  --text-y: 0px;
  --corner-y: 0px;
  --poster-y: 0px;
  --stack-scale: 1;
  --stack-panel-y: 0px;
  --stack-enter-y: 0px;
  --stack-image-scale: 1;
  --stack-image-brightness: 1.18;
  --stack-image-blur: 0px;
  --stack-image-opacity: 0.96;
  --stack-shade-opacity: 1;
  --stack-depth-shadow-opacity: 0;
  --stack-content-opacity: 0;
  --stack-content-y: 34px;
  --stack-corner-opacity: 0;
  --stack-corner-y: 26px;
}

main {
  position: relative;
  z-index: 1;
}

.content-panel,
.hero-panel {
  background: transparent;
}

.panel-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.035) 62%, rgba(0, 0, 0, 0.16)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.07) 38%, rgba(0, 0, 0, 0.08) 62%, rgba(0, 0, 0, 0.4)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 34%, rgba(0, 0, 0, 0.34));
}

.content-panel::before,
.hero-panel::before {
  content: "";
  position: absolute;
  inset: -4%;
  z-index: -3;
  background-image: var(--image);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 900ms ease, transform 1200ms ease;
}

.panel.is-visible::before {
  opacity: 0.92;
  filter: saturate(1.12) brightness(1.24) contrast(1);
  transform: translate3d(0, var(--bg-y), 0) scale(1);
}

.home-index main {
  isolation: isolate;
}

.home-index .panel {
  position: sticky;
  top: 0;
  z-index: var(--panel-z, 1);
  min-height: 100svh;
  transform: translate3d(0, var(--stack-panel-y), 0) scale(var(--stack-scale));
  transform-origin: center 46%;
  will-change: transform;
  contain: paint;
  box-shadow: 0 -18vh 30vh rgba(13, 15, 14, 0.22);
}

.home-index .hero-panel {
  box-shadow: none;
}

.home-index .panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 46%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.46)),
    rgba(0, 0, 0, 0.28);
  opacity: var(--stack-depth-shadow-opacity);
  transition: none;
}

.home-index .content-panel::before,
.home-index .hero-panel::before,
.home-index .panel.is-visible::before {
  inset: -8%;
  opacity: var(--stack-image-opacity);
  background-position: var(--image-position, center);
  filter:
    saturate(1.1)
    brightness(var(--stack-image-brightness))
    contrast(1.02)
    blur(var(--stack-image-blur));
  transform:
    translate3d(0, calc(var(--bg-y) + var(--stack-enter-y)), 0)
    scale(var(--stack-image-scale));
  transition: none;
  will-change: transform, filter, opacity;
}

.home-index .panel-shade {
  opacity: var(--stack-shade-opacity);
}

.home-index .hero-copy,
.home-index .text-block,
.home-index .regions {
  opacity: var(--stack-content-opacity);
  transform: translate3d(0, calc(var(--text-y) + var(--stack-content-y)), 0);
  transition: none;
  will-change: opacity, transform;
}

.home-index .corner-claim,
.home-index .corner-name {
  opacity: var(--stack-corner-opacity);
  transform: translate3d(0, calc(var(--corner-y) + var(--stack-corner-y)), 0);
  transition: none;
  will-change: opacity, transform;
}

.hero-copy {
  position: absolute;
  left: clamp(34px, 5vw, 78px);
  right: auto;
  top: auto;
  bottom: clamp(96px, 13vh, 150px);
  max-width: min(720px, 56vw);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  transform: none;
  z-index: 3;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(58px, 7.4vw, 126px);
  text-shadow: 0 4px 34px rgba(0, 0, 0, 0.7);
}

.kicker {
  margin: 0 0 18px;
  font-size: clamp(14px, 1.1vw, 18px);
  color: rgba(243, 236, 223, 0.84);
  font-weight: var(--font-weight-heavy);
  letter-spacing: var(--tracking-none);
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-family: var(--font-serif);
  font-size: clamp(54px, 9vw, 142px);
  font-weight: var(--font-weight-semibold);
  line-height: 0.9;
}

.text-block {
  position: absolute;
  left: clamp(34px, 5vw, 78px);
  top: auto;
  bottom: clamp(96px, 13vh, 150px);
  width: min(700px, 50vw);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  font-size: clamp(15px, 1.2vw, 20px);
  line-height: 1.54;
  color: rgba(243, 236, 223, 0.9);
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.68);
  z-index: 3;
}

.hero-copy,
.text-block,
.regions,
.corner-claim,
.corner-name {
  opacity: 0;
  transform: translate3d(0, calc(18px + var(--text-y)), 0);
  transition: opacity 780ms ease, transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-copy {
  transform: translate3d(0, calc(18px + var(--text-y)), 0);
}

.panel.is-visible .hero-copy {
  opacity: 1;
  transform: translate3d(0, var(--text-y), 0);
}

.panel.is-visible .text-block,
.panel.is-visible .regions {
  opacity: 1;
  transform: translate3d(0, var(--text-y), 0);
}

.panel.is-visible .corner-claim,
.panel.is-visible .corner-name {
  opacity: 1;
  transform: translate3d(0, var(--corner-y), 0);
}

.panel.is-visible .corner-name {
  transition-delay: 90ms;
}

.panel.is-visible .text-block {
  transition-delay: 140ms;
}

.text-block.narrow {
  width: min(520px, 40vw);
}

.text-block p {
  margin: 0 0 1.05em;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  margin-right: 16px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  text-transform: none;
}

.text-link--secondary {
  opacity: 0.78;
}

.corner-claim,
.corner-name {
  position: absolute;
  z-index: 2;
  bottom: clamp(34px, 4.4vw, 70px);
  max-width: min(420px, 36vw);
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(23px, 2.85vw, 44px);
  line-height: 0.98;
  text-shadow: 0 2px 22px var(--shadow);
}

.corner-claim {
  left: clamp(30px, 4vw, 62px);
}

.corner-name {
  right: clamp(30px, 4vw, 62px);
  text-align: right;
}

.corner-subtitle {
  max-width: min(430px, 34vw);
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.1vw, 18px);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--tracking-none);
  line-height: 1.22;
  text-transform: none;
}

.taste-link {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--cream);
  font-family: var(--font-sans);
  font-size: clamp(12px, 1.05vw, 16px);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--tracking-none);
  line-height: 1.14;
  text-transform: uppercase;
}

.dates {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.dates span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
}

@keyframes pageArrive {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes sectionWipe {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
  }
  38% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: bottom;
  }
  39% {
    transform-origin: top;
  }
  100% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
}

.regions {
  position: absolute;
  left: clamp(18px, 3vw, 42px);
  top: clamp(140px, 22vh, 230px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(92px, 1fr));
  gap: 8px 24px;
  max-width: min(360px, 42vw);
  padding: clamp(14px, 1.8vw, 24px);
  background: rgba(35, 39, 37, 0.58);
  border: 1px solid var(--surface-line);
  backdrop-filter: blur(10px);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: var(--font-weight-semibold);
  color: rgba(245, 240, 231, 0.82);
  text-transform: uppercase;
}

.winery-copy {
  left: auto;
  right: clamp(18px, 10vw, 150px);
  top: 26vh;
  width: min(560px, 42vw);
}

.winery-copy h2 {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: clamp(42px, 6vw, 84px);
  line-height: 0.95;
}

.story-copy {
  top: 18vh;
}

.rubric-teaser,
.rubric-teaser.winery-copy,
.rubric-teaser.story-copy {
  top: auto;
  bottom: clamp(104px, 13vh, 158px);
  left: clamp(34px, 5vw, 78px);
  right: auto;
  width: min(700px, 52vw);
  max-width: none;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.rubric-teaser.teaser-right,
.rubric-teaser.winery-copy {
  left: clamp(34px, 5vw, 78px);
  right: auto;
}

.rubric-teaser.teaser-left,
.rubric-teaser.story-copy {
  left: clamp(34px, 5vw, 78px);
  right: auto;
}

.rubric-teaser h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(58px, 7.2vw, 124px);
  font-weight: var(--font-weight-semibold);
  line-height: 0.92;
  text-shadow: 0 4px 34px rgba(0, 0, 0, 0.7);
}

.rubric-teaser p {
  max-width: 430px;
  margin: 22px 0 0;
  color: rgba(245, 240, 231, 0.86);
}

.rubric-teaser .teaser-kicker {
  margin: 0 0 18px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: var(--font-weight-heavy);
  letter-spacing: var(--tracking-none);
  text-transform: uppercase;
}

.rubric-teaser .text-link {
  margin-top: 28px;
}

.home-index .content-panel .rubric-teaser {
  top: auto;
  bottom: clamp(104px, 13vh, 158px);
  left: clamp(34px, 5vw, 78px);
  right: auto;
  width: min(700px, 52vw);
  padding: 0;
  background: transparent;
}

.home-index .content-panel .rubric-teaser h2 {
  font-size: clamp(58px, 7.2vw, 124px);
  line-height: 0.92;
}

.home-index .content-panel .rubric-teaser p {
  max-width: 380px;
  margin-top: 18px;
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.35;
}

.home-index .content-panel .rubric-teaser .teaser-kicker {
  margin-bottom: 16px;
  font-size: clamp(11px, 0.9vw, 13px);
}

.home-index .content-panel .rubric-teaser .text-link {
  margin-top: 24px;
}

.home-index .content-panel .corner-claim,
.home-index .content-panel .corner-name {
  bottom: clamp(32px, 4vw, 58px);
  max-width: min(430px, 34vw);
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.1vw, 18px);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--tracking-none);
  line-height: 1.22;
  text-transform: none;
  color: rgba(243, 236, 223, 0.9);
}

.home-index .hero-panel .corner-claim,
.home-index .content-panel .corner-claim {
  display: none;
}

.home-index .panel .hero-copy,
.home-index .panel .text-block,
.home-index .panel .regions {
  opacity: var(--stack-content-opacity);
  transform: translate3d(0, calc(var(--text-y) + var(--stack-content-y)), 0);
  transition: none;
  will-change: opacity, transform;
}

.home-index .panel .corner-claim,
.home-index .panel .corner-name {
  opacity: var(--stack-corner-opacity);
  transform: translate3d(0, calc(var(--corner-y) + var(--stack-corner-y)), 0);
  transition: none;
  will-change: opacity, transform;
}

.project-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.project-list li {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.project-list strong {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2vw, 34px);
  font-weight: var(--font-weight-medium);
}

.project-list span {
  align-self: center;
  min-width: 170px;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.detail-hero {
  min-height: 92vh;
}

body[data-page="inside"] .detail-hero {
  min-height: 100vh;
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: -4%;
  z-index: -3;
  background-image: var(--image);
  background-position: var(--image-position, center);
  background-size: cover;
  opacity: 1;
  transform: translate3d(0, var(--bg-y), 0) scale(1.02);
  filter: saturate(1.12) brightness(1.24) contrast(1);
}

.detail-hero .panel-shade {
  background:
    radial-gradient(circle at 48% 47%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.035) 60%, rgba(0, 0, 0, 0.16)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.06) 42%, rgba(0, 0, 0, 0.08) 62%, rgba(0, 0, 0, 0.38)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 38%, rgba(0, 0, 0, 0.3));
}

.detail-heading {
  position: absolute;
  top: auto;
  bottom: clamp(104px, 13vh, 158px);
  left: clamp(34px, 5vw, 78px);
  width: min(760px, 56vw);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  text-shadow: 0 4px 34px rgba(0, 0, 0, 0.72);
  transform: translate3d(0, var(--text-y), 0);
}

.detail-kicker {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: clamp(12px, 1vw, 16px);
  font-weight: var(--font-weight-heavy);
  letter-spacing: var(--tracking-none);
  text-transform: uppercase;
}

.detail-heading h1 {
  margin: 0;
  color: rgba(243, 236, 223, 0.98);
  font-family: var(--font-serif);
  font-size: clamp(58px, 7.2vw, 122px);
  font-weight: var(--font-weight-semibold);
  line-height: 0.92;
}

.detail-lede {
  width: min(520px, 100%);
  margin: 22px 0 0;
  color: rgba(245, 240, 231, 0.82);
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.36;
}

.detail-hero .corner-claim,
.detail-hero .corner-name {
  bottom: clamp(34px, 4vw, 58px);
  max-width: min(430px, 34vw);
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.1vw, 18px);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--tracking-none);
  line-height: 1.22;
  text-transform: none;
  color: rgba(243, 236, 223, 0.9);
}

.detail-hero .corner-claim {
  display: block;
}

.detail-content {
  position: relative;
  z-index: 2;
  min-height: 84vh;
  padding: clamp(280px, 21vw, 340px) clamp(24px, 8vw, 132px) clamp(72px, 8vw, 120px);
  overflow: hidden;
  border-top: 1px solid rgba(245, 240, 231, 0.16);
  background: #20231f;
  color: var(--cream);
}

.detail-content--plain {
  background: linear-gradient(135deg, #1d211e 0%, #161814 54%, #22251f 100%);
}

body[data-page="circle"] .detail-examples {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#wineries .panel-shade,
body[data-page="wineries"] .detail-hero .panel-shade,
#storylines .panel-shade,
body[data-page="storylines"] .detail-hero .panel-shade {
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.04) 58%, rgba(0, 0, 0, 0.2)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.1) 62%, rgba(0, 0, 0, 0.42)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), transparent 32%, rgba(0, 0, 0, 0.42));
}

.detail-content::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 28% 20%, rgba(245, 240, 231, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(14, 17, 15, 0.58), rgba(14, 17, 15, 0.36) 48%, rgba(14, 17, 15, 0.62));
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.46fr) minmax(460px, 0.9fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
  max-width: 1260px;
  margin: 0 auto;
}

.detail-grid aside {
  padding: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.58);
}

.detail-eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: var(--font-weight-heavy);
  letter-spacing: var(--tracking-none);
  text-transform: uppercase;
}

.detail-side-title {
  margin: 22px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.4vw, 58px);
  line-height: 0.94;
}

.detail-copy {
  max-width: 720px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  color: rgba(245, 240, 231, 0.9);
  font-size: clamp(16px, 1.18vw, 20px);
  line-height: 1.56;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.56);
}

.detail-copy p {
  margin: 0 0 1.15em;
}

.detail-copy h2 {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  color: var(--cream);
  font-size: clamp(38px, 4.4vw, 70px);
  font-weight: var(--font-weight-medium);
  line-height: 0.95;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 34px;
}

.detail-actions a {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(245, 240, 231, 0.72);
  font-size: 12px;
  font-weight: var(--font-weight-heavy);
  text-transform: none;
}

.detail-examples {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
}

.example-card {
  min-height: 100%;
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid rgba(245, 240, 231, 0.28);
  background: transparent;
}

.example-card h3 {
  margin: 0;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.2vw, 36px);
  font-weight: var(--font-weight-medium);
  line-height: 0.98;
}

.example-card p {
  margin: 12px 0 0;
  color: rgba(243, 236, 223, 0.76);
  font-size: 14px;
  line-height: 1.38;
}

.example-card .example-meta {
  margin: 0 0 12px;
  color: rgba(245, 240, 231, 0.58);
  font-size: 10px;
  font-weight: var(--font-weight-heavy);
  letter-spacing: var(--tracking-none);
  text-transform: uppercase;
}

.detail-regions {
  columns: 2;
  column-gap: 34px;
  margin-top: 30px;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: var(--font-weight-heavy);
  text-transform: uppercase;
}

.detail-regions li {
  break-inside: avoid;
  margin-bottom: 8px;
}

.country-list a {
  display: inline-block;
  color: rgba(245, 240, 231, 0.84);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.country-list a:hover,
.country-list a:focus-visible {
  color: var(--cream);
  border-color: rgba(245, 240, 231, 0.7);
}

.country-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 34px;
  columns: auto;
}

.country-list li {
  margin-bottom: 0;
}

.country-hero .panel-shade {
  background:
    radial-gradient(circle at 42% 48%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.16) 58%, rgba(0, 0, 0, 0.38)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.18) 46%, rgba(0, 0, 0, 0.12) 64%, rgba(0, 0, 0, 0.44)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), transparent 34%, rgba(0, 0, 0, 0.44));
}

.country-context {
  margin-top: 28px;
}

.country-context a,
.country-nav a {
  color: rgba(245, 240, 231, 0.82);
  font-size: 12px;
  font-weight: var(--font-weight-heavy);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 240, 231, 0.48);
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.country-context a:hover,
.country-context a:focus-visible,
.country-nav a:hover,
.country-nav a:focus-visible {
  color: var(--cream);
  border-color: rgba(245, 240, 231, 0.9);
}

.country-introduction {
  max-width: 740px;
}

.country-content--minimal {
  min-height: auto;
  padding-top: clamp(112px, 12vw, 178px);
}

.country-content--minimal .detail-grid {
  align-items: end;
}

.country-content--minimal .country-nav {
  margin-top: 0;
}

.country-region-section {
  margin-top: clamp(42px, 5vw, 70px);
}

.country-region-section h2 {
  margin-bottom: 24px;
}

.country-regions {
  display: grid;
  gap: 22px;
}

.country-region-card {
  padding-top: 22px;
  border-top: 1px solid rgba(245, 240, 231, 0.24);
}

.country-region-card h3 {
  margin: 0 0 12px;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: var(--font-weight-medium);
  line-height: 1;
}

.country-region-card p {
  margin-bottom: 0.85em;
}

.country-region-location {
  color: rgba(245, 240, 231, 0.62);
  font-size: 13px;
  font-weight: var(--font-weight-heavy);
}

.country-wineries {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(245, 240, 231, 0.78);
  font-size: 14px;
}

.country-wineries a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 240, 231, 0.38);
}

.country-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 30px;
  margin-top: clamp(44px, 6vw, 88px);
  padding-top: 22px;
  border-top: 1px solid rgba(245, 240, 231, 0.24);
}

.contact-hero .panel-shade {
  background:
    radial-gradient(circle at 44% 48%, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08) 54%, rgba(0, 0, 0, 0.22)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.14) 44%, rgba(0, 0, 0, 0.08) 62%, rgba(0, 0, 0, 0.42)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 34%, rgba(0, 0, 0, 0.36));
}

.contact-role {
  margin: 0 0 clamp(34px, 4.2vw, 56px);
  color: rgba(245, 240, 231, 0.74);
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: var(--font-weight-bold);
}

.contact-panel {
  border-top: 1px solid rgba(245, 240, 231, 0.26);
}

.contact-row {
  display: grid;
  grid-template-columns: minmax(92px, 0.24fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 44px);
  align-items: baseline;
  padding: clamp(18px, 2.1vw, 28px) 0;
  border-bottom: 1px solid rgba(245, 240, 231, 0.18);
}

.contact-row span,
.contact-link-group > span {
  color: rgba(245, 240, 231, 0.54);
  font-size: 11px;
  font-weight: var(--font-weight-heavy);
  letter-spacing: var(--tracking-none);
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-row a {
  width: fit-content;
  max-width: 100%;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.06;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 240, 231, 0.36);
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.contact-row a:hover,
.contact-row a:focus-visible,
.contact-link-list a:hover,
.contact-link-list a:focus-visible,
.contact-social-icon:hover,
.contact-social-icon:focus-visible {
  color: rgba(245, 240, 231, 0.78);
  border-color: rgba(245, 240, 231, 0.82);
}

.contact-link-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 70px);
  margin-top: clamp(36px, 5vw, 70px);
  padding-top: 24px;
  border-top: 1px solid rgba(245, 240, 231, 0.22);
}

.contact-link-group {
  display: grid;
  gap: 14px;
  align-content: start;
}

.contact-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.contact-link-list a {
  width: fit-content;
  color: rgba(245, 240, 231, 0.82);
  font-size: 12px;
  font-weight: var(--font-weight-heavy);
  line-height: 1.2;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 240, 231, 0.42);
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.contact-link-group--social {
  justify-items: end;
}

.contact-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 231, 0.34);
  border-radius: 50%;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.contact-social-icon:hover,
.contact-social-icon:focus-visible {
  background: rgba(245, 240, 231, 0.08);
  transform: translateY(-1px);
}

.contact-social-icon img {
  width: 18px;
  height: 18px;
  opacity: 0.9;
}

.detail-projects {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.detail-projects li {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(160px, 0.6fr);
  gap: 28px;
  padding: 16px 0;
  border-top: 1px solid rgba(245, 240, 231, 0.2);
}

.detail-projects strong {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 52px);
  font-weight: var(--font-weight-medium);
  line-height: 1;
}

.detail-projects p {
  max-width: 420px;
  margin: 10px 0 0;
  color: rgba(245, 240, 231, 0.68);
  font-size: 14px;
  line-height: 1.38;
}

.detail-projects span {
  align-self: center;
  color: rgba(245, 240, 231, 0.58);
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  text-align: right;
}

.date-note {
  display: inline-flex;
  margin-top: 18px;
  border: 1px solid rgba(245, 240, 231, 0.28);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: var(--font-weight-heavy);
  text-transform: uppercase;
}

.construction-page {
  background: #1f272d;
}

.construction-panel {
  min-height: 100vh;
  background:
    linear-gradient(120deg, #55616b 0%, #303942 42%, #171a1d 100%);
}

.construction-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.08) 44%, rgba(0, 0, 0, 0.42)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%, rgba(0, 0, 0, 0.3));
}

.construction-panel::after {
  content: "";
  position: absolute;
  left: clamp(30px, 4vw, 62px);
  right: clamp(30px, 4vw, 62px);
  bottom: clamp(96px, 12vh, 150px);
  z-index: -1;
  height: 1px;
  background: rgba(245, 240, 231, 0.28);
}

.construction-copy {
  position: absolute;
  left: clamp(34px, 5vw, 78px);
  bottom: clamp(130px, 16vh, 188px);
  width: min(820px, 58vw);
  color: var(--cream);
  text-shadow: 0 4px 34px rgba(0, 0, 0, 0.72);
  opacity: 0;
  transform: translate3d(0, calc(18px + var(--text-y)), 0);
  transition: opacity 780ms ease, transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.construction-copy h1 {
  max-width: 820px;
  font-size: clamp(58px, 8.4vw, 148px);
  line-height: 0.88;
}

.construction-copy p:last-child {
  width: min(520px, 100%);
  margin: 24px 0 0;
  color: rgba(245, 240, 231, 0.82);
  font-size: clamp(15px, 1.16vw, 19px);
  line-height: 1.38;
}

.construction-note,
.construction-signature {
  position: absolute;
  z-index: 2;
  margin: 0;
  color: rgba(245, 240, 231, 0.86);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--tracking-none);
  line-height: 1.14;
  text-transform: uppercase;
  text-shadow: 0 2px 22px var(--shadow);
  opacity: 0;
  transform: translate3d(0, calc(18px + var(--corner-y)), 0);
  transition: opacity 780ms ease, transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.construction-note {
  left: clamp(30px, 4vw, 62px);
  bottom: clamp(34px, 4.4vw, 70px);
  max-width: min(340px, 36vw);
  font-size: clamp(12px, 1.05vw, 16px);
}

.construction-signature {
  right: clamp(30px, 4vw, 62px);
  bottom: clamp(34px, 4.4vw, 70px);
  max-width: min(360px, 36vw);
  font-size: clamp(12px, 1.05vw, 16px);
  text-align: right;
}

.construction-panel.is-visible .construction-copy {
  opacity: 1;
  transform: translate3d(0, var(--text-y), 0);
}

.construction-panel.is-visible .construction-note,
.construction-panel.is-visible .construction-signature {
  opacity: 1;
  transform: translate3d(0, var(--corner-y), 0);
}

@media (max-width: 900px) {
  .site-frame {
    padding: 18px;
  }

  .logo {
    top: 18px;
    left: 18px;
    width: clamp(210px, 56vw, 300px);
  }

  .menu-toggle {
    top: 18px;
    right: 18px;
    width: 48px;
    height: 38px;
  }

  .menu-icon {
    width: 40px;
  }

  .main-menu {
    top: 82px;
    right: 18px;
    width: min(340px, calc(100vw - 36px));
    gap: 0;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 19px;
    backdrop-filter: none;
  }

  .main-menu a {
    width: 100%;
    padding: 10px 0;
    border-bottom: 0;
  }

  .hero-copy,
  .text-block,
  .text-block.narrow,
  .winery-copy,
  .story-copy {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 96px;
    width: auto;
    max-width: none;
  }

  .text-block {
    font-size: 14px;
    line-height: 1.45;
  }

  .rubric-teaser,
  .rubric-teaser.teaser-left,
  .rubric-teaser.teaser-right,
  .rubric-teaser.winery-copy,
  .rubric-teaser.story-copy {
    top: auto;
    bottom: 112px;
    left: 18px;
    right: 18px;
    width: auto;
    padding: 0;
    background: transparent;
  }

  .rubric-teaser h2 {
    font-size: clamp(42px, 11vw, 58px);
  }

  .rubric-teaser p {
    max-width: 100%;
    margin-top: 16px;
  }

  .home-index .content-panel .rubric-teaser,
  .home-index .content-panel .rubric-teaser.teaser-left,
  .home-index .content-panel .rubric-teaser.teaser-right,
  .home-index .content-panel .rubric-teaser.winery-copy,
  .home-index .content-panel .rubric-teaser.story-copy {
    top: auto;
    bottom: 112px;
    left: 18px;
    right: 18px;
    width: auto;
    padding: 0;
  }

  .home-index .content-panel .rubric-teaser h2 {
    font-size: clamp(38px, 10vw, 52px);
  }

  .home-index .content-panel .corner-claim,
  .home-index .content-panel .corner-name {
    bottom: 24px;
    max-width: calc(50vw - 28px);
    font-size: 10px;
    line-height: 1.18;
  }

  .story-copy {
    top: auto;
  }

  .regions {
    top: 104px;
    grid-template-columns: repeat(2, 1fr);
    max-width: calc(100vw - 36px);
    font-size: 11px;
    gap: 6px 14px;
  }

  .winery-copy {
    top: auto;
  }

  .corner-claim,
  .corner-name {
    bottom: 28px;
    max-width: calc(50vw - 28px);
    font-size: clamp(17px, 5.4vw, 22px);
    line-height: 1;
  }

  .detail-hero .corner-claim,
  .detail-hero .corner-name {
    max-width: calc(50vw - 28px);
    font-size: 11px;
    line-height: 1.18;
  }

  .detail-heading {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 132px;
    width: auto;
  }

  .detail-heading h1 {
    font-size: clamp(42px, 11vw, 64px);
  }

  .detail-lede {
    font-size: 16px;
  }

  .detail-content {
    padding: 198px 18px 96px;
  }

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

  .detail-copy {
    font-size: 16px;
  }

  .detail-examples {
    grid-template-columns: 1fr;
  }

  body[data-page="circle"] .detail-examples {
    grid-template-columns: 1fr;
  }

  .detail-regions {
    columns: 3;
    column-gap: 18px;
    font-size: 11px;
  }

  .country-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
  }

  .country-nav {
    display: grid;
    justify-content: stretch;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0 20px;
  }

  .contact-row a {
    font-size: clamp(23px, 6.4vw, 30px);
    overflow-wrap: anywhere;
  }

  .contact-link-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-link-group--social {
    justify-items: start;
  }

  .contact-social-icon {
    width: 40px;
    height: 40px;
  }

  .detail-projects li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .detail-projects span {
    text-align: left;
  }

  .detail-projects p {
    max-width: none;
  }

  .corner-claim {
    left: 20px;
  }

  .corner-name {
    right: 20px;
  }

  .project-list {
    gap: 6px;
    margin-top: 18px;
  }

  .project-list li {
    display: grid;
    gap: 4px;
    padding: 8px 0;
  }

  .project-list span {
    min-width: 0;
    text-align: left;
  }

  .construction-copy {
    left: 18px;
    right: 18px;
    bottom: 118px;
    width: auto;
  }

  .construction-copy h1 {
    font-size: clamp(46px, 12.4vw, 78px);
  }

  .construction-panel::after {
    left: 20px;
    right: 20px;
    bottom: 82px;
  }

  .construction-note,
  .construction-signature {
    bottom: 28px;
    max-width: calc(50vw - 28px);
    font-size: 10px;
    line-height: 1.18;
  }

  .construction-note {
    left: 20px;
  }

  .construction-signature {
    right: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  main {
    scroll-snap-type: none;
  }

  .home-index .panel {
    position: relative;
    transform: none !important;
    will-change: auto;
  }

  .home-index .content-panel::before,
  .home-index .hero-panel::before,
  .home-index .panel.is-visible::before {
    opacity: 0.94;
    filter: saturate(1.08) brightness(1.16) contrast(1);
    transform: none !important;
    will-change: auto;
  }

  .home-index .panel::after {
    opacity: 0;
  }

  .home-index .hero-copy,
  .home-index .text-block,
  .home-index .regions,
  .home-index .corner-claim,
  .home-index .corner-name {
    opacity: 1;
    transform: none !important;
    transition: none;
    will-change: auto;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 48px;
  }

  .panel {
    min-height: 100vh;
  }

  .detail-hero {
    min-height: 760px;
  }

  .detail-heading {
    top: auto;
    bottom: 132px;
  }

  .detail-heading h1 {
    font-size: clamp(42px, 13vw, 56px);
  }

  .detail-lede {
    margin-top: 18px;
    font-size: 15px;
  }

  .text-block {
    top: auto;
    bottom: 92px;
  }

  .rubric-teaser,
  .rubric-teaser.teaser-left,
  .rubric-teaser.teaser-right,
  .rubric-teaser.winery-copy,
  .rubric-teaser.story-copy {
    top: auto;
    bottom: 110px;
  }

  .home-index .content-panel .rubric-teaser,
  .home-index .content-panel .rubric-teaser.teaser-left,
  .home-index .content-panel .rubric-teaser.teaser-right,
  .home-index .content-panel .rubric-teaser.winery-copy,
  .home-index .content-panel .rubric-teaser.story-copy {
    top: auto;
    bottom: 110px;
  }

  .story-copy {
    top: auto;
  }

  .story-copy p {
    margin-bottom: 0.72em;
  }

  .corner-claim,
  .corner-name {
    font-size: clamp(16px, 5vw, 19px);
  }

  .detail-hero .corner-claim,
  .detail-hero .corner-name {
    max-width: calc(50vw - 24px);
    font-size: 11px;
    line-height: 1.18;
  }

  .detail-side-title {
    font-size: 34px;
  }

  .detail-regions {
    columns: 2;
  }

  .regions {
    top: 98px;
    max-height: 24vh;
    overflow: hidden;
  }

  .hero-copy,
  .text-block,
  .regions,
  .detail-heading {
    padding: 0;
  }

  .winery-copy {
    top: auto;
  }

  .winery-copy h2 {
    font-size: 42px;
  }

  .construction-copy {
    bottom: 112px;
  }

  .construction-copy h1 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .construction-copy p:last-child {
    margin-top: 18px;
    font-size: 15px;
  }
}


.legal-footer {
  position: relative;
  z-index: var(--z-footer);
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  width: 100%;
  padding: clamp(28px, 3.4vw, 48px) var(--space-frame) clamp(34px, 4.2vw, 60px);
  pointer-events: auto;
  color: var(--color-text-secondary);
  background: linear-gradient(180deg, rgba(23, 22, 20, 0.98), var(--color-footer-background));
  border-top: 1px solid rgba(243, 236, 223, 0.18);
  font-size: 11px;
  font-weight: var(--font-weight-heavy);
  letter-spacing: var(--tracking-none);
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.54);
}

.legal-footer a {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(245, 240, 231, 0.46);
  transition: color var(--duration-fast) ease, border-color var(--duration-fast) ease, opacity var(--duration-fast) ease;
}

.legal-footer a:hover,
.legal-footer a:focus-visible {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.legal-footer .footer-social {
  width: 28px;
  min-height: 28px;
  justify-content: center;
  padding-bottom: 0;
  border-bottom: 0;
  opacity: 0.82;
}

.legal-footer .footer-social img {
  display: block;
  width: 17px;
  height: 17px;
}

.legal-footer .footer-social:hover,
.legal-footer .footer-social:focus-visible {
  border-color: transparent;
  opacity: 1;
}

.legal-main {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 12%, rgba(230, 162, 79, 0.12), transparent 34%),
    linear-gradient(135deg, #1d211e 0%, #141611 52%, #24241e 100%);
}

.legal-hero {
  min-height: 68vh;
  position: relative;
  display: grid;
  align-content: end;
  padding: clamp(150px, 18vw, 230px) clamp(24px, 8vw, 132px) clamp(84px, 9vw, 132px);
  border-bottom: 1px solid rgba(245, 240, 231, 0.16);
  overflow: hidden;
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 34% 38%, rgba(245, 240, 231, 0.1), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.04) 54%, rgba(0, 0, 0, 0.36));
  pointer-events: none;
}

.legal-kicker {
  position: relative;
  margin: 0 0 18px;
  color: rgba(243, 236, 223, 0.76);
  font-size: clamp(12px, 1vw, 16px);
  font-weight: var(--font-weight-heavy);
  letter-spacing: var(--tracking-none);
  text-transform: uppercase;
}

.legal-hero h1 {
  position: relative;
  max-width: 980px;
  margin: 0;
  color: rgba(243, 236, 223, 0.98);
  font-family: var(--font-serif);
  font-size: clamp(58px, 8vw, 132px);
  font-weight: var(--font-weight-semibold);
  line-height: 0.92;
  text-shadow: 0 4px 34px rgba(0, 0, 0, 0.72);
}

.legal-intro {
  position: relative;
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(243, 236, 223, 0.84);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.45;
}

.legal-document {
  position: relative;
  padding: clamp(82px, 9vw, 132px) clamp(24px, 8vw, 132px) clamp(118px, 11vw, 168px);
  color: var(--cream);
}

.legal-document::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 10%, rgba(245, 240, 231, 0.07), transparent 30%),
    linear-gradient(90deg, rgba(14, 17, 15, 0.58), rgba(14, 17, 15, 0.36) 48%, rgba(14, 17, 15, 0.62));
  pointer-events: none;
}

.legal-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.46fr) minmax(460px, 0.9fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
  max-width: 1260px;
  margin: 0 auto;
}

.legal-side-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.4vw, 58px);
  line-height: 0.94;
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.58);
}

.legal-note {
  max-width: 360px;
  margin: 24px 0 0;
  color: rgba(243, 236, 223, 0.76);
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  line-height: 1.48;
  text-transform: uppercase;
}

.legal-copy {
  max-width: 760px;
  color: rgba(243, 236, 223, 0.9);
  font-size: clamp(16px, 1.12vw, 19px);
  line-height: 1.6;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.48);
}

.legal-copy h2 {
  margin: 0 0 18px;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.6vw, 58px);
  font-weight: var(--font-weight-medium);
  line-height: 0.98;
}

.legal-copy h2:not(:first-child) {
  margin-top: 54px;
}

.legal-copy p {
  margin: 0 0 1.15em;
}

.legal-copy a {
  border-bottom: 1px solid rgba(245, 240, 231, 0.52);
}

.legal-list {
  display: grid;
  gap: 0;
  margin: 0 0 42px;
}

.legal-list div {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(220px, 0.75fr);
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid rgba(245, 240, 231, 0.22);
}

.legal-list dt {
  color: rgba(243, 236, 223, 0.68);
  font-size: 11px;
  font-weight: var(--font-weight-heavy);
  letter-spacing: var(--tracking-none);
  text-transform: uppercase;
}

.legal-list dd {
  margin: 0;
}

.legal-confirm {
  display: inline-block;
  margin-top: 4px;
  color: var(--color-accent);
  font-size: 0.78em;
  font-weight: var(--font-weight-heavy);
  letter-spacing: var(--tracking-none);
  text-transform: uppercase;
}


@media (max-width: 900px) {
  .legal-footer {
    justify-content: flex-start;
    gap: 18px;
    padding: 26px 18px 34px;
    font-size: 10px;
  }

  .legal-hero {
    min-height: 60vh;
    padding: 128px 18px 78px;
  }

  .legal-hero h1 {
    font-size: clamp(44px, 11vw, 70px);
  }

  .legal-document {
    padding: 72px 18px 118px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .legal-note {
    max-width: none;
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .legal-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    max-width: none;
  }

  .legal-hero {
    min-height: 560px;
    padding: 118px 18px 82px;
  }

  .legal-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .legal-intro,
  .legal-copy {
    font-size: 15px;
  }

  .legal-side-title {
    font-size: 34px;
  }

  .legal-copy h2 {
    font-size: clamp(30px, 9vw, 42px);
  }
}


@media (max-width: 900px) {
  .home-index .content-panel .corner-subtitle,
  .detail-hero .corner-subtitle {
    max-width: calc(46vw - 18px);
    font-size: clamp(11px, 2.4vw, 14px);
    line-height: 1.24;
  }
}

@media (max-width: 560px) {
  .home-index .content-panel .corner-subtitle,
  .detail-hero .corner-subtitle {
    right: 18px;
    bottom: 24px;
    max-width: calc(50vw - 26px);
    font-size: 11px;
    line-height: 1.22;
  }
}
