:root {
  --ink: #080808;
  --lime: #7fff00;
  --paper: #f5f4ef;
  --muted: #66645f;
  --line: #d9d8d2;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
img { max-width: 100%; }
.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -70px; z-index: 100; background: var(--white); padding: 10px 14px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 244, 239, .94);
  backdrop-filter: blur(14px);
}
.site-nav { display: flex; min-height: 72px; align-items: center; justify-content: space-between; gap: 24px; }
.site-logo img { display: block; width: 108px; height: auto; }
.site-links { display: flex; align-items: center; gap: 22px; }
.site-links a { font-size: 13px; font-weight: 800; text-decoration: none; }
.site-links a[aria-current="page"] { color: #397700; }
.site-contact { border-radius: 999px; background: var(--ink); color: var(--white); padding: 10px 18px; }

.breadcrumbs { padding-top: 25px; color: var(--muted); font-size: 14px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 6px; color: #aaa; }

.page-hero { padding: 54px 0 62px; }
.page-hero--split { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: 52px; align-items: center; }
.page-hero figure { margin: 0; }
.page-hero figure img { display: block; width: 100%; height: clamp(360px, 42vw, 540px); border-radius: 30px; background: var(--white); object-fit: cover; }
.page-hero figcaption { margin-top: 8px; color: var(--muted); font-size: 12px; text-align: center; }
.eyebrow { color: #397700; font-size: 12px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { text-wrap: balance; }
h1 { max-width: 900px; margin: 12px 0 20px; font-size: clamp(44px, 7vw, 78px); line-height: .96; letter-spacing: -.05em; }
h2 { margin: 1.8em 0 .55em; font-size: clamp(28px, 4vw, 43px); line-height: 1.08; letter-spacing: -.035em; }
h3 { margin: 1.6em 0 .45em; font-size: 21px; line-height: 1.22; }
.lead { max-width: 790px; color: #45443f; font-size: clamp(18px, 2.1vw, 22px); line-height: 1.55; }
.price { margin: 24px 0 16px; font-size: 29px; font-weight: 900; letter-spacing: -.025em; }
.price del { margin-right: 9px; color: #777; font-size: .72em; }
.meta-line { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 24px; color: var(--muted); font-size: 13px; }
.hero-card { border-radius: 28px; background: var(--ink); color: var(--white); padding: 30px; box-shadow: 0 28px 70px rgba(0,0,0,.14); }
.hero-card strong { display: block; font-size: clamp(25px, 3vw, 36px); line-height: 1.08; }
.hero-card p { margin-bottom: 0; color: #c8c8c8; }

.button-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.button, .button-secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 900;
  text-decoration: none;
}
.button { background: var(--ink); color: var(--white); }
.button-secondary { border: 1px solid #aaa; background: transparent; }
.button--light { background: var(--white); color: var(--ink); }

.quick-answer { margin: 0 auto 42px; border: 1px solid #b9e98d; border-radius: 24px; background: #eaffd6; padding: 26px; }
.quick-answer h2 { margin: 0 0 8px; font-size: 22px; }
.quick-answer p:last-child { margin-bottom: 0; }
.toc { margin-bottom: 42px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); padding: 24px; }
.toc h2 { margin: 0 0 12px; font-size: 22px; }
.toc ol { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px 26px; margin: 0; padding-left: 20px; }
.toc a { text-decoration-thickness: 1px; text-underline-offset: 3px; }

.article-layout { display: grid; grid-template-columns: minmax(0, 760px) minmax(220px, 1fr); gap: 54px; align-items: start; padding-bottom: 70px; }
.prose { min-width: 0; }
.prose > :first-child { margin-top: 0; }
.prose p, .prose li { color: #3f3e3a; font-size: 17px; }
.prose li + li { margin-top: 7px; }
.prose a { font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.callout { margin: 30px 0; border-left: 5px solid var(--lime); border-radius: 0 18px 18px 0; background: var(--white); padding: 20px 22px; }
.callout strong { display: block; margin-bottom: 4px; }
.article-aside { position: sticky; top: 96px; }
.article-aside section { margin-bottom: 16px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); padding: 20px; }
.article-aside h2 { margin: 0 0 10px; font-size: 18px; }
.article-aside ul { margin: 0; padding-left: 20px; }
.article-aside li { margin: 7px 0; font-size: 14px; }

.data-table { display: block; width: 100%; margin: 28px 0; overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; background: var(--white); border-collapse: separate; border-spacing: 0; }
.data-table th, .data-table td { min-width: 150px; border-bottom: 1px solid #e4e3de; padding: 14px 16px; text-align: left; vertical-align: top; }
.data-table th { background: #ecebe6; font-size: 14px; }
.data-table tr:last-child th, .data-table tr:last-child td { border-bottom: 0; }
.fact-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 24px 0; }
.fact-list > div { border: 1px solid var(--line); border-radius: 16px; background: var(--white); padding: 15px; }
.fact-list dt { color: var(--muted); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.fact-list dd { margin: 4px 0 0; font-weight: 800; }

.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--white); }
.card img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #e9e8e3; }
.card-body { display: flex; flex: 1; flex-direction: column; padding: 22px; }
.card-body h2, .card-body h3 { margin: 0 0 9px; font-size: 23px; }
.card-body p { color: var(--muted); }
.card-body a:last-child { margin-top: auto; font-weight: 900; text-underline-offset: 4px; }
.topic-section { padding: 64px 0; }
.topic-section--white { border-block: 1px solid var(--line); background: var(--white); }
.section-heading { max-width: 760px; margin-bottom: 28px; }
.section-heading h2 { margin-top: 0; }
.section-heading p { color: var(--muted); font-size: 18px; }

.faq { padding: 30px 0 64px; }
.faq details { margin: 12px 0; border: 1px solid var(--line); border-radius: 16px; background: var(--white); padding: 18px 20px; }
.faq summary { cursor: pointer; font-weight: 900; }
.faq details p { color: #55534e; }
.related { padding: 60px 0; border-block: 1px solid var(--line); background: var(--white); }
.related-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.related-links a { display: block; border: 1px solid var(--line); border-radius: 18px; padding: 18px; text-decoration: none; }
.related-links a[aria-current="page"] { border-color: #81cf35; background: #efffe1; }
.related-links strong { display: block; }
.related-links span { color: var(--muted); font-size: 14px; }
.location-links { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.location-links a { display: block; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); padding: 20px; text-decoration: none; }
.location-links strong, .location-links span { display: block; }
.location-links strong { font-size: 20px; }
.location-links span { margin-top: 4px; color: var(--muted); font-size: 13px; }
.delivery-regions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 28px 0; }
.delivery-regions section { border: 1px solid var(--line); border-radius: 18px; background: var(--white); padding: 20px; }
.delivery-regions h2 { margin: 0 0 9px; font-size: 20px; }
.delivery-regions p { margin: 0; font-size: 15px; }
.source-list { color: var(--muted); font-size: 14px; }

.final-cta { margin: 66px auto; border-radius: 28px; background: var(--lime); padding: 42px; text-align: center; }
.final-cta h2 { margin-top: 0; }
.final-cta p { max-width: 700px; margin-inline: auto; }
.final-cta .button-row { justify-content: center; }

footer { background: var(--ink); color: var(--white); padding: 38px 0; }
footer p { color: #aaa; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; font-size: 14px; }

@media (max-width: 820px) {
  .wrap { width: min(1120px, calc(100% - 28px)); }
  .site-nav { min-height: 64px; }
  .site-logo img { width: 88px; }
  .site-links { gap: 11px; }
  .site-links a { font-size: 11px; }
  .site-links a:nth-child(4), .site-contact { display: none; }
  .page-hero--split, .article-layout { grid-template-columns: 1fr; }
  .page-hero { padding: 38px 0 46px; }
  .page-hero--split { gap: 22px; }
  .page-hero figure { grid-row: 1; }
  .page-hero figure img { height: min(112vw, 520px); border-radius: 22px; }
  h1 { font-size: clamp(40px, 12vw, 58px); }
  .article-aside { position: static; }
  .toc ol, .fact-list { grid-template-columns: 1fr; }
  .cards, .related-links, .location-links, .delivery-regions { grid-template-columns: 1fr; }
  .topic-section { padding: 48px 0; }
  .button-row > * { width: 100%; }
  .final-cta { padding: 30px 20px; }
}

@media (min-width: 821px) and (max-width: 1040px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
