:root {
  --olive-900: #2f3b2a;
  --olive-700: #44503a;
  --olive-500: #6c7a55;
  --gold-500: #c2a25a;
  --gold-300: #e2cf8f;
  --cream-50: #f6f3ea;
  --sand-100: #ede7d9;
  --mist-100: #eef1ea;
  --text-900: #1f251c;
  --text-700: #394235;
  --shadow-soft: 0 18px 40px rgba(35, 43, 33, 0.14);
  --shadow-card: 0 16px 32px rgba(35, 43, 33, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max-width: 1120px;
  --font-display: "Cormorant Garamond", "Palatino Linotype", "Book Antiqua", serif;
  --font-body: "Source Sans 3", "Gill Sans", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-900);
  background: radial-gradient(circle at top, #f3efe4 0%, #f7f6f1 35%, #ffffff 100%);
  position: relative;
}

body::before,
body::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(0);
  opacity: 0.45;
}

body::before {
  top: -180px;
  right: -180px;
  background: radial-gradient(circle, #e9ddb5 0%, rgba(233, 221, 181, 0) 70%);
}

body::after {
  bottom: 160px;
  left: -220px;
  background: radial-gradient(circle, #d2ddc5 0%, rgba(210, 221, 197, 0) 70%);
}

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

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

.container {
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 243, 234, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(69, 86, 59, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.4px;
}

.logo-image {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(69, 86, 59, 0.2);
}

.logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(140deg, #bba259, #586447);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.45);
}

.logo-text {
  font-size: 1.1rem;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  color: var(--text-700);
}

.nav-list a {
  position: relative;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a:focus::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(69, 86, 59, 0.3);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background: linear-gradient(140deg, #c8b26a, #8c7a3d);
  color: #1f2418;
}

.btn-secondary {
  background: #2f3b2a;
  color: #f8f5ec;
}

.btn-ghost {
  border-color: rgba(69, 86, 59, 0.35);
  color: var(--text-700);
  background: transparent;
}

.hero {
  padding: 84px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 3.4vw, 3.6rem);
  margin: 16px 0;
  line-height: 1.08;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--olive-500);
  margin: 0;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-700);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-card);
}

.hero-stats .stat {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--olive-900);
}

.hero-stats .label {
  font-size: 0.8rem;
  color: var(--text-700);
}

.hero-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottle {
  width: min(360px, 90%);
  border-radius: var(--radius-lg);
  padding: 26px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(232, 229, 217, 0.6));
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
}

.olive-cluster {
  position: absolute;
  right: -20px;
  bottom: 20px;
  width: 180px;
  height: 180px;
  border-radius: 60% 40% 62% 38%;
  background: radial-gradient(circle at 40% 40%, #93a06d 0%, #6a7a52 55%, rgba(106, 122, 82, 0) 70%);
  opacity: 0.7;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--cream-50);
}

.section-head {
  max-width: 520px;
  margin-bottom: 36px;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  margin: 0 0 12px;
}

.section p {
  color: var(--text-700);
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.story-card,
.cert-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.story-card ul,
.cert-card ul,
.footer-grid ul {
  margin: 16px 0 0;
  padding: 0 0 0 18px;
  color: var(--text-700);
}

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

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

.mission-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.mission-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
}

.card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 10px;
}

.card h3 {
  margin: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(195, 162, 90, 0.2);
  color: var(--olive-900);
  font-size: 0.8rem;
  font-weight: 600;
  width: fit-content;
}

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

.process-step {
  padding: 20px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.step-number {
  display: inline-block;
  font-weight: 700;
  color: var(--gold-500);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.quality-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.quality-list .metric {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
}

.banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #243125, #4f5a3f);
  color: #f6f2e6;
  box-shadow: var(--shadow-soft);
}

.banner p {
  color: #e3e1d6;
}

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

.contact-details p {
  margin: 8px 0;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-700);
}

.contact-form input,
.contact-form textarea {
  border-radius: 12px;
  border: 1px solid rgba(69, 86, 59, 0.2);
  padding: 12px;
  font-family: var(--font-body);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(195, 162, 90, 0.4);
  border-color: rgba(195, 162, 90, 0.6);
}

.map-embed {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.map-embed iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

.site-footer {
  padding: 48px 0 28px;
  background: #21271f;
  color: #f6f2e6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 22px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.footer-grid h4 {
  margin: 0 0 12px;
  font-family: var(--font-display);
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-grid a {
  color: inherit;
}

.footer-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(246, 242, 230, 0.7);
  margin: 0;
}

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

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

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

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

  .nav-wrap {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-card);
    margin-top: 12px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-open .nav-list {
    display: flex;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 64px 0 32px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .map-embed iframe {
    height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
