@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-500.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-500.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

:root {
  --limestone: #f2f0e8;
  --cream: #e7e3d5;
  --ink: #17201a;
  --leaf: #314334;
  --leaf-soft: #46584a;
  --clay: #b45f42;
  --clay-dark: #914832;
  --straw: #d8d3b2;
  --white: #fffef9;
  --black: #111412;
  --line: rgba(23, 32, 26, 0.17);
  --wrap: min(1440px, calc(100vw - 96px));
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--limestone);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body,
button,
input,
select,
textarea {
  font-family: var(--sans);
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

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

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(90px, 9vw, 160px);
}

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

.section-dark {
  color: var(--white);
  background: var(--ink);
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 22px;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: rgba(255, 254, 249, 0.78);
}

.section-heading {
  max-width: 920px;
}

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.section-heading-center .eyebrow {
  justify-content: center;
}

.section-heading h2,
.split-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6.7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.section-heading h2 em,
.split-heading h2 em {
  color: var(--clay);
  font-weight: 400;
}

.section-copy {
  max-width: 580px;
  margin-top: 36px;
  font-size: 1.06rem;
}

.section-heading-center .section-copy {
  margin-inline: auto;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0 27px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button .icon {
  width: 17px;
}

.button-small {
  min-height: 42px;
  padding-inline: 19px;
  font-size: 0.67rem;
}

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

.button-dark:hover {
  background: var(--leaf);
}

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

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

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

.button-clay:hover {
  background: var(--clay-dark);
}

.button-outline {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.text-link .icon {
  width: 17px;
  transition: transform 0.25s ease;
}

.text-link:hover .icon {
  transform: translate(3px, -3px);
}

.text-link-light {
  color: var(--white);
}

.icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.social-icon .icon-fill {
  fill: currentColor;
  stroke: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 94px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: height 0.25s ease, color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header[data-tone="light"] {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(242, 240, 232, 0.94);
}

.site-header.is-scrolled {
  height: 76px;
  color: var(--ink);
  border-color: rgba(23, 32, 26, 0.11);
  background: rgba(242, 240, 232, 0.94);
  box-shadow: 0 8px 30px rgba(15, 22, 17, 0.06);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  width: min(1540px, calc(100vw - 52px));
  height: 100%;
  margin-inline: auto;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  line-height: 1;
}

.brand-mark {
  width: 48px;
  height: 50px;
  object-fit: cover;
  object-position: center;
}

.brand-name {
  display: grid;
  gap: 3px;
  text-transform: uppercase;
}

.brand-name span {
  font-size: 0.56rem;
  letter-spacing: 0.28em;
}

.brand-name strong {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.3vw, 42px);
}

.desktop-nav a {
  position: relative;
  padding-block: 9px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-shop {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-shop .icon {
  width: 15px;
}

.menu-toggle,
.menu-close {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  visibility: hidden;
  padding: 24px 30px 36px;
  color: var(--white);
  background: var(--ink);
  grid-template-rows: auto 1fr auto;
  opacity: 0;
  transform: translateY(-24px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav {
  display: flex;
  align-self: center;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.mobile-nav a {
  display: grid;
  min-height: 66px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 5vw, 2.25rem);
  grid-template-columns: 42px 1fr auto;
}

.mobile-nav a span {
  color: var(--clay);
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.mobile-nav a .icon {
  width: 18px;
}

.mobile-menu-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.mobile-menu-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.71rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.mobile-dock {
  position: fixed;
  z-index: 90;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  height: 52px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 10px 30px rgba(10, 15, 11, 0.25);
}

.mobile-dock a {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-dock a + a {
  background: var(--clay);
}

.home-hero,
.page-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.home-hero-image,
.page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05);
  animation: heroScale 15s ease-out both;
}

.home-hero-image {
  object-position: 48% 50%;
}

.home-hero-overlay,
.page-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 16, 11, 0.74) 0%, rgba(12, 20, 14, 0.35) 48%, rgba(8, 13, 10, 0.15) 100%), linear-gradient(0deg, rgba(7, 12, 8, 0.48), transparent 45%);
}

.home-hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 100svh;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding-top: 120px;
  padding-bottom: 128px;
}

.home-hero h1 {
  max-width: 1160px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 8.6vw, 9.2rem);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.82;
}

.home-hero h1 em {
  color: var(--straw);
  font-weight: 400;
}

.home-hero-lead {
  max-width: 570px;
  margin: 35px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.65;
}

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

.hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-secondary .icon {
  width: 16px;
}

.hero-facts {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 38px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.line-motif {
  pointer-events: none;
}

.line-motif path {
  fill: none;
  stroke: var(--clay);
  stroke-dasharray: 2200;
  stroke-dashoffset: 2200;
  stroke-width: 3;
  animation: drawLine 2.4s 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.line-motif .line-secondary {
  opacity: 0.4;
  stroke-width: 1;
  animation-delay: 0.7s;
}

.home-hero-line {
  position: absolute;
  z-index: 2;
  right: -2%;
  bottom: -25px;
  width: 104%;
  height: 39%;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  right: 35px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue span {
  width: 1px;
  height: 46px;
  background: rgba(255, 255, 255, 0.55);
}

.intro-grid {
  display: grid;
  grid-template-columns: 2fr 10fr;
  gap: 45px;
}

.intro-side {
  position: relative;
}

.vertical-note {
  position: absolute;
  top: 210px;
  left: 0;
  margin: 0;
  color: rgba(23, 32, 26, 0.46);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: left top;
  white-space: nowrap;
}

.intro-main h2 {
  max-width: 1080px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 6.6vw, 7.6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.intro-main h2 em {
  color: var(--clay);
  font-weight: 400;
}

.intro-copy-grid {
  display: grid;
  max-width: 900px;
  margin-top: 70px;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.intro-copy-grid p {
  margin: 0 0 30px;
  color: rgba(23, 32, 26, 0.76);
  font-size: 1.03rem;
}

.terroir-showcase {
  display: grid;
  min-height: 760px;
  color: var(--white);
  background: var(--ink);
  grid-template-columns: minmax(0, 7fr) minmax(440px, 5fr);
}

.terroir-image-panel {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.terroir-image-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 25, 18, 0.55), transparent 55%);
  content: "";
}

.terroir-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.05);
}

.terroir-caption {
  position: absolute;
  z-index: 2;
  right: 35px;
  bottom: 32px;
  left: 35px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.61rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.terroir-copy-panel {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(60px, 8vw, 125px);
}

.terroir-copy-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.2vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.93;
}

.terroir-copy-panel > p:not(.eyebrow) {
  max-width: 520px;
  margin: 35px 0 45px;
  color: rgba(255, 255, 255, 0.7);
}

.stat-row {
  display: grid;
  width: 100%;
  margin-bottom: 50px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.stat-row div {
  display: grid;
  gap: 5px;
}

.stat-row strong {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
}

.stat-row span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collections-section {
  position: relative;
  overflow: hidden;
}

.collections-section > .wrap {
  position: relative;
  z-index: 1;
}

.collections-line {
  position: absolute;
  top: 60px;
  right: -8%;
  width: 116%;
  height: 420px;
  opacity: 0.42;
}

.collections-line path {
  stroke-width: 2;
}

.collections-section .section-heading {
  margin-bottom: 75px;
}

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

.collection-card {
  position: relative;
  display: flex;
  min-height: 600px;
  overflow: hidden;
  align-items: flex-end;
  padding: 44px;
  color: var(--white);
  isolation: isolate;
}

.collection-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 10, 8, 0.78), transparent 65%);
  content: "";
}

