:root {
    --c-red:        #C81D1D;
    --c-red-2:      #E63946;
    --c-red-dark:   #9E1414;
    --c-red-soft:   #FCE9E9;

    --c-ink:        #0F1B2D;
    --c-ink-2:      #1F2A40;
    --c-text:       #1F2937;
    --c-muted:      #6B7280;
    --c-line:       #E6E1D6;
    --c-line-2:     #F0EBDF;

    --c-bg:         #FAF7F0;
    --c-bg-2:       #F4EFE3;
    --c-card:       #FFFFFF;

    --c-yellow:     #FFD23F;
    --c-mint:       #E6F7F4;
    --c-mint-text:  #0F7D70;

    --radius-sm:    10px;
    --radius:       16px;
    --radius-lg:    24px;
    --radius-xl:    32px;

    --shadow-xs:    0 1px 2px rgba(15, 27, 45, .06);
    --shadow-sm:    0 1px 2px rgba(15, 27, 45, .06), 0 1px 3px rgba(15, 27, 45, .05);
    --shadow-md:    0 4px 12px rgba(15, 27, 45, .08), 0 2px 4px rgba(15, 27, 45, .04);
    --shadow-lg:    0 18px 40px rgba(15, 27, 45, .12), 0 4px 12px rgba(15, 27, 45, .06);
    --shadow-xl:    0 32px 64px rgba(15, 27, 45, .16), 0 12px 24px rgba(15, 27, 45, .08);

    --container:    1200px;
    --container-narrow: 880px;
    --gutter:       clamp(20px, 4vw, 40px);

    --font:         'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-display: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
    font-family: var(--font);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.6;
    font-feature-settings: 'cv11', 'ss01', 'ss03';
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }

a {
    color: var(--c-red);
    text-decoration: none;
    text-underline-offset: 3px;
    transition: color .15s ease;
}
a:hover { color: var(--c-red-dark); text-decoration: underline; }

h1, h2, h3, h4, h5 {
    color: var(--c-ink);
    font-family: var(--font-display);
    line-height: 1.1;
    margin: 0 0 .5em;
    letter-spacing: -0.02em;
    font-weight: 800;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 3.75rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; }
h4 { font-size: 1rem; font-weight: 700; }
p  { margin: 0 0 1em; }
strong { font-weight: 700; color: var(--c-ink); }

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.visually-hidden,
.skip-link {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0);
    white-space: nowrap; border: 0;
}
.skip-link:focus {
    position: fixed; top: 12px; left: 12px;
    width: auto; height: auto; clip: auto;
    padding: 10px 16px; background: var(--c-ink); color: #fff;
    border-radius: 8px; z-index: 1000;
}

/* ========== Header ========== */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: var(--c-ink);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: box-shadow .2s ease;
}
.site-header.is-scrolled {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-block: 14px;
}
@media (min-width: 1280px) {
    .site-header__inner { gap: 24px; }
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img {
    height: clamp(38px, 4vw, 52px);
    width: auto;
}
.primary-nav {
    display: none;
    flex: 1 1 auto;
    justify-content: center;
}
.primary-nav ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; align-items: center; gap: 2px;
}
.nav-link {
    display: inline-block;
    padding: 8px 11px;
    border-radius: 999px;
    color: var(--c-ink);
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: -0.005em;
    transition: background .15s ease, color .15s ease;
    white-space: nowrap;
}
.site-header .nav-link {
    color: #cbd5e1;
}
@media (min-width: 1280px) {
    .nav-link { padding: 9px 14px; font-size: .95rem; }
}
.nav-link:hover { background: rgba(15, 27, 45, .06); text-decoration: none; }
.site-header .nav-link:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}
.nav-link.is-active {
    background: var(--c-ink);
    color: #fff;
}
.site-header .nav-link.is-active {
    background: #fff;
    color: var(--c-ink);
}
.header-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px;
    background: var(--c-red);
    color: #fff !important;
    border-radius: 999px;
    font-weight: 700;
    font-size: .95rem;
    box-shadow: var(--shadow-sm);
    flex: 0 0 auto;
    line-height: 1;
}
.header-cta:hover { background: var(--c-red-dark); text-decoration: none; }
.header-cta svg { flex: 0 0 auto; width: 18px; height: 18px; }
.header-cta__label { display: none; }
@media (min-width: 1280px) {
    .header-cta { padding: 9px 18px; }
    .header-cta svg { width: 16px; height: 16px; }
    .header-cta__label { display: inline; }
}

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    margin-left: auto;
}
.nav-toggle__bar {
    width: 20px; height: 2px; background: #fff; border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: var(--c-ink);
    padding: 12px var(--gutter) 20px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 2px; }
