﻿:root {
  --bg: #f4efe6;
  --bg-soft: #fbf8f2;
  --surface: #fffdf8;
  --surface-strong: #f0e5d3;
  --text: #26160f;
  --muted: #6f5a4f;
  --line: rgba(38, 22, 15, 0.14);
  --accent: #8a4b2f;
  --accent-dark: #5f2b1e;
  --max-width: 1180px;
  --radius: 24px;
  --shadow: 0 24px 60px rgba(62, 34, 23, 0.12);
  --header-large-height: 152px;
  --header-small-height: 52px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: #f6f0e7;
  line-height: 1.6;
  padding-top: var(--header-large-height);
}

body.template-homepage {
  padding-top: 0;
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--accent-dark);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 20;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(248, 244, 238, 0.96);
  border-bottom: 1px solid rgba(38, 22, 15, 0.08);
  backdrop-filter: blur(12px);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2.2rem;
  min-height: var(--header-large-height);
  padding-top: 1.15rem;
  padding-bottom: 0.9rem;
  transition: min-height 180ms ease, padding 180ms ease, gap 180ms ease;
}

.site-brand {
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-brand img {
  width: min(168px, 16vw);
  min-width: 108px;
  height: auto;
  object-fit: contain;
  transition: width 180ms ease, min-width 180ms ease;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.9rem;
  transition: gap 180ms ease;
}

.site-nav--left {
  justify-content: flex-end;
}

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

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0;
  color: #050505;
  font-size: clamp(1rem, 1vw, 1.14rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: font-size 180ms ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--accent-dark);
}

.site-nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav__link--parent {
  padding-right: 0;
}

.site-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.site-nav__caret {
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-0.05rem);
  transform-origin: center;
}

.site-submenu {
  position: absolute;
  top: calc(100% - 0.15rem);
  left: 50%;
  min-width: 14rem;
  padding: 0.6rem;
  display: grid;
  gap: 0.15rem;
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid rgba(38, 22, 15, 0.1);
  border-radius: 1rem;
  box-shadow: 0 18px 40px rgba(24, 18, 13, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(0.25rem);
  transition: opacity 140ms ease, transform 140ms ease;
  z-index: 12;
}

.site-submenu__link {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 0.75rem;
  color: #2f241e;
  font-size: 0.96rem;
  font-weight: 500;
}

.site-submenu__link:hover,
.site-submenu__link:focus-visible {
  background: rgba(138, 75, 47, 0.08);
  color: var(--accent-dark);
}

.site-nav__item:hover .site-submenu,
.site-nav__item:focus-within .site-submenu,
.site-nav__item.is-open .site-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.site-header__toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font: inherit;
}

.is-scrolled .site-header {
  background: rgba(248, 244, 238, 0.92);
  box-shadow: 0 10px 30px rgba(24, 18, 13, 0.08);
}