.collection-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

.collection-index {
  position: absolute;
  top: 33px;
  right: 36px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
}

.collection-card-content p {
  margin: 0 0 11px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collection-card-content h3 {
  max-width: 500px;
  margin: 0 0 25px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.collection-card-content span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collection-card-content .icon {
  width: 17px;
}

.featured-header {
  display: grid;
  align-items: end;
  margin-bottom: 70px;
  grid-template-columns: 8fr 4fr;
  gap: 70px;
}

.featured-header-copy,
.catalog-note {
  max-width: 480px;
}

.featured-header-copy p,
.catalog-note {
  margin: 0 0 28px;
  color: rgba(23, 32, 26, 0.7);
}

.wine-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(23, 32, 26, 0.14);
  border-left: 1px solid rgba(23, 32, 26, 0.14);
}

.wine-card {
  border-right: 1px solid rgba(23, 32, 26, 0.14);
  border-bottom: 1px solid rgba(23, 32, 26, 0.14);
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease;
}

.wine-card:hover {
  background: rgba(255, 255, 255, 0.62);
}

.wine-image-wrap {
  position: relative;
  display: flex;
  height: 420px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wine-image-wrap img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.wine-card:hover .wine-image-wrap img {
  transform: translateY(-8px);
}

.wine-collection {
  position: absolute;
  top: 22px;
  left: 24px;
  color: rgba(23, 32, 26, 0.55);
  font-size: 0.59rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.wine-card-copy {
  padding: 24px 27px 30px;
  border-top: 1px solid rgba(23, 32, 26, 0.12);
}

.wine-card-copy h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.05;
}

.wine-card-copy p {
  margin: 0 0 24px;
  color: rgba(23, 32, 26, 0.6);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wine-card-copy a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wine-card-copy a .icon {
  width: 17px;
}

.wine-spotlight {
  display: grid;
  grid-template-columns: 7fr 5fr;
}

.spotlight-image {
  min-height: 720px;
  overflow: hidden;
}

.spotlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(55px, 8vw, 125px);
  background: var(--white);
}

.spotlight-copy h2 {
  max-width: 580px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.93;
}

.spotlight-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 35px 0 38px;
  color: rgba(23, 32, 26, 0.72);
}

.tasting-promo {
  background: var(--straw);
}

.tasting-promo-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 5fr 7fr;
  gap: clamp(60px, 8vw, 130px);
}

