:root {
  --ink: #090a08;
  --ink-soft: #171814;
  --paper: #f4f4ef;
  --white: #ffffff;
  --wine: #8d1538;
  --wine-dark: #560d25;
  --leaf: #254d39;
  --gold: #e0af52;
  --steel: #aeb8b0;
  --muted: #62665f;
  --line: rgba(9, 10, 8, 0.16);
  --line-light: rgba(255, 255, 255, 0.2);
  --page: min(1440px, calc(100% - 64px));
  --page-narrow: min(1180px, calc(100% - 64px));
  --header-height: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

body::selection {
  background: var(--wine);
  color: var(--white);
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.filter-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 140;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
}

.cursor-ring {
  position: fixed;
  z-index: 160;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: width 180ms ease, height 180ms ease, opacity 180ms ease, border-color 180ms ease;
  mix-blend-mode: difference;
}

.cursor-ring.is-visible {
  opacity: 1;
}

.cursor-ring.is-active {
  width: 48px;
  height: 48px;
  border-color: var(--gold);
}

.site-header {
  position: fixed;
  z-index: 120;
  top: 16px;
  left: 50%;
  width: var(--page);
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: var(--white);
  background: rgba(9, 10, 8, 0.56);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px) saturate(1.2);
  transform: translateX(-50%);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(9, 10, 8, 0.92);
  box-shadow: 0 18px 64px rgba(0, 0, 0, 0.26);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 198px;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 48px;
  object-fit: contain;
}

.brand-copy {
  display: block;
  line-height: 1;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.69rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 3px;
}

.site-nav a {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 7px;
  left: 13px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 240ms var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.opening-chip {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border-radius: 4px;
  color: var(--ink);
  background: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.opening-chip:hover,
.opening-chip:focus-visible {
  color: var(--white);
  background: var(--wine);
  transform: translateY(-2px);
}

.opening-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 4px rgba(9, 10, 8, 0.14);
}

.opening-chip.is-open .opening-dot {
  animation: pulse-dot 2.2s ease-in-out infinite;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  align-content: center;
  justify-items: center;
  gap: 7px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease;
}

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

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

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 154px max(32px, calc((100% - 1440px) / 2)) 54px;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-vignette,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -4;
  inset: -4%;
  will-change: transform;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.42) saturate(1.04) contrast(0.88);
  animation: hero-drift 18s var(--ease) both;
}

.hero-vignette {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(9, 10, 8, 0.74) 0%, rgba(9, 10, 8, 0.42) 39%, rgba(9, 10, 8, 0.02) 72%, rgba(9, 10, 8, 0.06) 100%),
    linear-gradient(0deg, rgba(9, 10, 8, 0.46) 0%, transparent 50%, rgba(9, 10, 8, 0.08) 100%),
    radial-gradient(circle at 78% 42%, transparent 0%, transparent 46%, rgba(9, 10, 8, 0.16) 100%);
}

.hero-grid {
  z-index: -2;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.84), transparent 70%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(900px, 72%);
  padding-bottom: 48px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--wine);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.9;
}

h1 {
  margin-bottom: 0;
  font-size: 9rem;
  font-weight: 400;
}

.hero-title {
  position: relative;
  width: max-content;
  max-width: 100%;
  isolation: isolate;
}