.is-scrolled .site-header__inner {
  min-height: var(--header-small-height);
  gap: 0.9rem;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

.is-scrolled .site-brand img {
  width: min(54px, 5vw);
  min-width: 44px;
}

.is-scrolled .site-nav {
  gap: 0.95rem;
}

.is-scrolled .site-nav__link {
  font-size: 0.9rem;
}

.page-hero {
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.page-hero--compact {
  padding-top: 3rem;
}

.template-homepage .page-hero,
.template-home .page-hero,
.page-home .page-hero {
  min-height: 100svh;
  padding: 0;
  background: #1c1a18;
}

.page-hero__video,
.page-hero__veil {
  position: absolute;
  inset: 0;
}

.page-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: brightness(0.92) saturate(0.9);
}

.page-hero__veil {
  background: linear-gradient(rgba(17, 12, 10, 0.18), rgba(17, 12, 10, 0.26));
}

.page-hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-hero__copy,
.page-hero__media img,
.card,
.contact-card,
.site-footer__intro,
.footer-sitemap__group,
.content-grid,
.key-points {
  border-radius: var(--radius);
}

.page-hero__copy {
  padding: 2rem;
  background: rgba(255, 253, 248, 0.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.template-homepage .page-hero__inner,
.template-home .page-hero__inner,
.page-home .page-hero__inner {
  min-height: 100svh;
  grid-template-columns: 1fr;
  justify-items: center;
  padding-top: calc(var(--header-large-height) + clamp(1.25rem, 4vh, 2.25rem));
  padding-bottom: clamp(4rem, 11vh, 6rem);
}

.template-homepage .page-hero__copy,
.template-home .page-hero__copy,
.page-home .page-hero__copy {
  max-width: 72rem;
  padding: 2rem 1.5rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.template-homepage .page-hero__copy .eyebrow,
.template-homepage .page-hero__copy h1,
.template-homepage .page-hero__copy .lede,
.template-home .page-hero__copy .eyebrow,
.template-home .page-hero__copy h1,
.template-home .page-hero__copy .lede,
.page-home .page-hero__copy .eyebrow,
.page-home .page-hero__copy h1,
.page-home .page-hero__copy .lede {
  color: #fff;
}

.template-homepage .page-hero__copy h1,
.template-home .page-hero__copy h1,
.page-home .page-hero__copy h1 {
  font-size: clamp(2.9rem, 6.4vw, 5.3rem);
  font-weight: 600;
}

.template-homepage .page-hero__media,
.template-home .page-hero__media,
.page-home .page-hero__media {
  display: none;
}

.page-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.eyebrow,
.card__eyebrow {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.lede {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.template-homepage .lede {
  max-width: 52rem;
  margin: 0 auto;
  font-size: clamp(1.1rem, 2vw, 1.85rem);
  line-height: 1.32;
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.6rem;
  padding: 0.9rem 1.6rem;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 1rem;
  color: #fff;
  font-weight: 600;
  backdrop-filter: blur(2px);
}

.ghost-link--hero {
  margin-top: 2.25rem;
}

.ghost-link--small {
  min-height: 0;
  padding: 0.75rem 1.15rem;
  font-size: 0.95rem;
}

.content-section {
  padding: 1.5rem 0 2rem;
}

.content-section--wine-grid {
  padding-top: 1.1rem;
}

.organic-collection-hero {
  position: relative;
  min-height: clamp(24rem, 36vw, 34rem);
  overflow: hidden;
  background: #1d140f;
}

.organic-collection-hero__image,
.organic-collection-hero__overlay {
  position: absolute;
  inset: 0;
}

.organic-collection-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.organic-collection-hero__overlay {
  background: linear-gradient(90deg, rgba(21, 12, 8, 0.22) 0%, rgba(21, 12, 8, 0.32) 52%, rgba(21, 12, 8, 0.55) 100%);
}

.organic-collection-hero__inner {
  min-height: inherit;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: clamp(4.6rem, 11vh, 6.5rem);
  padding-bottom: 3rem;
}

.organic-collection-hero__copy {
  width: min(30rem, 100%);
  color: #fff6ee;
}

.organic-collection-hero__copy .eyebrow,
.organic-collection-hero__copy h1,
.organic-collection-hero__copy p {
  color: #fff6ee;
}

.organic-collection-hero__copy h1 {
  margin: 0.1rem 0 0.75rem;
  font-size: clamp(2.75rem, 4.6vw, 4.25rem);
  line-height: 0.95;
}

.organic-collection-hero__lede {
  max-width: 32rem;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
}

.ghost-link--organic {
  margin-top: 1.5rem;
  min-height: 0;
  padding: 0.8rem 1.55rem;
  border-radius: 0.3rem;
  border-width: 1px;
}

.organic-collection-intro {
  padding: 1.25rem 0 0.8rem;
  background: #fffdfa;
}

.organic-collection-intro .container {
  max-width: 36rem;
}

.organic-collection-intro p {
  margin: 0;
  color: #31231b;
  font-size: 0.98rem;
  line-height: 1.8;
  text-align: center;
}

.organic-wines-catalog {
  padding: 1.25rem 0 2.2rem;
  background: #fffdfa;
}

.organic-wines-catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.8rem 1.8rem;
  align-items: start;
}

.organic-wine-card {
  display: grid;
  align-content: start;
  justify-items: center;
  text-align: center;
}

.organic-wine-card__media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  min-height: 14rem;
  padding: 0 1rem;
}

.organic-wine-card__media img {
  width: auto;
  max-width: 100%;
  max-height: 12.2rem;
  object-fit: contain;
}

.organic-wine-card__copy {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  width: 100%;
  max-width: 14rem;
}

.organic-wine-card__copy h3 {
  margin-top: 0.2rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.organic-wine-card__copy h3 a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.organic-wine-card__origin,
.organic-wine-card__body {
  margin: 0;
  color: #3f3128;
}

.organic-wine-card__origin {
  font-size: 0.78rem;
}

.organic-wine-card__body {
  font-size: 0.76rem;
  line-height: 1.78;
}

.conventional-lineup {
  padding: 1.25rem 0 2.35rem;
  background: linear-gradient(180deg, #fffdfa 0%, #f8f2e9 100%);
}

.organic-collection-hero--conventional {
  min-height: clamp(22rem, 32vw, 29rem);
  background: #17110d;
}

.organic-collection-hero--conventional .organic-collection-hero__image {
  object-position: center 44%;
  filter: saturate(0.92) contrast(0.96) brightness(0.84);
}

.organic-collection-hero--conventional .organic-collection-hero__overlay {
  background: linear-gradient(90deg, rgba(14, 9, 7, 0.24) 0%, rgba(14, 9, 7, 0.42) 56%, rgba(14, 9, 7, 0.58) 100%);
}

.organic-collection-hero--conventional .organic-collection-hero__copy {
  width: min(31rem, 100%);
}

.conventional-lineup__stack {
  display: grid;
  gap: 1.45rem;
}

.conventional-line-card {
  display: grid;
  grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
  gap: 1.6rem;
  align-items: center;
  padding: 1.4rem;
  background: rgba(255, 252, 246, 0.88);
  border: 1px solid rgba(38, 22, 15, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px rgba(44, 28, 21, 0.06);
}

.conventional-line-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 25rem;
  padding: 1rem 1.2rem;
  background:
    radial-gradient(circle at top center, rgba(138, 75, 47, 0.08), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 239, 226, 0.52));
  border-radius: 1.1rem;
}

.conventional-line-card__media img {
  width: auto;
  max-width: 100%;
  max-height: 22rem;
  object-fit: contain;
}

.conventional-line-card__copy {
  display: grid;
  gap: 0.75rem;
}

.conventional-line-card__eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.conventional-line-card__copy h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 0.96;
}

.conventional-line-card__body {
  margin: 0;
  max-width: 58ch;
  color: #3f3028;
  font-size: 1rem;
  line-height: 1.72;
}

.conventional-line-card__list {
  margin: 0.2rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.38rem;
  color: #382a22;
}

.conventional-line-card__list li {
  font-size: 0.98rem;
  line-height: 1.42;
}

.vineyard-map-section {
  margin-top: 0;
  background: #f5efe5;
}

.vineyard-map-section__image {
  width: 100%;
  height: auto;
  max-height: 52rem;
  object-fit: cover;
}

.estate-directory {
  padding: 1.35rem 0 3.25rem;
  background: #fff;
}

.estate-directory__inner {
  width: min(calc(100% - 3rem), 840px);
}

.estate-directory h1 {
  margin-bottom: 2rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.estate-directory__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.45rem 1.15rem;
}

.estate-card {
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.estate-card__media {
  display: block;
  overflow: hidden;
  background: #f2ede5;
}

.estate-card__media img {
  width: 100%;
  aspect-ratio: 1.1 / 0.78;
  object-fit: cover;
}

.estate-card h2 {
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}

.estate-card h2 a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.12em;
}

.estate-card p {
  margin: 0;
  color: #362c25;
  font-size: 0.98rem;
  line-height: 1.45;
}

.wine-carousel-section {
  padding: 2.6rem 0 3.2rem;
  background:
    radial-gradient(circle at top left, rgba(164, 102, 61, 0.09), transparent 26%),
    radial-gradient(circle at top right, rgba(182, 138, 99, 0.08), transparent 24%),
    linear-gradient(180deg, #fbf4e8 0%, #f7eedf 100%);
}

.wine-carousel-section__title {
  margin-bottom: 1.9rem;
  font-size: clamp(2.3rem, 4.5vw, 3.5rem);
  font-weight: 500;
  text-align: center;
  color: #955939;
}

.wine-carousel {
  position: relative;
  --slides-per-view: 5;
}

.wine-carousel__viewport {
  overflow: hidden;
}

.wine-carousel__track {
  display: flex;
  will-change: transform;
}

.wine-carousel__slide {
  flex: 0 0 calc(100% / var(--slides-per-view));
  min-width: calc(100% / var(--slides-per-view));
  padding: 0 12px 1.25rem;
}

.wine-carousel__card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 31rem;
  padding: 1.25rem;
  background: rgba(255, 251, 245, 0.52);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.wine-carousel__card:hover {
  transform: translateY(-2px);
  background: rgba(255, 251, 245, 0.76);
  box-shadow: 0 16px 32px rgba(88, 52, 34, 0.08);
}

.wine-carousel__image {
  width: auto;
  max-width: 100%;
  max-height: 25.5rem;
  object-fit: contain;
}

.wine-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #a57557;
  font-size: 3.4rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(calc(-50% - 0.7rem));
  transition: color 180ms ease, transform 180ms ease;
}

.wine-carousel__arrow:hover {
  color: #8c4f31;
  transform: translateY(calc(-50% - 0.7rem)) scale(1.04);
}

.wine-carousel__arrow:disabled {
  opacity: 0.32;
  cursor: default;
}

.wine-carousel__arrow--prev {
  left: -1.8rem;
}

.wine-carousel__arrow--next {
  right: -1.8rem;
}

.wine-carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
}

.wine-carousel__dot {
  width: 0.9rem;
  height: 0.9rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #b67f5f;
  opacity: 0.42;
  cursor: pointer;
  transition: transform 160ms ease, opacity 160ms ease, background-color 160ms ease;
}

.wine-carousel__dot.is-active {
  background: #1f7d8e;
  opacity: 1;
  transform: scale(1.08);
}

.decision-split {
  padding: 1.4rem 0 2.2rem;
  background: linear-gradient(180deg, #f8f1e6 0%, #fcf8f2 100%);
}

.decision-split__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.decision-card {
  position: relative;
  min-height: clamp(24rem, 54vw, 38rem);
  overflow: hidden;
  border-radius: 1.6rem;
  background: #22150f;
  box-shadow: 0 22px 48px rgba(41, 25, 18, 0.12);
}

.decision-card__image,
.decision-card__overlay {
  position: absolute;
  inset: 0;
}

.decision-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.decision-card__overlay {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(7.8rem, auto) minmax(5rem, auto) auto;
  align-content: start;
  gap: 0.85rem;
  padding: clamp(1.5rem, 4vw, 2.3rem);
  color: #fff9f2;
  background:
    linear-gradient(180deg, rgba(24, 16, 12, 0.08) 0%, rgba(24, 16, 12, 0.18) 34%, rgba(24, 16, 12, 0.74) 100%);
}

.decision-card:hover .decision-card__image {
  transform: scale(1.03);
}

.decision-card__eyebrow {
  margin: 0;
  color: rgba(255, 249, 242, 0.76);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.decision-card h2 {
  color: #fff9f2;
  font-size: clamp(2.3rem, 4.6vw, 4rem);
  line-height: 0.94;
}

.decision-card p:last-of-type {
  max-width: 32rem;
  margin: 0;
  color: rgba(255, 249, 242, 0.9);
  font-size: 1rem;
  line-height: 1.5;
}

.decision-card__cta {
  align-self: start;
}

.feature-panels,
.country-showcase {
  background: #fff;
}

.feature-panels__grid,
.country-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.country-showcase__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-panel,
.cover-card {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.feature-panel__image,
.cover-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-panel__overlay,
.cover-card__overlay {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 2rem;
  text-align: center;
  color: #fff;
  background: linear-gradient(rgba(16, 14, 13, 0.14), rgba(16, 14, 13, 0.26));
}

.feature-panel__overlay h2,
.cover-card__overlay h3 {
  color: #fff;
}

.feature-panel__overlay p {
  max-width: 26rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.country-showcase__intro {
  padding: 4rem 1rem 2rem;
  text-align: center;
}

.country-showcase__intro .lede {
  max-width: 46rem;
}

.cover-card__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.content-section--soft {
  padding-top: 0.5rem;
}

.section-heading {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.section-heading--centered {
  justify-items: center;
  text-align: center;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 1.5rem;
  padding: 1.75rem;
  background: rgba(255, 253, 248, 0.76);
  border: 1px solid var(--line);
}

.prose p,
.card p,
.contact-card p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

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

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

.wine-tile {
  display: grid;
  align-content: start;
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.98) 0%, rgba(247, 239, 226, 0.94) 100%);
  border: 1px solid rgba(38, 22, 15, 0.08);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(44, 28, 21, 0.08);
}

.wine-tile__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 21rem;
  padding: 1.65rem 1.35rem 1rem;
  background:
    radial-gradient(circle at top center, rgba(138, 75, 47, 0.08), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 239, 226, 0.48));
}

.wine-tile__image {
  width: auto;
  max-width: 100%;
  max-height: 18.8rem;
  object-fit: contain;
  transition: transform 180ms ease;
}

.wine-tile:hover .wine-tile__image {
  transform: translateY(-2px);
}

.wine-tile__copy {
  display: grid;
  gap: 0.45rem;
  padding: 0.2rem 1.35rem 1.3rem;
}

.wine-tile__eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wine-tile h3 {
  font-size: 1.9rem;
  margin: 0;
}

.wine-tile .text-link {
  margin-top: 0.15rem;
}

.card {
  padding: 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.text-link::after {
  content: "->";
}

.key-points {
  margin: 0;
  padding: 1.6rem 1.8rem 1.6rem 3rem;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  gap: 0.65rem;
}

.contact-hero {
  position: relative;
  min-height: clamp(24rem, 38vw, 35rem);
  overflow: hidden;
  background: #1f140e;
}

.contact-hero__image,
.contact-hero__overlay {
  position: absolute;
  inset: 0;
}

.contact-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.contact-hero__overlay {
  background: linear-gradient(90deg, rgba(31, 18, 12, 0.32) 0%, rgba(31, 18, 12, 0.2) 43%, rgba(31, 18, 12, 0.56) 100%);
}

.contact-hero__inner {
  min-height: inherit;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: clamp(4.6rem, 11vh, 6.6rem);
  padding-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.contact-hero__copy {
  width: min(31rem, 100%);
  color: #fff7ef;
}

.contact-hero__copy .eyebrow,
.contact-hero__copy h1,
.contact-hero__copy .lede {
  color: #fff7ef;
}

.contact-hero__copy h1 {
  margin: 0.1rem 0 0.7rem;
  font-size: clamp(2.75rem, 4.7vw, 4.15rem);
  line-height: 0.96;
}

.contact-page-section {
  padding: 2rem 0 2.4rem;
  background:
    radial-gradient(circle at top left, rgba(223, 201, 171, 0.18), transparent 36%),
    linear-gradient(180deg, #f8f2ea 0%, #f3eadf 100%);
}

.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1.35rem;
  align-items: start;
}

.contact-brief {
  display: grid;
  gap: 1rem;
}

.contact-brief__card {
  padding: 1.55rem;
  background: rgba(255, 252, 247, 0.88);
  border: 1px solid rgba(90, 61, 39, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-brief__email {
  display: inline-block;
  margin: 0.25rem 0 0.9rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.contact-topic-list {
  margin: 0.95rem 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.6rem;
  color: var(--muted);
}

.contact-sheet {
  position: relative;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 249, 238, 0.98), rgba(250, 241, 226, 0.97)),
    repeating-linear-gradient(180deg, rgba(137, 101, 69, 0.035) 0, rgba(137, 101, 69, 0.035) 1px, transparent 1px, transparent 44px);
  border: 1px solid rgba(111, 80, 51, 0.18);
  border-radius: calc(var(--radius) + 0.2rem);
  box-shadow: 0 22px 48px rgba(45, 27, 16, 0.12);
}

.contact-sheet::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.45), transparent 30%);
  pointer-events: none;
}

.contact-sheet__inner {
  position: relative;
  padding: 1.75rem 1.65rem 1.5rem;
}

.contact-sheet__inner h2 {
  margin: 0.2rem 0 1.15rem;
}

.contact-sheet__embed .ff-default .ff-el-form-control,
.contact-sheet__embed .ff-default textarea,
.contact-sheet__embed .ff-default select {
  width: 100%;
  padding: 0.82rem 0.95rem;
  font: inherit;
  color: #2f2119;
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(106, 76, 49, 0.18);
  border-radius: 0.4rem;
  box-shadow: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.contact-sheet__embed .ff-default .ff-el-form-control:focus,
.contact-sheet__embed .ff-default textarea:focus,
.contact-sheet__embed .ff-default select:focus {
  border-color: rgba(133, 84, 38, 0.5);
  box-shadow: 0 0 0 3px rgba(163, 117, 75, 0.12);
  background: #fffdfa;
}

.contact-sheet__embed .ff-default label,
.contact-sheet__embed .ff-default .ff-el-input--label label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a583d;
}

.contact-sheet__embed .ff-default .ff-el-group {
  margin-bottom: 0.95rem;
}

.contact-sheet__embed .ff-default .ff-el-group.bv-half {
  display: inline-block;
  vertical-align: top;
  width: calc(50% - 0.5rem);
}

.contact-sheet__embed .ff-default .ff-el-group.bv-half:nth-of-type(odd) {
  margin-right: 1rem;
}

.contact-sheet__embed .ff-default .ff-el-group.bv-full {
  width: 100%;
}

.contact-sheet__embed .ff-default textarea {
  min-height: 9rem;
  resize: vertical;
}

.contact-sheet__embed .ff-default .ff-btn-submit {
  min-height: 0;
  padding: 0.9rem 1.35rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #7e4f28 0%, #613716 100%);
  color: #fff8f0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 24px rgba(91, 51, 20, 0.18);
}

.contact-sheet__embed .ff-message-success {
  border-radius: 0.8rem;
  border: 1px solid rgba(50, 119, 77, 0.18);
  background: rgba(240, 250, 242, 0.92);
  color: #285f3d;
}

.contact-sheet__embed .ff-el-is-error .text-danger,
.contact-sheet__embed .ff-message-errors,
.contact-sheet__embed .error.text-danger {
  color: #a2472f;
  font-size: 0.84rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem 1rem;
}

.contact-field {
  display: grid;
  gap: 0.42rem;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.contact-field span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a583d;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 0.82rem 0.95rem;
  font: inherit;
  color: #2f2119;
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(106, 76, 49, 0.18);
  border-radius: 0.4rem;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.contact-field textarea {
  resize: vertical;
  min-height: 9rem;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: rgba(133, 84, 38, 0.5);
  box-shadow: 0 0 0 3px rgba(163, 117, 75, 0.12);
  background: #fffdfa;
}

.contact-sheet__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
}

.contact-sheet__footer p {
  max-width: 28rem;
  font-size: 0.87rem;
  color: #756154;
}

.contact-sheet__button {
  min-height: 0;
  padding: 0.9rem 1.35rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #7e4f28 0%, #613716 100%);
  color: #fff8f0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 24px rgba(91, 51, 20, 0.18);
}

.contact-links-band {
  padding: 0.7rem 0 2.2rem;
  background: #f3eadf;
}

.contact-links {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(86, 58, 37, 0.14);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.75);
  color: var(--accent-dark);
  font-weight: 600;
}

.page-tech-sheet-argentina-cabernet-franc {
  background: #e9edf2;
}

.page-tech-sheet-argentina-cabernet-franc .site-header {
  background: rgba(248, 244, 238, 0.92);
  box-shadow: 0 10px 30px rgba(24, 18, 13, 0.08);
}

.page-tech-sheet-argentina-cabernet-franc .site-header__inner {
  min-height: var(--header-small-height);
  gap: 0.9rem;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

.page-tech-sheet-argentina-cabernet-franc .site-brand img {
  width: min(54px, 5vw);
  min-width: 44px;
}

.page-tech-sheet-argentina-cabernet-franc .site-nav {
  gap: 0.95rem;
}

.page-tech-sheet-argentina-cabernet-franc .site-nav__link {
  font-size: 0.9rem;
}

.page-tech-sheet-argentina-cabernet-franc #main-content {
  padding: 0;
}

.technical-sheet {
  padding: 0;
}

.technical-sheet__paper {
  position: relative;
  padding: 0.7rem 0.75rem 0.85rem;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.65), transparent 26%),
    radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.35), transparent 22%),
    linear-gradient(180deg, #f4f6f7 0%, #edf1f3 100%);
  overflow: hidden;
}