.tasting-promo-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 5.4vw, 6.7rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.tasting-promo-copy h2 em {
  color: var(--clay);
  font-weight: 400;
}

.tasting-promo-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 34px 0 39px;
}

.tasting-promo-image {
  position: relative;
  height: min(760px, 68vw);
  min-height: 560px;
}

.tasting-promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}

.tasting-stamp {
  position: absolute;
  bottom: -36px;
  left: -50px;
  display: flex;
  width: 156px;
  height: 156px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  border-radius: 50%;
  background: var(--clay);
  transform: rotate(-8deg);
}

.tasting-stamp strong {
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 400;
  line-height: 1;
}

.tasting-stamp span {
  margin-top: 7px;
  font-size: 0.57rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.partners-strip {
  padding-block: clamp(80px, 8vw, 125px);
  color: var(--white);
  background: var(--leaf);
}

.partners-strip-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(60px, 8vw, 120px);
}

.partners-strip h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.partners-strip h2 em {
  color: var(--straw);
  font-weight: 400;
}

.partner-links {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.partner-links a {
  display: grid;
  min-height: 74px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--serif);
  font-size: 1.65rem;
  grid-template-columns: 55px 1fr auto;
}

.partner-links a span {
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--sans);
  font-size: 0.61rem;
  letter-spacing: 0.12em;
}

.partner-links a .icon {
  width: 18px;
  transition: transform 0.25s ease;
}

.partner-links a:hover .icon {
  transform: translateX(6px);
}

.page-hero {
  min-height: min(820px, 88svh);
}

.page-hero-image {
  object-position: center;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: min(820px, 88svh);
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  padding-top: 155px;
  padding-bottom: clamp(95px, 10vw, 150px);
}

.page-hero h1 {
  max-width: 1090px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 7.7vw, 8.4rem);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.84;
}

.page-hero h1 em {
  color: var(--straw);
  font-weight: 400;
}

.page-hero-copy {
  max-width: 650px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.page-hero-meta {
  position: absolute;
  right: 0;
  bottom: 38px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-hero-line {
  position: absolute;
  z-index: 2;
  right: -2%;
  bottom: -94px;
  width: 104%;
  height: 48%;
}

.breadcrumbs {
  display: flex;
  height: 72px;
  align-items: center;
  gap: 13px;
  color: rgba(23, 32, 26, 0.5);
  border-bottom: 1px solid var(--line);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--clay);
}

.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 7fr 5fr;
  gap: clamp(60px, 9vw, 140px);
}

.split-heading-copy {
  max-width: 560px;
  padding-bottom: 8px;
}

.split-heading-copy > p {
  margin: 0 0 34px;
  color: rgba(23, 32, 26, 0.72);
  font-size: 1.02rem;
}

.collection-detail {
  display: grid;
  min-height: 680px;
  color: var(--white);
  background: var(--ink);
  grid-template-columns: 6fr 6fr;
}

.collection-detail:nth-child(even) .collection-detail-image {
  order: 2;
}

.detail-sand {
  color: var(--ink);
  background: var(--straw);
}

.detail-clay {
  background: var(--clay-dark);
}

.detail-black {
  background: var(--black);
}

.collection-detail-image {
  min-height: 620px;
  overflow: hidden;
}

.collection-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-detail-copy {
  position: relative;
  display: flex;
  max-width: 700px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(70px, 8vw, 130px);
}

.collection-detail-number {
  position: absolute;
  top: 40px;
  right: 45px;
  margin: 0;
  color: currentColor;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  opacity: 0.48;
}

.collection-detail-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 5.5vw, 6.6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.91;
}

.collection-detail-copy > p:not(.eyebrow, .collection-detail-number, .detail-note) {
  max-width: 560px;
  margin: 34px 0 20px;
  opacity: 0.78;
}

.detail-note {
  max-width: 560px;
  margin: 0 0 35px;
  padding-left: 20px;
  border-left: 1px solid var(--clay);
  font-size: 0.86rem;
  opacity: 0.72;
}

.collection-detail .text-link {
  margin-top: 10px;
}

.detail-sand .eyebrow,
.detail-sand .text-link {
  color: var(--ink);
}

.wine-catalog .center-action {
  display: flex;
  justify-content: center;
  margin-top: 55px;
}

.seasonal-band {
  color: var(--white);
  background: var(--leaf);
}

