:root {
  --brand-blue: #2a3f9c;
  --green: #41b85c;
  --pink: #f03783;
  --orange: #f9ab4c;
  --sky: #0dade3;
  --purple: #7570b4;
  --plum: #ab5885;
  --blush: #f8bfd5;
  --coral: #f17f66;
  --button: #11131f;
  --button-hover: #11131f;
  --sage: #dce9dc;
  --gold: #ffd483;
  --cream: #fff7ec;
  --ink: #15182b;
  --muted: #626a7f;
  --paper: #fff8f0;
  --soft: #f6f8f2;
  --line: rgba(21, 24, 43, 0.13);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fffdf9;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
p, h1, h2, h3 { margin-top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  max-width: var(--max);
  min-height: 78px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-logo {
  width: 128px;
  min-width: 108px;
  height: 74px;
  display: flex;
  align-items: center;
  background: transparent;
}

.site-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #1c2444;
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.nav-links a { opacity: 0.84; }
.nav-links a:hover, .nav-links a.active { color: var(--brand-blue); opacity: 1; }

.language-switch {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.language-switch a {
  padding: 7px 8px;
  border-radius: 999px;
}

.language-switch a:hover,
.language-switch a.active {
  color: #fff;
  background: var(--brand-blue);
}

.lang-en h1,
.lang-en h2,
.lang-en h3 {
  letter-spacing: -0.025em;
}

.has-menu {
  position: relative;
  padding: 24px 0;
  margin: -24px 0;
}

.drop {
  position: absolute;
  top: 66px;
  left: -18px;
  width: 254px;
  padding: 12px;
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(20, 25, 50, 0.14);
}

.drop a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: #253052;
  white-space: normal;
}

.drop a:hover { background: var(--soft); }
.has-menu:hover .drop { display: block; }

.hero {
  min-height: 620px;
  position: relative;
  display: grid;
  align-items: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(36, 22, 32, 0.68), rgba(36, 22, 32, 0.3) 58%, rgba(36, 22, 32, 0.1)),
    linear-gradient(0deg, rgba(255, 188, 126, 0.18), rgba(255, 255, 255, 0.02));
}

.hero-inner, .section-inner, .footer-grid { max-width: var(--max); margin: 0 auto; }
.hero-inner { width: 100%; padding: 94px 24px 112px; }

.kicker {
  margin-bottom: 12px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 900;
}

.hero .kicker { color: var(--orange); }

h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: 60px;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 40px;
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.28;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 19px;
}

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1.5px solid var(--button);
  border-radius: 6px;
  color: var(--button);
  background: rgba(255, 255, 255, 0.56);
  font-weight: 900;
  line-height: 1.2;
}

.btn:hover {
  color: #fff !important;
  border-color: var(--button-hover);
  background: var(--button-hover);
}

.btn:active,
.btn:focus-visible {
  color: #fff !important;
  border-color: var(--button-hover);
  background: var(--button-hover);
  outline: none;
}
.btn-primary, .btn-outline, .btn-blue, .btn-plain {
  color: var(--button);
  border-color: var(--button);
  background: rgba(255, 255, 255, 0.56);
}
.btn-plain {
  min-height: 38px;
  padding: 9px 14px;
}

.home-opening {
  background: #fffdf9;
}

.announcement {
  padding: 34px 24px 30px;
  text-align: center;
  color: var(--ink);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.3;
}

.announcement span {
  color: #ba4f32;
}

.entry-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.entry-panel {
  min-height: 360px;
  padding: 58px 50px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  color: #0c1228;
}