.technical-sheet__paper::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    radial-gradient(circle at 15% 18%, rgba(86, 96, 117, 0.18) 0 1px, transparent 1px),
    radial-gradient(circle at 78% 32%, rgba(86, 96, 117, 0.14) 0 1px, transparent 1px),
    linear-gradient(18deg, transparent 0 96%, rgba(90, 101, 122, 0.18) 96% 97%, transparent 97% 100%),
    linear-gradient(65deg, transparent 0 97%, rgba(90, 101, 122, 0.12) 97% 98%, transparent 98% 100%);
  background-size: 180px 180px, 220px 220px, 54px 54px, 72px 72px;
  pointer-events: none;
}

.technical-sheet__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(17rem, 0.98fr) minmax(0, 1.52fr);
  gap: 1.4rem;
  align-items: start;
  max-width: 82rem;
  margin: 0 auto;
  padding: 1rem 1.35rem 0.45rem;
}

.technical-sheet__visual {
  position: relative;
  min-height: 100%;
  padding-top: 0.05rem;
}

.technical-sheet__title-block {
  margin-left: 1.1rem;
}

.technical-sheet__brand,
.technical-sheet__wine-name,
.technical-sheet__origin,
.technical-sheet__denomination,
.technical-sheet__copy,
.technical-sheet__vertical-label,
.technical-sheet__brand-subline,
.technical-sheet__footer-badge,
.technical-sheet__flag {
  color: #294f91;
}