.hero-title-kicker {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 14px;
  margin: 0 0 10px 12px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.14em;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.hero-title-kicker::before {
  content: "";
  width: 52px;
  height: 2px;
  flex: 0 0 auto;
  background: linear-gradient(90deg, var(--gold), rgba(224, 175, 82, 0.18));
  transform-origin: left center;
  animation: title-rule 5.8s var(--ease) infinite;
}

.hero-title-name {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  color: transparent;
  background: linear-gradient(105deg, #ffffff 0%, #ffffff 38%, #dce5e2 49%, #ffffff 60%, #ffffff 100%);
  background-size: 240% 100%;
  background-position: 100% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Didot, "Bodoni 72", "Bodoni MT", Georgia, serif;
  font-weight: 400;
  line-height: 0.84;
  animation: title-sheen 8s ease-in-out infinite;
}

.hero-title-name::after {
  content: attr(data-word);
  position: absolute;
  z-index: -1;
  inset: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.26);
  pointer-events: none;
  transform: translate3d(12px, -9px, 0);
  animation: title-echo 7s ease-in-out infinite;
}

h2 {
  margin-bottom: 0;
  font-size: 5.7rem;
  font-weight: 400;
}

h2 em {
  color: var(--wine);
  font-weight: 400;
}

h3 {
  margin-bottom: 0;
  font-size: 2.1rem;
  line-height: 1;
}

.hero-intro {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.2rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.liquid-button {
  position: relative;
  width: 252px;
  height: 66px;
  display: grid;
  place-items: center;
  color: var(--ink);
  text-decoration: none;
  isolation: isolate;
}

.liquid-field {
  position: absolute;
  inset: -28px -40px;
  z-index: -1;
  filter: url("#gooey");
}

.liquid-field i {
  position: absolute;
  display: block;
  background: var(--gold);
}

.liquid-core {
  inset: 28px 40px;
  border-radius: 30px;
}

.liquid-drop {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: transform 560ms var(--ease);
}

.liquid-drop-one {
  top: 8px;
  left: 54px;
}

.liquid-drop-two {
  right: 36px;
  bottom: 3px;
  width: 34px;
  height: 34px;
}

.liquid-drop-three {
  top: 16px;
  right: 64px;
  width: 24px;
  height: 24px;
}

.liquid-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.liquid-label > span {
  font-size: 1rem;
  transition: transform 220ms ease;
}

.liquid-button:hover .liquid-drop-one,
.liquid-button:focus-visible .liquid-drop-one {
  transform: translate3d(46px, 22px, 0) scale(1.2);
}

.liquid-button:hover .liquid-drop-two,
.liquid-button:focus-visible .liquid-drop-two {
  transform: translate3d(-48px, -19px, 0) scale(1.3);
}

.liquid-button:hover .liquid-drop-three,
.liquid-button:focus-visible .liquid-drop-three {
  transform: translate3d(-22px, 18px, 0) scale(1.5);
}

.liquid-button:hover .liquid-label > span,
.liquid-button:focus-visible .liquid-label > span {
  transform: translateY(3px);
}

.round-link {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.round-link span:last-child {
  font-size: 1rem;
}

.round-link:hover,
.round-link:focus-visible {
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
}

.hero-facts {
  position: absolute;
  z-index: 2;
  right: max(32px, calc((100% - 1440px) / 2));
  bottom: 54px;
  width: min(390px, 32%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
}

.hero-facts div {
  min-width: 0;
  padding: 15px 10px 0;
  border-left: 1px solid var(--line-light);
}

.hero-facts div:first-child {
  border-left: 0;
  padding-left: 0;
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.hero-facts span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.scroll-cue i {
  width: 64px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.scroll-cue i::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scroll-line 2.4s ease-in-out infinite;
}

.manifesto {
  width: var(--page-narrow);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 100px;
  align-items: end;
  margin: 0 auto;
  padding: 140px 0 132px;
}

.manifesto h2 {
  max-width: 760px;
}

.manifesto-copy {
  padding-bottom: 8px;
}

.manifesto-copy p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.06rem;
}

.manifesto-copy p:first-child {
  color: var(--ink);
  font-size: 1.24rem;
  font-weight: 700;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  padding-bottom: 7px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform-origin: left center;
  transition: transform 220ms var(--ease);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(0.32);
}

.image-story {
  position: relative;
  width: var(--page);
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.1fr) minmax(220px, 0.58fr);
  gap: 48px;
  align-items: center;
  margin: 0 auto;
  padding: 80px 0 160px;
}

.color-reveal {
  --reveal-x: 50%;
  --reveal-y: 50%;
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--ink);
}

.color-reveal img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.color-reveal-base {
  filter: grayscale(1) contrast(1.18) brightness(0.68);
}

.color-reveal-layer {
  clip-path: circle(18% at var(--reveal-x) var(--reveal-y));
  filter: saturate(1.08) contrast(1.04);
  transition: clip-path 460ms var(--ease);
}

.color-reveal:hover .color-reveal-layer {
  clip-path: circle(29% at var(--reveal-x) var(--reveal-y));
}

.image-index {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
}

.color-reveal > p {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.1;
}

.image-story-copy {
  padding: 30px 0;
}

.chapter-number {
  display: block;
  margin-bottom: 22px;
  color: var(--wine);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.chapter-number.light {
  color: var(--gold);
}

.image-story-copy h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 3.7rem;
  font-weight: 900;
  line-height: 0.96;
}

.image-story-copy p {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.vineyard-portrait {
  align-self: end;
  margin: 0 0 36px;
}

.vineyard-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.06);
}

.vineyard-portrait figcaption {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.image-reveal {
  position: relative;
  overflow: hidden;
}

.image-reveal::after {
  content: "";
  position: absolute;
  z-index: 8;
  inset: 0;
  pointer-events: none;
  background: var(--paper);
  transform: scaleY(1);
  transform-origin: bottom center;
  transition: transform 1.15s var(--ease);
}

.image-reveal.is-visible::after {
  transform: scaleY(0);
  transform-origin: top center;
}

.heritage-media.image-reveal::after {
  background: var(--ink);
}

.heritage {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px max(32px, calc((100% - 1440px) / 2)) 74px;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.heritage-media {
  position: absolute;
  z-index: -3;
  inset: -7% -4% -10% 30%;
  will-change: transform;
}

.heritage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(0.36) sepia(0.16) saturate(0.84) contrast(1.08) brightness(0.8);
}

.heritage-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 10, 8, 0.98) 0%, rgba(9, 10, 8, 0.82) 41%, rgba(9, 10, 8, 0.22) 72%),
    linear-gradient(0deg, rgba(9, 10, 8, 0.88), transparent 62%),
    linear-gradient(115deg, rgba(141, 21, 56, 0.38), transparent 42%);
}

