:root {
  color-scheme: light;
  --ink: #1c2520;
  --muted: #607067;
  --paper: #ffffff;
  --soft: #f5efe5;
  --sage: #dfe9db;
  --mint: #c8ddd0;
  --clay: #c76f4b;
  --leaf: #2f6d4b;
  --charcoal: #25312b;
  --line: #d9e0d8;
  --amazon: #ff9900;
  --amazon-dark: #222f3e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 15px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.95);
  backdrop-filter: blur(12px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  text-decoration: none;
  letter-spacing: 0;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border: 2px solid var(--charcoal);
  border-radius: 50%;
  background:
    radial-gradient(circle at 55% 18%, #ffffff 0 10%, transparent 11%),
    linear-gradient(135deg, var(--mint), var(--leaf));
  box-shadow: inset 0 -5px 0 rgba(28, 37, 32, 0.14);
}

.nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
  color: var(--muted);
}

.nav a {
  text-decoration: none;
}

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

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
  padding: clamp(54px, 8vw, 100px) clamp(20px, 5vw, 72px) 54px;
  background:
    linear-gradient(135deg, rgba(245, 239, 229, 0.94), rgba(223, 233, 219, 0.86)),
    repeating-linear-gradient(90deg, rgba(47, 109, 75, 0.08) 0 1px, transparent 1px 56px);
}

.hero.compact {
  min-height: 58vh;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 920px;
  font-size: clamp(40px, 6.1vw, 78px);
}

h2 {
  font-size: clamp(30px, 4vw, 50px);
}

h3 {
  font-size: 23px;
}

p {
  margin: 0;
}

.lead {
  max-width: 720px;
  margin-top: 22px;
  color: #37463f;
  font-size: clamp(18px, 2vw, 22px);
}

.actions, .links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border: 1px solid var(--charcoal);
  border-radius: 8px;
  background: var(--leaf);
  color: white;
  font-weight: 780;
  text-decoration: none;
}

.button.secondary {
  background: white;
  color: var(--ink);
}

.button.amazon {
  border-color: var(--amazon-dark);
  background: var(--amazon);
  color: var(--amazon-dark);
}

.button.small {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 14px;
}

.visual-stage {
  width: min(100%, 470px);
  justify-self: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(28, 37, 32, 0.16);
  padding: clamp(18px, 3vw, 34px);
}

.hero-photo {
  width: 100%;
  height: 420px;
  object-fit: contain;
  border-radius: 7px;
  background: white;
}

.caption-card {
  margin-top: 14px;
  padding: 14px;
  border-radius: 8px;
  background: var(--sage);
  color: var(--charcoal);
  font-weight: 720;
}

section {
  padding: clamp(54px, 7vw, 92px) clamp(20px, 5vw, 72px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

.answer {
  max-width: 1040px;
  margin-bottom: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-left: 8px solid var(--clay);
  border-radius: 8px;
  background: white;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 680;
}

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

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

.card, .product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 22px;
  box-shadow: 0 10px 26px rgba(28, 37, 32, 0.07);
}

.product-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.product-card .hero-photo {
  height: 280px;
}

.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--leaf);
  font-size: 13px;
  font-weight: 850;
}

.card p, .product-card p, .rich-text p, li {
  color: var(--muted);
}

.card h3, .product-card h3 {
  margin-bottom: 10px;
}

.colors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.colors span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: white;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th, td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--sage);
  color: var(--charcoal);
}

tr:last-child td {
  border-bottom: 0;
}

.rich-text {
  max-width: 980px;
  display: grid;
  gap: 18px;
  font-size: 18px;
}

.rich-text h2 {
  margin-top: 18px;
}

.rich-text ul {
  margin: 0;
  padding-left: 22px;
}

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

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

summary {
  cursor: pointer;
  font-weight: 820;
  font-size: 18px;
}

details p {
  margin-top: 12px;
  color: var(--muted);
}

.site-footer {
  padding: 32px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--charcoal);
  color: white;
}

.site-footer p {
  max-width: 980px;
  color: rgba(255, 255, 255, 0.76);
}

.disclosure {
  margin-top: 12px;
  font-size: 14px;
}

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

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

  .hero, .section-head, .grid.two, .grid {
    grid-template-columns: 1fr;
  }

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

  .visual-stage {
    width: 100%;
  }

  .hero-photo {
    height: 320px;
  }

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

  .product-card .hero-photo {
    height: 260px;
  }
}

@media (max-width: 520px) {
  .nav {
    gap: 10px 12px;
    font-size: 13px;
  }

  .hero-photo, .product-card .hero-photo {
    height: 240px;
  }

  .actions, .links {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
