:root {
  --coral: #d96869;
  --cream: #efead7;
  --ink: #0b0b0b;
  --white: #ffffff;
  --soft: #e7e5e1;
  --display: "Clash Display", "Arial Black", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1160px, calc(100% - 40px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 6.8vw, 6.8rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.4vw, 4.7rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
}

p:last-child {
  margin-bottom: 0;
}

summary,
button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

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

.section-pad {
  padding-block: clamp(82px, 10vw, 140px);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--cream);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.textured {
  position: relative;
  isolation: isolate;
}

.textured::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.18) 0.75px, transparent 0.75px),
    radial-gradient(rgba(11, 11, 11, 0.07) 0.6px, transparent 0.6px);
  background-position: 0 0, 3px 3px;
  background-size: 5px 5px, 7px 7px;
  content: "";
  opacity: 0.48;
  pointer-events: none;
}

.section-kicker,
.eyebrow {
  margin-bottom: 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 2px solid var(--ink);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 rgba(11, 11, 11, 0.24);
}

.button-dark {
  color: var(--cream);
  background: var(--ink);
}

.button-cream {
  color: var(--ink);
  background: var(--cream);
}

.button-small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 0.88rem;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  width: 100%;
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 34px;
}

.brand {
  display: block;
  flex: 0 0 auto;
}

.brand img {
  width: 270px;
}

nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 26px;
}

nav a {
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

nav a:hover,
.audience-card a:hover,
.footer-contact a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 88px);
  padding-block: clamp(70px, 8vw, 115px);
  background: var(--cream);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  background: var(--coral);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 620px;
  align-items: center;
  gap: clamp(30px, 4vw, 54px);
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
}

.hero-copy .eyebrow {
  color: var(--coral);
}