.heritage::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 10% 6%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  clip-path: polygon(0 0, 62% 0, 100% 34%, 100% 100%, 36% 100%, 0 68%);
}

.heritage-copy {
  max-width: 800px;
}

.heritage-copy h2 em {
  color: var(--gold);
}

.heritage-copy > p:last-child {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.heritage-year {
  position: absolute;
  right: max(42px, calc((100% - 1440px) / 2));
  bottom: 72px;
  display: grid;
  justify-items: end;
}

.heritage-year span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.heritage-year strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.6rem;
  font-weight: 400;
  line-height: 0.86;
}

.wines,
.events {
  width: var(--page);
  margin: 0 auto;
  padding: 148px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.56fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 74px;
}

.section-heading.compact {
  margin-bottom: 54px;
}

.section-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.06rem;
}

.wine-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.wine-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(9, 10, 8, 0.06);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 240ms ease;
}

.wine-card:hover {
  box-shadow: 0 38px 90px rgba(9, 10, 8, 0.13);
}

.wine-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d9ddd7;
}

.wine-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(9, 10, 8, 0.44), transparent 52%),
    linear-gradient(120deg, rgba(141, 21, 56, 0.22), transparent 36%);
  mix-blend-mode: multiply;
  transition: opacity 440ms ease;
}

.wine-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.82) saturate(0.6) contrast(1.08);
  transform: scale(1.035);
  transition: filter 620ms var(--ease), transform 780ms var(--ease);
}

.wine-card:hover .wine-media img {
  filter: grayscale(0) saturate(1.02) contrast(1.04);
  transform: scale(1.11);
}

.wine-card:hover .wine-media::after {
  opacity: 0.38;
}

.wine-media > span {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
}

.wine-copy {
  padding: 24px 24px 28px;
  transform: translateZ(22px);
}

.wine-copy p {
  margin: 0 0 12px;
  color: var(--wine);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.wine-copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.wine-copy > span {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.86rem;
}

.wine-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 42px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.button-wine {
  color: var(--white);
  background: var(--wine);
}

.button-wine:hover,
.button-wine:focus-visible {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.cellar {
  --spot-x: 72%;
  --spot-y: 42%;
  --spot-radius: clamp(250px, 25vw, 390px);
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 110px max(32px, calc((100% - 1440px) / 2)) 84px;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.cellar-media,
.cellar-shade,
.cellar-light-reveal,
.cellar-spotlight {
  position: absolute;
  inset: 0;
}

.cellar-media {
  z-index: -4;
  inset: -7%;
  will-change: transform;
}

.cellar-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08) brightness(0.74);
}

.cellar-shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(9, 10, 8, 0.94) 0%, rgba(9, 10, 8, 0.72) 44%, rgba(9, 10, 8, 0.14) 82%),
    linear-gradient(0deg, rgba(9, 10, 8, 0.9), transparent 60%);
}

