:root {
  --paper: #f4efe6;
  --paper-deep: #eae2d4;
  --ink: #173c35;
  --ink-soft: #365b52;
  --terracotta: #cf6546;
  --terracotta-dark: #a84832;
  --mustard: #e5ad43;
  --sage: #b8c9b5;
  --cream: #fffaf0;
  --line: rgba(23, 60, 53, 0.18);
  --line-light: rgba(244, 239, 230, 0.27);
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Helvetica, sans-serif;
  --shadow: 0 18px 45px rgba(44, 44, 32, 0.1);
  color-scheme: light;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

a { color: inherit; text-decoration: none; }

button, input { font: inherit; }

button { cursor: pointer; }

.container { width: min(1180px, calc(100% - 64px)); margin-inline: auto; }

.sr-only, .skip-link:not(:focus) { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.skip-link { position: fixed; z-index: 50; top: 12px; left: 12px; padding: 10px 16px; border-radius: 4px; background: var(--mustard); color: var(--ink); font-weight: 700; }

.topline { background: var(--ink); color: var(--paper); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.topline__inner { display: flex; align-items: center; min-height: 30px; gap: 9px; }
.topline__mark { color: var(--mustard); font-size: 14px; line-height: 1; }
.topline__right { margin-left: auto; color: rgba(244, 239, 230, 0.62); }

.site-header { position: relative; z-index: 20; border-bottom: 1px solid var(--line); background: rgba(244, 239, 230, 0.86); backdrop-filter: blur(15px); }
.site-header__inner { display: flex; align-items: center; min-height: 84px; gap: 34px; }

.brand { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; min-width: 207px; }
.brand__paw { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid var(--terracotta); border-radius: 50%; color: var(--terracotta); font-size: 17px; line-height: 1; }
.brand__name { font-family: var(--serif); font-size: 25px; font-weight: 650; letter-spacing: -0.05em; line-height: 1; }
.brand__tag { width: 100%; padding-left: 38px; color: var(--ink-soft); font-size: 9px; letter-spacing: 0.13em; line-height: 0; text-transform: uppercase; transform: translateY(-5px); }

.main-nav { display: flex; align-items: center; gap: 25px; margin-left: auto; }
.main-nav__link { position: relative; padding-block: 8px; color: var(--ink-soft); font-size: 13px; font-weight: 600; }
.main-nav__link::after { position: absolute; right: 0; bottom: 0; left: 0; height: 2px; background: var(--terracotta); content: ""; transform: scaleX(0); transform-origin: right; transition: transform 180ms ease; }
.main-nav__link:hover, .main-nav__link--active { color: var(--ink); }
.main-nav__link:hover::after, .main-nav__link--active::after { transform: scaleX(1); transform-origin: left; }
.header-cta { display: inline-flex; align-items: center; gap: 12px; padding: 11px 14px 11px 17px; border: 1px solid var(--ink); color: var(--ink); font-size: 12px; font-weight: 700; transition: background 180ms ease, color 180ms ease; }
.header-cta span { color: var(--terracotta); font-size: 18px; line-height: 0; }
.header-cta:hover { background: var(--ink); color: var(--paper); }
.menu-toggle { display: none; }

.hero { display: grid; grid-template-columns: minmax(0, 0.96fr) minmax(440px, 1.04fr); min-height: 630px; padding-top: 74px; padding-bottom: 75px; gap: 40px; }
.hero__copy { align-self: center; padding: 15px 0 20px 5%; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 24px; color: var(--terracotta-dark); font-size: 10px; font-weight: 700; letter-spacing: 0.17em; line-height: 1.2; text-transform: uppercase; }
.eyebrow__line { display: inline-block; width: 31px; height: 1px; background: currentColor; }
.eyebrow--muted { color: var(--mustard); }
.eyebrow--light { color: var(--mustard); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 600; }
h1, h2 { font-family: var(--serif); letter-spacing: -0.055em; }
h1 { max-width: 620px; margin-bottom: 25px; font-size: clamp(54px, 6.3vw, 88px); line-height: 0.96; }
h1 em, h2 em { color: var(--terracotta); font-style: normal; }
.hero__lead { max-width: 490px; margin-bottom: 30px; color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
.hero__actions { display: flex; align-items: center; gap: 25px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 27px; min-height: 49px; padding: 13px 17px 13px 20px; border: 1px solid transparent; font-size: 12px; font-weight: 700; transition: transform 180ms ease, background 180ms ease, color 180ms ease; }
.button span { font-size: 18px; line-height: 0; }
.button:hover { transform: translateY(-3px); }
.button--dark { background: var(--ink); color: var(--paper); }
.button--dark:hover { background: var(--terracotta-dark); }
.button--paper { border-color: var(--paper); background: var(--paper); color: var(--ink); }
.text-link { position: relative; display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-size: 12px; font-weight: 700; }
.text-link::after { position: absolute; right: 24px; bottom: -5px; left: 0; height: 1px; background: currentColor; content: ""; }
.text-link span { color: var(--terracotta); font-size: 18px; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 16px 24px; margin-top: 59px; padding-top: 17px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; }
.hero__proof strong { display: block; margin-bottom: 2px; color: var(--terracotta); font-size: 11px; }

.hero__visual { position: relative; min-height: 500px; }
.hero__sun { position: absolute; z-index: 0; top: 1%; right: 7%; width: 70%; aspect-ratio: 1; border-radius: 50%; background: var(--mustard); opacity: 0.86; }
.hero__image { position: absolute; z-index: 1; overflow: hidden; box-shadow: var(--shadow); }
.hero__image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.78) contrast(0.97); }
.hero__image--dog { top: 4%; right: 6%; width: 63%; height: 70%; border-radius: 48% 48% 6px 6px; transform: rotate(2.5deg); }
.hero__image--cat { right: 55%; bottom: 2%; width: 38%; height: 37%; border: 7px solid var(--paper); border-radius: 5px; transform: rotate(-5deg); }
.hero__stamp { position: absolute; z-index: 3; top: 24%; left: 1%; display: grid; width: 95px; height: 95px; place-items: center; border: 1px solid var(--ink); border-radius: 50%; background: var(--terracotta); color: var(--paper); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; line-height: 1.35; text-align: center; transform: rotate(-13deg); }
.hero__note { position: absolute; z-index: 4; right: 1%; bottom: 0; padding: 12px 17px 14px; border-left: 2px solid var(--terracotta); background: var(--cream); box-shadow: 6px 9px 0 rgba(23, 60, 53, 0.1); color: var(--ink); font-family: var(--serif); font-size: 15px; line-height: 1.2; transform: rotate(-2deg); }
.hero__note span { display: block; margin-bottom: 7px; color: var(--terracotta); font-family: var(--sans); font-size: 9px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }

.search-band { padding: 33px 0 36px; background: var(--ink); color: var(--paper); }
.search-band__inner { display: grid; grid-template-columns: 0.75fr 1.25fr; align-items: center; column-gap: 75px; }
.search-band h2 { margin: 0; font-size: 34px; line-height: 0.99; }
.search-form { display: flex; border-bottom: 1px solid var(--line-light); }
.search-form input { min-width: 0; flex: 1; padding: 11px 4px 12px 0; border: 0; outline: 0; background: transparent; color: var(--paper); font-family: var(--serif); font-size: 25px; }
.search-form input::placeholder { color: rgba(244, 239, 230, 0.44); }
.search-form button { display: inline-flex; align-items: center; gap: 16px; border: 0; background: transparent; color: var(--mustard); font-size: 12px; font-weight: 700; }
.search-form button span { font-size: 20px; }
.search-form__status { grid-column: 2; min-height: 18px; margin: 7px 0 0; color: rgba(244, 239, 230, 0.62); font-size: 11px; }

.section { padding-top: 104px; padding-bottom: 94px; }
.section--tight { padding-top: 72px; padding-bottom: 85px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 33px; }
.section-heading h2 { margin: 0; font-size: clamp(42px, 4.8vw, 63px); line-height: 0.98; }
.section-heading__intro { max-width: 275px; margin: 0 4% 3px 0; color: var(--ink-soft); font-size: 14px; line-height: 1.65; }
.filter-row { display: flex; gap: 8px; margin-bottom: 27px; }
.filter-chip { padding: 9px 14px; border: 1px solid var(--line); border-radius: 99px; background: transparent; color: var(--ink-soft); font-size: 11px; font-weight: 700; transition: border-color 180ms ease, background 180ms ease, color 180ms ease; }
.filter-chip:hover, .filter-chip--active { border-color: var(--ink); background: var(--ink); color: var(--paper); }

.article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.article-card { display: grid; grid-template-rows: auto 1fr; min-width: 0; border: 1px solid var(--line); background: rgba(255, 250, 240, 0.44); transition: transform 220ms ease, box-shadow 220ms ease, opacity 180ms ease; }
.article-card:hover { box-shadow: 10px 12px 0 rgba(23, 60, 53, 0.1); transform: translateY(-5px); }
.article-card[hidden] { display: none; }
.article-card--featured { grid-column: auto; grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
.article-card__media { position: relative; height: 205px; min-height: 0; overflow: hidden; background: var(--paper-deep); }
.article-card--featured .article-card__media { height: 225px; }
.article-card__media::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 65%, rgba(23, 60, 53, 0.26)); content: ""; pointer-events: none; }
.article-card__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.77); transition: transform 400ms ease; }
.article-card:hover .article-card__media img { transform: scale(1.04); }
.media-label { position: absolute; z-index: 1; top: 15px; left: 15px; padding: 5px 8px; background: var(--paper); color: var(--ink); font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.article-card__body { display: flex; flex-direction: column; padding: 20px 21px 21px; }
.article-card__meta { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 14px; color: var(--terracotta-dark); font-size: 8px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.article-card h3 { max-width: 470px; margin-bottom: 10px; font-family: var(--serif); font-size: clamp(23px, 2.3vw, 30px); line-height: 1.04; letter-spacing: -0.045em; }
.article-card:not(.article-card--featured) h3 { font-size: 23px; }
.article-card h3 a { transition: color 180ms ease; }
.article-card h3 a:hover { color: var(--terracotta-dark); }
.article-card p { max-width: 430px; margin-bottom: 17px; color: var(--ink-soft); font-size: 12px; line-height: 1.58; }
.article-card__link { display: inline-flex; align-items: center; gap: 12px; width: fit-content; margin-top: auto; border-bottom: 1px solid var(--ink); padding-bottom: 3px; font-size: 11px; font-weight: 700; }
.article-card__link span { color: var(--terracotta); font-size: 18px; line-height: 0; transition: transform 180ms ease; }
.article-card__link:hover span { transform: translateX(5px); }

.empty-state { padding: 50px 20px; border: 1px dashed var(--line); text-align: center; }
.empty-state__icon { display: block; margin-bottom: 9px; color: var(--terracotta); font-family: var(--serif); font-size: 35px; }
.empty-state p { margin-bottom: 12px; color: var(--ink-soft); }
.text-button { border: 0; border-bottom: 1px solid var(--ink); background: transparent; color: var(--ink); font-size: 12px; font-weight: 700; }
.text-button span { color: var(--terracotta); font-size: 17px; }

.section-heading--compact { align-items: end; margin-bottom: 34px; }
.topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.topic-card { position: relative; display: flex; min-height: 270px; flex-direction: column; justify-content: end; overflow: hidden; padding: 24px; border: 1px solid var(--ink); background: var(--ink); color: var(--paper); transition: transform 220ms ease, box-shadow 220ms ease; }
.topic-card:hover { box-shadow: 9px 9px 0 var(--ink); transform: translate(-3px, -3px); }
.topic-card__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(0.72); transition: transform 450ms ease, filter 450ms ease; }
.topic-card:hover .topic-card__image { filter: saturate(0.9); transform: scale(1.05); }
.topic-card__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23, 60, 53, 0.08) 20%, rgba(23, 60, 53, 0.88) 100%); }
.topic-card--dog .topic-card__veil { background: linear-gradient(180deg, rgba(39, 44, 28, 0.05) 12%, rgba(23, 60, 53, 0.86) 100%); }
.topic-card--cat .topic-card__veil { background: linear-gradient(180deg, rgba(88, 58, 43, 0.04) 12%, rgba(23, 60, 53, 0.86) 100%); }
.topic-card--care .topic-card__veil { background: linear-gradient(180deg, rgba(48, 50, 32, 0.04) 12%, rgba(23, 60, 53, 0.86) 100%); }
.topic-card__number { position: absolute; z-index: 1; top: 19px; left: 22px; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; }
.topic-card__title { position: relative; z-index: 1; font-family: var(--serif); font-size: 39px; letter-spacing: -0.06em; line-height: 0.96; }
.topic-card__caption { position: relative; z-index: 1; margin-top: 10px; font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; }
.topic-card__arrow { position: absolute; z-index: 1; right: 22px; bottom: 22px; font-size: 24px; }

