/* ============================================================
   HARRIS MACAULAY — Brand Design System v2
   Canva-inspired: royal blue + navy + periwinkle + cream
   ============================================================ */

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

:root {
  --blue-primary:  #1e40af;
  --blue-dark:     #1A2F8A;
  --blue-navy:     #0F1B4C;
  --blue-light:    #E8ECFF;
  --hero-bg:       #CDD2E8;
  --cream-bg:      #F2EDE6;
  --white:         #FFFFFF;
  --off-white:     #F8F9FC;
  --grey-light:    #F1F3F8;
  --grey-mid:      #8892B0;
  --grey-border:   #DDE1EF;
  --text-body:     #1A2340;
  --text-muted:    #5A6480;
  --font-logo:     'Montserrat', sans-serif;
  --font-main:     'Montserrat', sans-serif;
  --max-width:     1200px;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-pill:   999px;
  --shadow-card:   0 2px 16px rgba(27,63,216,0.08);
  --shadow-hover:  0 8px 32px rgba(27,63,216,0.18);
  --shadow-nav:    0 2px 12px rgba(15,27,76,0.10);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-main); color: var(--text-body); background: var(--white); line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Skip link ── */
.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--blue-primary); color: #fff; padding: .5rem 1rem; border-radius: var(--radius-sm); font-weight: 700; z-index: 9999; transition: top .2s; }
.skip-link:focus { top: 1rem; }

/* ── Container ── */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* ── Navigation ── */
.site-nav { position: sticky; top: 0; z-index: 100; background: var(--hero-bg); box-shadow: none; border-bottom: 1px solid rgba(27,63,216,0.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 2rem; }

/* ── Logo — matches Canva exactly ── */
/* HARRIS = royal blue #1e40af (top line)
   MACAULAY = white #ffffff (bottom line, overlaps slightly)
   Both: Montserrat ExtraBold 800, same font size
   Background is periwinkle so white is visible */
.nav-logo {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  gap: 0;
  padding: 2px 0;
  line-height: 1;
}
.nav-logo .l1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  color: #1e40af;
  text-transform: uppercase;
  display: block;
  line-height: 1.1;
}
.nav-logo .l2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  color: #ffffff;
  text-transform: uppercase;
  display: block;
  line-height: 1.0;
  margin-top: -3px; /* tight overlap matching Canva */
}

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-navy); transition: color .2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--blue-primary); }