.entry-panel:nth-child(1) { background: #ef7f62; }
.entry-panel:nth-child(2) { background: var(--sage); }
.entry-panel:nth-child(3) { background: var(--gold); }

.entry-icon {
  width: 82px;
  height: 82px;
  margin-bottom: 26px;
  color: #0c1228;
}

.entry-panel h2 {
  margin-bottom: 18px;
  font-size: 36px;
  text-transform: none;
}

.entry-panel p {
  max-width: 390px;
  margin-bottom: 30px;
  color: rgba(12, 18, 40, 0.78);
  font-size: 18px;
  flex: 1;
}

.entry-panel .btn {
  width: 154px;
  margin-top: auto;
  background: transparent;
}

.entry-panel .btn:hover,
.entry-panel .btn:active,
.entry-panel .btn:focus-visible {
  color: #fff !important;
  background: var(--button-hover);
}

.home-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.home-story-media {
  overflow: hidden;
  border-radius: 8px;
}

.home-story-media img {
  aspect-ratio: 16 / 12;
  height: 100%;
  object-fit: cover;
}

.quick-links {
  max-width: var(--max);
  margin: -78px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 24px 50px rgba(19, 25, 50, 0.14);
}

.quick-card {
  min-height: 160px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
}
.quick-card strong { display: block; margin-bottom: 8px; font-size: 22px; line-height: 1.25; }
.quick-card span { color: rgba(21,24,43,.72); font-size: 15px; }
.quick-card:nth-child(1) { background: var(--orange); }
.quick-card:nth-child(2) { background: #dbe8e4; }
.quick-card:nth-child(3) { color: #fff; background: var(--brand-blue); }
.quick-card:nth-child(3) span { color: rgba(255,255,255,.84); }

.section { padding: 104px 24px; }
.section.compact { padding-top: 76px; padding-bottom: 76px; }
.section.paper { background: var(--paper); }
.section.soft { background: var(--soft); }
.section.dark {
  color: var(--ink);
  background: linear-gradient(180deg, #fff7ec 0%, #f8fbf1 100%);
}
.section.dark .lead, .section.dark p { color: var(--muted); }
.section.dark .card {
  color: var(--ink);
  background: #fff;
}
.section.dark .card p { color: var(--muted); }

.intro { max-width: 840px; margin: 0 auto; text-align: center; }
.lead { color: var(--muted); font-size: 18px; }

.page-hero {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 247, 236, 0.96), rgba(238, 249, 239, 0.94)),
    #fff7ec;
  padding: 74px 24px 70px;
}

.page-hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: block;
}

.page-hero-copy { max-width: 840px; padding: 0; }
.page-hero h1 { font-size: 52px; }
.page-hero p { max-width: 760px; color: var(--muted); font-size: 18px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.mt { margin-top: 46px; }

.card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card > a {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.card-image { aspect-ratio: 4 / 5; overflow: hidden; background: #e9eef4; }
.card-image.wide { aspect-ratio: 16 / 10; }
.card-image img { height: 100%; object-fit: cover; }
.card-body {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.card p { color: var(--muted); font-size: 15px; }
.card-body p { flex: 1; }
.card-body .btn { width: 132px; margin-top: 16px; }
.swatch { display: inline-block; width: 42px; height: 5px; margin-bottom: 16px; border-radius: 2px; background: var(--brand-blue); }

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}
.split + .split { margin-top: 86px; }
.split.reverse { grid-template-columns: 1.05fr 0.95fr; }
.split.reverse .split-media { order: 2; }
.split-media { overflow: hidden; border-radius: 8px; background: #eef1f6; }
.split-media img { aspect-ratio: 16 / 11; height: 100%; object-fit: cover; }
.split-copy { max-width: 560px; }
.split-copy p { color: var(--muted); font-size: 17px; }

.editorial-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.editorial-band.reverse .editorial-media {
  order: 2;
}

.editorial-media {
  overflow: hidden;
  background: #eef1f6;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-copy {
  padding: 86px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #dce9dc;
}

.editorial-copy.gold {
  background: var(--gold);
}

.editorial-copy.blush {
  background: #ffe7f1;
}

.editorial-copy.sky {
  background: #dcecf2;
}

.editorial-copy p {
  color: rgba(21, 24, 43, 0.78);
  font-size: 18px;
}

.editorial-copy .btn {
  width: 154px;
  margin-top: 20px;
  background: transparent;
}

.about-story {
  padding: 72px 24px 104px;
  background: var(--paper);
}

.about-story-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.about-story-image {
  overflow: hidden;
  background: #eef1f6;
}

.about-story-image img {
  width: 100%;
  aspect-ratio: 16 / 6;
  height: 100%;
  object-fit: cover;
}

.about-story-copy {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 86px;
  align-items: start;
  padding-top: 66px;
}

.about-story-title h2 {
  max-width: 520px;
  margin-bottom: 28px;
  font-size: 50px;
  line-height: 1.08;
}

.about-story-title p,
.about-story-text p {
  color: var(--muted);
  font-size: 18px;
}

.about-story-text {
  display: grid;
  gap: 28px;
}

.article-list {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  border-top: 1px solid rgba(21, 24, 43, 0.24);
}

.article-list li {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(21, 24, 43, 0.2);
}

.article-list a {
  color: var(--ink);
  font-weight: 850;
  line-height: 1.45;
}

.article-list a:hover,
.article-list a:focus-visible {
  color: var(--brand-blue);
}

.article-meta {
  color: rgba(21, 24, 43, 0.58);
  font-size: 14px;
}

.resource-topic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.resource-content-block {
  margin-top: 76px;
  padding-top: 34px;
  border-top: 2px solid var(--ink);
}

.resource-content-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.resource-content-head h2 {
  margin-bottom: 10px;
  font-size: 42px;
}

.resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.article-index {
  margin-top: 52px;
  border-top: 1px solid var(--line);
}

.article-row {
  border-bottom: 1px solid var(--line);
}

.article-row a {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px 0;
}

.article-thumb {
  overflow: hidden;
  border-radius: 8px;
  background: #eef1f6;
}

.article-thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: 100%;
  object-fit: cover;
}

.article-row h3 {
  margin-bottom: 8px;
  font-size: 25px;
}

.article-row p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.article-showcase-block {
  margin-top: 48px;
  padding: 48px;
  border-top: 0;
  background: transparent;
  color: var(--ink);
}

.article-showcase-head {
  margin-bottom: 40px;
}

.article-showcase-head .kicker {
  color: #c65032;
}

.article-showcase-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 74px;
  line-height: 1.02;
}

.article-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.75fr);
  gap: 56px;
  align-items: start;
}

.article-showcase-side {
  display: grid;
  gap: 42px;
}

.article-showcase-card {
  display: block;
  color: var(--ink);
}

.article-showcase-card img {
  width: 100%;
  object-fit: cover;
  background: #dce8dd;
}

.article-showcase-feature img {
  aspect-ratio: 16 / 12;
}

.article-showcase-small img {
  aspect-ratio: 16 / 7;
}

.article-showcase-card h3 {
  margin: 22px 0 12px;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.22;
}

.article-showcase-small h3 {
  font-size: 24px;
}

.article-showcase-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.article-showcase-small p {
  font-size: 16px;
}

.article-showcase-card:hover h3,
.article-showcase-card:focus-visible h3 {
  color: #c65032;
}

.case-note {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.case-note h3 {
  margin: 8px 0 12px;
  font-size: 25px;
  line-height: 1.25;
}

.case-note p:last-child {
  margin-bottom: 0;
}

.case-video {
  margin-top: 24px;
}

.case-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #111;
}

.case-video .btn {
  margin-top: 16px;
}

.breadcrumb-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--brand-blue);
  font-weight: 850;
}

