@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy: #1E3A6E;
  --navy-dark: #162D56;
  --gold: #C9A84C;
  --off-white: #F8F7F3;
  --mid-grey: #6B7280;
  --white: #FFFFFF;
  --grey-border: #DDD9D0;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; border-radius: 0 !important; }
body { margin: 0; font-family: var(--sans); background: var(--white); color: var(--mid-grey); }
em, i { font-style: normal; }
img { display: block; max-width: 100%; }
a { color: inherit; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

/* HEADER */
.site-header { position: sticky; top: 0; background: var(--white); border-bottom: 1px solid var(--grey-border); z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo-link { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 44px; width: auto; object-fit: contain; }
.main-nav { }
.nav-list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2.5rem; }
.nav-list a { font-family: var(--sans); font-size: 0.875rem; font-weight: 400; color: var(--navy); text-decoration: none; }
.nav-list a:hover { color: var(--gold); }
.nav-list a[aria-current="page"] { border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.nav-toggle { display: none; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; height: 48px; padding: 0 2rem; font-family: var(--sans); font-size: 0.875rem; font-weight: 500; border: none; cursor: pointer; text-decoration: none; transition: background 0.15s; white-space: nowrap; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #b8943e; color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); }
.btn.is-loading .btn-text { display: none; }
.btn .btn-loading { display: none; }
.btn.is-loading .btn-loading { display: inline; }

/* SECTION LABEL */
.section-label { display: block; font-family: var(--sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }

/* HEADINGS */
h1, h2, h3, .sec-h1, .sec-h2 { font-family: var(--serif); font-weight: normal; font-style: normal; line-height: 1.2; margin: 0 0 1.5rem; }
h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.125rem); }

/* SECTIONS */
.section { padding: 5rem 0; }
.section--white { background: var(--white); }
.section--off-white { background: var(--off-white); }
.section--navy { background: var(--navy); }

/* HERO */
.hero { border-top: 6px solid var(--gold); padding: 9.5rem 0 8rem; }
.hero--navy { background: var(--navy); }
.hero--light { background: var(--off-white); }
.hero--navy h1 { color: var(--white); }
.hero--navy .hero-sub { color: rgba(255,255,255,0.8); }
.hero--light h1 { color: var(--navy); }
.hero--light .hero-sub { color: var(--mid-grey); }
.hero-sub { font-family: var(--sans); font-size: 1.0625rem; line-height: 1.7; max-width: 680px; margin: 0 0 2.5rem; }
.hero-note { display: block; margin-top: 0.875rem; font-size: 0.825rem; color: var(--mid-grey); }
.hero-rule { border: none; border-top: 1px solid rgba(201,168,76,0.4); margin: 0; }

/* GAP TABLE */
.gap-table-wrap { margin: 2.5rem 0; overflow-x: auto; }
.gap-table { width: 100%; border-collapse: collapse; border: 1px solid var(--grey-border); }
.gap-table th { background: var(--navy); color: var(--white); font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; padding: 1rem 1.5rem; text-align: left; }
.gap-table td { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--grey-border); font-family: var(--sans); font-size: 0.9rem; line-height: 1.6; vertical-align: top; color: var(--mid-grey); }
.gap-table tr:last-child td { border-bottom: none; }
.gap-table .status-present { color: var(--navy); font-weight: 500; }
.gap-table .status-absent { color: #8B1E30; font-weight: 500; }
.gap-statement { font-family: var(--serif); font-size: 1.0625rem; color: var(--navy); margin-top: 1.5rem; }

/* OUTCOME COLUMNS */
.outcome-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.outcome-col { padding-left: 1.25rem; border-left: 3px solid var(--gold); }
.outcome-col strong { display: block; font-family: var(--serif); font-size: 1.0625rem; color: var(--navy); font-weight: normal; margin-bottom: 0.625rem; }
.outcome-col p { font-size: 0.9rem; line-height: 1.7; margin: 0; }
.outcome-rule { border: none; border-top: 1px solid var(--gold); margin: 3rem 0 1.5rem; }
.outcome-note { font-size: 0.875rem; color: var(--mid-grey); }

/* WHY ENGAGE */
.engage-list { display: grid; gap: 1.75rem; max-width: 780px; }
.engage-item { padding-left: 1.5rem; border-left: 3px solid var(--gold); font-size: 0.9375rem; line-height: 1.7; color: var(--mid-grey); }
.engage-note { margin-top: 2.5rem; font-size: 0.875rem; color: var(--mid-grey); }

/* CONTEXTS COLUMNS (homepage S5) */
.contexts-preview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin: 2.5rem 0; }
.context-preview-title { font-family: var(--serif); font-size: 1.05rem; color: var(--gold); margin-bottom: 0.75rem; }
.context-preview-body { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.75); }
.contexts-note { font-size: 0.875rem; color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; }
.contexts-link { display: block; text-align: right; margin-top: 1.5rem; }
.contexts-link a { font-family: var(--sans); font-size: 0.875rem; color: var(--gold); text-decoration: none; }
.contexts-link a:hover { text-decoration: underline; }

