:root {
  --ink: #17120f;
  --muted: #6d625c;
  --paper: #fbf7f1;
  --surface: #fffaf3;
  --wine: #8c1727;
  --wine-dark: #3d0b12;
  --gold: #c79645;
  --cream: #f3e7d4;
  --line: rgba(61, 11, 18, 0.14);
  --shadow: 0 24px 80px rgba(61, 11, 18, 0.16);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.shell {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  min-height: 100vh;
  background: var(--wine-dark);
  overflow: hidden;
}

.site-header::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 30%, rgba(199, 150, 69, 0.24), transparent 30%),
    linear-gradient(90deg, rgba(23, 18, 15, 0.78) 0%, rgba(23, 18, 15, 0.56) 48%, rgba(23, 18, 15, 0.28) 100%);
  pointer-events: none;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  margin-top: 16px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.86);
  box-shadow: 0 16px 60px rgba(61, 11, 18, 0.12);
  backdrop-filter: blur(18px);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--wine);
  background: rgba(140, 23, 39, 0.08);
  outline: none;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.52fr);
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - 108px);
  padding: 72px 0 96px;
}

.hero-copy {
  color: white;
}

.nav {
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 14ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.85rem, 5.6vw, 5.4rem);
  letter-spacing: -0.052em;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.8vw, 4.8rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.hero-text {
  max-width: 62ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
}

.site-header .eyebrow {
  color: var(--gold);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.contact-form {
  display: grid;
  gap: 14px;
  max-width: 560px;
  margin-top: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input {
  min-height: 52px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  padding: 12px 14px;
}

.contact-form input:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 4px rgba(199, 150, 69, 0.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn.primary {
  color: white;
  background: var(--wine);
  box-shadow: 0 18px 44px rgba(140, 23, 39, 0.24);
}

.btn.secondary {
  color: var(--wine-dark);
  border-color: rgba(61, 11, 18, 0.18);
  background: rgba(255, 255, 255, 0.58);
}

.site-header .btn.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.btn.secondary.light {
  color: white;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.hero-proof {
  align-self: end;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.hero-proof p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-proof ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.12;
}

.hero-proof strong {
  display: block;
  color: var(--gold);
  line-height: 1.35;
}

.section {
  padding: 104px 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 48px;
  align-items: end;
}

.intro p:last-child,
.section-heading p,
.split-copy p,
.contact-panel p {
  max-width: 68ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.dark-band {
  color: white;
  background:
    linear-gradient(rgba(26, 12, 9, 0.78), rgba(26, 12, 9, 0.86)),
    url("assets/section-cellar.jpg") center / cover fixed;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 42px;
}

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

.dark-band .eyebrow,
.contact .eyebrow {
  color: var(--gold);
}

.dark-band .section-heading p {
  color: rgba(255, 255, 255, 0.72);
  margin-inline: auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-card div {
  padding: 22px;
}

.product-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold);
  font-weight: 900;
}

.product-card p {
  color: rgba(255, 255, 255, 0.72);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 72px;
  align-items: center;
}

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

.image-stack img {
  object-fit: cover;
  box-shadow: var(--shadow);
}

.stack-main {
  width: 78%;
  height: 520px;
  border-radius: 44px;
}

.stack-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 290px;
  border: 10px solid var(--paper);
  border-radius: 36px;
}

.values-list {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.values-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}

.values-list p {
  margin-bottom: 0;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-template-rows: 240px 240px;
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  object-fit: cover;
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.gallery-grid img:nth-child(2) {
  grid-column: span 2;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: stretch;
}

.contact-panel,
.contact-card {
  border-radius: 36px;
  color: white;
  background: var(--wine-dark);
}

.contact-panel {
  padding: clamp(32px, 6vw, 64px);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-card {
  padding: 34px;
  background: linear-gradient(160deg, var(--wine), var(--wine-dark));
}

.contact-card dl {
  display: grid;
  gap: 24px;
  margin: 28px 0 0;
}

.contact-card dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 6px 0 0;
  font-size: 1.05rem;
  font-weight: 800;
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.privacy {
  padding: 0 0 88px;
}

.privacy h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.privacy p {
  max-width: 72ch;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-inner img {
  width: 118px;
}

.footer-inner a {
  color: var(--wine);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
    padding-top: 56px;
  }

  h1 {
    max-width: 12ch;
  }

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

@media (max-width: 720px) {
  .shell {
    width: min(var(--max), calc(100% - 24px));
  }

  .nav {
    top: 10px;
    border-radius: 28px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 44px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--wine-dark);
    background: white;
    font-weight: 900;
  }

  .nav-toggle span {
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: currentColor;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 250, 243, 0.98);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    text-align: center;
  }

  .brand img {
    width: 126px;
  }

  .hero-card {
    transform: none;
  }

  .section {
    padding: 72px 0;
  }

  .product-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-rows: auto;
  }

  .gallery-grid img,
  .gallery-grid img:first-child {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .image-stack {
    min-height: auto;
  }

  .stack-main,
  .stack-small {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .stack-small {
    margin-top: 16px;
    border: 0;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
