.content-main {
  background: var(--paper);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 30px;
  color: var(--ink-soft);
  font-size: .86rem;
}

.breadcrumb a {
  color: var(--terracotta-dark);
  text-decoration: none;
}

.topic-hero,
.article-hero {
  padding-top: 64px;
  padding-bottom: 76px;
}

.topic-hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(42px, 7vw, 94px);
  align-items: center;
}

.topic-hero h1,
.article-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6rem);
}

.article-hero h1 {
  max-width: 960px;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  overflow-wrap: anywhere;
}

.topic-lead,
.article-deck {
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  max-width: 760px;
}

.topic-visual {
  min-height: 410px;
  display: grid;
  align-content: end;
  padding: 40px;
  border-radius: 170px 170px 30px 30px;
  background:
    radial-gradient(circle at 68% 25%, rgba(255,255,255,.72) 0 12%, transparent 13%),
    linear-gradient(145deg, #dce9df, #e7e0ef 58%, #f3dfcb);
  box-shadow: var(--shadow);
}

.topic-visual strong {
  display: block;
  max-width: 370px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 1.08;
}

.topic-visual span {
  margin-top: 18px;
  color: var(--ink-soft);
}

.content-band {
  padding-top: 82px;
  padding-bottom: 92px;
  background: var(--cream);
}

.feature-grid,
.next-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.feature-card,
.next-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.feature-card.primary {
  border-color: #b9cec0;
  background: #f5faf6;
}

.feature-card.wide {
  grid-column: 1 / -1;
}

.feature-card h2,
.next-card h3 {
  margin-bottom: 14px;
}

.card-meta,
.article-meta {
  color: var(--ink-soft);
  font-size: .88rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 30px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--forest);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.status-pill.muted {
  background: #ecebe7;
  color: #68706c;
}

.content-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--terracotta-dark);
  font-weight: 800;
  text-decoration: none;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  gap: 80px;
  align-items: start;
  padding-bottom: 110px;
}

.article-body {
  font-size: 1.04rem;
  min-width: 0;
}

.comparison-scroll {
  width: 100%;
  max-width: 100%;
}

.article-body h2 {
  margin-top: 64px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.article-body h3 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.article-body p,
.article-body li {
  color: #304740;
}

.article-body ul,
.article-body ol {
  padding-left: 1.35rem;
}

.article-body li + li {
  margin-top: 9px;
}

.key-points,
.urgent-box,
.practice-box,
.source-note {
  margin: 34px 0;
  padding: 26px 28px;
  border-radius: 18px;
}

.key-points {
  background: var(--sage);
}

.key-points h2 {
  margin-top: 0;
  font-size: 1.55rem;
}

.urgent-box {
  border-left: 6px solid #a83f35;
  background: #fff0ed;
}

.urgent-box strong {
  color: #7d2b25;
}

.practice-box {
  border: 1px solid #c9d7ce;
  background: #f7faf8;
}

.source-note {
  background: var(--cream);
  font-size: .92rem;
}

.comparison-table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  font-size: .94rem;
}

.comparison-table th,
.comparison-table td {
  padding: 15px 16px;
  border: 1px solid #d9ded9;
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background: var(--forest);
  color: white;
}

.comparison-table tr:nth-child(even) td {
  background: #faf9f5;
}

.article-aside {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.aside-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.aside-card strong,
.aside-card span {
  display: block;
}

.aside-card span,
.aside-card p {
  color: var(--ink-soft);
  font-size: .88rem;
}

.author-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: center;
}

.author-card img {
  width: 72px;
  height: 88px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 18px 18px 18px 5px;
}

.download-panel {
  margin-top: 54px;
  padding: 34px;
  border-radius: 24px;
  background: var(--forest);
  color: white;
}

.download-panel p {
  color: #c8d9d2;
}

.download-panel .button {
  margin-top: 10px;
  background: white;
  color: var(--forest);
}

.source-list {
  padding-left: 1.2rem;
  font-size: .9rem;
}

.source-list a {
  color: var(--terracotta-dark);
  overflow-wrap: anywhere;
}

.profile-strip {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 34px;
  align-items: center;
  margin-top: 70px;
  padding: 34px;
  border-radius: 26px;
  background: var(--cream);
}

.profile-strip img {
  width: 180px;
  height: 210px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 80px 80px 20px 20px;
}

.policy-hero {
  max-width: 900px;
  padding-top: 72px;
  padding-bottom: 58px;
}

.policy-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  overflow-wrap: anywhere;
}

.policy-lead {
  color: var(--ink-soft);
  font-size: 1.18rem;
  max-width: 760px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: 70px;
  align-items: start;
  padding-bottom: 110px;
}

