:root {
  --ink: #1c2420;
  --muted: #5e6b62;
  --leaf: #27634a;
  --leaf-dark: #173f31;
  --tomato: #c84932;
  --gold: #f3c460;
  --cream: #fff9ec;
  --paper: #ffffff;
  --line: rgba(28, 36, 32, 0.14);
  --shadow: 0 18px 48px rgba(28, 36, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background: var(--cream);
}

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

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--cream);
  background: var(--leaf);
  border: 2px solid var(--leaf-dark);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--leaf-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button,
.where-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 2px solid var(--leaf-dark);
  border-radius: 999px;
  color: var(--cream);
  background: var(--leaf);
  box-shadow: 4px 4px 0 var(--leaf-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  letter-spacing: 0;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.where-button:hover {
  background: var(--tomato);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--leaf-dark);
}

.button.secondary {
  color: var(--leaf-dark);
  background: var(--paper);
}

.button.secondary:hover {
  color: var(--cream);
  background: var(--tomato);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  min-height: calc(100vh - 76px);
  background: #f6e9cc;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  padding: clamp(42px, 8vw, 110px) clamp(22px, 6vw, 80px);
}

.eyebrow {
  width: fit-content;
  padding: 7px 12px;
  color: var(--leaf-dark);
  background: var(--gold);
  border: 2px solid var(--leaf-dark);
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 900;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  font-size: clamp(3.6rem, 9vw, 8.7rem);
  font-weight: 950;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  font-weight: 930;
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 900;
}

.lead {
  max-width: 660px;
  margin: 0;
  color: #34433b;
  font-size: clamp(1.1rem, 2vw, 1.48rem);
}

.hero-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(23, 63, 49, 0.2), rgba(23, 63, 49, 0.08)),
    url("https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 8% 9% auto;
  width: min(70%, 520px);
  aspect-ratio: 1.2;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 249, 236, 0.7)),
    url("https://images.unsplash.com/photo-1559181567-c3190ca9959b?auto=format&fit=crop&w=900&q=80") center/cover;
  border: 3px solid var(--leaf-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 4vw, 54px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.text-stack {
  display: grid;
  gap: 18px;
}

.text-stack p,
.product-copy p,
.where-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.photo {
  overflow: hidden;
  border: 3px solid var(--leaf-dark);
  border-radius: 8px;
  box-shadow: 10px 10px 0 var(--gold);
}

.photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.product-card,
.where-card {
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.82fr) minmax(0, 1fr);
  min-height: 360px;
}

.product-card img,
.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(20px, 3vw, 32px);
}

.product-card-copy p {
  margin: 0;
  color: var(--muted);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  padding: 6px 9px;
  color: var(--leaf-dark);
  background: #e6f0da;
  border: 1px solid rgba(23, 63, 49, 0.2);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.8fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: stretch;
  min-height: calc(100vh - 76px);
  padding: clamp(32px, 6vw, 76px) clamp(18px, 4vw, 54px);
}

.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.product-visual {
  min-height: 560px;
  overflow: hidden;
  border: 3px solid var(--leaf-dark);
  border-radius: 8px;
  box-shadow: 10px 10px 0 var(--gold);
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.facts li {
  padding: 14px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--leaf-dark);
  font-weight: 850;
}

.where-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: start;
}

.where-card {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 38px);
  box-shadow: var(--shadow);
}

.shopify-product-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: stretch;
  min-height: calc(100vh - 76px);
  padding: clamp(32px, 6vw, 76px) clamp(18px, 4vw, 54px);
}

.shopify-product-media {
  display: grid;
  place-items: center;
  min-height: 560px;
  padding: clamp(22px, 4vw, 46px);
  background: var(--paper);
  border: 3px solid var(--leaf-dark);
  border-radius: 8px;
  box-shadow: 10px 10px 0 var(--gold);
}

.shopify-product-media img {
  width: min(100%, 560px);
  max-height: 520px;
  object-fit: contain;
}

.shopify-product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.shopify-price {
  width: fit-content;
  padding: 10px 14px;
  color: var(--leaf-dark);
  background: var(--paper);
  border: 2px solid var(--leaf-dark);
  border-radius: 8px;
  font-size: 1.35rem;
  font-weight: 950;
}

.shopify-buy-form {
  display: flex;
  width: fit-content;
}

.variant-picker {
  display: block;
}

.variant-picker__option {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.h-stack {
  display: flex;
  align-items: center;
  gap: 8px;
}

.text-subdued {
  color: var(--muted);
  font-weight: 850;
}

variant-option-value {
  color: var(--leaf-dark);
  font-weight: 900;
}

.variant-picker__option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.block-swatch {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 16px;
  border: 2px solid var(--leaf-dark);
  border-radius: 999px;
  background: #fffdf7;
  color: var(--leaf-dark);
  cursor: pointer;
  font-weight: 900;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.block-swatch:hover {
  transform: translateY(-1px);
}

.sr-only:focus-visible + .block-swatch {
  outline: 3px solid var(--mustard);
  outline-offset: 3px;
}

.sr-only:checked + .block-swatch {
  background: var(--leaf-dark);
  color: #fffdf7;
}

.shopify-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.shopify-meta div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.shopify-meta dt {
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 900;
  text-transform: uppercase;
}

.shopify-meta dd {
  margin: 5px 0 0;
  color: var(--leaf-dark);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.pdp-plus-dock {
  min-height: clamp(160px, 24vw, 280px);
  border: 3px dashed var(--leaf-dark);
  border-radius: 8px;
}

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

.shopify-card {
  min-height: 100%;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.shopify-card a {
  display: grid;
  gap: 12px;
  height: 100%;
  padding: 16px;
}

.shopify-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #f6f2e7;
  border-radius: 6px;
}

.shopify-card p {
  margin: 0;
  color: var(--muted);
}

.retailer-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.retailer-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  background: #f7f3e7;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 820;
}

.locator-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: var(--leaf-dark);
  border-radius: 8px;
  color: var(--cream);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 54px);
  color: #ecf3e7;
  background: var(--leaf-dark);
}

.site-footer a {
  font-weight: 800;
}

.mobile-only {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .product-hero,
  .shopify-product-shell,
  .split,
  .where-layout,
  .product-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-visual,
  .product-visual,
  .shopify-product-media {
    min-height: 420px;
  }

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

  .facts,
  .shopify-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    max-width: 150px;
    line-height: 1.05;
  }

  .header-actions {
    width: 100%;
  }

  .header-actions .where-button {
    width: 100%;
  }

  h1 {
    font-size: clamp(3.1rem, 19vw, 4.7rem);
  }

  .button,
  .where-button {
    width: 100%;
  }
}
