/* ==========================================================================
   I2E Living — design tokens
   ========================================================================== */
:root {
  --cream: #fdf3e7;
  --cream-soft: #f7ead6;
  --card-tan: #f3e6d2;
  --navy: #1e1a3c;
  --navy-soft: #2a2450;
  --gold: #eeae3d;
  --gold-dark: #d99a2b;
  --text-body: #6b6478;
  --text-body-dark: rgba(255, 255, 255, 0.82);
  --white: #ffffff;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-pill: 999px;
  --shadow-card: 0 20px 45px -20px rgba(30, 26, 60, 0.18);
  --max-width: 1280px;
  --font-heading: "Manrope", "Poppins", sans-serif;
  --font-body: "Manrope", "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card-tan);
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-dark);
}

.eyebrow--light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
}

.section-heading {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-heading h2 {
  font-weight: 700;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.section-heading p {
  font-size: 17px;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 12px 24px -10px rgba(238, 174, 61, 0.65);
}

.btn-primary:hover {
  background: var(--gold-dark);
}

.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline--light {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.btn-outline--light:hover {
  background: var(--white);
  color: var(--navy);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 15px;
  transition: gap 0.15s ease;
}

.link-arrow:hover {
  gap: 10px;
}

/* ==========================================================================
   Announcement bar
   ========================================================================== */
.announcement {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  font-size: 14px;
  padding: 16px 20px;
  display: flex;
  justify-content: center;
}

.announcement .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  width: auto;
  max-width: 100%;
  margin: 0;
}

.announcement::before {
  content: "";
}

.announcement-dot {
  color: var(--gold);
}

.announcement a {
  color: var(--gold);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  background: transparent;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background-color: var(--cream);
  box-shadow: 0 8px 24px -16px rgba(30, 26, 60, 0.25);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
}

.logo img {
  height: 58px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-links a {
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

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

.header-actions .contact-link {
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  margin: 5px 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled .nav-links,
.site-header.is-scrolled .contact-link {
  color: var(--navy);
  text-shadow: none;
}

.site-header.is-scrolled .nav-links a:hover {
  color: var(--gold-dark);
}

.site-header.is-scrolled .nav-toggle span {
  background: var(--navy);
  box-shadow: none;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: -96px;
  left: 0;
  right: 0;
  height: calc(100% + 96px);
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 26, 60, 0.72) 0%, rgba(30, 26, 60, 0.6) 55%, rgba(30, 26, 60, 0.75) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 150px;
  padding-bottom: 110px;
}

.hero-copy {
  max-width: 640px;
}

.hero h1 {
  color: var(--white);
  font-weight: 700;
  font-size: clamp(42px, 5.6vw, 74px);
  line-height: 1.08;
  margin-bottom: 34px;
}

.hero h1 .accent {
  background: linear-gradient(90deg, var(--gold) 0%, #f4cf83 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Who we are
   ========================================================================== */
.who-we-are {
  padding: 80px 0 100px;
}

.who-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.who-card h2 {
  font-weight: 700;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  margin-bottom: 26px;
}

.who-card p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-box {
  background: var(--card-tan);
  border-radius: var(--radius-md);
  padding: 26px 24px;
}

.stat-box .stat-number {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 4px;
}

.stat-box .stat-label {
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
}

.who-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   What we do
   ========================================================================== */
.what-we-do {
  padding: 60px 0 100px;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card-body {
  padding: 28px 26px 32px;
}

.service-card-body h3 {
  font-size: 22px;
  margin-bottom: 18px;
}

.service-card-body p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* ==========================================================================
   Program pillars
   ========================================================================== */
.pillars {
  padding: 0 0 100px;
}

.card-grid-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--card-tan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold-dark);
}

.pillar-icon.pillar-icon--filled {
  background: var(--gold);
  color: var(--navy);
}

.pillar-card h3 {
  font-size: 19px;
  margin-bottom: 16px;
}

.pillar-card p {
  font-size: 14.5px;
  line-height: 1.6;
}

.pillar-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pillar-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-body);
}

.pillar-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.pillar-card ul li:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Youth Achievements (dark gradient band)
   ========================================================================== */
.achievements {
  background: linear-gradient(120deg, #2a2450 0%, #4a3f7a 35%, #6d5a8f 55%, #b8843f 85%, #d9a83f 100%);
  color: var(--white);
  padding: 90px 0;
}

.achievements h2 {
  color: var(--white);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  max-width: 640px;
  margin-bottom: 48px;
}

.achievements .section-heading {
  margin-bottom: 48px;
}

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

.achievement-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 26px 22px;
}

.achievement-box .stat-number {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.achievement-box .stat-label {
  font-size: 14px;
  color: var(--text-body-dark);
  font-weight: 500;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding: 100px 0;
}

.faq .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.faq-intro h2 {
  margin-bottom: 22px;
}

.faq-intro p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 26px;
}

.faq-list {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 10px 32px;
}

.faq-item {
  border-bottom: 1px solid #efe6d8;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--navy);
  cursor: pointer;
}

.faq-question .chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: var(--gold-dark);
}

.faq-item.is-open .faq-question .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding: 0 0 22px;
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-body);
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  position: relative;
  padding: 110px 0;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(160deg, rgba(30, 26, 60, 0.92) 0%, rgba(60, 45, 90, 0.88) 45%, rgba(180, 120, 60, 0.75) 100%), var(--cta-image);
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.cta-band .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.cta-band .container {
  max-width: 820px;
}

.cta-band h2 {
  color: var(--white);
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.12;
  margin-bottom: 28px;
}

.cta-band p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-body-dark);
  max-width: 620px;
  margin: 0 auto 42px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 340px;
  margin-bottom: 22px;
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-row a {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.social-toast {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, 4px);
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-toast::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--navy);
}

