:root {
  --ink: #101c2d;
  --navy: #0b1b31;
  --navy-2: #142b48;
  --gold: #c8932e;
  --gold-light: #e8c97f;
  --cream: #f6f2e9;
  --paper: #fffdf8;
  --muted: #5f6873;
  --line: #dcd7cd;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(16, 28, 45, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; }
.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--white);
  padding: .75rem 1rem;
}
.skip-link:focus { top: 1rem; }

.site-header {
  min-height: 82px;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .01em;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "DM Serif Display", serif;
  font-size: 1.15rem;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 2vw, 1.8rem);
}
.site-nav a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: .93rem;
  font-weight: 600;
}
.site-nav a:hover, .site-nav a:focus, .site-nav a[aria-current="page"] { color: var(--gold-light); }
.site-nav .nav-cta {
  border: 1px solid var(--gold);
  color: var(--white);
  padding: .6rem .9rem;
}
.menu-button {
  display: none;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  padding: .55rem .8rem;
}

.hero {
  min-height: 660px;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 4rem;
  background:
    radial-gradient(circle at 78% 42%, rgba(200,147,46,.16), transparent 24rem),
    var(--navy);
  color: var(--white);
}
.hero h1, .subpage-hero h1 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: clamp(3.8rem, 7.2vw, 7.2rem);
  line-height: .95;
  letter-spacing: -.035em;
  margin: 1rem 0 1.8rem;
}
h1 em, h2 em { color: var(--gold-light); font-style: italic; }
.hero-lead {
  max-width: 690px;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: rgba(255,255,255,.72);
}
.eyebrow {
  margin: 0 0 .85rem;
  color: #91691f;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--gold-light); }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .8rem 1.15rem;
  border: 1px solid transparent;
  text-decoration: none;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.button-primary { color: var(--white); background: var(--gold); }
.button-primary:hover { background: #ad7920; }
.button-secondary { color: var(--white); border-color: rgba(255,255,255,.45); }
.button-outline { color: var(--navy); border-color: var(--navy); }
.button-outline:hover { color: var(--white); background: var(--navy); }
.button-row-dark { margin-top: 2rem; }
.button-gold { background: var(--gold); color: var(--navy); }
.hero-art { display: grid; place-items: center; }
.seal {
  width: min(390px, 78vw);
  aspect-ratio: 1;
  border: 1px solid rgba(200,147,46,.35);
  border-radius: 50%;
  box-shadow: inset 0 0 0 34px rgba(200,147,46,.04), inset 0 0 0 35px rgba(200,147,46,.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.seal-nj { font: 7rem/1 "DM Serif Display", serif; }
.seal-line { width: 44%; height: 2px; background: var(--gold); margin: .4rem 0 .85rem; }
.seal-word { text-transform: uppercase; letter-spacing: .28em; font-weight: 700; }
.seal-small { color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .3em; font-size: .65rem; margin-top: .4rem; }

.section { padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 7vw, 7rem); }
.section h2, .feature-band h2, .contact-grid h2 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 1.03;
  font-weight: 400;
  letter-spacing: -.025em;
  margin: .5rem 0 1.25rem;
}
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}
.prose { color: var(--muted); font-size: 1.08rem; }
.prose p:first-child { color: var(--ink); font-size: 1.25rem; }
.stats {
  margin: 0 clamp(1.25rem, 7vw, 7rem);
  padding: 2rem 0;
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats div { padding: 1rem 1.5rem; border-right: 1px solid var(--line); }
.stats div:last-child { border-right: 0; }
.stats strong { display: block; font: 1.8rem "DM Serif Display", serif; }
.stats span { color: var(--muted); font-size: .86rem; }
.programs { background: var(--cream); }
.section-heading { max-width: 780px; margin-bottom: 3rem; }
.section-heading > p:last-child { color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.program-card {
  padding: clamp(1.7rem, 3vw, 3rem);
  min-height: 290px;
  background: var(--paper);
  border: 1px solid #e6dfd3;
  transition: transform .2s ease, box-shadow .2s ease;
}
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.program-card h3 { font: 1.75rem/1.15 "DM Serif Display", serif; }
.program-card p { color: var(--muted); max-width: 55ch; }
.card-number { color: var(--gold); font-weight: 700; letter-spacing: .12em; }
.feature-band {
  padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 4rem;
  align-items: center;
  background: var(--navy);
  color: var(--white);
}
.feature-band > div:first-child p:last-child { color: rgba(255,255,255,.68); max-width: 65ch; }
.feature-offer {
  border-left: 1px solid rgba(200,147,46,.45);
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
}
.offer-kicker { color: var(--gold-light); text-transform: uppercase; letter-spacing: .15em; font-size: .72rem; font-weight: 700; }
.feature-offer strong { font: clamp(2.8rem, 5vw, 4.6rem)/1 "DM Serif Display", serif; }
.feature-offer > span:nth-of-type(2) { color: rgba(255,255,255,.65); }
.feature-offer .button { margin-top: 1rem; }
.people-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.people-grid article { border-top: 2px solid var(--gold); padding-top: 1.5rem; }
.people-grid article > span {
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: var(--navy); color: var(--white); font-weight: 700;
}
.people-grid h3 { margin-bottom: .2rem; }
.people-grid p { margin-top: 0; color: var(--muted); }
.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
  background: var(--cream);
}
.contact-details { list-style: none; padding: 0; color: var(--muted); }
.contact-form {
  background: var(--white);
  padding: clamp(1.5rem, 4vw, 3.5rem);
  box-shadow: var(--shadow);
}
.contact-form label { display: block; margin-bottom: 1rem; font-weight: 700; font-size: .86rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  margin-top: .4rem;
  border: 1px solid #c8cbd0;
  background: var(--paper);
  padding: .8rem;
  font: inherit;
}
.contact-form .checkbox-label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .7rem;
  align-items: start;
  font-weight: 500;
}
.contact-form .checkbox-label input { width: auto; margin-top: .3rem; }
.contact-form .checkbox-label a { color: #805b19; font-weight: 700; }
.form-trap { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.confirmation-hero { min-height: calc(100vh - 230px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.confirmation-hero .button { margin-top: 1.2rem; }
.site-footer {
  padding: 2.5rem clamp(1.25rem, 7vw, 7rem);
  background: #071322;
  color: rgba(255,255,255,.65);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  font-size: .83rem;
}
.site-footer div { display: flex; flex-direction: column; }
.site-footer strong { color: var(--white); }
.site-footer a { color: rgba(255,255,255,.82); }
.site-footer a:hover, .site-footer a:focus { color: var(--gold-light); }

.subpage-hero {
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 10vw, 10rem);
  background: var(--navy);
  color: var(--white);
}
.subpage-hero p:last-child { max-width: 700px; color: rgba(255,255,255,.68); font-size: 1.15rem; }
.offer-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.price-card { background: var(--cream); padding: 2.5rem; border-top: 5px solid var(--gold); box-shadow: var(--shadow); }
.price-card > span:first-child { text-transform: uppercase; letter-spacing: .13em; font-size: .72rem; font-weight: 700; }
.price-card > strong { display: block; font: 5rem/1 "DM Serif Display", serif; margin-top: 1rem; }
.price-card p { color: var(--muted); }
.price-card .saving { color: #956a1c; font-size: 2.6rem; }
.price-card .maximum { font: 700 1rem "DM Sans", sans-serif; margin-top: 1.4rem; }
.offer-copy h2 { font: clamp(2.5rem, 4vw, 4.2rem)/1.05 "DM Serif Display", serif; margin-top: .5rem; }
.steps { list-style: none; padding: 0; margin: 2.5rem 0; }
.steps li { display: grid; grid-template-columns: 46px 1fr; gap: 1rem; margin: 1.4rem 0; }
.steps li > span { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--navy); color: var(--white); font-weight: 700; }
.steps p { margin: .2rem 0 0; color: var(--muted); }
.microcopy { color: var(--muted); font-size: .82rem; }
.eligibility { background: var(--cream); }
.eligibility-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.eligibility-grid article { background: var(--white); padding: 2rem; }
.eligibility-grid h3 { font: 1.8rem "DM Serif Display", serif; margin-top: 0; }
.eligibility-grid li { margin: .55rem 0; }
.notice { margin-top: 1.5rem; padding: 1.2rem 1.4rem; border-left: 4px solid var(--gold); background: #fff9e9; color: #55482c; }
.compact-band { grid-template-columns: 1fr auto; }
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.resource-card { min-height: 330px; padding: 2rem; border: 1px solid var(--line); display: flex; flex-direction: column; }
.resource-card > span { color: #8a641f; text-transform: uppercase; font-size: .72rem; font-weight: 700; letter-spacing: .12em; }
.resource-card h2 { font: 2rem/1.12 "DM Serif Display", serif; margin: 1rem 0; }
.resource-card p { color: var(--muted); }
.resource-card a { margin-top: auto; font-weight: 700; color: #8a641f; }
.resource-note { margin-top: 3rem; }
.resource-status { margin: 0 0 1.4rem; color: var(--muted); }
.resource-image { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; margin: -2rem -2rem 1.6rem; width: calc(100% + 4rem); }
.resource-meta { margin: -.4rem 0 .7rem; font-size: .82rem; }
.article-shell { width: min(900px, calc(100% - 2.5rem)); margin: 0 auto; padding: clamp(4rem, 8vw, 8rem) 0; }
.article-back { display: inline-block; margin-bottom: 2rem; color: #8a641f; font-weight: 700; }
.article-content h1 { font: clamp(3rem, 7vw, 6rem)/.98 "DM Serif Display", serif; margin: .7rem 0 1rem; }
.article-date { color: var(--muted); }
.article-hero { width: 100%; max-height: 520px; object-fit: cover; margin: 2rem 0; }
.article-body { font-size: 1.08rem; line-height: 1.8; }
.article-body h2 { font: 2.4rem/1.1 "DM Serif Display", serif; margin-top: 2.7rem; }
.article-body h3 { font-size: 1.35rem; margin-top: 2.2rem; }
.article-body img { max-width: 100%; height: auto; }
.article-body a { color: #8a641f; text-decoration: underline; }
.legal-copy { width: min(900px, 100%); }
.legal-copy h2 { font-size: clamp(2rem, 3vw, 3rem); margin-top: 2.7rem; }
.legal-copy h3 { margin-top: 2rem; }
.legal-copy p, .legal-copy li { color: var(--muted); }
.legal-copy .notice { color: #55482c; }

@media (max-width: 900px) {
  .menu-button { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 82px;
    inset-inline: 0;
    padding: 1.2rem;
    background: var(--navy-2);
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.is-open { display: flex; }
  .hero, .about-grid, .feature-band, .contact-grid, .offer-layout { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .seal { width: min(260px, 70vw); }
  .seal-nj { font-size: 4.8rem; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats div:nth-child(2) { border-right: 0; }
  .card-grid, .eligibility-grid, .resource-grid { grid-template-columns: 1fr; }
  .people-grid { grid-template-columns: repeat(2, 1fr); }
  .compact-band { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero { min-height: auto; }
  .hero h1, .subpage-hero h1 { font-size: clamp(3rem, 15vw, 4.3rem); }
  .stats { grid-template-columns: 1fr; }
  .stats div { border-right: 0; border-bottom: 1px solid var(--line); }
  .people-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
}
