﻿:root {
    --ink: #0a0d12;
    --panel: #12151d;
    --panel2: #171b25;
    --line: rgba(255,255,255,.09);
    --amber: #f5a623;
    --flame: #e4572e;
    --cyan: #4dd8f2;
    --text: #f5f3ee;
    --muted: #98a0ad;
    --grad: linear-gradient(95deg,var(--amber),var(--flame));
    --radius: 14px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--ink);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -.01em;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img, svg {
    display: block;
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--amber);
    font-weight: 600;
    margin-bottom: 14px;
}

.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .92rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn-grad {
    background: var(--grad);
    color: #14100a;
}

    .btn-grad:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 26px -8px rgba(228,87,46,.55);
    }

.btn-outline {
    border-color: var(--line);
    color: var(--text);
    background: rgba(255,255,255,.02);
}

    .btn-outline:hover {
        border-color: var(--amber);
        color: var(--amber);
    }

.btn:focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 3px;
}


/* ---------- HERO ---------- */
.hero {
    position: relative;
    padding: 90px 0 70px;
    overflow: hidden;
}

    .hero::before {
        content: "";
        position: absolute;
        top: -160px;
        right: -160px;
        width: 480px;
        height: 480px;
        background: radial-gradient(circle, rgba(245,166,35,.22), transparent 68%);
        pointer-events: none;
    }

    .hero::after {
        content: "";
        position: absolute;
        bottom: -200px;
        left: -160px;
        width: 460px;
        height: 460px;
        background: radial-gradient(circle, rgba(77,216,242,.14), transparent 68%);
        pointer-events: none;
    }

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 50px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.1rem, 4.4vw, 3.4rem);
    margin-bottom: 20px;
}

.hero p.lead {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 46ch;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stat {
    padding: 16px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

    .stat i {
        color: var(--amber);
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .stat .num {
        font-family: 'Fraunces', serif;
        font-size: 1.4rem;
        font-weight: 700;
    }

    .stat .lbl {
        font-size: .74rem;
        color: var(--muted);
        letter-spacing: .02em;
    }

/* smile-arc signature graphic */
.hero-visual {
    position: relative;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 340px;
}

    .hero-visual svg {
        width: 100%;
        height: auto;
    }

    .hero-visual .caption {
        font-size: .82rem;
        color: var(--muted);
        text-align: center;
    }

/* ---------- SECTION HEADS ---------- */
.section {
    padding: 30px 0;
}

.section-head {
    max-width: 640px;
    margin: 0 auto 46px;
    text-align: center;
}

    .section-head h2 {
        font-size: clamp(1.7rem, 3vw, 2.3rem);
        margin-bottom: 12px;
    }

    .section-head p {
        color: var(--muted);
    }

/* ---------- WHY US ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 22px;
    transition: border-color .2s ease, transform .2s ease;
}

    .why-card:hover {
        border-color: rgba(245,166,35,.4);
        transform: translateY(-3px);
    }

    .why-card .icon-wrap {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        background: var(--grad);
        display: grid;
        place-items: center;
        color: #14100a;
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    .why-card h3 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .why-card p {
        font-size: .9rem;
        color: var(--muted);
    }

/* ---------- CENTRES ---------- */
.centres-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.centre-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

    .centre-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--grad);
    }

.centre-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

    .centre-top .pin {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
        border-radius: 12px;
        background: var(--panel2);
        border: 1px solid var(--line);
        display: grid;
        place-items: center;
        color: var(--flame);
        font-size: 1.05rem;
    }

    .centre-top h3 {
        font-size: 1.2rem;
        margin-bottom: 4px;
    }

    .centre-top .locality {
        font-size: .8rem;
        color: var(--amber);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .06em;
    }

.centre-card .desc {
    font-size: .9rem;
    color: var(--muted);
}

.centre-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

    .centre-meta .row {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: .87rem;
    }

        .centre-meta .row i {
            color: var(--amber);
            width: 18px;
            margin-top: 3px;
            text-align: center;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
        }
    .centre-meta .row {
        position: relative;
    }
        .centre-meta .row span, .centre-meta .row a {
            padding: 0 0 0 30px;
        }

    .centre-meta a:hover {
        color: var(--amber);
    }

.centre-actions {
    display: flex;
    gap: 10px;
    margin-top: 6px;
    flex-wrap: wrap;
}

    .centre-actions .btn {
        padding: 9px 16px;
        font-size: .82rem;
    }

/* ---------- CTA BAND ---------- */
.cta-band {
    background: var(--panel2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 60px 0;
}

.cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

    .cta-row h2 {
        font-size: 1.7rem;
        max-width: 480px;
    }

    .cta-row p {
        color: var(--muted);
        margin-top: 8px;
        max-width: 480px;
    }

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}


/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: grid;
        place-items: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .centres-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .stat-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
}