.mobile-nav .nav-link { display: block; padding: 12px 14px; }

@media (min-width: 980px) {
    .nav-toggle { display: none; }
    .primary-nav { display: flex; }
    .mobile-nav { display: none !important; }
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
    text-decoration: none;
    line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
    background: var(--c-red);
    color: #fff !important;
    box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 6px 16px rgba(200, 29, 29, 0.25);
}
.btn-primary:hover { background: var(--c-red-dark); text-decoration: none; }
.btn-outline {
    border-color: var(--c-ink);
    color: var(--c-ink) !important;
    background: transparent;
}
.btn-outline:hover { background: var(--c-ink); color: #fff !important; text-decoration: none; }
.btn-ghost {
    color: var(--c-ink) !important;
    background: rgba(15, 27, 45, .04);
}
.btn-ghost:hover { background: rgba(15, 27, 45, .08); text-decoration: none; }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }

/* ========== Hero ========== */
.hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(56px, 9vw, 112px);
    /* Cool neutral base — avoids yellow “parchment”; subtle brand glow only */
    background:
        radial-gradient(72% 82% at 95% 5%, rgba(59, 130, 246, 0.06), transparent 52%),
        radial-gradient(68% 78% at 8% 96%, rgba(230, 57, 70, 0.09), transparent 55%),
        radial-gradient(48% 56% at 48% 42%, rgba(255, 255, 255, 0.72), transparent 62%),
        linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
    border-bottom: 1px solid rgba(15, 27, 45, 0.06);
}
.hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(15, 27, 45, 0.05) 1px, transparent 0);
    background-size: 22px 22px;
    mask-image: radial-gradient(70% 70% at 30% 40%, rgba(0,0,0,0.45), transparent 70%);
    -webkit-mask-image: radial-gradient(70% 70% at 30% 40%, rgba(0,0,0,0.45), transparent 70%);
    pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; }
