:root {
  --green: #0b351f;
  --green-2: #123f27;
  --gold: #c8a25a;
  --ink: #151a16;
  --muted: #6f776f;
  --paper: #f6f4ed;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 64px);
  color: var(--white);
  background: rgba(11, 53, 31, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 14px;
}

.desktop-nav a,
.header-phone,
.mobile-nav a {
  opacity: 0.88;
  transition: opacity 160ms ease, color 160ms ease;
}

.desktop-nav a:hover,
.header-phone:hover,
.mobile-nav a:hover {
  color: var(--gold);
  opacity: 1;
}

.header-phone {
  font-weight: 700;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 19;
  padding: 18px;
  color: var(--white);
  background: var(--green);
  border-bottom: 1px solid var(--line);
}

.mobile-nav.is-open {
  display: grid;
  gap: 16px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  min-height: calc(100vh - 72px);
  color: var(--white);
  background: var(--green);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 8vw, 108px) clamp(22px, 6vw, 86px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 30px;
  font-size: clamp(42px, 8vw, 88px);
  line-height: 0.95;
  font-weight: 500;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
  font-weight: 500;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.5;
}

.hero-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.button.primary {
  color: #172113;
  background: var(--gold);
}

.button.secondary {
  color: var(--white);
  border-color: var(--line);
}

.hero-media {
  min-height: 560px;
}

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

.intro,
.split-section,
.tasting,
.gallery {
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.intro-card {
  padding: clamp(36px, 6vw, 72px);
  color: var(--white);
  background: var(--green-2);
}

.intro-card p,
.tasting-copy p,
.split-section p {
  font-size: 18px;
  line-height: 1.7;
}

.intro > img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) 1fr;
  gap: clamp(32px, 6vw, 78px);
  background: var(--white);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.brand-grid article {
  min-height: 158px;
  padding: 24px;
  border: 1px solid #dfe3db;
  background: #fbfaf5;
}

.brand-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.tasting {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: 28px;
  color: var(--white);
  background: #111;
}

.tasting-copy {
  max-width: 780px;
}

.tasting-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.tasting-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 430px;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.74)),
    url("./assets/images/tasting.webp") center / cover;
}

.tasting-panel strong {
  color: var(--gold);
  font-size: 15px;
  text-transform: uppercase;
}

.tasting-panel span {
  margin: 10px 0 18px;
  font-size: 34px;
  line-height: 1.05;
}

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

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 38px clamp(20px, 5vw, 72px) 96px;
  color: var(--white);
  background: var(--green);
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-actions a {
  font-weight: 700;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 18;
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(11, 53, 31, 0.96);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
}

.sticky-cta a {
  padding: 16px 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.sticky-cta a + a {
  border-left: 1px solid var(--line);
}

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

  .desktop-nav,
  .header-phone {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    top: 105px;
  }

  .hero,
  .intro,
  .split-section,
  .tasting {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 74px;
  }

  .hero-media {
    min-height: 420px;
  }

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

  .gallery-grid img {
    aspect-ratio: 4 / 3;
  }

  .site-footer {
    flex-direction: column;
  }

  .sticky-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .sticky-cta a {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 46px;
  }

  .lead,
  .intro-card p,
  .split-section p,
  .tasting-copy p {
    font-size: 16px;
  }

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