:root {
  --ink: #0b0c0e;
  --slate: #141618;
  --char: #1c1e21;
  --hairline: #23262a;
  --bone: #f4f1ea;
  --mist: #c6cad0;
  --fog: #9aa0a6;
  --lichen: #a7e0c2;
  --moss: #4d6b5b;
  --gutter: clamp(20px, 4vw, 48px);
  --max: 1240px;
  --display: "Cormorant Garamond", Georgia, serif;
  --ui: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--lichen);
}

:focus-visible {
  outline: 1px solid var(--lichen);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  transform: translateY(-140%);
  background: var(--bone);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.concept-bar {
  position: relative;
  z-index: 20;
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 7px var(--gutter);
  border-bottom: 1px solid var(--hairline);
  background: var(--char);
  color: var(--mist);
  font-family: var(--mono);
  font-size: 11px;
  text-align: center;
  letter-spacing: 0.08em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  background: rgba(11, 12, 14, 0.92);
  border-bottom: 1px solid var(--hairline);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 190px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--mist);
  font-size: 14px;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  padding: 11px 20px;
  font-weight: 600;
  line-height: 1.2;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-cta {
  color: var(--bone);
}

.button.primary {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
}

.button.secondary {
  color: var(--bone);
  background: rgba(244, 241, 234, 0.04);
}

.button.small {
  min-height: 40px;
  padding: 9px 16px;
  font-size: 14px;
  white-space: nowrap;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
  border-color: var(--lichen);
  color: var(--lichen);
}

.button.primary:hover {
  background: var(--lichen);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: transparent;
  color: var(--bone);
  cursor: pointer;
}

.menu-toggle span:not(.visually-hidden) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100svh - 112px);
  display: grid;
  place-items: end center;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}

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

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

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(11, 12, 14, 0.4), rgba(11, 12, 14, 0.88) 72%, var(--ink)),
    linear-gradient(90deg, rgba(11, 12, 14, 0.5), rgba(11, 12, 14, 0.05), rgba(11, 12, 14, 0.55));
}

.hero-grid {
  position: relative;
  width: min(1050px, calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: 118px 0 92px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--lichen);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 940px;
  margin: 0 auto;
  font-size: clamp(54px, 8vw, 104px);
  line-height: 0.98;
}

.hero-copy {
  max-width: 660px;
  margin: 24px auto 0;
  color: var(--mist);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.fact-strip {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.fact {
  min-height: 128px;
  padding: 26px 24px;
  border-right: 1px solid var(--hairline);
}

.fact span,
.card-kicker {
  display: block;
  color: var(--fog);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact strong {
  display: block;
  margin-top: 12px;
  color: var(--bone);
  font-size: 18px;
  line-height: 1.25;
}

.section {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: 96px 0;
  border-bottom: 1px solid var(--hairline);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 64px;
  align-items: end;
}

.section-heading h2,
.split-heading h2,
.story-copy h2,
.booking-panel h2,
.owner-cta h2 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.04;
}

.section-heading.compact {
  max-width: 740px;
  margin-bottom: 40px;
}

.section-lede {
  color: var(--mist);
  font-size: 18px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}

.experience-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: 28px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--slate);
}

.experience-card.large {
  grid-column: span 2;
}

.experience-card.image-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
  padding: 0;
}

.experience-card.large img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border: 1px solid var(--hairline);
}

.experience-card.image-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.experience-card.image-card div {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.experience-card h3,
.wine-card h3,
.faq-grid h3 {
  margin-top: 12px;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: 0;
}

.experience-card p,
.faq-grid p,
.story-copy p,
.booking-steps small,
.footer p {
  color: var(--fog);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 24px;
  color: var(--bone);
  font-weight: 600;
  border-bottom: 1px solid var(--moss);
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.wine-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}

.wine-card a {
  min-height: 430px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 26px;
  padding: 34px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background:
    radial-gradient(circle at 50% 28%, rgba(167, 224, 194, 0.12), transparent 34%),
    var(--slate);
}

.wine-card img {
  width: auto;
  height: 290px;
  justify-self: center;
  align-self: center;
  object-fit: contain;
}

.story-section {
  width: 100%;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  border-bottom: 1px solid var(--hairline);
}

.story-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.story-copy {
  padding: 96px max(var(--gutter), calc((100vw - var(--max)) / 2)) 96px 70px;
  align-self: center;
}

.story-copy p {
  max-width: 650px;
  margin-top: 24px;
  font-size: 17px;
}

.proof-list {
  display: grid;
  gap: 14px;
  margin: 34px 0;
  color: var(--mist);
}

.proof-list div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof-list span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--lichen);
}

.story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.booking-panel,
.owner-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: start;
  padding: 42px;
  border: 1px solid var(--hairline);
  background: var(--slate);
}

.booking-steps {
  display: grid;
  border-top: 1px solid var(--hairline);
}

.booking-steps a {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
}

.booking-steps span {
  color: var(--lichen);
  font-family: var(--mono);
  font-size: 13px;
}

.booking-steps strong,
.booking-steps small {
  display: block;
  grid-column: 2;
}

.booking-steps small {
  margin-top: 4px;
  line-height: 1.5;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}

.faq-grid article {
  min-height: 260px;
  padding: 26px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.faq-grid p {
  margin-top: 14px;
  font-size: 14px;
}

.owner-cta {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 96px auto;
  align-items: center;
}

.owner-cta .button {
  justify-self: end;
}

.footer {
  border-top: 1px solid var(--hairline);
  background: #090a0b;
}

.footer-grid {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: 54px 0;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 42px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 22px;
}

.footer h2 {
  margin: 0 0 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer a,
.footer span {
  display: block;
  margin-top: 8px;
  color: var(--fog);
  font-size: 14px;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 113px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    background: rgba(11, 12, 14, 0.98);
    border-bottom: 1px solid var(--hairline);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 18px var(--gutter);
    border-top: 1px solid var(--hairline);
  }

  .nav-cta {
    border: 0;
    border-radius: 0;
    justify-content: flex-start;
  }

  .fact-strip,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-section,
  .story-section,
  .booking-panel,
  .owner-cta {
    grid-template-columns: 1fr;
  }

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

  .story-copy {
    padding: 64px var(--gutter);
  }

  .story-image img {
    min-height: 420px;
  }

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

  .owner-cta .button {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .concept-bar {
    font-size: 10px;
    line-height: 1.45;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand img {
    width: 148px;
  }

  .nav-links {
    top: 107px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-grid {
    padding: 92px 0 58px;
  }

  h1 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .fact-strip,
  .experience-grid,
  .wine-row,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .fact {
    min-height: auto;
  }

  .section {
    padding: 64px 0;
  }

  .intro-section,
  .split-heading {
    gap: 28px;
  }

  .split-heading {
    display: grid;
  }

  .experience-card.large,
  .experience-card.image-card {
    grid-column: auto;
  }

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

  .experience-card.image-card img,
  .experience-card.large img {
    min-height: 220px;
    height: 220px;
  }

  .wine-card a {
    min-height: 360px;
  }

  .wine-card img {
    height: 230px;
  }

  .booking-panel,
  .owner-cta {
    padding: 28px;
  }

  .booking-steps a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .booking-steps strong,
  .booking-steps small {
    grid-column: auto;
  }

  .hero-actions,
  .story-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