.hero__inner {
    position: relative;
    display: grid;
    gap: clamp(40px, 6vw, 72px);
    grid-template-columns: 1fr;
    align-items: center;
}
@media (min-width: 960px) {
    .hero__inner { grid-template-columns: 1.1fr 0.9fr; }
}
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px 6px 8px;
    border-radius: 999px;
    background: var(--c-card);
    border: 1px solid var(--c-line);
    color: var(--c-ink);
    font-weight: 600; font-size: .82rem;
    box-shadow: var(--shadow-xs);
}
.eyebrow .dot {
    display: inline-block; width: 6px; height: 6px; border-radius: 50%;
    background: var(--c-mint-text);
    box-shadow: 0 0 0 4px rgba(15, 125, 112, 0.18);
}
.hero h1 {
    margin-top: 24px;
    margin-bottom: 20px;
}
.hero h1 .accent {
    background: linear-gradient(135deg, var(--c-red-2), var(--c-red));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero .lead {
    font-size: 1.18rem;
    color: var(--c-ink-2);
    max-width: 50ch;
    line-height: 1.55;
    margin: 0 0 28px;
}
.hero-actions {
    display: flex; flex-wrap: wrap; gap: 12px;
}
.hero-trust {
    display: flex; align-items: center; gap: 16px;
    margin-top: 32px;
    color: var(--c-muted);
    font-size: .9rem;
}
.hero-trust .avatars {
    display: flex;
}
.hero .hero-trust .avatars span {
    border-color: rgba(255, 255, 255, 0.92);
}
.hero-trust .avatars span {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid var(--c-bg);
    margin-left: -8px;
    background: linear-gradient(135deg, #E63946, #C81D1D);
    color: #fff;
    font-weight: 700; font-size: .75rem;
}
.hero-trust .avatars span:first-child { margin-left: 0; }
.hero-trust .avatars span:nth-child(2) { background: linear-gradient(135deg, #2EC4B6, #0F7D70); }
.hero-trust .avatars span:nth-child(3) { background: linear-gradient(135deg, #FFD23F, #E6A800); color: var(--c-ink); }
.hero-trust .avatars span:nth-child(4) { background: linear-gradient(135deg, #6366F1, #3730A3); }

/* ========== Hero card stack ========== */
.hero-stack {
    position: relative;
    display: grid;
    gap: 16px;
    perspective: 1200px;
}
.hero-card {
    background: var(--c-card);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-lg);
}
.hero-card--quote {
    transform: rotate(-1.2deg);
}
.hero-card--stats {
    transform: rotate(0.8deg) translateX(20px);
}
.hero-card--map {
    transform: rotate(-0.5deg) translateX(-12px);
    padding: 0;
    overflow: hidden;
}

.hero-card__head {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 14px;
}
.hero-card__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E63946, #C81D1D);
    color: #fff;
    font-weight: 800;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1rem;
}
.hero-card__name { font-weight: 700; color: var(--c-ink); font-size: .95rem; }
.hero-card__sub { font-size: .8rem; color: var(--c-muted); }
.hero-card__stars {
    color: var(--c-yellow);
    letter-spacing: 1px;
    font-size: .9rem;
    margin-left: auto;
}
.hero-card__quote {
    color: var(--c-ink-2);
    font-size: .98rem;
    line-height: 1.55;
    margin: 0;
}

.hero-card--stats .stats-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.hero-card--stats .stat {
    text-align: left; background: transparent; border: 0; padding: 0;
}
.hero-card--stats .stat strong {
    font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em;
    background: linear-gradient(135deg, #0F1B2D, #2C3E5A);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-card--stats .stat span {
    color: var(--c-muted); font-size: .82rem;
}

.hero-card--map img { display: block; width: 100%; height: auto; }
.hero-card--map .hero-card__caption {
    padding: 14px 20px;
    border-top: 1px solid var(--c-line);
    font-size: .85rem;
    color: var(--c-muted);
}

/* ========== Logo strip / trust bar ========== */
.trust-bar {
    border-block: 1px solid var(--c-line);
    background: var(--c-card);
    padding-block: 28px;
}
.trust-bar__grid {
    display: grid;
    gap: 24px 32px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.trust-item {
    display: flex; align-items: center; gap: 12px;
}
.trust-item__icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--c-red-soft);
    color: var(--c-red);
    display: inline-flex; align-items: center; justify-content: center;
    flex: 0 0 auto;
}
.trust-item__label { color: var(--c-muted); font-size: .85rem; }
.trust-item__value { color: var(--c-ink); font-weight: 700; }

/* ========== Sections ========== */
.section { padding-block: clamp(56px, 8vw, 96px); }
.section--alt { background: var(--c-bg-2); }
.section-head { margin-bottom: clamp(32px, 5vw, 56px); max-width: 60ch; }
.section-head .eyebrow-text {
    color: var(--c-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: .8rem;
    margin-bottom: 12px;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--c-muted); font-size: 1.05rem; max-width: 56ch; }

/* ========== Page hero (interior pages) ========== */
.page-hero {
    background: var(--c-ink);
    color: #fff;
    padding-block: clamp(56px, 8vw, 88px);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(60% 60% at 100% 0%, rgba(230, 57, 70, 0.25), transparent 60%),
        radial-gradient(50% 70% at 0% 100%, rgba(255, 210, 63, 0.08), transparent 60%);
    pointer-events: none;
}
.page-hero > .container { position: relative; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero .lead { color: rgba(255,255,255,.78); font-size: 1.15rem; max-width: 60ch; margin: 0; }

/* ========== Main content ========== */
.site-main { padding-block: clamp(40px, 6vw, 72px); }
.prose { max-width: 70ch; }
.prose p, .prose li { color: var(--c-ink-2); font-size: 1.02rem; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.6em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .35em; }

/* ========== Cards / grids ========== */
.grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
    background: var(--c-card);
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 26px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-line-2);
}
.card .icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--c-red-soft); color: var(--c-red);
    margin-bottom: 16px;
}
.card h3 { margin-bottom: 8px; color: var(--c-ink); }
.card p { color: var(--c-muted); margin: 0; font-size: .95rem; }

/* ========== How-it-works steps ========== */
.steps {
    display: grid; gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    counter-reset: step;
}
.step {
    background: var(--c-card);
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 28px 24px 24px;
    position: relative;
    counter-increment: step;
}
.step::before {
    content: counter(step, decimal-leading-zero);
    position: absolute;
    top: 22px; right: 22px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.4rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--c-line);
    letter-spacing: -0.02em;
}
.step h3 { margin-top: 4px; padding-right: 56px; }
.step p { color: var(--c-muted); margin: 0; font-size: .95rem; }

/* ========== Testimonials ========== */
.testimonial-grid {
    display: grid; gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.testimonial {
    background: var(--c-card);
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 26px;
    position: relative;
}
.testimonial::before {
    content: "“";
    position: absolute; top: 8px; left: 18px;
    font-family: 'Georgia', serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--c-red);
    opacity: 0.18;
}
.testimonial__stars {
    color: var(--c-yellow);
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-size: 1rem;
}
.testimonial__quote {
    color: var(--c-ink-2);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 18px;
}
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: .9rem;
    background: linear-gradient(135deg, #E63946, #C81D1D);
    color: #fff;
}
.testimonial__avatar.alt-1 { background: linear-gradient(135deg, #2EC4B6, #0F7D70); }
.testimonial__avatar.alt-2 { background: linear-gradient(135deg, #FFD23F, #E6A800); color: var(--c-ink); }
.testimonial__name { font-weight: 700; color: var(--c-ink); font-size: .92rem; }
.testimonial__pass { font-size: .8rem; color: var(--c-muted); }

/* ========== FAQ ========== */
.faq { display: grid; gap: 12px; }
.faq__item {
    background: var(--c-card);
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 0 24px;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.faq__item[open] { border-color: var(--c-line-2); box-shadow: var(--shadow-xs); }
.faq__item summary {
    list-style: none;
    padding: 22px 0;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    font-weight: 700;
    color: var(--c-ink);
    cursor: pointer;
    font-size: 1.05rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--c-red);
    line-height: 1;
    flex: 0 0 auto;
    transition: transform .2s ease;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p {
    padding-bottom: 22px;
    margin: 0;
    color: var(--c-muted);
    line-height: 1.6;
}

/* ========== CTA section ========== */
.cta-block {
    position: relative;
    overflow: hidden;
    background: var(--c-ink);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: clamp(36px, 6vw, 64px);
    text-align: center;
}
.cta-block::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(50% 80% at 100% 0%, rgba(230, 57, 70, 0.30), transparent 60%),
        radial-gradient(50% 80% at 0% 100%, rgba(255, 210, 63, 0.10), transparent 60%);
}
.cta-block > * { position: relative; }
.cta-block h2 { color: #fff; margin-bottom: 12px; }
.cta-block p { color: rgba(255,255,255,.82); font-size: 1.1rem; margin: 0 auto 28px; max-width: 50ch; }
.cta-block .hero-actions { justify-content: center; }
.cta-block .btn-outline { border-color: rgba(255,255,255,0.4); color: #fff !important; }
.cta-block .btn-outline:hover { background: #fff; color: var(--c-ink) !important; }

/* ========== Stats / callouts ========== */
.callout {
    background: var(--c-card);
    border: 1px solid var(--c-line);
    border-left: 4px solid var(--c-red);
    border-radius: var(--radius);
    padding: 22px 26px;
    box-shadow: var(--shadow-xs);
    margin-block: 24px;
}
.callout strong { color: var(--c-ink); }

.stat-row {
    display: grid; gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    margin-block: 32px;
}
.stat {
    background: var(--c-card);
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 22px;
    text-align: center;
}
.stat strong {
    display: block;
    font-size: 2rem; color: var(--c-ink); font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}
.stat span { color: var(--c-muted); font-size: .88rem; }

/* ========== Pupil list ========== */
.pupil-legend {
    display: flex; flex-wrap: wrap; gap: 18px;
    margin-block: 12px 24px;
    color: var(--c-muted); font-size: .95rem;
}
.chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 10px; border-radius: 999px;
    font-weight: 700; font-size: .72rem;
    border: 1px solid transparent;
    letter-spacing: 0.04em;
}
.chip--ft { background: var(--c-yellow); color: #4a3d00; }
.chip--p  { background: var(--c-mint); color: var(--c-mint-text); }
.pupil-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 8px 12px;
    margin: 0; padding: 0; list-style: none;
}
.pupil-grid li {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 14px;
    background: var(--c-card);
    border: 1px solid var(--c-line);
    border-radius: 12px;
    font-size: .92rem;
}
.pupil-grid .name { text-transform: capitalize; color: var(--c-ink); font-weight: 500; }

/* ========== Contact info panel ========== */
.contact-card {
    background: var(--c-card);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    padding: clamp(26px, 4vw, 36px);
    box-shadow: var(--shadow-md);
    height: fit-content;
}
.contact-card h2 {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    letter-spacing: -0.02em;
}
.contact-card__intro {
    margin: 0;
    color: var(--c-ink-2);
    line-height: 1.55;
    font-size: 1.02rem;
}
.contact-card__intro a { font-weight: 700; white-space: nowrap; }
.contact-card__list {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
}
.contact-card__item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid var(--c-line);
}
.contact-card__item:first-child {
    border-top: none;
    padding-top: 6px;
}
.contact-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--c-red-soft);
    color: var(--c-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-card__icon svg { display: block; }
.contact-card__label {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--c-muted);
    margin: 0 0 5px;
}
.contact-card__value {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--c-ink);
    line-height: 1.45;
}
.contact-card__value a { font-weight: 700; }
.contact-card__value--area {
    font-weight: 500;
    font-size: 1rem;
    color: var(--c-ink-2);
}

/* ========== Forms ========== */
.form {
    background: var(--c-card);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 3vw, 36px);
    box-shadow: var(--shadow-md);
}
.form .row { display: grid; gap: 16px; grid-template-columns: 1fr; margin-bottom: 16px; }
@media (min-width: 600px) { .form .row.cols-2 { grid-template-columns: 1fr 1fr; } }
.field label {
    display: block; font-weight: 600; color: var(--c-ink);
    margin-bottom: 6px; font-size: .92rem;
}
.field input,
.field textarea,
.field select {
    width: 100%; padding: 13px 14px;
    border: 1px solid var(--c-line);
    border-radius: 12px;
    font: inherit;
    background: var(--c-bg);
    color: var(--c-text);
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: var(--c-red);
    box-shadow: 0 0 0 4px rgba(200, 29, 29, .12);
    background: var(--c-card);
}
.field textarea { min-height: 140px; resize: vertical; }
.field .error {
    display: block; margin-top: 6px;
    color: var(--c-red-dark); font-size: .88rem; font-weight: 600;
}
.honeypot { position: absolute; left: -9999px; height: 0; width: 0; overflow: hidden; }

/* reCAPTCHA v3: hide floating badge — disclosure stays on contact form per Google policy */
.grecaptcha-badge {
    visibility: hidden !important;
}

.alert {
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 18px;
    font-weight: 500;
    border: 1px solid var(--c-line);
}
.alert--success { background: var(--c-mint); color: var(--c-mint-text); border-color: #b8e8df; }
.alert--error   { background: var(--c-red-soft); color: var(--c-red-dark); border-color: #f3c4c4; }

/* ========== Areas / coverage ========== */
.feature {
    display: grid; gap: clamp(28px, 5vw, 56px);
    grid-template-columns: 1fr;
    align-items: center;
}
@media (min-width: 800px) { .feature { grid-template-columns: 1fr 1fr; } }
.feature--reverse > :last-child  { order: -1; }
@media (min-width: 800px) {
    .feature--reverse > :first-child { order: 2; }
    .feature--reverse > :last-child  { order: initial; }
}
.area-list {
    display: flex; flex-wrap: wrap; gap: 8px;
    list-style: none; padding: 0; margin: 0;
}
.area-list li {
    background: var(--c-card);
    border: 1px solid var(--c-line);
    border-radius: 999px;
    padding: 8px 16px;
    font-weight: 600;
    font-size: .92rem;
    color: var(--c-ink);
}
.area-list li.is-primary {
    background: var(--c-ink);
    color: #fff;
    border-color: var(--c-ink);
}

/* ========== Video links ========== */
.video-list {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.video-list li {
    background: var(--c-card);
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 22px 24px;
}
.video-list li:hover { border-color: var(--c-line-2); box-shadow: var(--shadow-xs); }
.video-list h3 { margin-top: 0; font-size: 1rem; color: var(--c-ink); }
.video-list p { color: var(--c-muted); font-size: .92rem; margin-bottom: 12px; }
.video-list a {
    font-weight: 700;
    word-break: break-all;
    display: inline-flex; align-items: center; gap: 4px;
}

/* ========== Footer ========== */
.site-footer {
    background: var(--c-ink);
    color: #cbd5e1;
    padding-top: 64px;
    margin-top: 80px;
}
.site-footer__brand img { display: block; }
.site-footer h2.footer-heading {
    color: #fff;
    font-size: .8rem; text-transform: uppercase; letter-spacing: .14em;
    margin-bottom: 16px;
    font-weight: 700;
}
.site-footer__grid {
    display: grid; gap: 40px 32px;
    grid-template-columns: 1fr;
    padding-bottom: 48px;
}
@media (min-width: 700px) { .site-footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a { color: #cbd5e1; }
.site-footer a:hover { color: #fff; }
.site-footer__brand p { color: #94a3b8; font-size: .92rem; max-width: 32ch; margin-top: 12px; }
.site-footer__legal {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-block: 24px;
    display: flex; flex-wrap: wrap; gap: 12px;
    justify-content: space-between;
    color: #94a3b8;
    font-size: .88rem;
}
.muted { color: var(--c-muted); }
.small { font-size: .9rem; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
