:root {
  --paper: #f7f2e8;
  --paper-2: #efe7d8;
  --ink: #17241f;
  --muted: #586b61;
  --forest: #24463a;
  --leaf: #6e9174;
  --honey: #ebb646;
  --honey-dark: #b97815;
  --white: #fffdf7;
  --line: #d8d0bf;
  --shadow: 0 22px 55px rgba(30, 48, 40, .14);
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Karla, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(36, 70, 58, .12) 1px, transparent 0);
  background-size: 26px 26px;
  opacity: .24;
}

a { color: inherit; }
p { margin: 0 0 1rem; }
h1, h2, h3 {
  font-family: Fraunces, Georgia, serif;
  color: var(--forest);
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}
h1 { font-size: clamp(2.65rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.35rem; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--forest);
  color: white;
  padding: 10px 14px;
  border-radius: 6px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 242, 232, .91);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(36, 70, 58, .14);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  text-decoration: none;
  font-weight: 800;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--honey);
  color: #2a1d03;
  font-family: Fraunces, Georgia, serif;
}
.menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
.menu a {
  text-decoration: none;
  color: var(--forest);
  font-weight: 700;
}
.menu a:hover { color: var(--honey-dark); }
.article-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}
.article-menu a {
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
}
.article-menu a:hover { color: var(--honey-dark); }
.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--forest);
  border-radius: 8px;
  padding: 9px 13px;
  font: inherit;
  font-weight: 800;
}

.hero {
  padding: 78px 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  gap: 52px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--honey-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.lead {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.18rem;
  margin: 22px 0 28px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}
.btn-primary {
  background: var(--honey);
  color: #291d05;
  box-shadow: 0 3px 0 var(--honey-dark);
}
.btn-secondary {
  border: 1px solid var(--forest);
  color: var(--forest);
  background: transparent;
}
.btn-light {
  background: var(--white);
  color: var(--forest);
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.trust-list li {
  background: rgba(255, 253, 247, .75);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--forest);
  font-weight: 700;
}
.hero-panel {
  display: grid;
  gap: 16px;
}
.roll-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.roll-card span {
  min-height: 94px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--forest);
  font-weight: 800;
  text-align: center;
  background: linear-gradient(135deg, #dce8d8, #f6e3b0);
}
.roll-card span:nth-child(2n) { background: linear-gradient(135deg, #f3d2bd, #dfe9df); }
.hero-stat {
  display: flex;
  gap: 14px;
  align-items: center;
  border-radius: 8px;
  background: var(--forest);
  color: #d9e8dd;
  padding: 20px;
}
.hero-stat strong {
  color: var(--honey);
  font-family: Fraunces, Georgia, serif;
  font-size: 2rem;
  white-space: nowrap;
}

.section { padding: 74px 0; }
.section-muted { background: var(--paper-2); }
.section-brand {
  background: var(--forest);
  color: #d9e8dd;
}
.section-brand h2,
.section-brand h3,
.section-brand .eyebrow { color: var(--honey); }
.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}
.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}
.split,
.shop-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 42px;
  align-items: start;
}
.note,
.shop-card,
.comparison-card,
.post {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}
.note {
  box-shadow: var(--shadow);
}
.note a,
.post span:last-child,
.article-body a {
  color: var(--honey-dark);
  font-weight: 800;
}
.comparison,
.posts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.posts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.comparison-card ul,
.article-body ul,
.article-body ol {
  margin: 14px 0 0;
  padding-left: 1.2rem;
}
.comparison-card li,
.article-body li { margin: 8px 0; }
.comparison-card.featured {
  border-color: rgba(235, 182, 70, .8);
  box-shadow: var(--shadow);
}
.post {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.post:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.post p {
  color: var(--muted);
  flex: 1;
}
.tag {
  width: fit-content;
  margin-bottom: 14px;
  border-radius: 8px;
  background: #ecdfc2;
  color: var(--forest);
  padding: 4px 8px;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.shop-card {
  background: rgba(255, 253, 247, .08);
  border-color: rgba(255, 253, 247, .22);
}
.faq {
  max-width: 820px;
}
details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
details:last-child { border-bottom: 1px solid var(--line); }
summary {
  cursor: pointer;
  color: var(--forest);
  font-weight: 800;
  font-size: 1.08rem;
}
details p {
  color: var(--muted);
  margin-top: 12px;
}

.footer {
  padding: 46px 0;
  border-top: 1px solid var(--line);
  background: #f2ebdc;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, .8fr);
  gap: 32px;
}
.footer p {
  color: var(--muted);
  max-width: 52ch;
}
.footer nav {
  display: grid;
  gap: 8px;
}
.footer nav a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
}

.article-hero {
  padding: 54px 0 24px;
}
.article-wrap {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
}
.article-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.7rem);
}
.meta {
  margin: 18px 0 0;
  color: var(--muted);
}
.article-body {
  padding: 30px 0 64px;
}
.article-body h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  margin: 40px 0 12px;
}
.article-body p,
.article-body li {
  font-size: 1.08rem;
}
.callout {
  margin: 28px 0;
  padding: 22px;
  border-left: 5px solid var(--honey);
  background: var(--white);
  border-radius: 8px;
}
.article-cta {
  margin: 42px 0 0;
  padding: 28px;
  border-radius: 8px;
  background: var(--forest);
  color: #d9e8dd;
}
.article-cta h2 { color: var(--honey); }
.breadcrumbs {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .95rem;
}
.breadcrumbs a { color: var(--forest); font-weight: 800; }

@media (max-width: 840px) {
  .menu-button { display: inline-flex; }
  .menu {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .menu.is-open { display: flex; }
  .article-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    font-size: .94rem;
  }
  .hero-grid,
  .split,
  .shop-grid,
  .comparison,
  .posts,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 46px; }
  .section { padding: 54px 0; }
  .roll-card span { min-height: 78px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