.manifesto { display: grid; grid-template-columns: 100px 1.12fr 0.88fr; gap: 43px; padding-top: 72px; padding-bottom: 73px; background: var(--ink); color: var(--paper); }
.manifesto__mark { display: grid; width: 64px; height: 64px; place-items: center; border: 1px solid var(--mustard); border-radius: 50%; color: var(--mustard); font-size: 25px; }
.manifesto__copy h2 { max-width: 500px; margin-bottom: 24px; font-size: clamp(42px, 4vw, 60px); line-height: 0.96; }
.manifesto__copy h2 em { color: var(--mustard); }
.manifesto__copy > p:not(.eyebrow) { max-width: 540px; margin-bottom: 30px; color: rgba(244, 239, 230, 0.73); font-size: 14px; line-height: 1.75; }
.manifesto__aside { display: flex; flex-direction: column; justify-content: space-between; min-height: 260px; padding: 6px 0 0 25px; border-left: 1px solid var(--line-light); }
.manifesto__quote { max-width: 250px; font-family: var(--serif); font-size: 23px; line-height: 1.18; }
.manifesto__signature { color: var(--mustard); font-family: var(--serif); font-size: 23px; line-height: 0.95; transform: rotate(-4deg); }
.manifesto__signature span { display: block; margin-top: 7px; color: rgba(244, 239, 230, 0.55); font-family: var(--sans); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; }

