:root {
  --ink: #231815;
  --muted: #766a62;
  --cream: #f7f0e5;
  --paper: #fffaf2;
  --wine: #6e1f2f;
  --wine-dark: #3b111a;
  --gold: #c99a47;
  --olive: #536144;
  --line: rgba(35, 24, 21, .14);
  --shadow: 0 24px 70px rgba(35, 24, 21, .18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(35, 24, 21, .72), rgba(35, 24, 21, 0));
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 250, 242, .93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  min-width: 174px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: .06em;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
}

.brand em {
  display: block;
  margin-top: 3px;
  font-style: normal;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  opacity: .76;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.main-nav a,
.footer-links a,
.text-link {
  text-decoration: none;
}

.main-nav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--gold);
}

.language-switcher {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 250px;
}

.language-switcher button {
  appearance: none;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  border-radius: 999px;
  padding: 5px 7px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.language-switcher button.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #21160d;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  padding: 126px clamp(20px, 5vw, 72px) 54px;
}

.hero picture,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(30, 13, 12, .78), rgba(30, 13, 12, .32) 52%, rgba(30, 13, 12, .12)),
    linear-gradient(to top, rgba(20, 10, 9, .8), rgba(20, 10, 9, 0) 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: .98;
}

h1 {
  font-size: clamp(52px, 8vw, 112px);
  max-width: 930px;
}

h2 {
  font-size: clamp(36px, 5vw, 68px);
}

h3 {
  font-size: clamp(25px, 3vw, 34px);
}

.hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
}

.button.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #1f1309;
}

.button.ghost {
  color: #fff;
  background: rgba(255,255,255,.1);
}

.hero-card {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 54px;
  z-index: 3;
  width: min(300px, calc(100% - 40px));
  padding: 24px;
  background: rgba(255, 250, 242, .92);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card span,
.route-grid span,
.cellar-grid span {
  display: block;
  color: var(--wine);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
}

.hero-card strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.hero-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.band {
  padding: clamp(70px, 9vw, 128px) clamp(20px, 5vw, 72px);
}

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

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
}

.intro-grid p,
.section-heading p,
.text-panel p,
.guide-copy p,
.story-card p,
.faq-grid p,
.cellar-grid p {
  color: var(--muted);
  font-size: 17px;
}

.intro-grid a {
  color: var(--wine);
  font-weight: 800;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 54px;
  background: var(--line);
  border: 1px solid var(--line);
}

.proof-grid div {
  background: var(--paper);
  padding: 28px;
}

.proof-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: 44px;
  color: var(--wine);
}

.proof-grid span {
  display: block;
  max-width: 280px;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, .94fr) minmax(320px, 1.06fr);
  min-height: 720px;
}

.image-panel {
  min-height: 520px;
}

.text-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 7vw, 96px);
  background: #fff;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--wine);
  font-weight: 900;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 36px;
}

.routes {
  background: var(--wine-dark);
  color: #fff;
}

.routes .section-heading p,
.routes .route-grid p {
  color: rgba(255,255,255,.72);
}

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

.route-grid article {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
}

.route-grid img {
  height: 260px;
}

.route-grid div {
  padding: 24px;
}

.route-grid h3 {
  margin-top: 10px;
}

.route-grid a,
.cellar-grid a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.authority {
  background: #fff;
}

.authority-grid,
.profile-grid,
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.authority-grid a,
.profile-grid article,
.experience-grid article {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
  text-decoration: none;
  color: inherit;
}

.authority-grid a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.authority-grid span,
.profile-grid span,
.experience-grid span {
  display: block;
  color: var(--wine);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
}

.authority-grid strong {
  display: block;
  margin-top: 48px;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.authority-grid p,
.profile-grid p,
.experience-grid p {
  color: var(--muted);
}

.editorial {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-card {
  min-height: 280px;
  padding: clamp(30px, 5vw, 64px);
  background: var(--paper);
}

.story-card.large {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-card.image-card {
  padding: 0;
  min-height: 360px;
}

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

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

.cellar-grid article {
  min-height: 300px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.cellar-grid h3 {
  margin-top: 42px;
}

.guide {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(320px, 1.2fr);
  gap: clamp(30px, 7vw, 90px);
  padding: clamp(70px, 9vw, 128px) clamp(20px, 5vw, 72px);
}

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

.guide-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.guide-list strong {
  color: var(--wine);
}

.guide-list span {
  color: var(--muted);
}

.seo-section {
  background: #fff;
}

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

details {
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--paper);
}

summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.1;
}

.cta {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center start;
  padding: clamp(70px, 9vw, 128px) clamp(20px, 5vw, 72px);
  color: #fff;
  overflow: hidden;
}

.cta img {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(31, 11, 12, .78), rgba(31, 11, 12, .22));
}

.cta div {
  max-width: 780px;
}

.cta h2 {
  margin-bottom: 26px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding: 42px clamp(20px, 5vw, 72px);
  background: #1f1411;
  color: #fff;
}

.subpage {
  padding-top: 74px;
}

.subpage .site-header {
  position: fixed;
}

.page-hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: end;
  padding: 120px clamp(20px, 5vw, 72px) 64px;
  color: #fff;
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(31, 11, 12, .78), rgba(31, 11, 12, .22)), linear-gradient(to top, rgba(31, 11, 12, .7), transparent 58%);
}

.page-hero div {
  max-width: 900px;
}

.page-hero p:not(.section-kicker) {
  max-width: 720px;
  color: rgba(255,255,255,.84);
  font-size: 20px;
}

.site-footer strong {
  font-family: var(--serif);
  font-size: 28px;
}

.site-footer p {
  max-width: 560px;
  color: rgba(255,255,255,.64);
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .language-switcher {
    justify-content: flex-start;
    max-width: none;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 36px;
  }

  .proof-grid,
  .route-grid,
  .cellar-grid,
  .faq-grid,
  .authority-grid,
  .profile-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .split,
  .guide,
  .editorial,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .story-card.large {
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand strong {
    font-size: 22px;
  }

  .main-nav {
    display: none;
  }

  .language-switcher button {
    padding: 4px 6px;
  }

  .hero {
    padding: 170px 18px 32px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

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

  .band,
  .guide,
  .cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .text-panel,
  .story-card {
    padding: 34px 22px;
  }

  .guide-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