.hero-support {
  max-width: 650px;
  margin-bottom: 32px;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.hero-actions > span {
  max-width: 220px;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-portrait {
  position: relative;
  display: flex;
  width: min(430px, 100%);
  align-self: end;
  justify-self: center;
  align-items: end;
  justify-content: center;
}

.hero-portrait picture {
  width: 100%;
}

.hero-portrait picture img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-identity {
  position: absolute;
  right: -20px;
  bottom: 28px;
  display: flex;
  min-width: 245px;
  padding: 14px 18px;
  color: var(--cream);
  background: var(--ink);
  flex-direction: column;
  line-height: 1.25;
}

.hero-identity strong {
  font-family: var(--display);
  font-size: 1.2rem;
}

.hero-identity span {
  font-size: 0.82rem;
}

.trust-line {
  color: var(--cream);
  background: var(--ink);
}

.trust-inner {
  display: grid;
  padding-block: 38px;
  align-items: center;
  gap: 28px;
  grid-template-columns: 62px 1fr;
}

.trust-inner h2 {
  margin-bottom: 4px;
  font-size: clamp(1.6rem, 3.3vw, 3rem);
}

.trust-inner p {
  color: rgba(239, 234, 215, 0.78);
}

.policy-check {
  background: var(--cream);
}

.check-intro {
  max-width: 680px;
  margin-bottom: 34px;
}

.check-intro p:last-child {
  max-width: 640px;
  font-size: 1.08rem;
}

.check-grid {
  display: grid;
  align-items: stretch;
  gap: 0;
  background: var(--white);
  border: 2px solid var(--ink);
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.check-copy {
  padding: clamp(34px, 5vw, 60px);
}

.check-intro h2 {
  font-size: clamp(2.5rem, 4.2vw, 4.2rem);
}

.check-list {
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--ink);
  list-style: none;
}

.check-list li {
  display: grid;
  padding: 15px 2px;
  align-items: center;
  border-bottom: 1px solid rgba(11, 11, 11, 0.25);
  gap: 18px;
  grid-template-columns: 58px 1fr;
}

.check-list img {
  width: 52px;
  height: 52px;
  padding: 10px;
  background: var(--coral);
  object-fit: contain;
}

.check-list strong {
  display: block;
  font-family: var(--display);
  font-size: 1.2rem;
}

.check-list p {
  margin: 1px 0 0;
  color: rgba(11, 11, 11, 0.72);
}

.check-visual {
  display: flex;
  overflow: hidden;
  min-height: 100%;
  padding: 38px 30px 0;
  justify-content: flex-end;
  background: var(--coral);
  border-left: 2px solid var(--ink);
  flex-direction: column;
}

.check-visual picture {
  width: min(440px, 100%);
  margin: auto auto -48px;
}

.check-visual picture img {
  width: 100%;
}

.check-visual p {
  position: relative;
  z-index: 2;
  margin: 0 -30px;
  padding: 20px 24px;
  color: var(--cream);
  background: var(--ink);
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
}

.review {
  color: var(--ink);
  background: var(--coral);
}

.section-heading {
  display: grid;
  margin-bottom: 58px;
  align-items: end;
  gap: 50px;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
}

.section-heading h2 {
  max-width: 790px;
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 470px;
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.section-heading.dark {
  color: var(--ink);
}

.review-grid {
  display: grid;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  grid-template-columns: repeat(4, 1fr);
}

.review-grid article {
  min-height: 220px;
  padding: 25px 26px 28px 0;
}

.review-grid article + article {
  padding-left: 26px;
  border-left: 1px solid rgba(11, 11, 11, 0.36);
}

.review-grid article > span,
.card-number {
  display: inline-block;
  margin-bottom: 30px;
  font-family: var(--display);
  font-size: 0.84rem;
  font-weight: 600;
}

.review-cta {
  display: flex;
  margin-top: 32px;
  padding: 24px 26px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid var(--ink);
}

.review-cta p {
  max-width: 620px;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

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

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

.audience-card {
  display: flex;
  overflow: hidden;
  min-height: 570px;
  border: 2px solid var(--ink);
  flex-direction: column;
}

.audience-card.coral {
  background: var(--coral);
}

.audience-card.cream {
  background: var(--cream);
}

.audience-card.white {
  background: var(--white);
}

.audience-art {
  display: flex;
  height: 260px;
  padding: 20px 18px 0;
  align-items: end;
  justify-content: center;
  background: inherit;
  border-bottom: 2px solid var(--ink);
}

.audience-art img {
  width: 100%;
  max-height: 235px;
  object-fit: contain;
  object-position: center bottom;
}

.audience-art picture {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: end;
  justify-content: center;
}

.parents-art img {
  max-width: 330px;
  margin-bottom: 0;
}

.audience-copy {
  display: flex;
  padding: 28px;
  flex: 1;
  align-items: flex-start;
  flex-direction: column;
}

.audience-copy p {
  margin-bottom: 20px;
}

.audience-copy a {
  margin-top: auto;
  font-weight: 850;
  text-underline-offset: 5px;
}

.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  align-items: start;
  gap: clamp(50px, 9vw, 130px);
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
}

.about-heading {
  position: sticky;
  top: 125px;
}

.about-copy > p {
  font-size: 1.08rem;
}

.claim-help {
  margin-block: 38px;
  padding: 24px;
  color: var(--cream);
  background: var(--ink);
  border-left: 8px solid var(--coral);
}

.claim-help strong {
  font-family: var(--display);
  font-size: 1.35rem;
}

.claim-help p {
  margin-top: 7px;
}

.stats {
  display: grid;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  grid-template-columns: repeat(2, 1fr);
}

.stats div {
  display: flex;
  padding: 21px 18px 18px 0;
  flex-direction: column;
}

.stats div:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid rgba(11, 11, 11, 0.32);
}

.stats div:nth-child(-n + 2) {
  border-bottom: 1px solid rgba(11, 11, 11, 0.32);
}

.stats strong {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.3vw, 2rem);
}

.stats span {
  font-size: 0.85rem;
}

.services {
  background: var(--white);
  border-top: 2px solid var(--ink);
}

.services h2 {
  max-width: 800px;
}

.service-list {
  display: grid;
  margin-top: 44px;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
  grid-template-columns: repeat(3, 1fr);
}

.service-list span {
  min-height: 88px;
  padding: 24px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
}

.service-list span:nth-child(1),
.service-list span:nth-child(5) {
  background: var(--coral);
}

.service-list span:nth-child(3) {
  color: var(--cream);
  background: var(--ink);
}

.service-note {
  margin-top: 26px;
  color: rgba(11, 11, 11, 0.7);
}

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

.faq-grid {
  display: grid;
  align-items: start;
  gap: clamp(50px, 9vw, 130px);
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
}

.faq-intro {
  position: sticky;
  top: 125px;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

details {
  border-bottom: 1px solid rgba(11, 11, 11, 0.35);
}

summary {
  position: relative;
  padding: 23px 48px 23px 2px;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 18px;
  right: 8px;
  content: "+";
  font-family: var(--body);
  font-size: 1.8rem;
  font-weight: 400;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 700px;
  padding: 0 45px 24px 2px;
}

.final-cta {
  padding-block: clamp(76px, 9vw, 120px);
  background: var(--coral);
}

.final-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.final-inner h2 {
  max-width: 820px;
  margin-bottom: 12px;
}

.final-inner p:not(.section-kicker) {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.final-inner .button {
  flex: 0 0 auto;
}

.site-footer {
  padding-top: 68px;
  color: var(--cream);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  align-items: start;
  gap: 60px;
  grid-template-columns: 1.1fr 0.8fr 1.2fr;
}

.footer-brand img {
  width: 275px;
  margin-bottom: 17px;
}

.footer-brand p {
  color: rgba(239, 234, 215, 0.72);
  font-size: 0.9rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact strong {
  font-family: var(--display);
  font-size: 1.05rem;
}

.footer-contact span {
  margin-block: 5px 15px;
  color: rgba(239, 234, 215, 0.72);
}

.footer-contact a {
  font-weight: 800;
  text-underline-offset: 5px;
}

.footer-note {
  max-width: 480px;
  color: rgba(239, 234, 215, 0.68);
  font-size: 0.88rem;
}

.footer-bottom {
  display: flex;
  margin-top: 55px;
  padding-block: 22px;
  justify-content: space-between;
  border-top: 1px solid rgba(239, 234, 215, 0.22);
  font-size: 0.82rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .header-inner > .button {
    margin-left: auto;
  }

  .hero-grid,
  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero::after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 48%;
  }

  .hero-portrait {
    width: min(540px, 88%);
    margin-inline: auto;
  }

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

  .audience-card:last-child {
    grid-column: 1 / -1;
  }

  .about-heading,
  .faq-intro {
    position: static;
  }

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

  .footer-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 28px, 1160px);
  }

  .section-pad {
    padding-block: 72px;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 205px;
  }

  .header-inner > .button {
    min-height: 38px;
    padding: 8px 11px;
    font-size: 0.76rem;
  }

  .hero {
    min-height: auto;
    padding-block: 64px 76px;
  }

  .hero-actions,
  .review-cta,
  .final-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .review-cta .button,
  .final-inner .button {
    width: 100%;
  }

  .hero-actions > span {
    max-width: none;
  }

  .hero-portrait {
    width: calc(100% - 12px);
  }

  .hero-identity {
    right: -6px;
    bottom: 18px;
  }

  .trust-inner {
    align-items: start;
    grid-template-columns: 48px 1fr;
  }

  .trust-inner img {
    width: 44px;
  }

  .check-grid,
  .section-heading,
  .audience-grid,
  .service-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .check-copy {
    padding: 30px 24px;
  }

  .check-visual {
    min-height: 440px;
    border-top: 2px solid var(--ink);
    border-left: 0;
  }

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

  .review-grid article:nth-child(3) {
    border-left: 0;
  }

  .review-grid article {
    min-height: 180px;
  }

  .audience-card,
  .audience-card:last-child {
    min-height: 0;
    grid-column: auto;
  }

  .service-list span {
    min-height: 72px;
  }

  .footer-note {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }
}

@media (max-width: 470px) {
  .header-inner {
    gap: 10px;
  }

  .brand img {
    width: 175px;
  }

  .header-inner > .button {
    padding-inline: 9px;
    font-size: 0.7rem;
  }

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

  .review-grid article + article,
  .review-grid article:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(11, 11, 11, 0.36);
  }

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

  .stats div,
  .stats div:nth-child(even) {
    padding-left: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(11, 11, 11, 0.32);
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