.site-footer { padding-top: 60px; background: var(--paper-deep); }
.site-footer__top { display: flex; justify-content: space-between; gap: 60px; padding-bottom: 66px; }
.brand--footer { min-width: auto; }
.brand--footer .brand__name { font-size: 28px; }
.site-footer__tagline { margin: 22px 0 0; color: var(--ink-soft); font-family: var(--serif); font-size: 18px; line-height: 1.16; }
.footer-links { display: grid; grid-template-columns: repeat(3, minmax(110px, auto)); gap: 65px; padding-top: 3px; }
.footer-links div { display: flex; min-width: 115px; flex-direction: column; gap: 7px; }
.footer-links p { margin-bottom: 9px; color: var(--terracotta-dark); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-links a, .footer-links span { color: var(--ink-soft); font-size: 12px; }
.footer-links a:hover { color: var(--terracotta-dark); }
.site-footer__bottom { display: flex; justify-content: space-between; padding: 16px 0 19px; border-top: 1px solid var(--line); color: rgba(23, 60, 53, 0.63); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }

.toast { position: fixed; z-index: 60; right: 20px; bottom: 20px; max-width: min(360px, calc(100% - 40px)); padding: 13px 16px; border-left: 3px solid var(--mustard); background: var(--ink); color: var(--paper); box-shadow: var(--shadow); font-size: 12px; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity 180ms ease, transform 180ms ease; }
.toast--visible { opacity: 1; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-visible { opacity: 1; transform: translateY(0); transition: opacity 600ms ease, transform 600ms ease; }

@media (max-width: 920px) {
  .container { width: min(100% - 40px, 700px); }
  .site-header__inner { min-height: 74px; gap: 17px; }
  .brand { min-width: auto; }
  .brand__tag { display: none; }
  .main-nav { position: absolute; top: calc(100% + 1px); right: 20px; left: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px 18px 17px; border: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .main-nav__link { padding: 11px 0; border-bottom: 1px solid var(--line); }
  .main-nav__link:last-child { border-bottom: 0; }
  .header-cta { margin-left: auto; padding-inline: 12px; }
  .menu-toggle { display: inline-flex; align-items: center; gap: 9px; padding: 8px 0; border: 0; background: transparent; color: var(--ink); font-size: 11px; font-weight: 700; }
  .menu-toggle__icon { display: flex; flex-direction: column; gap: 4px; width: 20px; }
  .menu-toggle__icon i { display: block; height: 1px; background: var(--ink); transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child { transform: translateY(2.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child { transform: translateY(-2.5px) rotate(-45deg); }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 50px; padding-bottom: 58px; }
  .hero__copy { padding-left: 0; }
  .hero__visual { min-height: 410px; margin-top: 5px; }
  .search-band__inner { grid-template-columns: 1fr; row-gap: 20px; }
  .search-form__status { grid-column: auto; }
  .search-band h2 { font-size: 31px; }
  .section-heading { align-items: start; flex-direction: column; gap: 24px; }
  .section-heading__intro { margin: 0; }
  .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-card--featured { grid-column: auto; grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
  .article-card--featured .article-card__media { height: 225px; }
  .manifesto { grid-template-columns: 72px 1fr; gap: 26px; }
  .manifesto__aside { grid-column: 2; min-height: 170px; }
}

@media (max-width: 600px) {
  .container { width: calc(100% - 32px); }
  .topline__right { display: none; }
  .site-header__inner { flex-wrap: wrap; }
  .header-cta { display: none; }
  .hero { padding-top: 40px; }
  h1 { font-size: clamp(49px, 15vw, 72px); }
  .hero__lead { font-size: 15px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 17px; }
  .hero__proof { margin-top: 38px; }
  .hero__visual { min-height: 340px; }
  .hero__image--dog { width: 69%; height: 73%; }
  .hero__image--cat { right: 53%; width: 43%; height: 38%; }
  .hero__stamp { top: 21%; left: 0; width: 76px; height: 76px; font-size: 8px; }
  .hero__note { right: 0; font-size: 13px; }
  .search-form input { font-size: 20px; }
  .section { padding-top: 76px; padding-bottom: 70px; }
  .section-heading h2 { font-size: 43px; }
  .article-grid { grid-template-columns: 1fr; gap: 17px; }
  .article-card--featured { grid-column: auto; }
  .article-card--featured .article-card__media { height: 245px; }
  .article-card__media { height: 190px; }
  .article-card__body { padding: 20px 18px 21px; }
  .article-card h3, .article-card:not(.article-card--featured) h3 { font-size: 25px; }
  .topic-grid { grid-template-columns: 1fr; gap: 12px; }
  .topic-card { min-height: 210px; }
  .manifesto { grid-template-columns: 1fr; gap: 28px; padding: 48px 25px 52px; }
  .manifesto__aside { grid-column: auto; min-height: 190px; padding-left: 18px; }
  .site-footer { padding-top: 43px; }
  .site-footer__top { flex-direction: column; gap: 44px; padding-bottom: 44px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 35px 24px; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; gap: 5px; }
}

/* Topic cluster hub */
.cluster-page { padding-top: 58px; padding-bottom: 112px; }
.cluster-page__header { max-width: 880px; }
.cluster-page__header h1 { margin: 20px 0 22px; color: var(--ink); font-family: var(--serif); font-size: clamp(52px, 6.4vw, 92px); line-height: 0.93; letter-spacing: -0.06em; }
.cluster-page__header h1 em { color: var(--terracotta-dark); }
.cluster-page__header > p:not(.eyebrow) { max-width: 720px; color: var(--ink-soft); font-size: 18px; line-height: 1.65; }
.cluster-page__path { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin: 52px 0 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 15px 0; color: var(--ink-soft); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.cluster-page__path b { margin-right: 5px; color: var(--terracotta); }
.cluster-page__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.cluster-card { border: 1px solid var(--line); background: rgba(255, 250, 240, 0.44); }
.cluster-card > img { display: block; width: 100%; aspect-ratio: 1.35; object-fit: cover; filter: saturate(0.78); }
.cluster-card__body { display: flex; min-height: 260px; flex-direction: column; padding: 22px; }
.cluster-card__body .eyebrow { margin-bottom: 14px; font-size: 9px; }
.cluster-card__body h2 { margin-bottom: 11px; font-family: var(--serif); font-size: 28px; line-height: 1.02; letter-spacing: -0.04em; }
.cluster-card__body h2 a:hover { color: var(--terracotta-dark); }
.cluster-card__body > p:not(.eyebrow) { margin-bottom: 18px; color: var(--ink-soft); font-size: 13px; line-height: 1.55; }
.cluster-card__body .article-card__link { margin-top: auto; }

@media (max-width: 920px) {
  .cluster-page { padding-top: 43px; }
  .cluster-page__grid { grid-template-columns: 1fr; max-width: 590px; }
}

@media (max-width: 600px) {
  .cluster-page { padding-top: 34px; padding-bottom: 78px; }
  .cluster-page__header h1 { font-size: clamp(44px, 13vw, 68px); }
  .cluster-page__header > p:not(.eyebrow) { font-size: 16px; }
  .cluster-page__path { gap: 9px; line-height: 1.45; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Blog article pages */
.topline__back { color: var(--terracotta-dark); text-decoration: none; }
.topline__back:hover { color: var(--ink); }
.article-page { padding-top: 58px; padding-bottom: 112px; }
.article-page__crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-bottom: 34px; color: var(--ink-soft); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
.article-page__crumbs a { color: var(--terracotta-dark); font-weight: 700; }
.article-page__header { max-width: 920px; }
.article-page__meta { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 19px; color: var(--terracotta-dark); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.article-page__header h1 { max-width: 900px; margin-bottom: 24px; color: var(--ink); font-family: var(--serif); font-size: clamp(50px, 6.1vw, 88px); line-height: 0.94; letter-spacing: -0.055em; }
.article-page__dek { max-width: 760px; margin-bottom: 21px; color: var(--ink-soft); font-size: clamp(16px, 1.5vw, 20px); line-height: 1.58; }
.article-page__byline { display: flex; flex-wrap: wrap; gap: 10px 26px; color: rgba(23, 60, 53, 0.61); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; }
.article-page__draft { display: inline-flex; align-items: center; gap: 9px; margin-top: 25px; border: 1px solid rgba(195, 82, 55, 0.34); padding: 10px 13px; color: var(--terracotta-dark); font-size: 11px; line-height: 1.4; }
.article-page__draft span { color: var(--terracotta); font-size: 11px; }
.article-page__hero { margin: 48px 0 64px; }
.article-page__hero img { display: block; width: 100%; max-height: 560px; object-fit: cover; filter: saturate(0.78); }
.article-page__hero figcaption { margin-top: 9px; color: rgba(23, 60, 53, 0.55); font-size: 10px; }
.article-page__layout { display: grid; grid-template-columns: minmax(170px, 215px) minmax(0, 760px); align-items: start; gap: clamp(38px, 7vw, 105px); max-width: 1080px; margin: 0 auto; }
.article-page__aside { position: sticky; top: 28px; border-top: 1px solid var(--line); padding-top: 16px; }
.article-page__aside > p { margin-bottom: 16px; color: var(--terracotta-dark); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.article-page__aside ol { display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; list-style: none; }
.article-page__aside li { margin: 0; }
.article-page__aside a { color: var(--ink-soft); font-family: var(--serif); font-size: 16px; line-height: 1.14; }
.article-page__aside a:hover { color: var(--terracotta-dark); }
.article-page__content { min-width: 0; color: var(--ink-soft); font-size: 17px; line-height: 1.78; }
.article-page__content > h1:first-child { display: none; }
.article-page__content p { margin-bottom: 21px; }
.article-page__content h2 { scroll-margin-top: 26px; margin: 58px 0 17px; color: var(--ink); font-family: var(--serif); font-size: clamp(31px, 3.2vw, 45px); line-height: 1.02; letter-spacing: -0.045em; }
.article-page__content h3 { scroll-margin-top: 26px; margin: 34px 0 10px; color: var(--ink); font-family: var(--serif); font-size: 25px; line-height: 1.1; letter-spacing: -0.025em; }
.article-page__content ul, .article-page__content ol { margin: 0 0 25px; padding-left: 26px; }
.article-page__content li { margin-bottom: 8px; padding-left: 5px; }
.article-page__content a { color: var(--terracotta-dark); text-decoration: underline; text-decoration-color: rgba(195, 82, 55, 0.35); text-underline-offset: 3px; }
.article-page__content a:hover { text-decoration-color: var(--terracotta-dark); }
.article-page__content blockquote { margin: 30px 0; border-left: 3px solid var(--mustard); padding: 3px 0 3px 24px; color: var(--ink); font-family: var(--serif); font-size: 22px; line-height: 1.35; }
.article-page__content blockquote p { margin: 0; }
.article-page__content strong { color: var(--ink); }
.article-page__content hr { width: 80px; margin: 45px 0; border: 0; border-top: 2px solid var(--mustard); }
.article-page__afterword { margin-top: 64px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 25px 0 17px; }
.article-page__afterword .eyebrow { margin-bottom: 16px; }
.article-page__afterword p:last-child { max-width: 580px; margin-bottom: 7px; font-family: var(--serif); font-size: 23px; line-height: 1.28; }

@media (max-width: 920px) {
  .article-nav { display: none !important; }
  .article-page { padding-top: 43px; }
  .article-page__hero { margin-top: 38px; margin-bottom: 46px; }
  .article-page__layout { grid-template-columns: 1fr; gap: 35px; }
  .article-page__aside { position: static; max-width: 520px; }
  .article-page__aside ol { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 24px; }
}

@media (max-width: 600px) {
  .topline__back { display: none; }
  .article-page { padding-top: 34px; padding-bottom: 78px; }
  .article-page__crumbs { margin-bottom: 25px; line-height: 1.45; }
  .article-page__meta { align-items: flex-start; flex-direction: column; gap: 6px; }
  .article-page__header h1 { font-size: clamp(43px, 13vw, 66px); }
  .article-page__dek { font-size: 16px; }
  .article-page__byline { flex-direction: column; gap: 7px; line-height: 1.45; }
  .article-page__draft { display: block; }
  .article-page__hero { margin-top: 31px; margin-bottom: 39px; }
  .article-page__hero img { min-height: 250px; }
  .article-page__aside ol { grid-template-columns: 1fr; gap: 9px; }
  .article-page__content { font-size: 16px; line-height: 1.72; }
  .article-page__content h2 { margin-top: 45px; font-size: 34px; }
  .article-page__content h3 { font-size: 23px; }
  .article-page__content blockquote { padding-left: 17px; font-size: 20px; }
}