.technical-sheet__brand,
.technical-sheet__wine-name,
.technical-sheet__copy,
.technical-sheet__vertical-label,
.technical-sheet__section h2,
.technical-sheet__brand-subline,
.technical-sheet__footer-badge {
  font-family: "Barlow Condensed", "Oswald", "Arial Narrow", sans-serif;
}

.technical-sheet__brand,
.technical-sheet__wine-name,
.technical-sheet__origin,
.technical-sheet__denomination {
  margin: 0;
}

.technical-sheet__brand {
  font-size: clamp(1.55rem, 2.15vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.105em;
  line-height: 0.98;
}

.technical-sheet__wine-name {
  margin-top: 0.12rem;
  font-size: clamp(1.15rem, 1.55vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 0.98;
}

.technical-sheet__origin {
  margin-top: 0.28rem;
  font-size: clamp(0.92rem, 1.25vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #69b7f0;
}

.technical-sheet__denomination {
  margin-top: 0.1rem;
  font-family: "Barlow Condensed", "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: #294f91;
}

.technical-sheet__bottle-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 58rem;
  margin-top: 0.15rem;
}

.technical-sheet__vertical-label {
  position: absolute;
  left: -0.05rem;
  top: 8.9rem;
  transform: rotate(180deg);
  writing-mode: vertical-rl;
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.technical-sheet__bottle {
  display: block;
  width: min(20rem, 100%);
  max-height: 52rem;
  object-fit: contain;
  transform: translateY(-7.5rem);
  filter: drop-shadow(0 18px 24px rgba(21, 27, 39, 0.14));
}

.technical-sheet__brand-lockup {
  margin-top: 0.55rem;
  text-align: center;
}

.technical-sheet__brand-mark {
  width: 5.15rem;
  margin: 0 auto 0.35rem;
}

.technical-sheet__brand-wordmark {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.75rem;
  line-height: 0.9;
  color: #294f91;
}

.technical-sheet__brand-subline {
  margin: 0.08rem 0 0;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.technical-sheet__copy {
  max-width: 100%;
  padding-top: 0.45rem;
  font-size: 0.96rem;
  line-height: 1.34;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.technical-sheet__intro {
  display: grid;
  gap: 1rem;
  margin-bottom: 0.95rem;
}

.technical-sheet__intro p,
.technical-sheet__section p {
  margin: 0;
}

.technical-sheet__intro p:first-child,
.technical-sheet__intro p:nth-child(2) {
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.26;
}

.technical-sheet__section {
  margin-top: 0.85rem;
}

.technical-sheet__section h2 {
  margin: 0 0 0.08rem;
  font-size: 1.32rem;
  line-height: 1.06;
  font-weight: 700;
  color: #294f91;
}

.technical-sheet__flag {
  position: absolute;
  top: 1rem;
  left: 2rem;
  width: 3.6rem;
  height: 2.2rem;
  border: 1px solid rgba(41, 79, 145, 0.08);
  box-shadow: 0 10px 18px rgba(38, 51, 75, 0.08);
  background:
    radial-gradient(circle at 50% 50%, #d8b657 0 9%, transparent 9%),
    linear-gradient(180deg, #7ac5f4 0 33.33%, #ffffff 33.33% 66.66%, #7ac5f4 66.66% 100%);
}

.technical-sheet__footer-badge {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  display: grid;
  place-items: center;
  width: 4.45rem;
  height: 4.45rem;
  border: 2px solid #294f91;
  border-radius: 50%;
  background: rgba(244, 247, 250, 0.68);
}

.technical-sheet__footer-ring {
  position: absolute;
  inset: 0.36rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(41, 79, 145, 0.3);
  border-radius: 50%;
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  line-height: 1.25;
  padding: 0.35rem;
}

.technical-sheet__footer-icon {
  position: relative;
  z-index: 1;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(38, 22, 15, 0.1);
  background: #f3eadf;
  color: #2d2018;
}

.site-footer .eyebrow,
.site-footer h2,
.site-footer h3,
.site-footer p,
.site-footer a {
  color: inherit;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(0, 1.86fr);
  gap: 0.55rem;
  padding: 0.55rem 0 0.45rem;
}

.site-footer__intro,
.footer-sitemap__group {
  padding: 0.55rem 0.7rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(38, 22, 15, 0.08);
}

.footer-sitemap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.site-footer__meta {
  border-top: 1px solid rgba(38, 22, 15, 0.1);
  padding: 0.4rem 0 0.5rem;
}

.site-footer__intro .eyebrow {
  margin-bottom: 0.15rem;
  font-size: 0.58rem;
}

.site-footer__intro h2 {
  font-size: clamp(1.15rem, 2.2vw, 1.85rem);
  margin-bottom: 0.18rem;
  line-height: 0.98;
}

.site-footer__intro p {
  font-size: 0.8rem;
  line-height: 1.35;
}

.footer-sitemap h3 {
  font-size: 0.92rem;
  margin-bottom: 0.22rem;
  line-height: 1.08;
}

.footer-sitemap ul {
  margin: 0;
  padding-left: 0.85rem;
  display: grid;
  gap: 0.06rem;
}

.footer-sitemap li,
.site-footer__meta p {
  font-size: 0.74rem;
  line-height: 1.22;
}

.estate-hero {
  position: relative;
  min-height: min(70svh, 42rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #1d140f;
}

.estate-hero__image,
.estate-hero__overlay {
  position: absolute;
  inset: 0;
}

.estate-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.estate-hero__overlay {
  background:
    linear-gradient(180deg, rgba(20, 13, 9, 0.12), rgba(20, 13, 9, 0.68)),
    linear-gradient(90deg, rgba(20, 13, 9, 0.44), rgba(20, 13, 9, 0.18));
}

.estate-hero__content {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
  padding-bottom: 4.2rem;
  color: #fff8ef;
}

.estate-hero__content .eyebrow {
  color: rgba(255, 248, 239, 0.78);
}

.estate-hero__content h1 {
  margin: 0.2rem 0 0;
  max-width: 9ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.4rem, 7vw, 6.3rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.estate-hero--compact {
  min-height: min(58svh, 34rem);
}

.estate-gallery {
  padding: 1.5rem 0 0;
  background:
    linear-gradient(180deg, #f6f0e7 0%, #f8f3eb 100%);
}

.estate-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.estate-gallery__item {
  margin: 0;
  border-radius: 1.2rem;
  overflow: hidden;
  min-height: 14rem;
  box-shadow: 0 18px 40px rgba(44, 28, 21, 0.08);
}

.estate-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.estate-story {
  padding: 2.4rem 0 1.8rem;
  background: linear-gradient(180deg, #f8f3eb 0%, #fbf7f0 100%);
}

.estate-story__stack {
  display: grid;
  gap: 2rem;
}

.estate-story-block {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: center;
  padding: 1.4rem;
  background: rgba(255, 252, 246, 0.82);
  border: 1px solid rgba(38, 22, 15, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px rgba(44, 28, 21, 0.06);
}

.estate-story-block--reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.estate-story-block--reverse .estate-story-block__media {
  order: 2;
}

.estate-story-block__media {
  border-radius: 1.1rem;
  overflow: hidden;
  min-height: 18rem;
}

.estate-story-block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.estate-story-block__pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  width: 100%;
  height: 100%;
}

.estate-story-block__pair-item {
  margin: 0;
  min-height: 100%;
  border-radius: 0.95rem;
  overflow: hidden;
}

.estate-story-block__pair-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.estate-story-block__copy h2 {
  margin: 0.3rem 0 0.9rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.estate-story-block__copy p {
  margin: 0 0 0.85rem;
  max-width: 62ch;
  color: #3f3028;
  font-size: 1.02rem;
}

.estate-story-block__copy p:last-child {
  margin-bottom: 0;
}

.page-our-team .estate-hero {
  min-height: min(82svh, 52rem);
}

.page-our-team .estate-hero__image {
  object-position: 34% 46%;
}

.page-our-team .estate-hero__overlay {
  background:
    linear-gradient(180deg, rgba(20, 13, 9, 0.08), rgba(20, 13, 9, 0.74)),
    linear-gradient(90deg, rgba(20, 13, 9, 0.18), rgba(20, 13, 9, 0.5));
}

.page-our-team .estate-hero__content h1 {
  max-width: none;
}

.page-our-team .estate-story {
  padding-top: 1.35rem;
}

.page-our-team .estate-story__stack {
  gap: 1.4rem;
}

.page-our-team .estate-story-block {
  grid-template-columns: minmax(16rem, 0.82fr) minmax(0, 1.18fr);
  gap: 1.4rem;
  padding: 1.15rem;
}

.page-our-team .estate-story-block:first-child {
  grid-template-columns: minmax(14rem, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
}

.page-our-team .estate-story-block--reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(16rem, 0.82fr);
}

.page-our-team .estate-story-block__media {
  min-height: 24rem;
  background: linear-gradient(180deg, rgba(246, 239, 228, 0.95), rgba(234, 224, 209, 0.92));
}

.page-our-team .estate-story-block:first-child .estate-story-block__media img {
  object-position: center 28%;
}

.page-our-team .estate-story-block:first-child .estate-story-block__media {
  align-self: start;
  min-height: auto;
  padding: 0.65rem;
}

.page-our-team .estate-story-block:first-child .estate-story-block__pair-item:first-child img {
  object-position: center 24%;
}

.page-our-team .estate-story-block:first-child .estate-story-block__pair-item:last-child img {
  object-position: center 34%;
}

.page-our-team .estate-story-block:first-child .estate-story-block__pair-item {
  aspect-ratio: 0.82 / 1;
}

.page-our-team .estate-story-block:nth-child(2) .estate-story-block__media img,
.page-our-team .estate-story-block:nth-child(3) .estate-story-block__media img {
  object-fit: contain;
  object-position: center center;
  padding: 0.9rem;
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(241, 231, 217, 0.94));
}

.page-our-team .estate-story-block__copy h2 {
  max-width: 14ch;
}

.page-our-team .estate-facts {
  padding-top: 0.35rem;
}

.estate-compact {
  padding: 2rem 0 1.3rem;
  background: linear-gradient(180deg, #f7f1e8 0%, #fbf7f0 100%);
}

.estate-compact__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(18rem, 0.88fr);
  gap: 2rem;
  align-items: start;
}

.estate-compact__copy {
  padding: 1.65rem 1.8rem;
  background: rgba(255, 252, 246, 0.88);
  border: 1px solid rgba(38, 22, 15, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px rgba(44, 28, 21, 0.06);
}

.estate-compact__copy h2 {
  margin: 0.25rem 0 1rem;
  max-width: 12ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 3.2vw, 3.35rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.estate-compact__copy p {
  margin: 0 0 0.9rem;
  color: #3f3028;
  font-size: 1rem;
}

.estate-compact__copy p:last-child {
  margin-bottom: 0;
}

.estate-compact__visual {
  margin: 0;
  padding: 0.9rem;
  background: rgba(255, 252, 246, 0.88);
  border: 1px solid rgba(38, 22, 15, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px rgba(44, 28, 21, 0.06);
}

.estate-compact__visual img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
}

.estate-compact__visual figcaption {
  padding: 0.8rem 0.25rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.estate-compact-gallery {
  padding: 0.2rem 0 2.2rem;
  background: linear-gradient(180deg, #fbf7f0 0%, #f5eee3 100%);
}

.estate-compact-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.estate-compact-gallery__item {
  margin: 0;
  min-height: 12.5rem;
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(44, 28, 21, 0.08);
}

.estate-compact-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.estate-facts {
  padding: 0 0 3rem;
  background: linear-gradient(180deg, #fbf7f0 0%, #f5eee3 100%);
}

.estate-facts--compact {
  padding-top: 0;
}

.estate-facts__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(38, 22, 15, 0.12);
  border-radius: 1.2rem;
  overflow: hidden;
  background: rgba(255, 252, 246, 0.92);
}

.estate-fact {
  padding: 1.2rem 1rem 1.1rem;
  text-align: center;
}

.estate-fact + .estate-fact {
  border-left: 1px solid rgba(38, 22, 15, 0.1);
}

.estate-fact__label {
  margin: 0 0 0.4rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.estate-fact__value {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.48rem;
  font-weight: 700;
}


@media (max-width: 920px) {
  .site-header__toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.75rem);
    display: none;
    flex-direction: column;
    padding: 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

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

  .site-nav--left {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    min-height: 90px;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .is-scrolled .site-header__inner {
    min-height: 58px;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }

  .site-brand {
    justify-content: flex-start;
  }

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

  .site-nav__item {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .site-nav__link,
  .site-nav__link--parent {
    padding: 0.5rem 0;
  }

  .site-nav__toggle {
    justify-self: end;
  }

  .site-submenu {
    position: static;
    left: auto;
    min-width: 0;
    margin-top: 0.35rem;
    padding: 0.35rem 0 0 0.8rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .site-nav__item.is-open .site-submenu {
    display: grid;
  }

  .page-hero__inner,
  .content-grid,
  .contact-layout,
  .site-footer__inner,
  .footer-sitemap,
  .feature-panels__grid,
  .country-showcase__grid,
  .estate-story-block,
  .estate-story-block--reverse,
  .estate-compact__layout {
    grid-template-columns: 1fr;
  }

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

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

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

  .conventional-line-card {
    grid-template-columns: 1fr;
  }

  .wine-carousel {
    --slides-per-view: 3;
  }

  .decision-split__grid {
    grid-template-columns: 1fr;
  }

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

  .estate-gallery__grid {
    grid-template-columns: 1fr;
  }

  .estate-compact-gallery__grid {
    grid-template-columns: 1fr;
  }

  .estate-story-block--reverse .estate-story-block__media {
    order: 0;
  }

  .page-our-team .estate-story-block,
  .page-our-team .estate-story-block--reverse {
    grid-template-columns: 1fr;
  }

  .page-our-team .estate-story-block:first-child .estate-story-block__media {
    min-height: 20rem;
  }

  .page-our-team .estate-hero__image {
    object-position: 28% 50%;
  }

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

  .estate-fact:nth-child(3),
  .estate-fact:nth-child(4) {
    border-top: 1px solid rgba(38, 22, 15, 0.1);
  }

  .estate-fact:nth-child(3) {
    border-left: 0;
  }

  .feature-panel,
  .cover-card {
    min-height: 82svh;
  }
}

@media (max-width: 640px) {
  body {
    padding-top: 96px;
  }

  .template-homepage .page-hero,
  .template-homepage .page-hero__inner,
  .template-home .page-hero,
  .template-home .page-hero__inner,
  .page-home .page-hero,
  .page-home .page-hero__inner {
    min-height: 100svh;
  }

  .template-homepage .page-hero__inner,
  .template-home .page-hero__inner,
  .page-home .page-hero__inner {
    padding-top: 7rem;
  }

  .template-homepage .lede {
    font-size: 1.02rem;
  }

  .wine-carousel {
    --slides-per-view: 1;
  }

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

  .organic-collection-hero__inner {
    justify-content: center;
    padding-top: 3.4rem;
    padding-bottom: 2.4rem;
  }

  .organic-collection-hero__copy {
    text-align: center;
  }

  .organic-collection-intro {
    padding-top: 1rem;
  }

  .organic-wines-catalog__grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .conventional-line-card {
    gap: 1rem;
    padding: 1rem;
  }

  .conventional-line-card__media {
    min-height: 19rem;
  }

  .conventional-line-card__media img {
    max-height: 16.5rem;
  }

  .organic-collection-hero--conventional .organic-collection-hero__image {
    object-position: center center;
  }

  .contact-hero__inner {
    justify-content: center;
    padding-top: 3.5rem;
    padding-bottom: 2.35rem;
  }

  .contact-hero__copy {
    text-align: center;
  }

  .contact-page-layout,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-sheet__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-sheet__button {
    width: 100%;
    justify-content: center;
  }

  .technical-sheet__layout {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2.2rem 1.25rem 4.5rem;
  }

  .technical-sheet__visual {
    max-width: 28rem;
    margin: 0 auto;
  }

  .technical-sheet__title-block {
    margin-left: 0;
    text-align: center;
  }

  .technical-sheet__flag {
    top: 0.85rem;
    left: auto;
    right: 0.85rem;
  }

  .technical-sheet__bottle-wrap {
    min-height: 0;
    padding-left: 0;
    margin-top: 0.55rem;
  }

  .technical-sheet__vertical-label {
    left: 0.1rem;
    top: 6.2rem;
    font-size: 1rem;
    letter-spacing: 0.22em;
  }

  .technical-sheet__bottle {
    width: min(15rem, 72vw);
    max-height: 39rem;
    transform: translateY(0);
  }

  .technical-sheet__brand-mark {
    width: 5.7rem;
  }

  .technical-sheet__brand-wordmark {
    font-size: 3rem;
  }

  .technical-sheet__copy {
    font-size: 1.12rem;
    padding-top: 0;
  }

  .technical-sheet__intro {
    gap: 1.35rem;
    margin-bottom: 1.15rem;
  }

  .technical-sheet__intro p:first-child,
  .technical-sheet__intro p:nth-child(2) {
    font-size: 1.38rem;
  }

  .technical-sheet__section h2 {
    font-size: 1.52rem;
  }

  .technical-sheet__footer-badge {
    width: 4.6rem;
    height: 4.6rem;
  }

  .wine-carousel-section {
    padding-top: 1.6rem;
    padding-bottom: 1.9rem;
  }

  .wine-carousel__slide {
    padding-left: 0.45rem;
    padding-right: 0.45rem;
  }

  .wine-carousel__card {
    min-height: 24rem;
  }

  .wine-carousel__image {
    max-height: 20rem;
  }


  .wine-carousel__arrow--prev {
    left: -0.5rem;
  }

  .wine-carousel__arrow--next {
    right: -0.5rem;
  }

  .estate-directory {
    padding-top: 1rem;
    padding-bottom: 2.2rem;
  }

  .estate-directory__inner {
    width: min(calc(100% - 2rem), 840px);
  }

  .estate-directory__grid {
    grid-template-columns: 1fr;
  }

  .estate-hero {
    min-height: 28rem;
  }

  .estate-hero__content {
    padding-top: 5rem;
    padding-bottom: 2.7rem;
  }

  .estate-gallery__item,
  .estate-story-block__media,
  .estate-compact-gallery__item {
    min-height: 13rem;
  }

  .page-our-team .estate-story-block__media {
    min-height: 18rem;
  }

  .estate-story-block__pair {
    grid-template-columns: 1fr;
  }

  .page-our-team .estate-hero__image {
    object-position: 26% 50%;
  }

  .estate-story {
    padding-top: 1.5rem;
  }

  .estate-compact {
    padding-top: 1.3rem;
  }

  .estate-story__stack {
    gap: 1.2rem;
  }

  .estate-story-block {
    gap: 1rem;
    padding: 1rem;
  }

  .estate-compact__copy,
  .estate-compact__visual {
    padding: 1rem;
  }

  .estate-facts__grid {
    grid-template-columns: 1fr;
  }

  .estate-fact + .estate-fact {
    border-left: 0;
    border-top: 1px solid rgba(38, 22, 15, 0.1);
  }

  .estate-fact:nth-child(3),
  .estate-fact:nth-child(4) {
    border-top: 1px solid rgba(38, 22, 15, 0.1);
  }

  .site-footer__inner {
    padding-top: 0.45rem;
    padding-bottom: 0.4rem;
  }

  .site-footer__intro,
  .footer-sitemap__group {
    padding: 0.65rem;
  }
}

@media (min-width: 641px) and (max-width: 820px) {
  .wine-carousel {
    --slides-per-view: 2;
  }
}

@media (min-width: 821px) and (max-width: 1100px) {
  .wine-carousel {
    --slides-per-view: 3;
  }
}

@media (min-width: 1101px) and (max-width: 1320px) {
  .wine-carousel {
    --slides-per-view: 4;
  }
}