.cellar-light-reveal {
  z-index: -2;
  inset: -7%;
  opacity: 0.82;
  pointer-events: none;
  will-change: transform, opacity;
  -webkit-mask-image: radial-gradient(
    circle var(--spot-radius) at var(--spot-x) var(--spot-y),
    #000 0%,
    rgba(0, 0, 0, 0.98) 38%,
    rgba(0, 0, 0, 0.58) 58%,
    transparent 78%
  );
  mask-image: radial-gradient(
    circle var(--spot-radius) at var(--spot-x) var(--spot-y),
    #000 0%,
    rgba(0, 0, 0, 0.98) 38%,
    rgba(0, 0, 0, 0.58) 58%,
    transparent 78%
  );
  transition: opacity 240ms ease;
}

.cellar-light-reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.cellar-spotlight {
  z-index: -1;
  pointer-events: none;
  opacity: 0.68;
  background: radial-gradient(
    circle var(--spot-radius) at var(--spot-x) var(--spot-y),
    rgba(255, 255, 255, 0.74) 0%,
    rgba(240, 245, 243, 0.36) 28%,
    rgba(212, 224, 221, 0.13) 52%,
    transparent 76%
  );
  transition: opacity 240ms ease;
}

.cellar.is-light-active .cellar-light-reveal,
.cellar.is-light-active .cellar-spotlight {
  opacity: 1;
}

.cellar-copy {
  max-width: 850px;
}

.cellar-copy h2 {
  max-width: 820px;
}

.cellar-copy p {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.fact-marquee {
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: var(--gold);
  color: var(--ink);
}

.fact-marquee > div {
  width: max-content;
  display: flex;
  align-items: center;
  animation: marquee 26s linear infinite;
}

.fact-marquee span {
  padding: 18px 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
  white-space: nowrap;
}

.fact-marquee i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--wine);
}

.event-list {
  border-top: 1px solid var(--line);
}

.event-row {
  display: grid;
  grid-template-columns: 180px minmax(240px, 0.8fr) minmax(260px, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: color 260ms ease, padding 260ms var(--ease), background 260ms ease;
}

.event-row:hover {
  padding-right: 18px;
  padding-left: 18px;
  color: var(--white);
  background: var(--ink);
}

.event-row time {
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-row:hover time {
  color: var(--gold);
}

.event-row h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.event-row p {
  margin: 0;
  color: var(--muted);
}

.event-row:hover p {
  color: rgba(255, 255, 255, 0.68);
}

.event-row > a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.visit {
  position: relative;
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  grid-template-areas:
    "copy details"
    "actions details";
  gap: 40px 80px;
  align-content: end;
  overflow: hidden;
  padding: 132px max(32px, calc((100% - 1440px) / 2)) 76px;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.visit-media,
.visit-shade {
  position: absolute;
  inset: 0;
}

.visit-media {
  z-index: -3;
}

.visit-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.68) contrast(1.18) brightness(0.6);
  transform: scale(1.05);
}

.visit-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 10, 8, 0.96) 0%, rgba(9, 10, 8, 0.76) 45%, rgba(9, 10, 8, 0.58) 100%),
    linear-gradient(0deg, rgba(9, 10, 8, 0.94), transparent 68%),
    linear-gradient(130deg, rgba(37, 77, 57, 0.42), transparent 48%);
}

.visit-copy {
  grid-area: copy;
}

.visit-copy h2 {
  font-size: 4.8rem;
}

.visit-copy h2 em {
  color: var(--gold);
}

.visit-copy > p:last-child {
  max-width: 520px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.08rem;
}

.visit-details {
  grid-area: details;
  align-self: end;
  margin: 0;
  border-top: 1px solid var(--line-light);
}

.visit-details div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 26px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-light);
}