.article-page {
  padding: 78px 24px 100px;
  background: var(--paper);
}

.article-shell {
  max-width: 920px;
  margin: 0 auto;
}

.article-header {
  max-width: 840px;
}

.article-header h1 {
  margin-bottom: 18px;
  font-size: 48px;
}

.article-header .article-meta {
  display: block;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 15px;
}

.article-hero-media {
  overflow: hidden;
  margin: 34px 0 54px;
  border-radius: 8px;
  background: #eef1f6;
}

.article-hero-media img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
}

.article-content {
  max-width: 760px;
}

.article-content h2 {
  margin-top: 34px;
  margin-bottom: 14px;
  font-size: 28px;
}

.article-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.86;
}

.article-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 56px;
}

.article-advisory {
  max-width: 760px;
  margin: 0 0 32px;
  padding: 18px 20px;
  color: var(--ink);
  background: #e8f1e5;
  border-left: 4px solid #41b85c;
  line-height: 1.7;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.detail-link-list {
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

.detail-link-row {
  min-height: 54px;
  padding: 13px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-weight: 850;
}

.detail-link-row span:last-child {
  font-size: 22px;
  line-height: 1;
}

.detail-link-row:hover,
.detail-link-row:focus-visible {
  color: #c65032;
}

.care-resource-block {
  margin-top: 96px;
  padding-top: 64px;
  border-top: 2px solid var(--ink);
}

.care-resource-head {
  max-width: 800px;
  margin: 0 auto 44px;
  text-align: center;
}

.care-resource-head h2 {
  font-size: 48px;
}

.care-resource-head p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.care-resource-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px;
}

.care-resource-card {
  display: block;
}

.care-resource-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.care-resource-card h3 {
  margin: 22px 0 12px;
  font-size: 27px;
}

.care-resource-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.care-resource-card:hover h3,
.care-resource-card:focus-visible h3 {
  color: #c65032;
}

.video-gallery {
  margin-top: 34px;
}

.video-gallery h3 {
  margin-bottom: 20px;
  font-size: 24px;
}

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

.video-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.video-item video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #111;
}

