:root {
  color-scheme: light;
  --ink: #132322;
  --muted: #58706d;
  --line: #dbe6e3;
  --paper: #fbfdfb;
  --soft: #eef6f2;
  --brand: #174d48;
  --brand-2: #2c746b;
  --accent: #b64b35;
  --gold: #d7a542;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(22, 61, 58, 0.13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 253, 251, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 230px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: var(--white);
  border-radius: 50%;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.94rem;
}

nav a,
.nav-more summary {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

nav a:hover,
.nav-more summary:hover {
  color: var(--brand);
}

.nav-priority,
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-more {
  position: relative;
}

.nav-more summary {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  list-style: none;
}

.nav-more summary::-webkit-details-marker {
  display: none;
}

.nav-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(82vw, 340px);
  justify-content: flex-start;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.nav-button {
  color: var(--white);
  background: var(--brand);
  padding: 10px 14px;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: clamp(620px, 86vh, 860px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 253, 251, 0.98) 0%, rgba(251, 253, 251, 0.88) 31%, rgba(251, 253, 251, 0.36) 58%, rgba(251, 253, 251, 0.06) 100%);
}

.hero-copy {
  position: relative;
  max-width: 720px;
  padding: 100px clamp(22px, 7vw, 90px) 90px;
}

.hero-age {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--brand);
}

.hero-age span {
  display: inline-grid;
  place-items: center;
  width: clamp(92px, 11vw, 150px);
  height: clamp(92px, 11vw, 150px);
  color: var(--white);
  background: var(--brand);
  border-radius: 50%;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 18px 45px rgba(22, 61, 58, 0.22);
}

.hero-age small {
  max-width: 7ch;
  color: var(--accent);
  font-size: clamp(1.2rem, 2.3vw, 2.2rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.55rem, 5.6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 12ch;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.13rem;
  line-height: 1.22;
}

.lede {
  max-width: 660px;
  margin: 24px 0 0;
  color: #2e4744;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary,
.button.dark {
  background: var(--brand);
  color: var(--white);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand);
  border: 1px solid var(--line);
}

.button.share-button {
  background: var(--accent);
  color: var(--white);
}

.share-status {
  min-height: 1.5em;
  margin: 12px 0 0;
  color: var(--brand);
  font-weight: 800;
}

.notice-band {
  padding: 18px clamp(22px, 7vw, 90px);
  background: #fff4e4;
  border-top: 1px solid #efd4a7;
  border-bottom: 1px solid #efd4a7;
  color: #563c16;
}

.section,
.band {
  padding: clamp(60px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.band {
  background: var(--soft);
}

.container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
}

.prose p:first-child,
.red-list p:first-child {
  margin-top: 0;
}

.prose p,
.section-heading p,
.red-list p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 740px;
}

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

.check-grid article,
.mini-grid article,
.timeline article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(22, 61, 58, 0.06);
}

.check-grid span,
.timeline span {
  display: inline-flex;
  color: var(--brand-2);
  font-weight: 900;
  margin-bottom: 14px;
}

.check-grid p,
.mini-grid p,
.timeline p,
.cta-panel p {
  margin: 0;
  color: var(--muted);
}

.question-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 70px);
}

.question-layout > div:first-child p {
  color: var(--muted);
  font-size: 1.05rem;
}

.question-list {
  display: grid;
  gap: 12px;
}

.question-list button {
  text-align: left;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 8px 26px rgba(22, 61, 58, 0.05);
}

.question-list button.active {
  border-color: var(--brand-2);
  background: #ecf8f5;
}

.red-section {
  background: #fffaf5;
}

.cv-section {
  background: #fbfdfb;
}

.story-section {
  background: #f3f8f5;
}

.story-box {
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--accent);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(22, 61, 58, 0.06);
}

.red-list {
  border-left: 5px solid var(--accent);
  padding-left: 24px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 26px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), #225f6f);
}

.cta-panel p {
  color: #d9efea;
}

.sources-section {
  background: #f6f8f7;
}

.sources-section ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 880px) {
  .site-footer,
  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    flex-wrap: nowrap;
    gap: 10px;
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand small {
    display: none;
  }

  nav {
    flex: 1;
    justify-content: flex-end;
    gap: 8px;
    font-size: 0.86rem;
  }

  .nav-priority {
    gap: 8px;
  }

  .nav-button,
  .nav-more summary {
    min-height: 38px;
    padding: 8px 10px;
  }

  .hero {
    min-height: 560px;
    align-items: end;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(251, 253, 251, 0.18) 0%, rgba(251, 253, 251, 0.88) 34%, rgba(251, 253, 251, 1) 100%);
  }

  .hero-copy {
    padding: 82px 20px 46px;
  }

  .hero-age {
    margin-bottom: 14px;
  }

  .hero-age span {
    width: 86px;
    height: 86px;
    font-size: 3rem;
  }

  .hero-age small {
    font-size: 1.15rem;
  }

  .split,
  .question-layout,
  .check-grid,
  .mini-grid,
  .timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 510px;
  }

  .hero-copy {
    padding: 68px 18px 36px;
  }

  .hero-age {
    margin-bottom: 10px;
  }

  .hero-age span {
    width: 72px;
    height: 72px;
    font-size: 2.55rem;
  }

  .hero-age small {
    font-size: 1rem;
  }

  h1 {
    font-size: clamp(2.15rem, 12vw, 3.4rem);
  }

  .lede {
    font-size: 1rem;
  }

  .brand strong {
    font-size: 0.94rem;
  }
}

@media print {
  .site-header,
  .hero,
  .notice-band,
  .site-footer,
  .button {
    display: none;
  }

  .section,
  .band {
    padding: 20px 0;
  }
}