.policy-toc {
  position: sticky;
  top: 112px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.policy-toc strong,
.policy-toc a {
  display: block;
}

.policy-toc a {
  margin-top: 9px;
  color: var(--ink-soft);
  font-size: .9rem;
  text-decoration: none;
}

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

.policy-body h2 {
  margin-top: 58px;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.policy-body h2:first-child {
  margin-top: 0;
}

.policy-body p,
.policy-body li {
  color: #304740;
}

.policy-body li + li {
  margin-top: 9px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.principle-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.principle-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
}

.release-banner {
  margin: 34px 0;
  padding: 24px 26px;
  border-left: 5px solid var(--terracotta);
  border-radius: 4px 16px 16px 4px;
  background: var(--cream);
}

.legal-contact-card {
  margin: 26px 0; padding: 26px 28px; border: 1px solid var(--line);
  border-radius: 18px; background: var(--cream);
}

.legal-contact-card p:last-child { margin-bottom: 0; }

.contact-layout {
  display: grid; grid-template-columns: minmax(0, 760px) 290px;
  gap: 70px; align-items: start; padding-bottom: 110px;
}

.contact-form {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px;
}

.form-field { display: grid; gap: 7px; }
.form-field.full, .form-consent, .form-actions, .form-message { grid-column: 1 / -1; }
.form-field label { font-weight: 750; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; border: 1px solid #bdc9c2; border-radius: 12px;
  background: white; color: var(--ink); padding: 13px 14px;
}
.form-field textarea { min-height: 210px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 3px solid rgba(198,110,81,.2); border-color: var(--terracotta-dark);
}
.form-help { color: var(--ink-soft); font-size: .85rem; }
.form-consent { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; }
.form-consent input { margin-top: 5px; }
.form-consent label { color: #304740; font-size: .94rem; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.form-actions button { border: 0; cursor: pointer; }
.form-message { padding: 18px 20px; border-radius: 14px; }
.form-message.success { background: #e2f2e7; color: #174d31; }
.form-message.error { background: #fff0ed; color: #7d2b25; }
.contact-aside { position: sticky; top: 112px; }
.contact-aside .aside-card + .aside-card { margin-top: 16px; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.error-page {
  min-height: 72vh;
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 70px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 100px;
}

.error-code {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(7rem, 18vw, 13rem);
  line-height: .8;
  color: var(--sage-deep);
}

.error-page h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
  padding-top: 66px;
  padding-bottom: 96px;
}

.profile-hero h1 {
  max-width: 790px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 7vw, 6.35rem);
}

.profile-hero-lead {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
}

.profile-portrait-wrap {
  position: relative;
  max-width: 410px;
  justify-self: end;
}

.profile-portrait-wrap::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -24px 28px 38px -24px;
  border-radius: 190px 190px 32px 32px;
  background: var(--sage);
}

.profile-portrait-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 180px 180px 28px 28px;
  box-shadow: var(--shadow);
}

.profile-caption {
  position: relative;
  z-index: 2;
  width: calc(100% - 34px);
  margin: -34px 0 0 34px;
  padding: 18px 20px;
  border-radius: 18px 5px 18px 18px;
  background: var(--forest);
  color: white;
  box-shadow: var(--shadow);
}

.profile-caption strong,
.profile-caption span { display: block; }
.profile-caption span { color: #c8d9d2; font-size: .86rem; }

.profile-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-bottom: 92px;
}

.profile-fact {
  min-height: 170px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}

.profile-fact strong {
  display: block;
  margin-bottom: 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.15;
}

.profile-fact span { color: var(--ink-soft); font-size: .9rem; }

.profile-story {
  padding-top: 96px;
  padding-bottom: 96px;
  background: var(--cream);
}

.profile-story-grid {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

.profile-story-intro { position: sticky; top: 120px; }
.profile-story-intro p { color: var(--ink-soft); }
.profile-story-copy { max-width: 720px; font-size: 1.05rem; }
.profile-story-copy p { color: #304740; }
.profile-story-copy h3 { margin-top: 46px; font-size: clamp(1.75rem, 3vw, 2.4rem); }

.profile-principles {
  padding-top: 104px;
  padding-bottom: 104px;
}

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

.profile-principle {
  padding: 30px;
  border-radius: 22px;
  background: var(--forest);
  color: white;
}

.profile-principle:nth-child(2) { background: #e8eee8; color: var(--ink); }
.profile-principle:nth-child(3) { background: #f2e2d8; color: var(--ink); }
.profile-principle span { display: block; margin-bottom: 36px; opacity: .68; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.profile-principle h3 { font-size: 1.8rem; }
.profile-principle p { margin-bottom: 0; opacity: .8; }

.profile-transparency {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-bottom: 104px;
}

.profile-transparency article {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.profile-transparency article:first-child { background: #f5faf6; }
.profile-transparency article:last-child { background: #fff8f3; }
.profile-transparency h2 { font-size: clamp(2rem, 4vw, 3rem); }
.profile-transparency p { color: var(--ink-soft); }

@media (max-width: 900px) {
  .topic-hero,
  .article-layout {
    grid-template-columns: 1fr;
  }

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

  .policy-layout,
  .contact-layout,
  .error-page,
  .profile-hero,
  .profile-story-grid {
    grid-template-columns: 1fr;
  }

  .profile-portrait-wrap { justify-self: start; }
  .profile-facts { grid-template-columns: repeat(2, 1fr); }
  .profile-story-intro { position: static; }
  .profile-principles-grid { grid-template-columns: 1fr; }

  .policy-toc {
    position: static;
  }
}

@media (max-width: 620px) {
  .topic-hero,
  .article-hero {
    padding-top: 44px;
    padding-bottom: 58px;
  }

  .topic-hero h1,
  .article-hero h1 {
    font-size: clamp(2.45rem, 11.5vw, 3.5rem);
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .topic-visual {
    min-height: 330px;
    padding: 28px;
  }

  .feature-grid,
  .next-grid,
  .article-aside,
  .profile-strip {
    grid-template-columns: 1fr;
  }

  .comparison-scroll {
    overflow-x: auto;
  }

  .comparison-table {
    min-width: 620px;
  }

  .profile-strip img {
    width: 145px;
    height: 175px;
  }

  .policy-hero {
    padding-top: 48px;
  }

  .policy-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.25rem);
  }

  .contact-form { grid-template-columns: 1fr; }

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

  .profile-hero { padding-top: 44px; padding-bottom: 72px; }
  .profile-hero h1 { font-size: clamp(2.65rem, 13vw, 4rem); hyphens: auto; }
  .profile-portrait-wrap { max-width: 330px; }
  .profile-facts,
  .profile-transparency { grid-template-columns: 1fr; }
  .profile-fact { min-height: 0; }
  .profile-story,
  .profile-principles { padding-top: 76px; padding-bottom: 76px; }
}