/* DESTINATIONS */
.destinations-list { display: grid; gap: 1.25rem; max-width: 680px; margin: 2rem 0; }
.destinations-item { padding-left: 1.25rem; border-left: 3px solid var(--gold); font-size: 0.9375rem; line-height: 1.65; }
.destinations-disclaimer { font-size: 0.8125rem; color: var(--mid-grey); line-height: 1.65; max-width: 680px; margin-top: 1.5rem; }

/* ENGAGEMENT CARDS */
.engagement-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 2.5rem 0; }
.engagement-card { background: var(--white); border: 1px solid var(--grey-border); padding: 2rem 2rem 1.75rem; }
.engagement-card-title { font-family: var(--serif); font-size: 1.25rem; color: var(--navy); margin-bottom: 0.875rem; }
.engagement-card-body { font-size: 0.9rem; line-height: 1.7; color: var(--mid-grey); margin-bottom: 1rem; }
.engagement-card-note { font-size: 0.8125rem; color: var(--mid-grey); padding-top: 0.875rem; border-top: 1px solid var(--grey-border); }

/* FIT GRID */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.fit-col-title { font-family: var(--serif); font-size: 1.125rem; color: var(--navy); margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--grey-border); }
.fit-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.875rem; }
.fit-col li { font-size: 0.9rem; line-height: 1.65; color: var(--mid-grey); padding-left: 1.25rem; position: relative; }
.fit-col li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* PATHWAY COLUMNS */
.pathway-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; margin: 2.5rem 0; }
.pathway-year { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.pathway-stage { font-family: var(--serif); font-size: 1.05rem; color: var(--navy); margin-bottom: 0.75rem; }
.pathway-body { font-size: 0.875rem; line-height: 1.7; color: var(--mid-grey); }

/* RECEIVE COLUMNS */
.receive-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin: 2.5rem 0; }
.receive-col { padding-top: 1.5rem; border-top: 3px solid var(--gold); }
.receive-col-title { font-family: var(--serif); font-size: 1.05rem; color: var(--navy); margin-bottom: 1rem; }
.receive-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.receive-col li { font-size: 0.875rem; line-height: 1.6; color: var(--mid-grey); padding-left: 1rem; position: relative; }
.receive-col li::before { content: '–'; position: absolute; left: 0; color: var(--gold); }

