:root {
  color-scheme: dark;
  --bg: #070706;
  --surface: rgba(10, 10, 9, 0.72);
  --surface-solid: #10100e;
  --text: #f4efe4;
  --muted: #bdb3a0;
  --line: rgba(196, 157, 58, 0.26);
  --accent: #a88722;
  --accent-strong: #d6b04a;
  --green: #23382d;
  --stone: #d8d0c3;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
}

body.light {
  color-scheme: light;
  --bg: #f3efe7;
  --surface: rgba(255, 252, 246, 0.82);
  --surface-solid: #fffaf0;
  --text: #171611;
  --muted: #625a4e;
  --line: rgba(111, 91, 50, 0.23);
  --accent: #806416;
  --accent-strong: #a88722;
  --green: #263c31;
  --stone: #ece3d5;
  --shadow: 0 22px 70px rgba(65, 55, 37, 0.16);
}

body.natural {
  color-scheme: light;
  --bg: #e7e1d1;
  --surface: rgba(248, 244, 235, 0.82);
  --surface-solid: #f6efe2;
  --text: #182319;
  --muted: #5f6757;
  --line: rgba(35, 56, 45, 0.2);
  --accent: #8a6c17;
  --accent-strong: #b38d20;
  --green: #203829;
  --stone: #efe6d6;
  --shadow: 0 24px 78px rgba(32, 56, 41, 0.18);
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image: url("hero-vineyard-no-house.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.6) 42%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(0, 0, 0, 0) 34%);
}

body.light .hero::after {
  background:
    linear-gradient(90deg, rgba(248, 244, 235, 0.92) 0%, rgba(248, 244, 235, 0.72) 45%, rgba(248, 244, 235, 0.18) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(248, 244, 235, 0) 36%);
}

body.natural .hero::after {
  background:
    linear-gradient(90deg, rgba(231, 225, 209, 0.94) 0%, rgba(231, 225, 209, 0.64) 43%, rgba(32, 56, 41, 0.18) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(231, 225, 209, 0) 34%);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  width: clamp(150px, 16vw, 220px);
  height: auto;
  display: block;
}

.nav-contact {
  position: relative;
  color: var(--text);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding-bottom: 8px;
}

.nav-contact::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 85%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translateX(-50%);
  transform-origin: center;
  transition: width 220ms ease;
}

.nav-contact:hover::after,
.nav-contact:focus-visible::after {
  width: 100%;
}

.variant-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  background: rgba(6, 6, 5, 0.38);
  backdrop-filter: blur(16px);
}

body.light .variant-links,
body.natural .variant-links {
  background: rgba(255, 252, 246, 0.56);
}

.variant-links a {
  min-height: 38px;
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.variant-links a[aria-current="page"] {
  background: var(--accent);
  color: #11100b;
}

.hero-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 120px;
  padding: clamp(30px, 5vh, 58px) 0;
  display: grid;
  align-content: start;
}

.intro {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 680px;
  font-family: Marcellus, Georgia, serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0;
}

.lead {
  max-width: 570px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.82;
}

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

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #11100b;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.button.secondary {
  background: transparent;
  color: var(--text);
}