.nav-cta { background: var(--blue-dark) !important; color: #fff !important; padding: .55rem 1.4rem; border-radius: var(--radius-pill); font-size: .75rem !important; font-weight: 700 !important; letter-spacing: .1em; text-transform: uppercase; transition: background .2s, transform .15s; }
.nav-cta:hover { background: var(--blue-primary) !important; transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--blue-navy); border-radius: 2px; transition: all .3s; }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--hero-bg); flex-direction: column; align-items: flex-start; padding: 1.5rem; gap: 1.25rem; box-shadow: var(--shadow-nav); border-top: 1px solid rgba(27,63,216,0.12); }
  .nav-links.open { display: flex; }
  .nav-cta { width: 100%; text-align: center; }
}

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-family: var(--font-main); font-weight: 700; font-size: .83rem; letter-spacing: .1em; text-transform: uppercase; border-radius: var(--radius-pill); padding: .85rem 2rem; transition: all .2s; border: 2px solid transparent; white-space: nowrap; text-decoration: none; }
.btn-primary { background: var(--blue-dark); color: #fff; border-color: var(--blue-dark); }
.btn-primary:hover { background: var(--blue-primary); border-color: var(--blue-primary); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,63,216,.3); }
.btn-outline { background: transparent; color: var(--blue-dark); border-color: var(--blue-dark); }
.btn-outline:hover { background: var(--blue-dark); color: #fff; transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border-color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--blue-dark); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2.5rem; font-size: .9rem; }

/* ── Section utilities ── */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-label { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--blue-primary); margin-bottom: .75rem; }
.section-title { font-family: var(--font-logo); font-weight: 900; font-size: clamp(2.2rem, 5vw, 4rem); letter-spacing: .02em; text-transform: uppercase; color: var(--blue-primary); line-height: 1.02; margin-bottom: 1.25rem; }
.section-title.dark { color: var(--blue-navy); }
.section-title.white { color: #fff; }
.section-subtitle { font-size: 1rem; color: var(--text-muted); max-width: 600px; line-height: 1.75; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── Hero ── */
.hero { background: var(--hero-bg); min-height: 88vh; display: flex; align-items: center; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 5rem 1.5rem 4rem; }
.hero-eyebrow { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--blue-primary); background: rgba(27,63,216,.1); padding: .35rem 1rem; border-radius: var(--radius-pill); margin-bottom: 1.5rem; }
.hero-title { font-family: var(--font-logo); font-weight: 900; font-size: clamp(3rem, 7vw, 5.5rem); line-height: .95; letter-spacing: .02em; text-transform: uppercase; color: #fff; margin-bottom: 1.5rem; text-shadow: 0 2px 20px rgba(15,27,76,.15); }
.hero-subtitle { font-size: 1.05rem; font-weight: 600; color: var(--blue-primary); margin-bottom: 2.5rem; line-height: 1.6; max-width: 600px; white-space: normal; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image { display: flex; align-items: center; justify-content: center; }
.hero-image img { width: 100%; max-width: 560px; filter: drop-shadow(0 20px 40px rgba(27,63,216,.15)); animation: floatY 5s ease-in-out infinite; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 4rem 1.5rem 3rem; }
  .hero-subtitle { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-image { order: -1; }
  .hero-image img { max-width: 320px; }
}

/* ── Proof strip ── */
.proof-strip { background: var(--blue-navy); padding: 1.25rem 0; }
.proof-strip-inner { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.proof-item { display: flex; align-items: center; gap: .6rem; font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.85); letter-spacing: .05em; white-space: nowrap; flex-shrink: 0; }
.proof-divider { width: 1px; height: 20px; background: rgba(255,255,255,.2); }
@media (max-width: 600px) { .proof-divider { display: none; } .proof-strip-inner { gap: 1rem; } }

/* ── Services ── */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
.service-card { background: #fff; border: 1px solid var(--grey-border); border-radius: var(--radius-md); padding: 2rem; transition: box-shadow .25s, transform .25s, border-color .25s; }
.service-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); border-color: var(--blue-primary); }
.service-icon { width: 44px; height: 44px; background: var(--blue-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--blue-primary); }
.service-tag { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-primary); margin-bottom: .75rem; }
.service-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--blue-navy); margin-bottom: .25rem; }
.service-card p { font-size: .88rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.65; }
.service-checklist { display: flex; flex-direction: column; gap: .4rem; }
.service-checklist li { display: flex; align-items: flex-start; gap: .5rem; font-size: .84rem; color: var(--text-body); line-height: 1.5; }
.service-checklist li::before { content: ''; width: 16px; height: 16px; min-width: 16px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%231B3FD8' d='M13.5 3.5L6 11 2.5 7.5l-1 1L6 13l8.5-8.5z'/%3E%3C/svg%3E") center/contain no-repeat; margin-top: 2px; }
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

/* ── Process ── */
.process-section { background: var(--off-white); }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 2rem; }
.process-steps { display: flex; flex-direction: column; gap: 1.75rem; }
.process-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-number { width: 40px; height: 40px; min-width: 40px; border-radius: 50%; background: var(--blue-primary); color: #fff; font-weight: 800; font-size: .9rem; display: flex; align-items: center; justify-content: center; }
.step-content h4 { font-size: 1rem; font-weight: 700; color: var(--blue-navy); margin-bottom: .25rem; }
.step-content p { font-size: .87rem; color: var(--text-muted); line-height: 1.6; }
.process-callout { background: #fff; border-radius: var(--radius-md); padding: 2.5rem; box-shadow: var(--shadow-card); border-left: 4px solid var(--blue-primary); }
.process-callout h3 { font-size: 1.2rem; font-weight: 800; color: var(--blue-navy); margin-bottom: 1rem; }
.process-callout ul { display: flex; flex-direction: column; gap: .6rem; }
.process-callout ul li { display: flex; align-items: center; gap: .6rem; font-size: .88rem; color: var(--text-body); }
.process-callout ul li::before { content: ''; width: 8px; height: 8px; min-width: 8px; border-radius: 50%; background: var(--blue-primary); }
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ── Commercial callout ── */
.commercial-callout { background: var(--blue-light); border: 1px solid rgba(27,63,216,.15); border-radius: var(--radius-lg); padding: 2.5rem 3rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-top: 3rem; }
.commercial-callout h3 { font-size: 1.3rem; font-weight: 800; color: var(--blue-navy); margin-bottom: .5rem; }
.commercial-callout ul { display: flex; flex-direction: column; gap: .4rem; }
.commercial-callout ul li { display: flex; align-items: center; gap: .5rem; font-size: .88rem; color: var(--text-body); }
.commercial-callout ul li::before { content: ''; width: 8px; height: 8px; min-width: 8px; border-radius: 50%; background: var(--blue-primary); }
.commercial-callout-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Founder ── */
.founder-section { background: #fff; }
.founder-grid { display: grid; grid-template-columns: 320px 1fr; gap: 4rem; align-items: start; }
.founder-photo { width: 100%; aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden; background: var(--grey-light); }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-photo-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; color: var(--grey-mid); font-size: .85rem; font-weight: 600; background: linear-gradient(135deg, #E8ECFF 0%, #CDD2E8 100%); }
.founder-meta { margin-top: 1.25rem; padding: 1.25rem; background: var(--off-white); border-radius: var(--radius-md); }
.founder-meta .name { font-weight: 800; font-size: 1rem; color: var(--blue-navy); }
.founder-meta .role { font-size: .85rem; color: var(--blue-primary); font-weight: 600; }
.founder-meta .company { font-size: .82rem; color: var(--text-muted); margin-top: .2rem; }
.founder-content h2 { font-family: var(--font-logo); font-weight: 900; font-size: clamp(2rem, 4vw, 3.2rem); text-transform: uppercase; color: var(--blue-primary); line-height: 1.02; margin-bottom: .35rem; }
.founder-name-sub { font-size: 1.4rem; font-weight: 300; color: var(--grey-mid); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.75rem; }
.founder-content p { font-size: .93rem; color: var(--text-body); line-height: 1.8; margin-bottom: 1rem; }
.founder-content p strong { color: var(--blue-navy); }
.credential-pills { display: flex; flex-direction: column; gap: .75rem; margin-top: 2rem; }
.credential-pill { background: var(--blue-primary); color: #fff; border-radius: var(--radius-pill); padding: .85rem 1.5rem; font-size: .86rem; font-weight: 600; line-height: 1.4; white-space: normal; }
@media (max-width: 900px) { .founder-grid { grid-template-columns: 1fr; gap: 2.5rem; } .founder-photo { aspect-ratio: 4/3; max-width: 380px; } }

/* ── How It Works ── */
.hiw-who { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 2rem; }
.hiw-fit-box { background: var(--blue-light); border-radius: var(--radius-md); padding: 2rem; border: 1px solid rgba(27,63,216,.15); }
.hiw-fit-box h4 { font-size: 1rem; font-weight: 800; color: var(--blue-primary); margin-bottom: 1rem; }
.hiw-fit-box ul { display: flex; flex-direction: column; gap: .6rem; }
.hiw-fit-box ul li { display: flex; align-items: flex-start; gap: .6rem; font-size: .87rem; color: var(--text-body); line-height: 1.5; }
.hiw-fit-box ul li::before { content: ''; width: 8px; height: 8px; min-width: 8px; border-radius: 50%; background: var(--blue-primary); margin-top: 6px; }

.engagement-phases { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 2.5rem; }
.phase-card { background: #fff; border: 1px solid var(--grey-border); border-radius: var(--radius-md); padding: 1.5rem 1.25rem; text-align: center; transition: box-shadow .2s, border-color .2s; }
.phase-card:hover { box-shadow: var(--shadow-card); border-color: var(--blue-primary); }
.phase-num { display: inline-block; width: 36px; height: 36px; border-radius: 50%; background: var(--blue-primary); color: #fff; font-weight: 800; font-size: .85rem; line-height: 36px; margin-bottom: .75rem; }
.phase-label { font-size: .63rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-primary); margin-bottom: .4rem; }
.phase-card h4 { font-size: .88rem; font-weight: 700; color: var(--blue-navy); margin-bottom: .5rem; }
.phase-card p { font-size: .78rem; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 900px) { .engagement-phases { grid-template-columns: repeat(2, 1fr); } .hiw-who { grid-template-columns: 1fr; gap: 2rem; } }
@media (max-width: 480px) { .engagement-phases { grid-template-columns: 1fr; } }

.reporting-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
.reporting-item { background: #fff; border-radius: var(--radius-md); padding: 1.25rem 1.5rem; border-left: 3px solid var(--blue-primary); box-shadow: var(--shadow-card); font-size: .88rem; color: var(--text-body); font-weight: 500; }
@media (max-width: 600px) { .reporting-list { grid-template-columns: 1fr; } }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: .75rem; margin-top: 2rem; }
.faq-item { background: #fff; border: 1px solid var(--grey-border); border-radius: var(--radius-md); overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: var(--blue-primary); }
.faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; background: none; border: none; text-align: left; font-size: .93rem; font-weight: 700; color: var(--blue-navy); gap: 1rem; transition: color .2s; }
.faq-btn:hover { color: var(--blue-primary); }
.faq-icon { width: 24px; height: 24px; min-width: 24px; border-radius: 50%; border: 2px solid var(--blue-primary); display: flex; align-items: center; justify-content: center; color: var(--blue-primary); font-size: 1.1rem; line-height: 1; transition: transform .3s, background .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue-primary); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s; padding: 0 1.5rem; }
.faq-answer p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; padding-bottom: 1.25rem; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ── Contact ── */
.contact-page { background: var(--cream-bg); min-height: 100vh; }
.contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: start; margin-top: 3rem; }
.contact-form-wrap { background: #fff; border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: .8rem; font-weight: 700; color: var(--blue-navy); letter-spacing: .04em; }
.form-group input, .form-group textarea, .form-group select { padding: .75rem 1rem; border: 1.5px solid var(--grey-border); border-radius: var(--radius-sm); font-family: var(--font-main); font-size: .88rem; color: var(--text-body); background: #fff; transition: border-color .2s, box-shadow .2s; outline: none; width: 100%; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue-primary); box-shadow: 0 0 0 3px rgba(27,63,216,.1); }
.form-group input.error, .form-group textarea.error { border-color: #E53E3E; }
.form-group .error-msg { font-size: .75rem; color: #E53E3E; display: none; }
.form-group.has-error .error-msg { display: block; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-consent { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1.5rem; }
.form-consent input[type="checkbox"] { width: 18px; height: 18px; min-width: 18px; margin-top: 2px; accent-color: var(--blue-primary); }
.form-consent label { font-size: .8rem; color: var(--text-muted); line-height: 1.5; }
.form-submit { width: 100%; }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success.visible { display: block; }
.form-success h3 { font-size: 1.3rem; font-weight: 800; color: var(--blue-navy); margin-bottom: .5rem; }
.form-success p { color: var(--text-muted); font-size: .9rem; }
.form-error-banner { display: none; background: #FFF5F5; border: 1px solid #FEB2B2; border-radius: var(--radius-sm); padding: .75rem 1rem; font-size: .83rem; color: #C53030; margin-bottom: 1.25rem; }
.form-error-banner.visible { display: block; }
.contact-aside { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card { background: #fff; border-radius: var(--radius-md); padding: 1.5rem; box-shadow: var(--shadow-card); }
.contact-card h4 { font-size: .93rem; font-weight: 800; color: var(--blue-navy); margin-bottom: .5rem; }
.contact-card p { font-size: .83rem; color: var(--text-muted); margin-bottom: .75rem; line-height: 1.6; }
.contact-card a.email-link { color: var(--blue-primary); font-weight: 600; font-size: .88rem; text-decoration: underline; text-underline-offset: 3px; }
.social-icons { display: flex; gap: .75rem; margin-top: .75rem; }
.social-icon { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--grey-border); display: flex; align-items: center; justify-content: center; color: var(--blue-navy); transition: background .2s, border-color .2s, color .2s; }
.social-icon:hover { background: var(--blue-primary); border-color: var(--blue-primary); color: #fff; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ── CTA Banner ── */
.cta-banner { background: var(--blue-navy); padding: 4rem 0; text-align: center; }
.cta-banner h2 { font-family: var(--font-logo); font-weight: 900; font-size: clamp(1.8rem, 4vw, 3rem); text-transform: uppercase; color: #fff; margin-bottom: .75rem; letter-spacing: .03em; }
.cta-banner p { color: rgba(255,255,255,.7); font-size: 1rem; margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer { background: var(--blue-navy); color: rgba(255,255,255,.75); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .l1 { color: #fff !important; }
.footer-brand .l2 { color: rgba(255,255,255,.65) !important; }
.footer-brand p { font-size: .83rem; line-height: 1.7; margin-top: .75rem; color: rgba(255,255,255,.5); max-width: 280px; }
.footer-col h5 { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.38); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a { font-size: .86rem; color: rgba(255,255,255,.62); transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.38); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .78rem; color: rgba(255,255,255,.38); transition: color .2s; }
.footer-bottom-links a:hover { color: #fff; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── Page hero (inner pages) ── */
.page-hero { background: var(--hero-bg); padding: 5rem 0 4rem; }
.page-hero .section-label { color: var(--blue-primary); }
.page-hero h1 { font-family: var(--font-logo); font-weight: 900; font-size: clamp(2.5rem, 6vw, 4.5rem); text-transform: uppercase; color: #fff; line-height: 1; margin-bottom: 1rem; letter-spacing: .02em; }
.page-hero p { font-size: 1rem; color: var(--blue-primary); font-weight: 600; max-width: 720px; white-space: normal; }

/* ── Legal ── */
.legal-content { max-width: 760px; margin: 0 auto; padding: 5rem 1.5rem; }
.legal-content h2 { font-size: 1.25rem; font-weight: 800; color: var(--blue-navy); margin: 2rem 0 .75rem; }
.legal-content p { font-size: .9rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { font-size: .9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: .4rem; }
.legal-disclaimer { background: var(--grey-light); border-left: 3px solid var(--blue-primary); border-radius: var(--radius-sm); padding: 1rem 1.25rem; font-size: .8rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.6; }

/* ── Misc utils ── */
.bg-white { background: #fff; }
.bg-off-white { background: var(--off-white); }
.bg-cream { background: var(--cream-bg); }
.bg-navy { background: var(--blue-navy); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
:focus-visible { outline: 3px solid var(--blue-primary); outline-offset: 3px; border-radius: 3px; }