.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.seasonal-grid article {
  min-height: 360px;
  padding: 60px 45px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.seasonal-grid article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.seasonal-grid span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.seasonal-grid h3 {
  margin: 60px 0 18px;
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 400;
}

.seasonal-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.history-grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: clamp(60px, 10vw, 160px);
}

.history-years {
  border-top: 1px solid var(--line);
}

.history-years div {
  display: grid;
  padding-block: 30px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 115px 1fr;
  gap: 25px;
}

.history-years strong {
  font-family: var(--serif);
  font-size: 2.7rem;
  font-weight: 400;
  line-height: 1;
}

.history-years span {
  color: rgba(23, 32, 26, 0.62);
  font-size: 0.77rem;
}

.history-copy h2,
.vineyards-copy h2,
.people-feature-copy h2,
.tasting-story-grid h2,
.inquiry-copy h2,
.contact-address h2,
.company-grid h2,
.partner-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.4vw, 6.6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.93;
}

.history-copy h2 em,
.vineyards-copy h2 em,
.people-feature-copy h2 em,
.tasting-story-grid h2 em,
.inquiry-copy h2 em,
.contact-address h2 em,
.partner-cta h2 em {
  color: var(--clay);
  font-weight: 400;
}

.history-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 35px 0 0;
  color: rgba(23, 32, 26, 0.73);
}

.facts-band {
  color: var(--white);
  background: var(--leaf);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.facts-grid div {
  min-height: 260px;
  padding: 55px 35px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.facts-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.facts-grid strong {
  display: block;
  margin-bottom: 34px;
  font-family: var(--serif);
  font-size: clamp(3rem, 4vw, 5rem);
  font-weight: 400;
  line-height: 1;
}

.facts-grid span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vineyards-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 5fr 7fr;
  gap: clamp(60px, 9vw, 140px);
}

.vineyards-copy > p:not(.eyebrow) {
  margin: 34px 0 0;
  color: rgba(23, 32, 26, 0.72);
}

.vineyards-copy .text-link {
  margin-top: 38px;
}

.vineyards-image-stack {
  position: relative;
  min-height: 740px;
}

.vineyards-image-main {
  width: 88%;
  height: 650px;
  margin-left: auto;
  object-fit: cover;
}

.vineyards-image-small {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48%;
  height: 310px;
  border: 14px solid var(--limestone);
  object-fit: cover;
}

.people-feature-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 6fr 6fr;
  gap: clamp(60px, 10vw, 150px);
}

.people-feature-image {
  height: 730px;
}

.people-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.people-feature-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 35px 0 38px;
  color: rgba(255, 255, 255, 0.68);
}

.editorial-gallery {
  display: grid;
  margin-top: 70px;
  grid-template-columns: 7fr 5fr;
  grid-template-rows: 370px 370px;
  gap: 22px;
}

.editorial-gallery figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.editorial-gallery figure:first-child {
  grid-row: 1 / 3;
}

.editorial-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.editorial-gallery figure:hover img {
  transform: scale(1.025);
}

.editorial-gallery figcaption {
  position: absolute;
  right: 15px;
  bottom: 15px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(23, 32, 26, 0.78);
  font-size: 0.6rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.process-intro .micro-note {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
}

.process-step {
  display: grid;
  min-height: 700px;
  grid-template-columns: 7fr 5fr;
}

.process-step-reverse {
  grid-template-columns: 5fr 7fr;
}

.process-step-reverse .process-step-image {
  order: 2;
}

.process-step-image {
  min-height: 650px;
  overflow: hidden;
}

.process-step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-step-copy {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(65px, 8vw, 125px);
  background: var(--white);
}

.process-step:nth-child(even) .process-step-copy {
  background: var(--straw);
}

.process-number {
  position: absolute;
  top: 38px;
  right: 40px;
  color: rgba(23, 32, 26, 0.42);
  font-size: 0.63rem;
  letter-spacing: 0.15em;
}

.process-step-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 5vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.process-step-copy h3 {
  max-width: 540px;
  margin: 28px 0 16px;
  font-size: 1.05rem;
  font-weight: 500;
}

.process-step-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 0;
  color: rgba(23, 32, 26, 0.72);
}

