:root {
  --bone: #f3efe7;
  --paper: #faf7f1;
  --ink: #0a2e30;
  --teal: #0d5c63;
  --brand-copper: #b8734f;
  --action: #995638;
  --action-hover: #7f432c;
  --muted: #5f6d6c;
  --line: rgba(10, 46, 48, 0.16);
  --line-strong: rgba(10, 46, 48, 0.3);
  --display: "Newsreader", Georgia, serif;
  --body: "Outfit", "Helvetica Neue", sans-serif;
  --radius: 2px;
  --shell: min(1240px, calc(100vw - 80px));
  --ease: cubic-bezier(.16, 1, .3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 8%, rgba(184, 115, 79, .11), transparent 26rem),
    linear-gradient(180deg, var(--bone), #f6f1e9 48%, var(--bone));
  font: 300 17px/1.6 var(--body);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote,
ol,
ul {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.03;
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

.article-shell {
  width: var(--shell);
  margin-inline: auto;
}

.article-main {
  padding-top: 80px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.breadcrumbs a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-underline-offset: 4px;
}

.breadcrumbs span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(420px, 1.04fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
  padding: clamp(34px, 6vw, 76px) 0 clamp(58px, 8vw, 104px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--action);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(50px, 6.9vw, 92px);
}

.hero-deck {
  max-width: 63ch;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.55;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.article-meta span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand-copper);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--action);
  border-radius: var(--radius);
  color: var(--action);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  text-decoration: none;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}

.button-primary {
  background: var(--action);
  color: #fff;
}

.button:hover,
.button:focus-visible {
  border-color: var(--action-hover);
  background: var(--action-hover);
  color: #fff;
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: clamp(18px, 2vw, 28px);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(250, 247, 241, .94), rgba(235, 225, 210, .72)),
    var(--paper);
  box-shadow: 0 28px 80px rgba(10, 46, 48, .12);
}

.hero-visual::before {
  content: "01 / 10";
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.hero-caption {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 20px 4px 2px;
  border-top: 1px solid var(--line);
}

.hero-caption strong {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
}

.hero-caption span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.answer-band {
  color: var(--paper);
  background: var(--ink);
}

.answer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(320px, .58fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
  padding: clamp(64px, 8vw, 104px) 0;
}

.answer-grid h2 {
  color: var(--paper);
  font-size: clamp(38px, 4.8vw, 64px);
}

.answer-grid p {
  margin-top: 20px;
  color: rgba(250, 247, 241, .78);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.72;
}

.answer-facts {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(250, 247, 241, .22);
}

.answer-facts div {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(250, 247, 241, .22);
}

.answer-facts strong {
  color: #f6c3a4;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
}

.answer-facts span {
  color: rgba(250, 247, 241, .78);
  font-size: 14px;
  line-height: 1.5;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(40px, 6vw, 88px);
  padding: clamp(72px, 9vw, 118px) 0;
}

.article-copy {
  min-width: 0;
}

.article-copy > * + * {
  margin-top: 22px;
}

.article-copy h2 {
  margin-top: 72px;
  font-size: clamp(38px, 4.5vw, 58px);
}

.article-copy h2:first-child {
  margin-top: 0;
}

.article-copy h3 {
  margin-top: 34px;
  font-size: clamp(28px, 3vw, 38px);
}

.article-copy p,
.article-copy li {
  max-width: 72ch;
  font-size: 18px;
  line-height: 1.78;
}

.article-copy a {
  color: var(--action);
  font-weight: 500;
  text-underline-offset: 4px;
}

.article-copy strong {
  font-weight: 600;
}

.brief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.brief-card {
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(250, 247, 241, .66);
}

.brief-card span {
  color: var(--action);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.brief-card h3 {
  margin-top: 14px;
  font-family: var(--body);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
}

.brief-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.product-grid {
  counter-reset: products;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.product-grid > li {
  counter-increment: products;
  min-width: 0;
}

.product-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(250, 247, 241, .82);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
}

.product-card:hover,
.product-card:focus-within {
  border-color: var(--line-strong);
  box-shadow: 0 22px 52px rgba(10, 46, 48, .1);
  transform: translateY(-4px);
}

.product-media {
  position: relative;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 76% 18%, rgba(184, 115, 79, .1), transparent 30%),
    #f7f2ea;
}

.product-media::before {
  content: counter(products, decimal-leading-zero);
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  min-width: 42px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
}

.product-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.product-copy {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.product-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  color: var(--action);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.product-kicker .sku {
  color: var(--muted);
  letter-spacing: .06em;
}

.product-copy h3 {
  margin-top: 0;
  font-size: clamp(29px, 2.8vw, 38px);
}

.product-copy > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.product-facts {
  display: grid;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.product-facts p {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-facts strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.claim-note {
  margin-top: 36px;
  padding: clamp(24px, 3vw, 36px);
  border-left: 4px solid var(--action);
  background: rgba(153, 86, 56, .07);
}

.claim-note h3 {
  margin-top: 0;
}

.claim-note p {
  margin-top: 14px;
}

.faq-list {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 2px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--action);
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  padding: 0 40px 24px 2px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.article-aside {
  align-self: start;
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.aside-card {
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(250, 247, 241, .75);
}

.aside-card > span {
  color: var(--action);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.aside-card h2 {
  margin-top: 10px;
  font-family: var(--body);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
}

.aside-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.toc {
  display: grid;
  gap: 2px;
  margin-top: 12px;
}

.toc a {
  min-height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
}

.toc a:hover,
.toc a:focus-visible {
  color: var(--action);
}

.related-links {
  display: grid;
  gap: 2px;
  margin-top: 12px;
}

.related-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--action);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.cta-band {
  margin-bottom: clamp(72px, 9vw, 112px);
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(13, 92, 99, .76), rgba(10, 46, 48, .96)),
    var(--ink);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(46px, 6vw, 72px);
}

.cta-grid h2 {
  max-width: 780px;
  color: var(--paper);
  font-size: clamp(38px, 4.8vw, 62px);
}

.cta-grid p {
  max-width: 62ch;
  margin-top: 16px;
  color: rgba(250, 247, 241, .76);
  font-size: 17px;
}

.cta-actions {
  margin-top: 0;
}

.cta-actions .button {
  border-color: var(--paper);
  color: var(--paper);
}

.cta-actions .button-primary {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.cta-actions .button:hover,
.cta-actions .button:focus-visible {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--action);
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .hero,
  .answer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 760px;
  }

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

  .content-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    order: -1;
  }

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

@media (max-width: 780px) {
  :root {
    --shell: min(100vw - 32px, 1240px);
  }

  .article-main {
    padding-top: 68px;
  }

  .breadcrumbs {
    padding-top: 16px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    font-size: clamp(45px, 15vw, 66px);
  }

  .hero-caption {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .article-aside {
    grid-template-columns: 1fr;
  }

  .article-copy p,
  .article-copy li {
    font-size: 17px;
  }

  .cta-grid {
    padding: 38px 22px;
  }
}

@media (max-width: 460px) {
  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .product-copy {
    padding: 20px;
  }

  .product-facts p {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .button:hover,
  .button:focus-visible,
  .product-card:hover,
  .product-card:focus-within {
    transform: none;
  }
}
