
:root {
  color-scheme: light;
  --paper: #fbfaf7;
  --ink: #1c1a17;
  --muted: #625d54;
  --line: #dfd8cc;
  --panel: #ffffff;
  --leaf: #2e5d43;
  --leaf-dark: #173d2b;
  --sage: #cdd8c5;
  --clay: #a64f34;
  --gold: #d49b42;
  --cream: #f3eadc;
  --shadow: 0 18px 50px rgba(30, 27, 22, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 14px max(18px, calc((100vw - 1180px) / 2));
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid rgba(28, 26, 23, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  color: var(--leaf-dark);
  white-space: nowrap;
}

.site-header nav,
.site-footer nav {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.site-header nav a,
.site-footer nav a {
  padding: 7px 10px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--leaf-dark);
  border-radius: 3px;
  padding: 10px 18px;
  font-weight: 750;
  text-decoration: none;
}

.header-cta,
.button.primary {
  background: var(--leaf-dark);
  color: #fff;
}

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

main {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.74fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(36px, 7vw, 82px) 0 34px;
}

.eyebrow,
.kicker,
.status {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 86px);
  color: var(--leaf-dark);
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 4vw, 44px);
  color: var(--leaf-dark);
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  color: var(--leaf-dark);
}

.intro {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-image {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow);
}

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

.hero-image span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 12px 14px;
  background: rgba(23, 61, 43, 0.84);
  font-weight: 800;
}

.answer-box {
  margin: 14px 0 42px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-left: 7px solid var(--gold);
  background: #fff;
  box-shadow: 0 10px 30px rgba(30, 27, 22, 0.06);
}

.answer-box p:last-child {
  margin: 0;
  max-width: 900px;
  color: var(--leaf-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.18;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 44px;
  align-items: start;
  padding: 20px 0 54px;
}

.article {
  display: grid;
  gap: 34px;
}

.content-section {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.content-section p,
.content-section li,
.source-note p,
.faq p,
.product-card p,
.sidebar-panel li,
.site-footer p {
  color: var(--muted);
  font-size: 17px;
}

.content-section p {
  max-width: 790px;
  margin: 14px 0 0;
}

.content-section ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.sidebar {
  position: sticky;
  top: 86px;
}

.sidebar-panel {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.sidebar-panel h2 {
  font-size: 28px;
}

.sidebar-panel ol {
  display: grid;
  gap: 11px;
  margin: 18px 0;
  padding-left: 22px;
}

.product-band,
.faq,
.source-note {
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

.section-head {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 24px;
}

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

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.product-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.product-copy {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.product-copy h3 a {
  text-decoration: none;
}

.product-copy p {
  margin: 0;
}

.status {
  margin: 0;
}

.in-stock {
  color: var(--leaf);
}

.out-stock {
  color: var(--clay);
}

dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

dl div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 10px;
}

dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--ink);
}

.text-link {
  color: var(--leaf-dark);
  font-weight: 800;
  text-underline-offset: 4px;
}

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

details {
  border: 1px solid var(--line);
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--leaf-dark);
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.source-note {
  max-width: 850px;
}

.source-note h2 {
  font-size: 28px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  margin-top: 40px;
  padding: 34px max(18px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer p {
  max-width: 540px;
  margin: 8px 0 0;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
    padding-top: 10px;
    padding-bottom: 8px;
  }

  .site-header nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
  }

  .site-header nav a {
    padding: 5px 8px;
    font-size: 13px;
  }

  .hero,
  .content-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-image,
  .hero-image img {
    min-height: 340px;
  }

  .sidebar {
    position: static;
  }

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

@media (max-width: 620px) {
  main {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    font-size: 19px;
  }

  .header-cta {
    min-height: 38px;
    padding: 8px 13px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