.video-caption {
  padding: 12px 14px 14px;
  color: var(--ink);
  font-weight: 850;
}

.maori-video-section {
  margin-top: 96px;
  padding-top: 34px;
  border-top: 2px solid var(--ink);
}

.featured-video {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: center;
  margin-bottom: 78px;
}

.featured-video-player {
  overflow: hidden;
  background: #111;
}

.featured-video-player video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #111;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #17213b, #2a3f9c);
  color: #fff;
  text-align: center;
  font-weight: 700;
}

.featured-video-copy .kicker {
  color: var(--rust);
}

.featured-video-copy h2 {
  margin-bottom: 22px;
  font-size: 52px;
  line-height: 1.05;
}

.featured-video-copy p {
  color: var(--muted);
  font-size: 18px;
}

.video-library-head {
  margin-bottom: 34px;
}

.video-library-head h2 {
  font-size: 42px;
}

.video-library-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 42px;
}

.resource-video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #111;
}

.resource-video-card h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 22px;
}

.resource-video-card .article-meta {
  color: var(--ink);
  font-weight: 850;
}

.podcast-intro {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 46px;
}

.podcast-cover {
  overflow: hidden;
  border-radius: 8px;
  background: #eef1f6;
}

.podcast-cover img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.podcast-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.section-head {
  margin-bottom: 30px;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: 42px;
  line-height: 1.12;
}

.section-head p {
  max-width: 780px;
  color: var(--muted);
  font-size: 17px;
}

.compact-head {
  max-width: 840px;
}

.niudai-articles {
  margin-top: 56px;
  padding-top: 46px;
  border-top: 1px solid var(--line);
}

.podcast-card {
  min-height: 184px;
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr) 170px;
  gap: 24px;
  align-items: stretch;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.podcast-card img {
  width: 148px;
  height: 148px;
  object-fit: cover;
  border-radius: 6px;
}

.podcast-card-body {
  min-width: 0;
}

.podcast-card h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.3;
}

.podcast-card p {
  color: var(--muted);
  font-size: 15px;
}

.podcast-card-action {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.podcast-card .btn {
  width: 154px;
  min-width: 154px;
  margin: 0;
}

.article-card {
  background: #fffdf8;
}

.feature-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  display: grid;
  gap: 0;
}
.feature-list li {
  position: relative;
  padding: 13px 0 13px 26px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent, var(--brand-blue));
}

.meta {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.meta-item {
  padding: 14px 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 750;
}

.quote {
  margin-top: 22px;
  padding: 26px;
  color: var(--ink);
  background: #fff;
  border-left: 6px solid var(--accent, var(--pink));
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(20, 25, 50, 0.08);
}
.quote p { color: var(--ink); }
.quote cite { display: block; margin-top: 14px; color: var(--muted); font-style: normal; }

.program-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
}
.program-strip a {
  min-height: 126px;
  padding: 18px;
  display: flex;
  align-items: end;
  color: var(--ink);
  font-weight: 900;
}

.program-title-band {
  padding: 82px 24px 76px;
  background: linear-gradient(90deg, #fff7ec, #eef7ef);
}

.program-title-inner,
.program-cover-inner,
.program-overview-inner,
.program-focus-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.program-title-band .kicker {
  color: var(--program-accent);
}

.program-title-band h1 {
  max-width: 960px;
  margin: 0;
  font-size: 64px;
}

.program-cover {
  padding: 0 24px;
  background: var(--paper);
}

.program-cover-inner {
  overflow: hidden;
}

.program-cover img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.program-overview {
  padding: 82px 24px 88px;
  text-align: center;
  background: var(--paper);
}

.program-overview-inner {
  max-width: 880px;
}

.program-overview .kicker,
.program-focus .kicker,
.program-details-head .kicker {
  color: var(--program-accent);
}

.program-overview p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.8;
}

.program-focus {
  padding: 0 24px 96px;
  background: var(--paper);
}

.program-focus-head,
.program-details-head {
  margin-bottom: 40px;
  text-align: center;
}

.program-focus-grid {
  display: grid;
  grid-template-columns: repeat(var(--focus-count), minmax(0, 1fr));
  gap: 22px;
}