/* WORKSPACE PLACEHOLDER */
.workspace-placeholder { height: 360px; background: #E8E6E0; border: 1px solid var(--grey-border); display: flex; align-items: center; justify-content: center; margin: 2.5rem 0; }
.workspace-placeholder-text { font-family: var(--sans); font-size: 0.875rem; color: var(--mid-grey); text-align: center; }
.workspace-caption { font-size: 0.825rem; color: var(--mid-grey); text-align: center; max-width: 560px; margin: 0 auto; }

/* BROWSER FRAME (controlcenter screenshot) */
.browser-frame { border: 1px solid var(--grey-border); background: var(--white); margin: 2.5rem 0; overflow: hidden; box-shadow: 0 4px 24px rgba(30,58,110,0.08); }
.browser-chrome { background: #ECEAE5; border-bottom: 1px solid var(--grey-border); padding: 0.625rem 1rem; display: flex; align-items: center; gap: 0.875rem; }
.browser-dots { display: flex; gap: 5px; flex-shrink: 0; }
.browser-dots span { display: block; width: 10px; height: 10px; background: #C8C5BE; }
.browser-bar { flex: 1; height: 22px; background: rgba(255,255,255,0.65); border: 1px solid #D6D4CF; }
.browser-content { overflow: hidden; }
.browser-content img { display: block; width: 100%; height: auto; }

/* HERO INSIGHT */
.hero-insight { font-family: var(--serif); font-size: 1.125rem; color: rgba(255,255,255,0.75); line-height: 1.65; max-width: 640px; margin: 0 0 2rem; padding-left: 1.25rem; border-left: 3px solid rgba(201,168,76,0.6); }
.hero--light .hero-insight { color: var(--mid-grey); }

/* LEGAL PAGES */
.legal-page { max-width: 720px; margin: 0 auto; padding: 5rem 2rem; }
.legal-page h1 { font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 2.25rem); color: var(--navy); font-weight: normal; margin: 0 0 0.5rem; }
.legal-page .legal-date { font-size: 0.8rem; color: var(--mid-grey); margin: 0 0 3rem; }
.legal-page h2 { font-family: var(--serif); font-size: 1.25rem; color: var(--navy); font-weight: normal; margin: 2.5rem 0 0.75rem; }
.legal-page p { font-size: 0.9375rem; line-height: 1.8; color: var(--mid-grey); margin: 0 0 1.25rem; }
.legal-page ul { padding-left: 1.5rem; margin: 0 0 1.25rem; }
.legal-page ul li { font-size: 0.9375rem; line-height: 1.75; color: var(--mid-grey); margin-bottom: 0.4rem; }
.legal-page a { color: var(--navy); text-decoration: underline; }

/* PHASE LIST */
.phase-list { display: grid; gap: 3rem; max-width: 680px; }
.phase-item { display: grid; grid-template-columns: 3.5rem 1fr; gap: 1.5rem; align-items: start; }
.phase-number { font-family: var(--serif); font-size: 2.25rem; color: var(--gold); line-height: 1; padding-top: 0.25rem; }
.phase-meta { }
.phase-label { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 0.4rem; }
.phase-title { font-family: var(--serif); font-size: 1.25rem; color: var(--white); margin-bottom: 0.5rem; }
.phase-body { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.75); }

/* OPTION CARDS */
.options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.option-card { background: var(--white); border: 1px solid var(--grey-border); padding: 2rem; }
.option-card-label { font-family: var(--sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.option-card-title { font-family: var(--serif); font-size: 1.2rem; color: var(--navy); margin-bottom: 0.75rem; }
.option-card-body { font-size: 0.9rem; line-height: 1.7; color: var(--mid-grey); }

/* CONTEXT SECTIONS (contexts.html) */
.context-sections-wrap { padding: 4rem 0; }
.context-section { padding: 4rem 0; border-top: 1px solid var(--grey-border); }
.context-section:first-child { border-top: none; }
.context-grid { display: grid; grid-template-columns: 240px 1fr; gap: 4.5rem; }
.context-meta .section-label { margin-bottom: 0; }
.context-body h2 { margin-bottom: 1.25rem; }
.context-body p { font-size: 0.9375rem; line-height: 1.75; margin: 0 0 1.5rem; }
.context-sub { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); margin: 1.5rem 0 0.75rem; }
.context-bullets { list-style: disc; padding-left: 1.375rem; margin: 0 0 0.5rem; display: grid; gap: 0.45rem; }
.context-bullets li { font-size: 0.9rem; line-height: 1.65; color: var(--mid-grey); }

/* ABOUT */
.about-body p { font-size: 0.9375rem; line-height: 1.8; margin: 0 0 1.5rem; max-width: 680px; }
.about-body p:last-child { margin-bottom: 0; }

/* FORM */
.form-wrap { max-width: 600px; margin: 0 auto; padding: 4rem 0 5rem; }
.form-wrap .section-label { text-align: left; }
.form-wrap h1 { color: var(--navy); margin-bottom: 1rem; }
.form-intro { font-size: 0.9375rem; line-height: 1.75; color: var(--mid-grey); margin: 0 0 0.5rem; }
.form-sub { font-size: 0.825rem; color: var(--mid-grey); margin: 0 0 2.5rem; }
.form-field { margin-bottom: 1.5rem; }
.form-field label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; color: var(--navy); margin-bottom: 0.5rem; }
.form-field input,
.form-field select,
.form-field textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--grey-border); background: var(--white); font-family: var(--sans); font-size: 0.9rem; color: var(--navy); outline: none; transition: border-color 0.15s; -webkit-appearance: none; appearance: none; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--navy); }
.form-field input.is-invalid, .form-field select.is-invalid, .form-field textarea.is-invalid { border-color: #8B1E30; }
.form-field textarea { min-height: 120px; resize: vertical; }
#submit-btn { width: 100%; margin-top: 0.5rem; height: 52px; font-size: 0.9rem; }
.form-note { font-size: 0.8rem; color: var(--mid-grey); margin-top: 1rem; text-align: center; }
#form-status { padding: 1rem 1.25rem; margin-bottom: 1.5rem; font-size: 0.9rem; }
.form-status--success { background: rgba(30,58,110,0.06); color: var(--navy); border-left: 3px solid var(--navy); }
.form-status--error { background: rgba(139,30,48,0.06); color: #8B1E30; border-left: 3px solid #8B1E30; }

/* TRUST STRIP */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--grey-border); }
.trust-strip-inner { display: flex; flex-wrap: nowrap; }
.trust-item { flex: 1; padding: 1.0625rem 1.5rem; font-family: var(--sans); font-size: 0.75rem; font-weight: 500; color: var(--navy); letter-spacing: 0.04em; text-align: center; border-right: 1px solid var(--grey-border); white-space: normal; line-height: 1.4; }
.trust-item:last-child { border-right: none; }
.trust-item--wide { flex: 1.4; }
.trust-item-sub { display: block; font-weight: 400; color: var(--navy); font-size: 0.7rem; letter-spacing: 0.03em; margin-top: 0.2rem; }