.visit-details dt {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.visit-details dd {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  line-height: 1.35;
}

.visit-details a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.visit-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 18px;
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.round-link.light {
  border-color: rgba(255, 255, 255, 0.5);
}

.site-footer {
  min-height: 230px;
  display: grid;
  grid-template-columns: minmax(220px, auto) minmax(360px, 1fr) auto;
  gap: 48px;
  align-items: center;
  padding: 48px max(32px, calc((100% - 1440px) / 2));
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand-wrap {
  display: grid;
  gap: 9px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  text-decoration: none;
}

.footer-brand img {
  width: 62px;
  height: 52px;
  object-fit: contain;
}

.footer-brand-wrap > p,
.footer-meta p {
  margin: 0;
}

.footer-brand-wrap > p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.8rem;
}

.footer-meta {
  max-width: 640px;
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
  line-height: 1.55;
}

.footer-meta .footer-copyright {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 760;
}

.footer-meta a {
  display: inline-block;
  color: var(--white);
  font-weight: 760;
  text-decoration-color: rgba(224, 175, 82, 0.66);
  text-underline-offset: 4px;
  white-space: nowrap;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--gold);
}

.footer-disclaimer {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--gold);
}

.legal-page {
  min-height: 100vh;
  color: var(--white);
  background: var(--ink);
}