.social-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.social-row a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer-col h4 {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  font-size: 14.5px;
  transition: color 0.15s ease;
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
}

.footer-contact svg {
  flex-shrink: 0;
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 26px;
  font-size: 13.5px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.footer-credit {
  display: block;
  margin-top: 6px;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-credit a {
  color: inherit;
  text-decoration: underline;
}

.footer-credit a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.page-hero {
  padding: 150px 0 90px;
  text-align: center;
}

.page-hero .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1 {
  font-weight: 700;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-body);
}

.not-found {
  padding-bottom: 140px;
}

.not-found-number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(90px, 16vw, 200px);
  line-height: 1;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}

.not-found .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.not-found-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}

/* ==========================================================================
   Generic content sections (inner pages)
   ========================================================================== */
.content-section {
  padding: 0 0 100px;
}

.content-section + .content-section {
  padding-top: 0;
}

.content-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: var(--shadow-card);
}

.content-block + .content-block {
  margin-top: 32px;
}

.content-block h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 24px;
}

.content-block h3 {
  font-size: 21px;
  margin-bottom: 14px;
  margin-top: 32px;
}

.content-block h3:first-of-type {
  margin-top: 0;
}

.content-block p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-block ul {
  margin: 0 0 20px;
  padding-left: 4px;
}

.content-block ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
}

.content-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.content-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow-card);
}

.content-media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* ==========================================================================
   Benefits / checklist grid
   ========================================================================== */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card-tan);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  font-weight: 600;
  color: var(--navy);
  font-size: 15.5px;
}

.benefit-item .benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
}

.form-note {
  background: var(--card-tan);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 32px;
  line-height: 1.6;
}

.required-mark {
  color: #c0392b;
  font-weight: 700;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-success {
  background: #e8f5e9;
  border: 1.5px solid #a5d6a7;
  color: #2e7d32;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 28px;
}

.form-error-summary {
  display: none;
  background: #fdecea;
  border: 1.5px solid #f3b4ac;
  color: #c0392b;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 28px;
}

.form-error-summary.is-visible {
  display: block;
}

.form-field.has-error input,
.form-field.has-error textarea {
  border-color: #c0392b;
  background: #fdf0ef;
}

.field-error {
  display: block;
  color: #c0392b;
  font-size: 13px;
  font-weight: 600;
  margin-top: 6px;
}

.checkbox-item.has-error {
  color: #c0392b;
}

.checkbox-item.has-error input {
  outline: 2px solid #c0392b;
  outline-offset: 2px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  border: 1.5px solid #ece0cf;
  border-radius: 12px;
  background: var(--cream-soft);
  color: var(--navy);
  transition: border-color 0.15s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
  font-family: var(--font-body);
}

.form-section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 19px;
  color: var(--navy);
  margin: 36px 0 18px;
}

.form-section-title:first-child {
  margin-top: 0;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 20px;
  margin-bottom: 12px;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-body);
}

.acknowledgement-doc-link {
  color: var(--gold-dark);
  text-decoration: underline;
  font-weight: 600;
}

.acknowledgement-doc-link:hover {
  color: var(--navy);
}

.checkbox-item input {
  margin-top: 3px;
  accent-color: var(--gold-dark);
  flex-shrink: 0;
}

.checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}

.form-disclaimer {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--cream-soft);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin: 24px 0;
}

.radio-question {
  margin-bottom: 22px;
}

.radio-question .radio-question-label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 10px;
}

.radio-question.has-error .radio-question-label {
  color: #c0392b;
}

.radio-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: var(--text-body);
}

.radio-option input {
  accent-color: var(--gold-dark);
  flex-shrink: 0;
}

.radio-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 22px;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 20px;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .who-card {
    grid-template-columns: 1fr;
  }

  .card-grid-3,
  .card-grid-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .achievement-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq .container {
    grid-template-columns: 1fr;
  }

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

  .two-col,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links,
  .header-actions .contact-link {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-header.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    color: var(--navy);
    padding: 24px;
    box-shadow: 0 12px 24px -16px rgba(30, 26, 60, 0.25);
    gap: 18px;
  }

  .card-grid-3,
  .card-grid-pillars {
    grid-template-columns: 1fr;
  }

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

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

  .who-card {
    padding: 32px 24px;
  }

  .hero {
    min-height: 560px;
  }

  .hero .container {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .content-block {
    padding: 32px 24px;
  }

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

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

  .form-row,
  .radio-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 32px 22px;
  }
}