/* WHAT SCHOOLS RECEIVE GRID */
.receives-intro { font-size: 1rem; line-height: 1.75; color: var(--mid-grey); max-width: 680px; margin: 0 0 2.25rem; }
.receives-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem 4rem; margin: 0 0 2rem; }
.receives-item { font-family: var(--sans); font-size: 0.9375rem; color: var(--mid-grey); line-height: 1.55; padding: 0.25rem 0 0.25rem 1.125rem; border-left: 2px solid var(--gold); }
.receives-link { font-family: var(--sans); font-size: 0.875rem; color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--grey-border); padding-bottom: 1px; }
.receives-link:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* FOOTER */
.site-footer { background: var(--navy); padding: 3rem 0 2rem; }
.footer-inner { display: grid; gap: 1rem; }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-crest { width: 24px; height: 24px; object-fit: contain; opacity: 0.75; flex-shrink: 0; }
.footer-brand-text { font-family: var(--sans); font-size: 0.875rem; color: rgba(255,255,255,0.85); font-weight: 500; }
.footer-contact { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-contact a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }
.footer-legal { font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.6; }
.footer-legal a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-legal a:hover { color: var(--gold); }

/* OWNERSHIP GRID (framework.html) */
.ownership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin: 0 0 2.5rem; }
.ownership-item { padding-top: 1.5rem; border-top: 3px solid var(--gold); }
.ownership-role { font-family: var(--serif); font-size: 1.05rem; color: var(--navy); margin-bottom: 0.75rem; }
.ownership-desc { font-size: 0.9rem; line-height: 1.7; color: var(--mid-grey); margin: 0; }
.ownership-note { max-width: 680px; padding: 1.25rem 1.5rem; background: var(--off-white); border-left: 3px solid var(--gold); }
.ownership-note p { font-size: 0.9rem; line-height: 1.7; color: var(--mid-grey); margin: 0; }

/* JOURNEY TIMELINE (framework.html) */
.journey-timeline { display: grid; gap: 0; }
.journey-step { display: grid; grid-template-columns: 5rem 1fr; gap: 2rem; padding: 2rem 0; border-top: 1px solid var(--grey-border); align-items: start; }
.journey-step:last-child { border-bottom: 1px solid var(--grey-border); }
.journey-year { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); padding-top: 0.25rem; }
.journey-milestone { font-family: var(--serif); font-size: 1.0625rem; color: var(--navy); margin-bottom: 0.625rem; }
.journey-body { font-size: 0.9rem; line-height: 1.7; color: var(--mid-grey); margin: 0; }