.process-facts {
  width: 100%;
  max-width: 540px;
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-facts li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.71rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-quote {
  text-align: center;
}

.process-quote-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.quote-mark {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 7rem;
  line-height: 0.55;
}

.process-quote blockquote {
  max-width: 1060px;
  margin: 35px auto 50px;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.3vw, 6rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.tasting-story-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(60px, 10vw, 150px);
}

.tasting-story-grid > div:last-child > p:first-child {
  margin: 58px 0 30px;
  color: rgba(23, 32, 26, 0.72);
}

.contact-inline {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.contact-inline .icon {
  width: 19px;
  color: var(--clay);
}

.tasting-packages .section-heading {
  margin-bottom: 70px;
}

.package-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.package-card {
  position: relative;
  display: flex;
  min-height: 510px;
  flex-direction: column;
  padding: 42px;
  border: 1px solid rgba(23, 32, 26, 0.16);
  background: rgba(255, 255, 255, 0.22);
}

.package-featured {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
  transform: translateY(-16px);
}

.package-badge {
  position: absolute;
  top: 19px;
  right: 22px;
  color: var(--straw);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-count {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 42px;
}

.package-count strong {
  font-family: var(--serif);
  font-size: 7rem;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.75;
}

.package-count span {
  margin-bottom: 5px;
  font-size: 0.67rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.package-card > p {
  min-height: 108px;
  margin: 0;
  color: rgba(23, 32, 26, 0.68);
}

.package-featured > p {
  color: rgba(255, 255, 255, 0.67);
}

.package-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  padding-block: 25px;
  border-top: 1px solid rgba(23, 32, 26, 0.16);
  border-bottom: 1px solid rgba(23, 32, 26, 0.16);
}

.package-featured .package-meta {
  border-color: rgba(255, 255, 255, 0.18);
}

.package-meta > span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-meta strong {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
}

.package-meta small {
  margin-left: 5px;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.package-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 27px;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-card > a .icon {
  width: 17px;
}

.tasting-conditions {
  display: grid;
  margin-top: 55px;
  padding-top: 30px;
  border-top: 1px solid rgba(23, 32, 26, 0.17);
  grid-template-columns: 3fr 9fr;
  gap: 50px;
}

.tasting-conditions p,
.tasting-conditions ul {
  margin: 0;
}

.tasting-conditions ul {
  display: grid;
  padding: 0;
  color: rgba(23, 32, 26, 0.68);
  font-size: 0.82rem;
  list-style: none;
  grid-template-columns: 1fr 1fr;
  gap: 12px 40px;
}

.tasting-conditions li::before {
  margin-right: 9px;
  color: var(--clay);
  content: "—";
}

.tasting-experience {
  display: grid;
  color: var(--white);
  background: var(--leaf);
  grid-template-columns: 6fr 6fr;
}

.tasting-experience-image {
  min-height: 760px;
}

.tasting-experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tasting-experience-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(65px, 8vw, 125px);
}

.tasting-experience-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 5.3vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.tasting-experience-copy h2 em {
  color: var(--straw);
  font-weight: 400;
}

.tasting-experience-copy ol {
  margin: 45px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  list-style: none;
}

.tasting-experience-copy li {
  display: grid;
  padding-block: 21px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  grid-template-columns: 45px 1fr;
  gap: 10px;
}

.tasting-experience-copy li > span {
  color: var(--clay);
  font-size: 0.61rem;
  letter-spacing: 0.12em;
}

.tasting-experience-copy strong {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.tasting-experience-copy li p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.82rem;
}

.inquiry-section {
  background: var(--white);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(60px, 9vw, 140px);
}

.inquiry-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 35px 0;
  color: rgba(23, 32, 26, 0.68);
}

.inquiry-direct {
  display: grid;
  gap: 14px;
}

.inquiry-direct a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.76rem;
  overflow-wrap: anywhere;
}

.inquiry-direct .icon {
  width: 18px;
  color: var(--clay);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 22px;
}

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid label span {
  color: rgba(23, 32, 26, 0.67);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 53px;
  padding: 11px 13px;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid rgba(23, 32, 26, 0.34);
  border-radius: 0;
  outline: 0;
  background: transparent;
}

.form-grid textarea {
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--clay);
}

.form-full {
  grid-column: 1 / -1;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-block: 25px;
  color: rgba(23, 32, 26, 0.62);
  font-size: 0.69rem;
}

.consent input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--clay);
}

.consent a {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
}

.inquiry-form button {
  cursor: pointer;
}

.form-status {
  min-height: 1.3em;
  margin: 12px 0 0;
  color: var(--clay-dark);
  font-size: 0.72rem;
}

.service-list {
  padding-bottom: clamp(90px, 9vw, 160px);
}

.service-row {
  display: grid;
  align-items: start;
  padding-block: 48px;
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr 4fr 5fr;
  gap: 45px;
}

.service-row:last-child {
  border-bottom: 1px solid var(--line);
}

.service-number {
  color: var(--clay);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
}

.service-heading h2 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 4.3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.service-heading p {
  margin: 0;
  color: rgba(23, 32, 26, 0.55);
  font-size: 0.71rem;
}

.service-copy p {
  max-width: 560px;
  margin: 0 0 25px;
  color: rgba(23, 32, 26, 0.72);
}

.service-copy a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-copy a .icon {
  width: 17px;
}

.service-visual {
  color: var(--white);
  background: var(--ink);
}

.service-visual-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 4fr 8fr;
  gap: clamp(65px, 9vw, 140px);
}