.button svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.info-band {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: -71px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.info-item {
  min-height: 142px;
  padding: 28px;
  display: grid;
  align-content: center;
  border-right: 1px solid var(--line);
}

.info-item:last-child {
  border-right: 0;
}

.info-item span {
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.info-item strong {
  margin-top: 11px;
  font-family: Marcellus, Georgia, serif;
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
  font-weight: 400;
  line-height: 1;
}

.content-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(104px, 12vw, 156px) 0;
}

.split {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: start;
}

.split::before {
  position: absolute;
  right: min(-7vw, -46px);
  top: 36px;
  width: clamp(180px, 23vw, 320px);
  aspect-ratio: 1;
  content: "";
  pointer-events: none;
  opacity: 0.28;
  background:
    radial-gradient(circle at 45% 18%, transparent 0 14px, rgba(179, 141, 32, 0.22) 15px 16px, transparent 17px),
    radial-gradient(circle at 32% 38%, transparent 0 18px, rgba(179, 141, 32, 0.2) 19px 20px, transparent 21px),
    radial-gradient(circle at 58% 39%, transparent 0 18px, rgba(179, 141, 32, 0.2) 19px 20px, transparent 21px),
    radial-gradient(circle at 44% 61%, transparent 0 22px, rgba(179, 141, 32, 0.18) 23px 24px, transparent 25px),
    linear-gradient(132deg, transparent 0 45%, rgba(179, 141, 32, 0.2) 45.3% 45.9%, transparent 46.2% 100%);
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-family: Marcellus, Georgia, serif;
  font-size: clamp(2.45rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.brand-copy {
  display: grid;
  gap: 22px;
  align-content: start;
}

.services-section {
  position: relative;
  padding-top: clamp(10px, 3vw, 36px);
}

.services-section::before {
  position: absolute;
  left: min(-7vw, -46px);
  top: -255px;
  width: clamp(210px, 27vw, 380px);
  aspect-ratio: 1;
  content: "";
  pointer-events: none;
  opacity: 0.22;
  background:
    radial-gradient(circle at 37% 23%, transparent 0 15px, rgba(179, 141, 32, 0.2) 16px 17px, transparent 18px),
    radial-gradient(circle at 56% 31%, transparent 0 17px, rgba(179, 141, 32, 0.18) 18px 19px, transparent 20px),
    radial-gradient(circle at 28% 48%, transparent 0 18px, rgba(179, 141, 32, 0.18) 19px 20px, transparent 21px),
    radial-gradient(circle at 49% 55%, transparent 0 22px, rgba(179, 141, 32, 0.16) 23px 24px, transparent 25px),
    radial-gradient(circle at 68% 56%, transparent 0 15px, rgba(179, 141, 32, 0.14) 16px 17px, transparent 18px),
    linear-gradient(42deg, transparent 0 42%, rgba(179, 141, 32, 0.16) 42.3% 42.9%, transparent 43.2% 100%),
    linear-gradient(118deg, transparent 0 54%, rgba(179, 141, 32, 0.14) 54.3% 54.9%, transparent 55.2% 100%);
  transform: rotate(-18deg);
}

.service-grid,
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.5vw, 30px);
}

.service-card,
.pillar {
  position: relative;
  min-height: 390px;
  padding: clamp(30px, 4.5vw, 54px);
  display: grid;
  align-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 42%),
    var(--surface-solid);
  box-shadow: 0 24px 70px rgba(32, 56, 41, 0.1);
}

.service-card::after,
.pillar::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 180px;
  height: 180px;
  content: "";
  border: 1px solid rgba(179, 141, 32, 0.26);
  border-radius: 50%;
}

.service-icon,
.pillar svg {
  width: 58px;
  height: 58px;
  margin-bottom: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(179, 141, 32, 0.46);
  color: var(--accent-strong);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3,
.pillar h3 {
  margin: 0;
  font-family: Marcellus, Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  font-weight: 400;
  line-height: 1;
}

.service-card p,
.pillar p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.service-meta {
  margin-top: 34px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid var(--line);
}

.service-meta span {
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer {
  padding: 38px 20px;
  background: var(--green);
  color: rgba(246, 239, 228, 0.82);
  text-align: center;
}

.footer a {
  color: #f6efe4;
  text-decoration: none;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-inner > * + *::before {
  margin-right: 12px;
  content: "·";
  color: rgba(246, 239, 228, 0.48);
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
  }

  .nav {
    align-items: center;
    justify-content: center;
  }

  .nav-contact {
    display: none;
  }

  .hero-content {
    min-height: auto;
    margin-bottom: 96px;
    padding: 54px 0;
  }

  .info-band,
  .split,
  .service-grid,
  .pillars {
    grid-template-columns: 1fr;
  }

  .info-band {
    margin-top: -59px;
  }

  .info-item {
    min-height: 118px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .info-item:last-child {
    border-bottom: 0;
  }

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

  .button {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
  }

  .footer-inner > * + *::before {
    content: none;
  }
}