/* SUCCESS LIST (about.html) */
.success-list { display: grid; gap: 1rem; max-width: 720px; margin: 2rem 0; }
.success-item { padding: 0.875rem 1.25rem; border-left: 3px solid var(--gold); background: var(--white); font-size: 0.9375rem; line-height: 1.65; color: var(--mid-grey); }

/* GUIDING PRINCIPLE (about.html) */
.guiding-principle { max-width: 680px; }
.guiding-principle p { font-family: var(--serif); font-size: 1.125rem; line-height: 1.7; color: var(--navy); margin: 0 0 1.25rem; }
.guiding-principle p:last-child { margin-bottom: 0; }

/* BRIEFING INCLUDES (briefing.html) */
.form-subhead { font-family: var(--sans); font-size: 1rem; color: var(--navy); font-weight: 500; margin: 0 0 1rem; line-height: 1.5; }
.briefing-includes { background: var(--white); border: 1px solid var(--grey-border); padding: 1.5rem 2rem; margin: 0 0 2.5rem; }
.briefing-includes-label { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.briefing-includes-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.625rem; }
.briefing-includes-list li { font-size: 0.9rem; line-height: 1.6; color: var(--mid-grey); padding-left: 1.25rem; position: relative; }
.briefing-includes-list li::before { content: '–'; position: absolute; left: 0; color: var(--gold); }

/* MOBILE NAV */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 0.5rem;
    z-index: 200; position: relative;
  }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); transition: 0.2s; }
  #main-nav {
    position: fixed; inset: 0; background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.25s; z-index: 150;
  }
  #main-nav.is-open { opacity: 1; pointer-events: auto; }
  .nav-list { flex-direction: column; gap: 2rem; text-align: center; }
  .nav-list a { font-size: 1.125rem; color: var(--white); }
  .nav-list a[aria-current="page"] { border-bottom-color: var(--gold); }
  .btn.nav-cta { background: var(--gold); color: var(--navy); }

  .trust-strip-inner { flex-wrap: wrap; }
  .trust-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid var(--grey-border); text-align: left; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--grey-border); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
  .receives-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .outcome-cols { grid-template-columns: 1fr; gap: 2rem; }
  .contexts-preview { grid-template-columns: 1fr; gap: 1.5rem; }
  .engagement-cards { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pathway-cols { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .receive-cols { grid-template-columns: 1fr; gap: 2rem; }
  .options-grid { grid-template-columns: 1fr; }
  .context-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .ownership-grid { grid-template-columns: 1fr; gap: 2rem; }
  .journey-step { grid-template-columns: 3.5rem 1fr; gap: 1.25rem; }
  .success-list { gap: 0.75rem; }
  .hero { padding: 4.5rem 0 3.75rem; }
  .section { padding: 3.5rem 0; }
  .container { padding: 0 1.25rem; }
  h1 { font-size: clamp(1.625rem, 5vw, 2.25rem); }
  h2 { font-size: clamp(1.25rem, 4vw, 1.75rem); }
  .gap-table td, .gap-table th { padding: 0.875rem 1rem; }
  .phase-list { gap: 2rem; }
  .briefing-includes { padding: 1.25rem 1.25rem; }
}

@media (min-width: 769px) {
  .nav-toggle { display: none; }
}

@media (max-width: 480px) {
  .pathway-cols { grid-template-columns: 1fr; }
  .journey-step { grid-template-columns: 1fr; gap: 0.5rem; }
  .journey-year { padding-top: 0; }
  .trust-item { flex: 1 1 100%; }
  .engagement-card { padding: 1.5rem; }
  .receive-col { padding-top: 1.25rem; }
  .form-wrap { padding: 2.5rem 0 3rem; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .pathway-cols { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .receive-cols { grid-template-columns: 1fr 1fr; }
  .ownership-grid { grid-template-columns: 1fr 1fr; }
  .contexts-preview { grid-template-columns: 1fr; gap: 1.5rem; }
}