.service-visual-copy h2,
.projects-grid h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.93;
}

.service-visual-copy > p:not(.eyebrow) {
  margin: 32px 0 35px;
  color: rgba(255, 255, 255, 0.66);
}

.service-visual-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.service-visual-images img {
  width: 100%;
  height: 570px;
  object-fit: cover;
}

.service-visual-images img:last-child {
  margin-top: 75px;
}

.partner-cta-inner {
  display: grid;
  align-items: end;
  grid-template-columns: 7fr 5fr;
  gap: clamp(60px, 9vw, 140px);
}

.partner-cta-inner > div:last-child > p {
  max-width: 520px;
  margin: 0 0 35px;
  color: rgba(23, 32, 26, 0.7);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(65px, 10vw, 150px);
}

.contact-address > p:not(.eyebrow) {
  margin: 32px 0 37px;
  color: rgba(23, 32, 26, 0.68);
}

.contact-quick {
  border-top: 1px solid var(--line);
}

.contact-quick > a {
  display: flex;
  min-height: 91px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  min-width: 0;
}

.contact-quick > a .icon {
  width: 24px;
  color: var(--clay);
}

.contact-quick > a span {
  display: grid;
  min-width: 0;
  gap: 5px;
  font-family: var(--serif);
  font-size: 1.5rem;
  overflow-wrap: anywhere;
}

