* {
  box-sizing: border-box;
}

:root {
  --bg: #0f0f0d;
  --bg-soft: #161613;
  --panel: rgba(23, 23, 19, 0.88);
  --text: #f4f1e8;
  --muted: #d0c8b7;
  --gold: #cda93a;
  --gold-soft: #e5c768;
  --line: rgba(205, 169, 58, 0.22);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(205,169,58,0.08), transparent 28%),
    linear-gradient(180deg, #0e0e0c 0%, #141411 50%, #0d0d0b 100%);
  line-height: 1.65;
}

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

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  max-width: 800px;
}

.center {
  text-align: center;
}

.section {
  padding: 90px 0;
  position: relative;
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(12,12,10,0.95), rgba(12,12,10,0.72)),
    url('assets/grove-3.jpeg') center center / cover no-repeat fixed;
}

.parallax {
  background-attachment: fixed;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(205,169,58,0.16), transparent 30%),
    linear-gradient(180deg, rgba(8,8,8,0.2), rgba(8,8,8,0.4));
  pointer-events: none;
}

.overlay.soft {
  background: linear-gradient(180deg, rgba(14,14,12,0.55), rgba(14,14,12,0.75));
}

.nav {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background: rgba(255,255,255,0.06);
  padding: 6px;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav-links a:hover {
  color: var(--gold-soft);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: center;
  padding-bottom: 40px;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 700;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.05;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.7rem;
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 620px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.28s ease;
  border: 1px solid transparent;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #1a1406;
  box-shadow: 0 12px 28px rgba(205, 169, 58, 0.2);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(205, 169, 58, 0.26);
}

.btn-outline {
  border-color: rgba(255,255,255,0.18);
  color: var(--text);
  background: rgba(255,255,255,0.03);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.hero-product {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottle {
  width: min(440px, 90%);
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.45));
}

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

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.highlight {
  background:
    linear-gradient(180deg, rgba(205,169,58,0.08), rgba(255,255,255,0.02)),
    var(--panel);
}

.grove-banner {
  position: relative;
  padding: 120px 0;
  background:
    linear-gradient(120deg, rgba(8,8,8,0.45), rgba(8,8,8,0.65)),
    url('assets/grove-1.jpeg') center center / cover no-repeat fixed;
}

.section-heading {
  margin-bottom: 28px;
}

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

.gallery-item {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.dark-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(205,169,58,0.03));
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.fact-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.fact-number {
  display: inline-block;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--gold-soft);
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Cormorant Garamond', serif;
}

.quality-note {
  margin-top: 20px;
}

.taste-strip {
  position: relative;
  padding: 120px 0;
  background:
    linear-gradient(120deg, rgba(8,8,8,0.52), rgba(8,8,8,0.7)),
    url('assets/grove-2.jpeg') center center / cover no-repeat fixed;
}

.clean-list {
  margin: 0;
  padding-left: 20px;
}

.clean-list li + li {
  margin-top: 8px;
}

.contact-section {
  padding-bottom: 110px;
}

.contact-points p {
  margin: 0 0 10px;
  color: var(--muted);
}

.contact-form .field {
  margin-bottom: 16px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.06);
}

.full {
  width: 100%;
}

.form-note,
.form-status {
  margin: 12px 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.form-status.is-success {
  color: #bfdc9f;
}

.form-status.is-error {
  color: #ffb2a7;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 40px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.footer img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-content,
  .grid-2,
  .facts-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    gap: 16px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero-content {
    min-height: auto;
    padding-top: 30px;
  }

  .hero-copy {
    order: 2;
    text-align: center;
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-product {
    order: 1;
  }

  .gallery-item img {
    height: 280px;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 72px 0;
  }

  .card,
  .fact-card {
    padding: 22px;
  }

  .parallax {
    background-attachment: scroll;
  }

  h1 {
    font-size: 2.9rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .lead {
    font-size: 1rem;
  }
}


body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 15%, rgba(229,199,104,0.08), transparent 24%),
    radial-gradient(circle at 85% 22%, rgba(229,199,104,0.06), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(205,169,58,0.08), transparent 28%);
  z-index: 0;
}

.hero::after,
.grove-banner::after,
.taste-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,0.03), transparent 18%, transparent 82%, rgba(255,255,255,0.03));
  mix-blend-mode: screen;
}

.brand span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  letter-spacing: 0.05em;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(229,199,104,0.28);
  background: rgba(255,255,255,0.05);
  color: #f2de97;
  font-size: 0.9rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.bottle-frame {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px 10px;
}

.bottle-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(205,169,58,0.22) 0%, rgba(205,169,58,0.08) 35%, transparent 68%);
  filter: blur(16px);
}

.bottle {
  position: relative;
  z-index: 1;
}

.card,
.fact-card,
.gallery-item,
.contact-form-wrap {
  position: relative;
  overflow: hidden;
}

.card::before,
.fact-card::before,
.contact-form-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255,255,255,0.06), transparent 22%, transparent 78%, rgba(205,169,58,0.08));
  pointer-events: none;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.18));
  z-index: 1;
  pointer-events: none;
}

.fact-card:hover,
.card:hover {
  transform: translateY(-4px);
  transition: transform 0.28s ease;
}

.section-heading h2,
.card h2,
.fact-card h3 {
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.btn-gold {
  background: linear-gradient(135deg, #f1d98b 0%, #d7b14a 35%, #b98b23 100%);
}

.footer a,
.contact-points a {
  color: var(--gold-soft);
}

.reveal-fast {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal-fast.is-visible {
  opacity: 1;
  transform: translateY(0);
}


.premium-note-section {
  padding-top: 24px;
  padding-bottom: 24px;
}

.premium-note {
  position: relative;
  padding: 36px;
  border-radius: 26px;
  border: 1px solid rgba(229,199,104,0.22);
  background:
    linear-gradient(120deg, rgba(205,169,58,0.14), rgba(255,255,255,0.02) 32%, rgba(205,169,58,0.06) 100%),
    rgba(20, 20, 16, 0.88);
  box-shadow: 0 24px 60px rgba(0,0,0,0.34);
  overflow: hidden;
}

.premium-note::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 18%, transparent 82%, rgba(255,255,255,0.03));
  pointer-events: none;
}

.hero-copy h1 {
  text-shadow: 0 4px 24px rgba(0,0,0,0.28);
}

.lead strong,
.card strong,
.fact-card strong {
  color: #f1d98b;
}

@media (max-width: 680px) {
  .premium-note {
    padding: 24px;
  }
}


.lang-switch {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.lang-btn {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(229,199,104,0.24);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  transition: 0.25s ease;
}

.lang-btn:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}

.lang-btn.active {
  background: linear-gradient(135deg, #f1d98b 0%, #d7b14a 35%, #b98b23 100%);
  color: #1a1406;
  border-color: transparent;
}

@media (max-width: 980px) {
  .lang-switch {
    justify-content: center;
  }
}
