:root {
  color-scheme: light;
  --ink: #0d0d0d;
  --muted: #5f6267;
  --canvas: #fbfbf5;
  --surface: #ffffff;
  --aloe: #c1fbd4;
  --pistachio: #d4f9e0;
  --rose: #f5d2c3;
  --line: #e4e4dc;
  --shadow: 0 30px 90px rgba(13, 13, 13, 0.11);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--canvas);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 20%, rgba(245, 210, 195, 0.72), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(193, 251, 212, 0.72), transparent 30%),
    linear-gradient(180deg, #fbfbf5 0%, #ffffff 100%);
}

a {
  color: inherit;
}

.site-header,
footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-header {
  padding: 22px 0;
}

.brand,
.nav-links a,
footer a,
.footer-links a {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 13px;
}

.nav-links,
footer {
  color: var(--muted);
  font-size: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.nav-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
}

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 176px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  padding: 52px 0 68px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 0 24px;
  font-weight: 700;
  text-decoration: none;
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.product-board {
  display: grid;
  gap: 14px;
}

.product-board article {
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 22px;
  box-shadow: var(--shadow);
}

.product-board article:nth-child(2) {
  background: var(--pistachio);
}

.product-board article:nth-child(3) {
  background: var(--aloe);
}

.product-board span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-board strong {
  max-width: 320px;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 760;
}

.trust-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--surface);
}

.trust-strip span {
  min-height: 58px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.trust-strip span:last-child {
  border-right: 0;
}

.section-block,
.retail-panel {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-block {
  padding: 54px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 22px;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 18px 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

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

.category-grid article {
  position: relative;
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 24px;
}

.card-link {
  position: absolute;
  inset: 0;
  border-radius: 8px;
}

.category-grid article:hover {
  border-color: rgba(13, 13, 13, 0.28);
}

.category-grid p,
.retail-panel p,
.ops-list dd {
  color: var(--muted);
  line-height: 1.58;
}

.category-dot {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.category-dot.rose {
  background: var(--rose);
}

.category-dot.aloe {
  background: var(--aloe);
}

.category-dot.pistachio {
  background: var(--pistachio);
}

.retail-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 58px 0 64px;
}

.retail-panel p {
  max-width: 620px;
  font-size: 17px;
}

.ops-list {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--surface);
}

.ops-list div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.ops-list div:last-child {
  border-bottom: 0;
}

.ops-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.ops-list dd {
  margin: 0;
  overflow-wrap: anywhere;
}

footer {
  padding: 0 0 28px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-page {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 84px;
}

.legal-page h1 {
  font-size: clamp(40px, 6vw, 68px);
}

.legal-page section {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  text-decoration: none;
}

.faq-block {
  border-top: 1px solid var(--line);
  padding-top: 58px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 760;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

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

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 34px 0 48px;
  }

  h1 {
    font-size: 44px;
  }

  .product-board strong {
    font-size: 21px;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .section-heading,
  .category-grid,
  .retail-panel {
    grid-template-columns: 1fr;
  }

  .trust-strip span:nth-child(2) {
    border-right: 0;
  }

  .trust-strip span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 480px) {
  body {
    background: var(--canvas);
  }

  h1 {
    font-size: 38px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .category-grid article {
    min-height: 190px;
  }

  .ops-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .trust-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip span:last-child {
    border-bottom: 0;
  }
}