.contact-quick small {
  color: rgba(23, 32, 26, 0.5);
  font-family: var(--sans);
  font-size: 0.59rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-social-row {
  display: flex;
  gap: 18px;
  margin-top: 27px;
}

.contact-social-row a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-social-row .icon {
  width: 19px;
}

.team-section .section-heading {
  margin-bottom: 65px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(23, 32, 26, 0.16);
  border-left: 1px solid rgba(23, 32, 26, 0.16);
}

.team-card {
  position: relative;
  min-height: 260px;
  padding: 35px;
  border-right: 1px solid rgba(23, 32, 26, 0.16);
  border-bottom: 1px solid rgba(23, 32, 26, 0.16);
}

.team-index {
  position: absolute;
  top: 25px;
  right: 25px;
  color: rgba(23, 32, 26, 0.4);
  font-size: 0.59rem;
  letter-spacing: 0.12em;
}

.team-card h3 {
  max-width: 85%;
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 2.05rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
}

.team-card > p {
  margin: 0;
  color: var(--clay-dark);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-links {
  position: absolute;
  right: 35px;
  bottom: 30px;
  left: 35px;
  display: grid;
  gap: 5px;
  color: rgba(23, 32, 26, 0.62);
  font-size: 0.72rem;
}

.team-links a:hover {
  color: var(--clay-dark);
}

.team-links a {
  overflow-wrap: anywhere;
}

.company-grid {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: clamp(60px, 9vw, 140px);
}

.company-grid dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.company-grid dl div {
  display: grid;
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 180px 1fr;
  gap: 25px;
}

.company-grid dt {
  color: rgba(23, 32, 26, 0.48);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-grid dd {
  margin: 0;
}

.projects-section {
  color: var(--white);
  background: var(--leaf);
}

.projects-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(60px, 9vw, 140px);
}

.project-cards {
  display: grid;
  gap: 20px;
}

.project-cards article {
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.project-cards article > span {
  color: var(--clay);
  font-size: 0.59rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-cards h3 {
  margin: 16px 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.05;
}

.project-cards p {
  color: rgba(255, 255, 255, 0.62);
}

.project-cards strong {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-cards a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-cards a .icon {
  width: 15px;
}

.project-logos {
  display: grid;
  max-width: 430px;
  margin-top: 45px;
  padding: 20px;
  background: var(--white);
  grid-template-columns: 1.45fr 1fr;
  gap: 22px;
  align-items: center;
}

.project-logos img {
  width: 100%;
  height: auto;
}

.site-footer {
  color: var(--white);
  background: var(--ink);
}

.footer-top {
  display: grid;
  padding-block: clamp(80px, 8vw, 125px);
  grid-template-columns: 5fr 7fr;
  gap: clamp(60px, 9vw, 140px);
}

.footer-lead h2 {
  margin: 0 0 38px;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.footer-columns > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-columns h3 {
  margin: 0 0 24px;
  color: var(--straw);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-columns a,
.footer-columns span {
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.75rem;
}

.footer-columns a:hover {
  color: var(--white);
}

.footer-bottom {
  display: grid;
  min-height: 82px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  display: flex;
  width: 37px;
  height: 37px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-socials .icon {
  width: 16px;
  height: 16px;
}

.footer-credit {
  text-align: right;
}

.footer-credit a {
  color: var(--white);
}

@keyframes heroScale {
  from { transform: scale(1.035); }
  to { transform: scale(1); }
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@media (max-width: 1250px) {
  :root {
    --wrap: min(1440px, calc(100vw - 64px));
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle,
  .menu-close {
    display: flex;
  }

  .collection-card {
    min-height: 520px;
  }

  .wine-image-wrap {
    height: 360px;
  }
}

@media (max-width: 1020px) {
  :root {
    --wrap: calc(100vw - 48px);
  }

  .site-header {
    height: 78px;
  }

  .header-inner {
    width: calc(100vw - 34px);
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-shop,
  .header-tasting {
    display: none;
  }

  .menu-toggle,
  .menu-close {
    display: flex;
  }

  .home-hero h1 {
    font-size: clamp(4rem, 10vw, 7rem);
  }

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

  .intro-side .vertical-note {
    display: none;
  }

  .intro-copy-grid {
    margin-left: 16%;
  }

  .terroir-showcase,
  .wine-spotlight,
  .collection-detail,
  .process-step,
  .process-step-reverse,
  .tasting-experience {
    grid-template-columns: 1fr 1fr;
  }

  .terroir-copy-panel,
  .spotlight-copy,
  .collection-detail-copy,
  .process-step-copy,
  .tasting-experience-copy {
    padding: 60px 45px;
  }

  .collection-card {
    min-height: 450px;
    padding: 32px;
  }

  .featured-header,
  .split-heading,
  .tasting-promo-grid,
  .partners-strip-grid,
  .history-grid,
  .vineyards-grid,
  .people-feature-grid,
  .tasting-story-grid,
  .inquiry-grid,
  .service-visual-grid,
  .partner-cta-inner,
  .contact-main-grid,
  .company-grid,
  .projects-grid,
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 55px;
  }

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

  .tasting-promo-image {
    min-height: 520px;
  }

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

  .facts-grid div:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .facts-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .vineyards-image-stack {
    min-height: 610px;
  }

  .vineyards-image-main {
    height: 540px;
  }

  .people-feature-image,
  .tasting-experience-image {
    height: 620px;
    min-height: 620px;
  }

  .package-card {
    padding: 30px;
  }

  .package-count strong {
    font-size: 5.7rem;
  }

  .service-row {
    grid-template-columns: 55px 4fr 5fr;
    gap: 25px;
  }

  .service-visual-images img {
    height: 440px;
  }
}

@media (max-width: 760px) {
  :root {
    --wrap: calc(100vw - 34px);
  }

  body {
    padding-bottom: 64px;
    font-size: 15px;
  }

  .section-pad {
    padding-block: 86px;
  }

  .mobile-dock {
    display: flex;
  }

  .brand-mark {
    width: 42px;
    height: 44px;
  }

  .brand-name strong {
    font-size: 0.69rem;
  }

  .mobile-menu {
    padding: 18px 22px 28px;
  }

  .mobile-nav {
    margin-block: 36px;
  }

  .mobile-menu-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .mobile-menu-bottom .button {
    width: 100%;
  }

  .home-hero-content {
    justify-content: flex-end;
    padding-top: 120px;
    padding-bottom: 150px;
  }

  .home-hero-image {
    object-position: 55% center;
  }

  .home-hero h1 {
    font-size: clamp(3.4rem, 16vw, 5.3rem);
    line-height: 0.86;
  }

  .home-hero-lead {
    margin-top: 25px;
    font-size: 0.97rem;
  }

  .hero-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-secondary {
    align-self: center;
  }

  .hero-facts {
    bottom: 84px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .scroll-cue {
    display: none;
  }

  .home-hero-line {
    bottom: 15px;
    height: 22%;
  }

  .intro-main h2,
  .section-heading h2,
  .split-heading h2 {
    font-size: clamp(3.05rem, 13vw, 4.5rem);
  }

  .intro-copy-grid {
    grid-template-columns: 1fr;
    margin-top: 45px;
    margin-left: 0;
    gap: 10px;
  }

  .terroir-showcase,
  .wine-spotlight,
  .collection-detail,
  .process-step,
  .process-step-reverse,
  .tasting-experience,
  .featured-header,
  .split-heading,
  .tasting-promo-grid,
  .partners-strip-grid,
  .history-grid,
  .vineyards-grid,
  .people-feature-grid,
  .tasting-story-grid,
  .inquiry-grid,
  .service-visual-grid,
  .partner-cta-inner,
  .contact-main-grid,
  .company-grid,
  .projects-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .terroir-image-panel,
  .spotlight-image,
  .collection-detail-image,
  .process-step-image,
  .tasting-experience-image {
    min-height: 500px;
  }

  .collection-detail:nth-child(even) .collection-detail-image,
  .process-step-reverse .process-step-image {
    order: 0;
  }

  .terroir-copy-panel,
  .spotlight-copy,
  .collection-detail-copy,
  .process-step-copy,
  .tasting-experience-copy {
    padding: 65px 24px;
  }

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

  .collection-card {
    min-height: 480px;
    padding: 28px 22px;
  }

  .featured-header,
  .split-heading {
    align-items: start;
    gap: 32px;
  }

  .wine-grid {
    display: flex;
    overflow-x: auto;
    border-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .wine-grid::-webkit-scrollbar {
    display: none;
  }

  .wine-card {
    width: 82vw;
    max-width: 380px;
    flex: 0 0 82vw;
    border-left: 1px solid rgba(23, 32, 26, 0.14);
    scroll-snap-align: start;
  }

  .wine-image-wrap {
    height: 360px;
  }

  .tasting-promo-grid {
    gap: 60px;
  }

  .tasting-promo-image {
    height: 600px;
    min-height: 0;
  }

  .tasting-stamp {
    bottom: -38px;
    left: 15px;
    width: 130px;
    height: 130px;
  }

  .partners-strip-grid {
    gap: 50px;
  }

  .page-hero,
  .page-hero-content {
    min-height: 84svh;
  }

  .page-hero-content {
    justify-content: flex-end;
    padding-top: 125px;
    padding-bottom: 115px;
  }

  .page-hero h1 {
    font-size: clamp(3.4rem, 15vw, 5.2rem);
    line-height: 0.87;
  }

  .page-hero-copy {
    margin-top: 24px;
  }

  .page-hero-meta {
    right: 17px;
    bottom: 30px;
    left: 17px;
  }

  .page-hero-line {
    bottom: -15px;
    height: 24%;
  }

  .breadcrumbs {
    height: 58px;
  }

  .collection-detail-image {
    min-height: 450px;
  }

  .collection-detail-copy h2,
  .process-step-copy h2,
  .service-visual-copy h2,
  .projects-grid h2 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

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

  .seasonal-grid article {
    min-height: 290px;
    padding: 45px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .seasonal-grid h3 {
    margin-top: 35px;
  }

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

  .facts-grid div {
    min-height: 210px;
    padding: 35px 20px;
  }

  .facts-grid strong {
    font-size: 3.2rem;
  }

  .vineyards-image-stack {
    min-height: 520px;
  }

  .vineyards-image-main {
    width: 92%;
    height: 455px;
  }

  .vineyards-image-small {
    width: 58%;
    height: 225px;
    border-width: 8px;
  }

  .people-feature-image,
  .tasting-experience-image {
    height: 540px;
  }

  .editorial-gallery {
    display: flex;
    overflow-x: auto;
    grid-template-columns: none;
    grid-template-rows: none;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .editorial-gallery figure,
  .editorial-gallery figure:first-child {
    width: 84vw;
    height: 480px;
    flex: 0 0 84vw;
    grid-row: auto;
    scroll-snap-align: start;
  }

  .process-step-copy {
    min-height: 560px;
  }

  .package-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .package-card {
    min-height: 470px;
  }

  .package-featured {
    transform: none;
  }

  .tasting-conditions {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tasting-conditions ul {
    grid-template-columns: 1fr;
  }

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

  .form-full {
    grid-column: auto;
  }

  .service-row {
    grid-template-columns: 42px 1fr;
    gap: 18px;
  }

  .service-copy {
    grid-column: 2;
  }

  .service-visual-images {
    gap: 10px;
  }

  .service-visual-images img {
    height: 330px;
  }

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

  .company-grid dl div {
    grid-template-columns: 110px 1fr;
  }

  .footer-top {
    gap: 65px;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 45px 25px;
  }

  .footer-bottom {
    min-height: 165px;
    justify-items: center;
    padding-block: 30px;
    text-align: center;
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .footer-credit {
    text-align: center;
  }
}

@media (max-width: 460px) {
  .home-hero h1,
  .page-hero h1 {
    font-size: 3.35rem;
  }

  .eyebrow {
    margin-bottom: 17px;
  }

  .button {
    min-height: 54px;
  }

  .terroir-image-panel,
  .spotlight-image,
  .collection-detail-image,
  .process-step-image {
    min-height: 420px;
  }

  .collection-card {
    min-height: 430px;
  }

  .tasting-promo-image {
    height: 510px;
  }

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

  .facts-grid div,
  .facts-grid div:nth-child(2) {
    min-height: 170px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .package-count strong {
    font-size: 5rem;
  }

  .service-visual-images {
    grid-template-columns: 1fr;
  }

  .service-visual-images img,
  .service-visual-images img:last-child {
    height: 390px;
    margin: 0;
  }

  .contact-quick > a span {
    font-size: 1.13rem;
  }

  .team-card {
    min-height: 290px;
    padding: 30px 22px;
  }

  .team-links {
    right: 22px;
    left: 22px;
  }

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

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

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

  .line-motif path {
    stroke-dashoffset: 0;
  }
}