.program-focus-grid.count-1 {
  max-width: 760px;
  margin: 0 auto;
}

.program-focus-grid.count-2 {
  max-width: 940px;
  margin: 0 auto;
}

.program-focus-card {
  min-height: 310px;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--focus-color);
}

.program-focus-number {
  margin-bottom: 48px;
  font-size: 14px;
  font-weight: 900;
}

.program-focus-card h3 {
  font-size: 28px;
}

.program-focus-card p {
  margin: 0;
  color: rgba(21, 24, 43, 0.76);
  font-size: 16px;
}

.program-details {
  padding-top: 94px;
  background: #fffdf9;
}

.program-details .section-inner {
  padding-bottom: 104px;
}

.program-details .split {
  align-items: start;
}

.program-details .split-media,
.program-details .split-copy {
  align-self: start;
}

.editorial-copy .btn,
.entry-panel .btn,
.program-focus-card .btn {
  color: var(--button);
  border-color: var(--button);
  background: transparent;
}

.editorial-copy .btn:hover,
.editorial-copy .btn:active,
.editorial-copy .btn:focus-visible,
.entry-panel .btn:hover,
.entry-panel .btn:active,
.entry-panel .btn:focus-visible,
.program-focus-card .btn:hover,
.program-focus-card .btn:active,
.program-focus-card .btn:focus-visible {
  color: #fff !important;
  border-color: var(--button-hover);
  background: var(--button-hover);
}

.resource-card {
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}
.resource-card .resource-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef1f6;
}
.resource-card .resource-image img {
  height: 100%;
  object-fit: cover;
}
.resource-card .resource-body {
  flex: 1;
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.resource-card p { flex: 1; color: var(--muted); }
.resource-card .btn { width: 168px; margin-top: 18px; }

.contact-flow {
  max-width: 980px;
  margin: 0 auto;
}

.contact-copy {
  max-width: 760px;
  margin-bottom: 34px;
}

.contact-list {
  border-top: 1px solid var(--line);
}

.contact-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row strong {
  color: var(--ink);
}

.contact-row span {
  color: var(--muted);
}

.qr-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.qr-wrap img {
  width: 132px;
  height: 132px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
}

.qr-placeholder {
  width: 132px;
  height: 132px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: rgba(255,255,255,.5);
  border: 1px dashed var(--line);
}

.contact-bridge {
  margin-top: 54px;
  overflow: hidden;
  border-radius: 8px;
  background: #eef1f6;
}

.contact-bridge img {
  width: 100%;
  aspect-ratio: 16 / 6;
  height: 100%;
  object-fit: cover;
}

.idea-section {
  padding-top: 58px;
}

.mock-form {
  margin-top: 32px;
  padding-top: 4px;
  background: transparent;
  border: 0;
}

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

.field.full {
  grid-column: 1 / -1;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}
.field div,
.field input,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: #98a0b3;
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f8fafc;
}
.field textarea { min-height: 126px; resize: vertical; }
.mock-form button { border: 0; cursor: pointer; }
.mock-form button:disabled { cursor: wait; opacity: .65; }
.form-status { min-height: 1.5em; margin-top: 16px; font-weight: 750; }

