:root {
  --green: #297550;
  --green-dark: #123f2b;
  --olive: #7b8f31;
  --gold: #d4a11d;
  --cream: #f8f3e5;
  --paper: #fffdf7;
  --ink: #172018;
  --muted: #67705f;
  --line: rgba(23, 32, 24, 0.12);
  --shadow: 0 24px 70px rgba(18, 63, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 8%, rgba(212, 161, 29, 0.18), transparent 24rem),
    linear-gradient(180deg, #fffdf7 0%, #f8f3e5 52%, #eef4e8 100%);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 14px clamp(20px, 4vw, 60px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 190px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.nav a {
  padding: 10px 0;
}

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

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: 48px;
  padding: clamp(56px, 8vw, 112px) clamp(20px, 6vw, 84px);
  overflow: hidden;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1;
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 24px;
}

.hero-copy p:not(.eyebrow),
.copy p,
.section-head p,
.image-split p,
.benefits p,
.contact p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.btn.primary {
  background: var(--green);
  color: white;
  box-shadow: var(--shadow);
}

.btn.secondary {
  border: 2px solid var(--green);
  color: var(--green-dark);
}

.hero-media {
  position: relative;
  min-height: 560px;
  border-radius: 48px;
  background:
    linear-gradient(135deg, rgba(41, 117, 80, 0.92), rgba(18, 63, 43, 0.86)),
    url("https://static.wixstatic.com/media/c575cd_be53a3889b5348898cd6236ef4bd7835~mv2.jpg/v1/fill/w_980,h_465,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/c575cd_be53a3889b5348898cd6236ef4bd7835~mv2.jpg") center/cover;
  box-shadow: var(--shadow);
}

.hero-bottle {
  position: absolute;
  right: 12%;
  bottom: -12px;
  width: min(42%, 230px);
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.24));
}

.hero-pack {
  position: absolute;
  left: 9%;
  bottom: -18px;
  width: min(48%, 260px);
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.24));
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 6vw, 84px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.copy {
  max-width: 760px;
}

.story-banner {
  padding: 28px 20px;
  background: var(--green-dark);
  color: var(--cream);
  overflow: hidden;
}

.story-banner div {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 5vw, 70px);
  align-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 4vw, 48px);
  font-weight: 700;
}

.story-banner strong {
  color: var(--gold);
}

.section-head {
  max-width: 820px;
  margin-bottom: 44px;
}

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

.product-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(18, 63, 43, 0.08);
}

.product-card img {
  height: 250px;
  width: 100%;
  object-fit: contain;
}

.product-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #ffffff, #eef4e8);
}

.product-card.wide {
  grid-column: span 2;
}

.product-card p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card span {
  color: var(--muted);
  line-height: 1.5;
}

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

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

.quality-grid div {
  min-height: 240px;
  border-radius: 28px;
  padding: 28px;
  background: var(--cream);
}

.quality-grid strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
}

.quality-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.image-split {
  align-items: center;
}

.image-panel {
  min-height: 420px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(18, 63, 43, 0.1), rgba(18, 63, 43, 0.45)),
    url("https://static.wixstatic.com/media/c575cd_be53a3889b5348898cd6236ef4bd7835~mv2.jpg/v1/fill/w_980,h_465,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/c575cd_be53a3889b5348898cd6236ef4bd7835~mv2.jpg") center/cover;
  box-shadow: var(--shadow);
}

.health {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.health .eyebrow,
.health h2,
.health p {
  color: white;
}

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

.benefits p {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 36px;
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 14px;
  border-radius: 28px;
  padding: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.contact-card a,
.contact-card span {
  color: var(--green-dark);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 14px;
  border-radius: 28px;
  padding: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(212, 161, 29, 0.36);
  border-color: var(--gold);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.form-note a {
  color: var(--green);
  font-weight: 800;
}

.page-hero {
  padding: clamp(64px, 8vw, 118px) clamp(20px, 6vw, 84px);
  background:
    linear-gradient(135deg, rgba(18, 63, 43, 0.86), rgba(41, 117, 80, 0.78)),
    url("https://static.wixstatic.com/media/c575cd_be53a3889b5348898cd6236ef4bd7835~mv2.jpg/v1/fill/w_980,h_465,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/c575cd_be53a3889b5348898cd6236ef4bd7835~mv2.jpg") center/cover;
  color: white;
}

.page-hero h1,
.page-hero p,
.page-hero .eyebrow {
  color: white;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  font-size: 20px;
  line-height: 1.7;
}

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

.content-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(18, 63, 43, 0.08);
}

.content-card p,
.content-card li {
  color: var(--muted);
  line-height: 1.65;
}

.content-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

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

.brand-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  background: white;
  box-shadow: 0 12px 34px rgba(18, 63, 43, 0.08);
}

.brand-card img {
  height: 230px;
  object-fit: contain;
  margin-bottom: 22px;
}

.brand-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(20px, 6vw, 84px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer img {
  width: 160px;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hero,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .product-grid,
  .quality-grid,
  .benefits,
  .content-grid,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .product-card.featured,
  .product-card.wide {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 160px;
  }

  .nav {
    font-size: 12px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-media {
    min-height: 360px;
    border-radius: 30px;
  }

  .story-banner div {
    flex-direction: column;
    gap: 10px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
