:root {
  --ink: #08213d;
  --muted: #65726f;
  --surface: #f7f5ef;
  --paper: #ffffff;
  --teal: #157b7a;
  --teal-dark: #0b5b61;
  --gold: #c7a64a;
  --gold-soft: #ead99e;
  --ivory: #fbfaf4;
  --line: rgba(9, 35, 63, 0.14);
  --shadow: 0 24px 60px rgba(9, 35, 63, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(8, 33, 61, 0.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(8, 33, 61, 0.02) 1px, transparent 1px),
    var(--surface);
  background-size: 34px 34px;
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: rgba(251, 250, 244, 0.92);
  border-bottom: 1px solid rgba(199, 166, 74, 0.22);
  transition: box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.scrolled,
.site-header.nav-open {
  box-shadow: 0 10px 30px rgba(9, 35, 63, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 158px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.95rem;
  font-weight: 800;
}

.site-nav a {
  opacity: 0.84;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(8, 33, 61, 0.28);
  border-radius: 8px;
  color: inherit;
  background: rgba(255, 255, 255, 0.48);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 84px);
  min-height: 92vh;
  overflow: hidden;
  align-items: center;
  padding: 126px clamp(20px, 6vw, 84px) 72px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.84) 0%, rgba(251, 250, 244, 0.92) 42%, rgba(221, 239, 236, 0.82) 100%),
    linear-gradient(0deg, rgba(199, 166, 74, 0.16), rgba(199, 166, 74, 0));
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal-dark));
}

.hero-content,
.hero-products {
  position: relative;
  z-index: 1;
}

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

h2,
h3,
p {
  overflow-wrap: anywhere;
}

.hero-logo {
  width: min(100%, 680px);
  height: auto;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 10px 20px rgba(8, 33, 61, 0.08));
}

h2 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: #3f4c48;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 12px 26px rgba(21, 123, 122, 0.22);
}

.button.secondary {
  color: var(--ink);
  border-color: rgba(199, 166, 74, 0.62);
  background: rgba(255, 255, 255, 0.7);
}

.hero-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  min-height: 560px;
}

.hero-pack {
  width: min(100%, 390px);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #fff;
  border: 1px solid rgba(199, 166, 74, 0.22);
}

.hero-pack-main {
  justify-self: end;
  transform: rotate(-2deg);
}

.hero-pack-side {
  justify-self: start;
  margin-left: -52px;
  transform: translateY(42px) rotate(3deg) scale(0.86);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.stats-band div {
  padding: clamp(22px, 4vw, 42px);
  background: #fff;
}

.stats-band strong {
  display: block;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.stats-band span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.section,
.quality-band,
.partner-section,
.contact-section {
  padding: clamp(64px, 9vw, 116px) clamp(20px, 6vw, 84px);
}

.section-heading {
  display: grid;
  gap: 4px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: end;
}

.intro > p,
.partner-section p,
.contact-section p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.product-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 250, 244, 0.98));
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.filter-button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 14px;
  color: var(--ink);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.filter-button.active {
  color: #fff;
  border-color: var(--teal-dark);
  background: var(--teal-dark);
}

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

.product-card {
  display: grid;
  grid-template-rows: minmax(310px, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(199, 166, 74, 0.26);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(9, 35, 63, 0.08);
}

.product-card.hidden {
  display: none;
}

.product-photo {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  object-position: top center;
  background: #fff;
}

.product-copy {
  padding: 20px;
}

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

.product-card p,
.channel-grid p,
.quality-list p {
  margin: 0;
  color: var(--muted);
}

.quality-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 7vw, 86px);
  color: #fff;
  background:
    linear-gradient(135deg, var(--ink) 0%, var(--teal-dark) 58%, var(--teal) 100%);
}

.quality-band .eyebrow {
  color: var(--gold-soft);
}

.quality-list {
  display: grid;
  gap: 1px;
  align-self: start;
  background: rgba(255, 255, 255, 0.22);
}

.quality-list div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  background: rgba(5, 43, 52, 0.25);
}

.quality-list .license-card {
  display: block;
  padding: 20px;
  background: #fff;
}

.license-card img {
  width: min(330px, 100%);
  height: auto;
}

.quality-list span {
  color: var(--gold-soft);
  font-weight: 900;
}

.quality-list p {
  color: rgba(255, 255, 255, 0.86);
}

.distribution {
  background: var(--ivory);
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.channel-grid div {
  min-height: 260px;
  border: 1px solid rgba(199, 166, 74, 0.26);
  border-radius: 8px;
  padding: 24px;
  background: var(--paper);
}

.partner-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(221, 239, 236, 0.52)),
    var(--paper);
}

.partner-card {
  display: grid;
  gap: 20px;
  border: 1px solid rgba(199, 166, 74, 0.32);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(9, 35, 63, 0.08);
}

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

.partner-logo-wrap {
  display: grid;
  min-height: 130px;
  place-items: center;
  border: 1px solid rgba(8, 33, 61, 0.08);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}

.partner-logo-wrap img {
  width: min(100%, 260px);
  height: auto;
}

 max-height: 92px;
  object-fit: contain;
}

.partner-logo-wrap .amazon-logo {
  width: min(100%, 170px);
  max-height: 74px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(234, 217, 158, 0.66), rgba(221, 239, 236, 0.86)),
    var(--ivory);
}

.contact-brand {
  display: grid;
  gap: 18px;
}

.contact-brand img {
  width: min(100%, 360px);
  height: auto;
  mix-blend-mode: multiply;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 900;
}

label {
  display: grid;
  gap: 6px;
  color: #4d5c58;
  font-size: 0.88rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(199, 166, 74, 0.38);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 84px);
  color: #fff;
  background: linear-gradient(90deg, var(--ink), var(--teal-dark));
  font-weight: 900;
}

.site-footer div {
  display: grid;
  gap: 3px;
}

.site-footer strong {
  font-size: 1.12rem;
}

.site-footer span,
.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 1120px) {
  .hero,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .hero,
  .stats-band,
  .intro,
  .quality-band,
  .channel-grid,
  .partner-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .hero-products {
    min-height: 0;
  }

  .hero-pack-side {
    margin-left: -28px;
    transform: translateY(24px) rotate(3deg) scale(0.86);
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 132px;
  }

  .hero-logo {
    width: min(100%, 520px);
  }

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

  .partner-logo-grid {
    grid-template-columns: 1fr;
  }

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

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

  .button {
    padding-inline: 12px;
  }
}