.cta {
  color: var(--ink);
  background: linear-gradient(90deg, #ffe7f1, #ffe1a8);
}
.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.cta p { max-width: 760px; margin-bottom: 0; color: rgba(21,24,43,.76); font-size: 18px; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.cta .btn, .cta .btn-outline {
  color: var(--button);
  background: transparent;
  border-color: var(--button);
}

.cta .btn:hover,
.cta .btn:active,
.cta .btn:focus-visible,
.cta .btn-outline:hover,
.cta .btn-outline:active,
.cta .btn-outline:focus-visible {
  color: #fff !important;
  background: var(--button-hover);
  border-color: var(--button-hover);
}

.site-footer {
  padding: 56px 24px;
  color: var(--muted);
  background: #fff8f0;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .9fr;
  gap: 38px;
}
.footer-logo {
  width: 230px;
  height: 78px;
  margin-bottom: 16px;
}
.footer-logo img { height: 100%; object-fit: contain; }
.footer-grid h3 { color: var(--brand-blue); font-size: 16px; }
.footer-grid p, .footer-grid a { display: block; margin: 0 0 8px; color: var(--muted); font-size: 14px; }

@media (max-width: 980px) {
  .nav { align-items: flex-start; flex-direction: column; gap: 12px; }
  .nav-links { width: 100%; flex-wrap: wrap; gap: 12px 18px; }
  .language-switch { position: absolute; top: 26px; right: 24px; }
  .has-menu { padding: 0; margin: 0; }
  .drop,
  .has-menu:hover .drop { display: none; }
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .entry-panels, .home-story, .quick-links, .grid-3, .grid-2, .split, .split.reverse, .editorial-band, .page-hero-grid, .contact-layout, .cta-panel, .footer-grid { grid-template-columns: 1fr; }
  .quick-links { margin: 0; border: 0; }
  .split.reverse .split-media { order: 0; }
  .editorial-band.reverse .editorial-media { order: 0; }
  .about-story-copy { gap: 28px; padding-top: 42px; }
  .about-story-image img { aspect-ratio: 16 / 8; }
  .program-strip { grid-template-columns: repeat(2, 1fr); }
  .program-focus-grid { grid-template-columns: 1fr; }
  .program-focus-card { min-height: 0; }
  .program-focus-number { margin-bottom: 28px; }
  .article-row a { grid-template-columns: 1fr; }
  .article-showcase-block { padding: 40px 28px; }
  .article-showcase-head h2 { font-size: 54px; }
  .article-showcase-grid { grid-template-columns: 1fr; gap: 42px; }
  .video-grid, .podcast-grid, .podcast-intro { grid-template-columns: 1fr; }
  .featured-video, .video-library-grid { grid-template-columns: 1fr; }
  .care-resource-grid { grid-template-columns: 1fr; max-width: 720px; }
  .featured-video { gap: 28px; }
  .cta-actions { justify-content: flex-start; }
}

@media (max-width: 760px) {
  .about-story-copy { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .site-logo { width: 112px; min-width: 112px; height: 64px; }
  .hero { min-height: 650px; }
  .announcement { padding: 28px 20px 24px; font-size: 18px; }
  .entry-panel { min-height: 300px; padding: 44px 24px 38px; }
  .entry-panel h2 { font-size: 30px; }
  .entry-panel p { font-size: 16px; }
  .contact-row { grid-template-columns: 1fr; gap: 8px; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 86px 20px 100px; }
  h1 { font-size: 34px; }
  .hero-copy, .lead, .split-copy p, .cta p { font-size: 16px; }
  .section { padding: 72px 20px; }
  .section.compact { padding-top: 60px; padding-bottom: 60px; }
  .page-hero { padding: 52px 20px 50px; }
  .program-title-band { padding: 56px 20px 50px; }
  .program-title-band h1 { font-size: 40px; }
  .program-cover { padding: 0 20px; }
  .program-cover img { aspect-ratio: 16 / 10; }
  .program-overview { padding: 58px 20px 64px; }
  .program-overview p { font-size: 16px; }
  .program-focus { padding: 0 20px 72px; }
  .program-focus-card { padding: 30px 24px; }
  .program-details { padding-top: 70px; }
  .about-story { padding: 56px 20px 72px; }
  .about-story-title h2 { font-size: 34px; }
  .about-story-title p, .about-story-text p { font-size: 16px; }
  .card-image { aspect-ratio: 16 / 11; }
  .article-page { padding: 54px 20px 78px; }
  .article-header h1 { font-size: 34px; }
  .article-content p { font-size: 16px; }
  .article-showcase-block { padding: 34px 20px; }
  .article-showcase-head h2 { font-size: 38px; }
  .article-showcase-card h3 { font-size: 24px; }
  .article-showcase-card p { font-size: 16px; }
  .article-showcase-small img { aspect-ratio: 16 / 10; }
  .care-resource-block { margin-top: 72px; padding-top: 48px; }
  .care-resource-head h2 { font-size: 34px; }
  .care-resource-grid { gap: 40px; }
  .care-resource-card h3 { font-size: 23px; }
  .podcast-card { min-height: 0; grid-template-columns: 92px minmax(0, 1fr); gap: 14px; padding: 14px; }
  .podcast-card img { width: 92px; height: 92px; }
  .podcast-card h3 { font-size: 18px; }
  .podcast-card-action { grid-column: 2; justify-content: flex-start; }
  .resource-content-head h2, .video-library-head h2 { font-size: 32px; }
  .featured-video-copy h2 { font-size: 34px; }
  .video-library-grid { gap: 34px; }
}