.legal-header {
  position: sticky;
  z-index: 20;
  top: 0;
  width: 100%;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px max(32px, calc((100% - 1440px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 10, 8, 0.94);
  backdrop-filter: blur(18px) saturate(1.2);
}

.legal-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  text-decoration: none;
}

.legal-brand img {
  width: 56px;
  height: 48px;
  object-fit: contain;
}

.legal-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.legal-header nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.73rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-header nav a[aria-current="page"],
.legal-header nav a:hover,
.legal-header nav a:focus-visible {
  color: var(--gold);
}

.legal-main {
  min-height: 72vh;
  color: var(--ink);
  background: var(--paper);
}

.legal-hero {
  width: var(--page-narrow);
  margin: 0 auto;
  padding: 104px 0 70px;
  border-bottom: 1px solid var(--line);
}

.legal-hero .eyebrow {
  color: var(--wine);
}

.legal-hero h1 {
  max-width: 900px;
  margin: 18px 0 0;
  font-family: Didot, "Bodoni 72", "Bodoni MT", Georgia, serif;
  font-size: clamp(3.8rem, 8vw, 8.2rem);
  font-weight: 500;
  line-height: 0.92;
}

.legal-hero > p:last-child {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.legal-content {
  width: min(900px, calc(100% - 64px));
  margin: 0 auto;
  padding: 34px 0 112px;
}

.legal-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 54px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.15;
}

.legal-section-copy {
  display: grid;
  gap: 16px;
  color: #373a35;
  line-height: 1.75;
}

.legal-section-copy p {
  margin: 0;
}

.legal-section-copy a {
  color: var(--wine-dark);
  font-weight: 720;
  text-underline-offset: 4px;
}

.legal-section-copy strong {
  color: var(--ink);
}

.legal-highlight {
  padding-left: 22px;
  border-left: 3px solid var(--gold);
}

body.motion-ready .reveal {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  transition: opacity 760ms ease, transform 940ms var(--ease);
}

body.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes title-rule {
  0%,
  100% {
    opacity: 0.58;
    transform: scaleX(0.32);
  }
  38%,
  70% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes title-sheen {
  0%,
  18% {
    background-position: 100% 50%;
  }
  56%,
  100% {
    background-position: -100% 50%;
  }
}

@keyframes title-echo {
  0%,
  100% {
    opacity: 0.18;
    transform: translate3d(12px, -9px, 0);
  }
  50% {
    opacity: 0.34;
    transform: translate3d(18px, -4px, 0);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.12) translate3d(-1.5%, 1%, 0);
  }
  to {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
}

@keyframes scroll-line {
  0% {
    transform: translateX(-100%);
  }
  48%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(9, 10, 8, 0.12);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(9, 10, 8, 0);
  }
}

@media (min-width: 1540px) {
  h1 {
    font-size: 10.8rem;
  }

  h2 {
    font-size: 6.3rem;
  }
}

@media (max-width: 1200px) {
  :root {
    --page: min(100% - 40px, 1120px);
    --page-narrow: min(100% - 40px, 1040px);
  }

  h1 {
    font-size: 7.2rem;
  }

  h2 {
    font-size: 4.8rem;
  }

  .site-header {
    gap: 10px;
  }

  .site-nav a {
    padding-inline: 9px;
  }

  .opening-chip {
    padding-inline: 11px;
    font-size: 0.68rem;
  }

  .image-story {
    grid-template-columns: minmax(280px, 0.8fr) minmax(340px, 1fr) minmax(190px, 0.48fr);
    gap: 30px;
  }

  .image-story-copy h2 {
    font-size: 3.1rem;
  }

  .visit {
    grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
    gap: 36px 56px;
  }

  .visit-copy h2 {
    font-size: 4.1rem;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    background: rgba(9, 10, 8, 0.97);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 220ms var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 48px;
    padding-inline: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero-copy {
    width: 82%;
  }

  .manifesto {
    gap: 50px;
  }

  .image-story {
    grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1.22fr);
  }

  .vineyard-portrait {
    grid-column: 2;
    width: 44%;
    justify-self: end;
    margin-top: -74px;
  }

  .heritage-media {
    left: 16%;
  }

  .heritage-year {
    bottom: 32px;
  }

  .wine-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wine-card:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  }

  .event-row {
    grid-template-columns: 150px minmax(220px, 0.8fr) 1fr;
  }

  .event-row > a {
    grid-column: 2;
  }

  .visit {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "details"
      "actions";
    align-content: end;
  }

  .visit-copy {
    max-width: 760px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .footer-meta {
    grid-column: 1 / -1;
    max-width: 860px;
  }
}

@media (max-width: 760px) {
  :root {
    --page: calc(100% - 28px);
    --page-narrow: calc(100% - 28px);
  }

  .cursor-ring {
    display: none;
  }

  .site-header {
    top: 8px;
    min-height: 60px;
    padding: 6px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 44px;
    height: 42px;
  }

  .brand-copy small {
    display: none;
  }

  .opening-chip {
    min-height: 44px;
    padding-inline: 10px;
    font-size: 0.62rem;
  }

  .opening-dot {
    width: 7px;
    height: 7px;
    flex-basis: 7px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: 94svh;
    padding: 118px 18px 26px;
  }

  .hero-media {
    inset: -2%;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-vignette {
    background:
      linear-gradient(90deg, rgba(9, 10, 8, 0.88), rgba(9, 10, 8, 0.3)),
      linear-gradient(0deg, rgba(9, 10, 8, 0.96) 0%, rgba(9, 10, 8, 0.2) 58%, rgba(9, 10, 8, 0.45) 100%);
  }

  .hero-grid {
    background-size: 54px 54px;
  }

  .hero-copy {
    width: 100%;
    padding-bottom: 138px;
  }

  h1 {
    font-size: 4.7rem;
  }

  h2 {
    font-size: 3.5rem;
  }

  .hero-intro {
    max-width: 510px;
    font-size: 1rem;
  }

  .hero-actions {
    gap: 12px;
  }

  .liquid-button {
    width: 220px;
    height: 60px;
  }

  .liquid-field {
    inset: -25px -32px;
  }

  .liquid-core {
    inset: 25px 32px;
  }

  .round-link {
    width: 64px;
    height: 64px;
  }

  .hero-facts {
    right: 18px;
    bottom: 24px;
    left: 18px;
    width: auto;
  }

  .hero-facts strong {
    font-size: 1.35rem;
  }

  .hero-facts span {
    font-size: 0.58rem;
  }

  .scroll-cue {
    display: none;
  }

  .manifesto {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 96px 0 90px;
  }

  .image-story {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 46px 0 110px;
  }

  .color-reveal {
    width: min(100%, 520px);
  }

  .color-reveal-layer {
    clip-path: circle(100% at 50% 50%);
  }

  .color-reveal:hover .color-reveal-layer {
    clip-path: circle(100% at 50% 50%);
  }

  .image-story-copy h2 {
    font-size: 2.7rem;
  }

  .vineyard-portrait {
    grid-column: auto;
    width: 56%;
    margin: -12px 0 0;
    justify-self: end;
  }

  .heritage {
    min-height: 88svh;
    padding: 110px 18px 42px;
  }

  .heritage-media {
    inset: 0 -26% 0 0;
  }

  .heritage-overlay {
    background:
      linear-gradient(0deg, rgba(9, 10, 8, 0.98) 0%, rgba(9, 10, 8, 0.7) 52%, rgba(9, 10, 8, 0.2) 100%),
      linear-gradient(90deg, rgba(9, 10, 8, 0.6), transparent);
  }

  .heritage::after {
    inset: 7% 18px;
  }

  .heritage-copy > p:last-child {
    font-size: 0.96rem;
  }

  .heritage-year {
    position: static;
    justify-items: start;
    margin-top: 30px;
  }

  .heritage-year strong {
    font-size: 3.2rem;
  }

  .wines,
  .events {
    padding: 100px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 46px;
  }

  .wine-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .wine-card:last-child {
    grid-column: auto;
    display: block;
  }

  .wine-media {
    aspect-ratio: 16 / 14;
  }

  .wine-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .cellar {
    --spot-x: 74%;
    --spot-y: 34%;
    --spot-radius: 320px;
    min-height: 82svh;
    padding: 100px 18px 48px;
  }

  .cellar-media,
  .cellar-light-reveal {
    inset: -4% -34% -4% -8%;
  }

  .cellar-light-reveal,
  .cellar-spotlight {
    opacity: 0.72;
  }

  .fact-marquee span {
    padding: 14px 18px;
    font-size: 2rem;
  }

  .event-row {
    grid-template-columns: 1fr auto;
    gap: 10px 18px;
    padding: 24px 0;
  }

  .event-row time {
    grid-column: 1 / -1;
  }

  .event-row h3 {
    font-size: 1.55rem;
  }

  .event-row p {
    grid-column: 1 / -1;
  }

  .event-row > a {
    grid-column: 2;
    grid-row: 2;
  }

  .visit {
    min-height: auto;
    padding: 110px 18px 58px;
  }

  .visit-copy h2 {
    font-size: 3.35rem;
  }

  .visit-details div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .visit-details dd {
    font-size: 1.12rem;
  }

  .visit-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
    padding: 40px 18px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .legal-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 18px 16px;
  }

  .legal-header nav {
    justify-content: flex-start;
    gap: 12px 16px;
  }

  .legal-hero {
    width: calc(100% - 36px);
    padding: 72px 0 48px;
  }

  .legal-hero h1 {
    font-size: 3.65rem;
  }

  .legal-content {
    width: calc(100% - 36px);
    padding-bottom: 80px;
  }

  .legal-section {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 34px 0;
  }
}

@media (max-width: 480px) {
  .brand-copy strong {
    font-size: 0.88rem;
  }

  .opening-chip {
    max-width: 128px;
    line-height: 1.1;
  }

  h1 {
    font-size: 3.45rem;
  }

  .hero-title-kicker {
    gap: 10px;
    margin-left: 4px;
  }

  .hero-title-kicker::before {
    width: 36px;
  }

  .hero-title-name::after {
    display: none;
  }

  h2 {
    font-size: 2.85rem;
  }

  .hero-copy {
    padding-bottom: 142px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .round-link {
    position: absolute;
    right: 0;
    bottom: 148px;
  }

  .liquid-button {
    width: 204px;
  }

  .liquid-label {
    gap: 10px;
    font-size: 0.76rem;
  }

  .hero-facts div {
    padding-inline: 6px;
  }

  .hero-facts strong {
    font-size: 1.15rem;
  }

  .hero-facts span {
    overflow-wrap: anywhere;
  }

  .manifesto-copy p:first-child {
    font-size: 1.08rem;
  }

  .image-story-copy h2 {
    font-size: 2.25rem;
  }

  .vineyard-portrait {
    width: 68%;
  }

  .heritage-copy > p:last-child,
  .cellar-copy p {
    font-size: 0.92rem;
  }

  .wine-copy {
    padding: 20px;
  }

  .visit-copy h2 {
    font-size: 2.75rem;
  }

  .footer-brand {
    font-size: 1rem;
  }

  .footer-meta {
    font-size: 0.72rem;
  }

  .footer-disclaimer {
    font-size: 0.68rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  body.motion-ready .reveal {
    opacity: 1;
    transform: none;
  }

  .image-reveal::after {
    display: none;
  }

  .color-reveal-layer {
    clip-path: circle(100% at 50% 50%);
  }

  .hero-title-name,
  .hero-title-name::after,
  .hero-title-kicker::before {
    animation: none;
  }

  .hero-title-name {
    background-position: 50% 50%;
  }

  .cellar-light-reveal,
  .cellar-spotlight {
    opacity: 0.72;
  }
}
