/* ============================================================
   OTCloud — "Premium Pediatric Authority" Design System
   Font: Inter (all levels) · Teal primary · high-end clinical
   ============================================================ */

:root {
    /* Surfaces */
    --surface: #f7f9fb;
    --surface-secondary: #F8FAFC;
    --surface-container-lowest: #ffffff;
    --surface-container-low: #f2f4f6;
    --surface-container: #eceef0;
    --surface-container-high: #e6e8ea;

    /* Text */
    --on-surface: #191c1e;
    --on-surface-variant: #3d4947;
    --outline: #6d7a77;
    --outline-variant: #bcc9c6;

    /* Brand */
    --primary: #00685e;              /* Teal */
    --primary-container: #008377;
    --on-primary: #ffffff;
    --primary-fixed-dim: #67d9c9;
    --secondary: #3b5d9e;            /* Dark blue */
    --tertiary: #006b2d;             /* Accent green */
    --premium-blue: #1e3a8a;         /* Deep navy — service headings */
    --ink: #191c1e;                  /* Dark structural sections */

    /* Functional */
    --error: #ba1a1a;
    --success: #00873b;
    --warning: #F59E0B;

    /* Radius */
    --r-btn: 12px;      /* buttons, inputs, tags */
    --r-card: 20px;     /* cards, image masks, modules */
    --r-full: 9999px;

    /* Layout */
    --max-container: 1320px;
    --text-width: 700px;
    --section-gap: 44px;
    --section-pad: 34px;
    --gutter: 32px;

    /* Motion */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);

    /* Elevation */
    --shadow-1: 0 10px 30px rgba(18, 59, 122, 0.05);
    --shadow-2: 0 18px 44px rgba(18, 59, 122, 0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--surface-container-lowest);
    color: var(--on-surface);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 { font-family: "Inter", sans-serif; color: var(--on-surface); letter-spacing: -0.01em; }

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

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

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

/* --------------------------------------------------------
   Typography helpers
   -------------------------------------------------------- */
.eyebrow {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--outline);
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.section-sub {
    text-align: center;
    color: var(--on-surface-variant);
    max-width: var(--text-width);
    margin: 16px auto 0;
    font-size: 16px;
}

/* --------------------------------------------------------
   Buttons  (min-height 48px, 12px radius)
   -------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 26px;
    border-radius: var(--r-btn);
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-1); }
.btn-primary:hover { background: var(--primary-container); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #2d3133; }

.btn-ghost { background: transparent; color: var(--on-surface); border-color: var(--outline-variant); }
.btn-ghost:hover { background: var(--surface-secondary); border-color: var(--primary); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-outline-light:hover { background: rgba(255,255,255,0.08); }

/* --------------------------------------------------------
   Header / Nav
   -------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--surface-container);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;                 /* minimum breathing room between logo/contacts and the menu */
    height: 76px;
}
.logo {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.02em;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
}
.logo-img { height: 50px; width: auto; display: block; }
@media (max-width: 600px) { .logo-img { height: 38px; width: auto; } }
.nav-links { display: flex; gap: 24px; }
.nav-links a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--on-surface-variant);
    transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--primary); font-weight: 600; border-bottom: 2px solid var(--primary); padding-bottom: 2px; }
.nav-cta { display: flex; align-items: center; gap: 18px; }

/* Brand block: logo, then the phone number, then the email — one row, ahead of
   the menu. Nothing in it shrinks, so neither line is ever cut off. */
.nav-brand { display: flex; align-items: center; gap: 22px; flex-shrink: 0; }
.nav-contacts { display: flex; flex-direction: row; align-items: center; gap: 16px; padding-left: 22px; border-left: 1px solid var(--surface-container); flex-shrink: 0; }
.nav-contact { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--on-surface); white-space: nowrap; flex-shrink: 0; transition: color .2s var(--ease); }
.nav-contact:hover { color: var(--primary); }
.nav-contact .nc-ic { width: 28px; height: 28px; border-radius: 8px; background: rgba(0,104,94,0.10); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-contact .nc-ic svg { width: 15px; height: 15px; }
.nav-links { flex-shrink: 0; }
/* Above the drawer breakpoint the .nav-cta only holds the hidden hamburger —
   taking it out of the row lets the menu sit flush right. */
@media (min-width: 1181px) { .nav-cta { display: none; } }

/* The menu absorbs the tightening as the viewport narrows; contacts stay put */
@media (max-width: 1319px) {
    .nav { gap: 26px; }
    .nav-brand { gap: 18px; }
    .nav-contacts { gap: 13px; padding-left: 18px; }
    .nav-contact { font-size: 12.5px; gap: 8px; }
    .nav-contact .nc-ic { width: 26px; height: 26px; border-radius: 7px; }
    .nav-links { gap: 16px; font-size: 13.5px; }
    .nav-drop-toggle { font-size: 13.5px; }
    .logo-img { height: 46px; width: auto; }
}

/* Services dropdown */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-drop-toggle { display: inline-flex; align-items: center; gap: 4px; font-size: 14.5px; font-weight: 500; color: var(--on-surface-variant); transition: color .2s var(--ease); }
.nav-drop-toggle:hover, .nav-drop-toggle.active { color: var(--primary); }
.nav-drop-toggle svg { transition: transform .2s var(--ease); }
.nav-item:hover .nav-drop-toggle svg { transform: rotate(180deg); }
.dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px); min-width: 240px; background: #fff; border: 1px solid var(--outline-variant); border-radius: var(--r-card); box-shadow: var(--shadow-2); padding: 8px; opacity: 0; visibility: hidden; transition: opacity .18s var(--ease), transform .18s var(--ease); z-index: 60; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(4px); }
.dropdown::before { content: ""; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
.dropdown a { display: block; padding: 11px 14px; border-radius: var(--r-btn); font-size: 14px; font-weight: 500; color: var(--on-surface-variant); }
.dropdown a:hover { background: var(--surface); color: var(--primary); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--on-surface); padding: 6px; align-items: center; }

/* Mobile dropdown menu */
.mobile-menu { display: none; flex-direction: column; gap: 2px; padding: 8px 20px 20px; background: rgba(255,255,255,0.98); backdrop-filter: blur(12px); border-bottom: 1px solid var(--surface-container); max-height: calc(100dvh - 76px); overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
.mobile-menu.open { display: flex; }
.mobile-menu a:not(.btn) { padding: 12px 12px; font-size: 16px; font-weight: 500; color: var(--on-surface-variant); border-radius: var(--r-btn); }
.mobile-menu a:not(.btn):hover, .mobile-menu a:not(.btn).active { color: var(--primary); background: var(--surface); }
.mobile-menu .btn { margin-top: 10px; justify-content: center; width: 100%; }

/* Not enough room for the full menu alongside the contact row — use the drawer */
@media (max-width: 1180px) {
    .nav-links { display: none; }
    .nav-book { display: none; }
    .nav-toggle { display: flex; }
    .nav-brand { flex: 1; min-width: 0; }
}

/* Accordion group (Services) */
.mm-group { display: flex; flex-direction: column; }
.mm-group-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: none; cursor: pointer; font-family: inherit; padding: 12px 12px; font-size: 16px; font-weight: 500; color: var(--on-surface-variant); border-radius: var(--r-btn); }
.mm-group-toggle.active { color: var(--primary); }
.mm-group-toggle svg { transition: transform .2s var(--ease); flex-shrink: 0; }
.mm-group.open .mm-group-toggle svg { transform: rotate(180deg); }
.mm-submenu { display: none; flex-direction: column; gap: 2px; margin: 2px 0 4px 10px; padding-left: 8px; border-left: 2px solid var(--surface-container); }
.mm-group.open .mm-submenu { display: flex; }
.mm-submenu a { font-size: 15px; padding: 10px 12px; color: var(--outline); }

/* --------------------------------------------------------
   Hero
   -------------------------------------------------------- */
.hero { padding: 40px 0 var(--section-gap); }
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 44px;
    align-items: center;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--r-full);
    background: var(--primary-fixed-dim);
    color: #00201c;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); }

.hero h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 28px 0 24px;
}
.hero h1 .accent { color: var(--primary); }
.hero-lead {
    font-size: 16px;
    line-height: 1.6;
    color: var(--on-surface-variant);
    max-width: 520px;
    margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual { position: relative; }
.hero-image {
    border-radius: var(--r-card);
    aspect-ratio: 4 / 3.4;
    box-shadow: var(--shadow-2);
    overflow: hidden;
}
.hero-card {
    position: absolute;
    left: 22px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(12px);
    border-radius: var(--r-btn);
    box-shadow: var(--shadow-1);
    max-width: 250px;
}
.hero-card .avatar { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; }
.hero-card p { font-size: 13px; line-height: 1.45; color: var(--on-surface-variant); }

/* --------------------------------------------------------
   Logos strip
   -------------------------------------------------------- */
.logos { padding: 48px 0; background: var(--surface-secondary); border-top: 1px solid var(--surface-container); border-bottom: 1px solid var(--surface-container); }
.logos .eyebrow { text-align: center; display: block; margin-bottom: 28px; }
.logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
    flex-wrap: wrap;
}
.logo-row span {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.06em;
    color: var(--outline);
    opacity: 0.7;
}

/* --------------------------------------------------------
   Welcome intro (home)
   -------------------------------------------------------- */
.welcome-inner { max-width: 840px; margin: 0 auto; }
.welcome-inner .eyebrow { display: block; text-align: center; margin-bottom: 12px; }
.welcome-inner h2 { text-align: center; font-size: 30px; font-weight: 700; line-height: 1.22; letter-spacing: -0.01em; margin-bottom: 28px; }
.welcome-inner .msg { font-size: 17px; color: var(--on-surface-variant); line-height: 1.75; margin-bottom: 20px; }
.welcome-services { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 32px; }
.welcome-services span { padding: 8px 16px; border-radius: var(--r-full); background: var(--surface-container); color: var(--primary-container); font-weight: 600; font-size: 14px; }

/* --------------------------------------------------------
   Why Choose Us (home)
   -------------------------------------------------------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card {
    background: var(--surface-container-lowest);
    border: 1px solid var(--outline-variant);
    border-radius: var(--r-card);
    padding: 22px 22px 24px;
    box-shadow: var(--shadow-1);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.why-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--primary); padding-left: 14px; position: relative; }
.why-card h3::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 4px; border-radius: 2px; background: var(--primary-fixed-dim); }
.why-card p { color: var(--on-surface-variant); line-height: 1.55; font-size: 14px; }
.why-closing { text-align: center; margin: 28px auto 0; max-width: 720px; font-size: 16px; font-weight: 500; color: var(--on-surface); }

/* --------------------------------------------------------
   Signs section (revamped)
   -------------------------------------------------------- */
.signs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.sign-card {
    position: relative;
    background: var(--surface-container-lowest);
    border: 1px solid var(--outline-variant);
    border-radius: var(--r-card);
    padding: 26px 26px 28px;
    box-shadow: var(--shadow-1);
    overflow: hidden;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.sign-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.sign-card.accent-teal::before { background: var(--primary); }
.sign-card.accent-blue::before { background: var(--secondary); }
.sign-card.accent-green::before { background: var(--tertiary); }
.sign-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }

.sign-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--outline-variant); }
.sign-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.accent-teal .sign-icon { background: var(--primary-fixed); color: var(--primary); }
.accent-blue .sign-icon { background: #d8e2ff; color: var(--secondary); }
.accent-green .sign-icon { background: #6bff8f; color: var(--tertiary); }
.sign-head h3 { font-size: 19px; font-weight: 600; line-height: 1.2; }

.sign-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.sign-list li { position: relative; padding-left: 24px; font-size: 15px; color: var(--on-surface-variant); line-height: 1.5; }
.sign-list li::before { content: ""; position: absolute; left: 2px; top: 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--primary); }
.accent-blue .sign-list li::before { background: var(--secondary); }
.accent-green .sign-list li::before { background: var(--tertiary); }

.signs-cta { text-align: center; margin-top: 28px; font-size: 16px; color: var(--on-surface-variant); }
.signs-cta a { color: var(--primary); font-weight: 600; white-space: nowrap; }

/* --------------------------------------------------------
   Generic section
   -------------------------------------------------------- */
.section { padding: var(--section-pad) 0; background: var(--surface-container-lowest); }
.section-head { margin-bottom: 24px; }

/* Section rhythm — only two tones, mint green and white, alternating so no two
   neighbouring sections share a background. */
.section.tint { background: #e9f4f1; }

/* Two same-tone sections in a row have no visible boundary, so their 44px
   paddings stack into one 88px void. Collapse the join to a single section's
   worth of space. */
.section:not(.tint) + .section:not(.tint),
.section.tint + .section.tint { padding-top: 0; }
/* At a tone change the colour boundary already separates the two sections, so
   the incoming one only needs enough top padding to keep its content off the
   edge — not a second full section's worth. */
.section:not(.tint) + .section.tint,
.section.tint + .section:not(.tint) { padding-top: 22px; }
/* Exception: .legal-hero already zeroes its own bottom padding, so the join
   there is a single gap already and must not collapse to nothing. */
.section.legal-hero + .section.legal-body { padding-top: var(--section-pad); }
/* Manual escape hatch for joins the sibling selector can't reach. */
.section.joined-top { padding-top: 0; }

/* Cards grid */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
    background: var(--surface-container-lowest);
    border-radius: var(--r-card);
    padding: 28px;
    box-shadow: var(--shadow-1);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }

.card-icon {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--r-btn);
    background: var(--primary-fixed-dim);
    color: var(--primary);
    margin-bottom: 24px;
}
.card h3 { font-size: 21px; font-weight: 600; margin-bottom: 18px; line-height: 1.3; }
.card ul { list-style: none; }
.card ul li {
    position: relative;
    padding-left: 26px;
    font-size: 16px;
    color: var(--on-surface-variant);
    margin-bottom: 12px;
    line-height: 1.5;
}
.card ul li::before {
    content: "";
    position: absolute;
    left: 0; top: 8px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

/* --------------------------------------------------------
   Why Early Identification (split)
   -------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-image { border-radius: var(--r-card); aspect-ratio: 4/3.2; box-shadow: var(--shadow-2); overflow: hidden; }
.reasons { display: flex; flex-direction: column; gap: 24px; }
.reason { display: flex; gap: 20px; }
.reason .r-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border-radius: var(--r-btn);
    background: var(--primary);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
}
.reason h4 { font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.reason p { font-size: 16px; color: var(--on-surface-variant); line-height: 1.55; }
.split h2 { font-size: 32px; font-weight: 600; line-height: 1.2; margin-bottom: 26px; }

/* --------------------------------------------------------
   Services cards (with image)
   -------------------------------------------------------- */
/* Compact icon-led services grid (home) */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-item {
    display: flex; gap: 18px; align-items: flex-start;
    background: var(--surface-container-lowest);
    border: 1px solid var(--outline-variant);
    border-radius: var(--r-card);
    padding: 22px 24px;
    box-shadow: var(--shadow-1);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.service-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.service-ic { width: 48px; height: 48px; border-radius: 12px; background: var(--primary-fixed); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-txt h3 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.service-txt p { font-size: 14px; color: var(--on-surface-variant); line-height: 1.5; }

.services-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.services-head h2 { font-size: 32px; font-weight: 600; }
.services-head p { color: var(--on-surface-variant); max-width: 560px; margin-top: 14px; font-size: 16px; }
.link-arrow { color: var(--primary); font-weight: 600; font-size: 16px; white-space: nowrap; }

.service-card {
    background: var(--surface-container-lowest);
    border-radius: var(--r-card);
    overflow: hidden;
    box-shadow: var(--shadow-1);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.service-card .thumb { aspect-ratio: 4/3; }
.service-card .body { padding: 28px; }
.service-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.service-card p { font-size: 15px; color: var(--on-surface-variant); line-height: 1.5; }

/* --------------------------------------------------------
   Assessment (dark)
   -------------------------------------------------------- */
.assessment { background: var(--ink); color: #fff; }
.assessment .container { padding-top: var(--section-gap); padding-bottom: var(--section-gap); }
.assessment-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; }
.assessment h2 { color: #fff; font-size: 32px; font-weight: 600; margin-bottom: 24px; line-height: 1.2; }
.assessment .lead { color: #b6c2c0; font-size: 16px; margin-bottom: 26px; max-width: 460px; line-height: 1.6; }

.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 24px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.step:last-child { border-bottom: none; }
.step-num {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; font-weight: 700;
}
.step h4 { color: #fff; font-size: 20px; font-weight: 600; margin-bottom: 4px; }
.step p { color: #8fa19e; font-size: 15px; line-height: 1.5; }

/* --------------------------------------------------------
   Experts
   -------------------------------------------------------- */
.expert-card {
    background: var(--surface-container-lowest);
    border-radius: var(--r-card);
    overflow: hidden;
    box-shadow: var(--shadow-1);
    text-align: center;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.expert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.expert-card .photo { aspect-ratio: 1/1; }
.expert-card .body { padding: 28px; }
.expert-card h3 { font-size: 22px; font-weight: 600; margin-bottom: 4px; }
.expert-card .role { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--primary); }
.expert-social { display: flex; justify-content: center; gap: 16px; margin-top: 16px; color: var(--outline); }
.expert-social a:hover { color: var(--primary); }

/* --------------------------------------------------------
   Testimonials
   -------------------------------------------------------- */
.testimonial {
    background: var(--surface-container-lowest);
    border-radius: var(--r-card);
    padding: 28px;
    box-shadow: var(--shadow-1);
}
.stars { color: var(--warning); font-size: 17px; letter-spacing: 3px; margin-bottom: 18px; }
.testimonial p.quote { font-size: 16px; color: var(--on-surface-variant); margin-bottom: 24px; line-height: 1.65; }
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer .avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 17px; flex-shrink: 0; }
.reviewer .r-name { font-weight: 600; font-size: 15px; }
.reviewer .r-meta { font-size: 13px; color: var(--outline); }

/* --------------------------------------------------------
   Final CTA
   -------------------------------------------------------- */
.cta { text-align: center; padding: var(--section-gap) 0; background: var(--surface-secondary); }
.cta h2 { font-size: 32px; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; max-width: 720px; margin: 0 auto 20px; }
.cta p { color: var(--on-surface-variant); font-size: 16px; max-width: var(--text-width); margin: 0 auto 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------------
   Footer
   -------------------------------------------------------- */
.site-footer { background: var(--ink); color: #b6c2c0; padding: 88px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand .logo { color: #fff; margin-bottom: 20px; display: inline-block; }
.footer-brand p { font-size: 15px; line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 16px; color: #8fa19e; }
.footer-social a:hover { color: var(--primary-fixed-dim); }
.footer-col h5 { color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul li a { font-size: 15px; transition: color .2s var(--ease); }
.footer-col ul li a:hover { color: #fff; }
.footer-contact p { font-size: 15px; margin-bottom: 14px; line-height: 1.6; }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom a { margin-left: 28px; }
.footer-bottom a:hover { color: #fff; }

/* --------------------------------------------------------
   Image placeholders (swap for real photos)
   -------------------------------------------------------- */
.ph {
    background: linear-gradient(135deg, var(--surface-container-high) 0%, var(--surface-container) 100%);
    display: flex; align-items: center; justify-content: center;
    color: var(--outline);
    font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
    width: 100%; height: 100%;
}
.ph.dark { background: linear-gradient(135deg, #232829 0%, #191c1e 100%); color: #5c6a68; }

/* ========================================================
   ABOUT PAGE
   ======================================================== */

/* Hero */
.about-hero { padding: 40px 0 var(--section-gap); }
.about-hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px; align-items: center; }
.about-hero h1 { font-size: 44px; font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; margin: 24px 0; }
.about-hero .hero-lead { max-width: var(--text-width); margin-bottom: 28px; }
.learn-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 600; font-size: 16px; transition: gap .2s var(--ease); }
.learn-link:hover { gap: 14px; }
.about-hero-visual { position: relative; }
.about-hero-visual .glow {
    position: absolute; inset: -16px;
    background: rgba(103, 217, 201, 0.25);
    filter: blur(60px); border-radius: 50%;
    z-index: 0;
}
.about-hero-img {
    position: relative; z-index: 1;
    aspect-ratio: 4/5;
    border-radius: var(--r-card);
    overflow: hidden;
    box-shadow: var(--shadow-2);
}
.about-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* Our Story */
.story { background: var(--surface-container-lowest); }
.story-grid { display: grid; grid-template-columns: 5fr 7fr; gap: var(--gutter); }
.story h2 { font-size: 32px; font-weight: 600; color: var(--primary); line-height: 1.2; margin-bottom: 16px; }
.story .accent-bar { width: 96px; height: 4px; background: var(--primary); border-radius: var(--r-full); }
.story-body p { font-size: 16px; color: var(--on-surface-variant); line-height: 1.65; margin-bottom: 20px; }
.story-body p:last-child { margin-bottom: 0; }

/* Founder message */
.founder { background: var(--surface-container-lowest); }
.founder-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 56px; align-items: center; }
.founder-portrait { aspect-ratio: 4/5; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-2); }
.founder-portrait img { width: 100%; height: 100%; object-fit: cover; }
.founder-body .eyebrow { display: block; margin-bottom: 12px; }
.founder-body h2 { font-size: 27px; font-weight: 700; margin-bottom: 4px; }
.founder-role { color: var(--primary); font-weight: 600; font-size: 15px; margin-bottom: 24px; }
.founder-body p.msg { font-size: 17px; color: var(--on-surface-variant); line-height: 1.7; margin-bottom: 20px; }
.founder-sign { font-family: "Inter", sans-serif; font-weight: 600; font-size: 16px; color: var(--on-surface); margin-top: 4px; }

/* Pillars */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar {
    background: var(--surface-container-lowest);
    border: 1px solid var(--surface-container);
    border-radius: var(--r-card);
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow-1);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
    display: flex; flex-direction: column; align-items: center;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.pillar-icon {
    width: 64px; height: 64px;
    border-radius: var(--r-card);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
}
.pillar-icon.teal { background: var(--primary-fixed); color: var(--primary); }
.pillar-icon.blue { background: #d8e2ff; color: var(--secondary); }
.pillar-icon.green { background: #6bff8f; color: var(--tertiary); }
.pillar h3 { font-size: 21px; font-weight: 600; margin-bottom: 12px; }
.pillar p { font-size: 16px; color: var(--on-surface-variant); line-height: 1.6; }

/* Facility gallery */
.facility { background: var(--surface); }
.facility-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.facility-head h2 { font-size: 32px; font-weight: 600; }
.facility-head p { color: var(--on-surface-variant); margin-top: 10px; max-width: 640px; }
.gallery { display: grid; grid-template-columns: 8fr 4fr; gap: 16px; height: 600px; }
.gallery-tile { position: relative; border-radius: var(--r-card); overflow: hidden; cursor: pointer; }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery-tile:hover img { transform: scale(1.05); }
.gallery-tile .scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.45), transparent 55%); }
.gallery-tile .caption { position: absolute; left: 24px; bottom: 20px; color: #fff; z-index: 2; }
.gallery-tile .caption h4 { color: #fff; font-size: 20px; font-weight: 700; }
.gallery-tile .caption p { color: #fff; font-size: 14px; font-weight: 500; }
.gallery-col { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }

/* Clinical Standards */
.standards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--section-gap); align-items: center; }
.standard-item { display: flex; gap: 24px; margin-bottom: 32px; }
.standard-item:last-child { margin-bottom: 0; }
.standard-item .s-icon {
    flex-shrink: 0; width: 48px; height: 48px;
    border-radius: var(--r-btn);
    background: rgba(0, 104, 94, 0.1);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
}
.standard-item h4 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.standard-item p { color: var(--on-surface-variant); line-height: 1.55; }
.standards-copy h2 { font-size: 32px; font-weight: 600; margin-bottom: 24px; }
.standards-copy > p { font-size: 16px; color: var(--on-surface-variant); line-height: 1.65; margin-bottom: 32px; }
.quote-box {
    padding: 32px;
    background: var(--surface-container);
    border: 1px solid var(--outline-variant);
    border-radius: var(--r-card);
    font-style: italic;
    font-weight: 500;
    color: var(--on-surface);
    line-height: 1.6;
}

/* Teal CTA */
.cta-teal { background: var(--primary); color: #fff; text-align: center; padding: var(--section-gap) 0; }
.cta-teal h2 { color: #fff; font-size: 32px; font-weight: 600; margin-bottom: 24px; line-height: 1.2; }
.cta-teal p { color: var(--primary-fixed); font-size: 16px; max-width: 620px; margin: 0 auto 40px; line-height: 1.6; }
.cta-teal .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-on-teal { background: #fff; color: var(--primary); }
.btn-on-teal:hover { background: var(--surface-container); }

/* ========================================================
   SERVICE PAGE (Occupational Therapy)
   ======================================================== */

/* Hero */
.svc-hero { padding: 40px 0 var(--section-gap); }
.svc-hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px; align-items: center; }
.svc-hero h1 { color: var(--premium-blue); font-size: 44px; font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; margin: 20px 0 24px; }
.svc-hero .hero-lead { max-width: var(--text-width); margin-bottom: 36px; }
.svc-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.svc-hero-visual { position: relative; }
.svc-hero-visual::before {
    content: "";
    position: absolute; inset: 0;
    background: rgba(0, 104, 94, 0.06);
    border-radius: var(--r-card);
    transform: rotate(-3deg) scale(1.05);
    z-index: 0;
}
.svc-hero-img { position: relative; z-index: 1; aspect-ratio: 5/4.4; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-2); }
.svc-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* Section titles use premium navy */
.svc-title { color: var(--premium-blue); font-size: 32px; font-weight: 600; line-height: 1.2; }

/* Intro */
.svc-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.svc-intro-img { aspect-ratio: 4/3.4; border-radius: var(--r-card); overflow: hidden; }
.svc-intro-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-intro-copy p { font-size: 16px; color: var(--on-surface-variant); line-height: 1.65; margin-bottom: 20px; max-width: var(--text-width); }
.svc-intro-copy .svc-title { margin-bottom: 24px; }
.feature-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 12px; }
.feature-chip { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--on-surface); }
.feature-chip .fc-icon { color: var(--primary); display: flex; }

/* Concerns cards */
.svc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
    background: var(--surface-container-lowest);
    border: 1px solid var(--outline-variant);
    border-radius: var(--r-card);
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow-1);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
    display: flex; flex-direction: column; align-items: center;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.svc-card-icon { width: 80px; height: 80px; border-radius: var(--r-card); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.svc-card-icon.blue { background: rgba(152, 184, 255, 0.25); color: var(--secondary); }
.svc-card-icon.teal { background: rgba(133, 246, 229, 0.3); color: var(--primary); }
.svc-card-icon.green { background: rgba(107, 255, 143, 0.25); color: var(--tertiary); }
.svc-card h3 { color: var(--premium-blue); font-size: 21px; font-weight: 600; margin-bottom: 14px; }
.svc-card p { color: var(--on-surface-variant); line-height: 1.6; }

/* Approach */
.svc-approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.svc-approach-copy .svc-title { margin-bottom: 32px; }
.svc-step { display: flex; gap: 24px; margin-bottom: 32px; }
.svc-step:last-child { margin-bottom: 0; }
.svc-step-num { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.svc-step h4 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.svc-step p { color: var(--on-surface-variant); line-height: 1.55; }
.svc-approach-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.svc-approach-imgs img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--r-card); }
.svc-approach-imgs img:first-child { margin-top: 48px; }

/* Outcomes (navy band) */
.svc-outcomes { background: var(--premium-blue); color: #fff; }
.svc-outcomes .container { padding-top: var(--section-gap); padding-bottom: var(--section-gap); }
.svc-outcomes h2 { color: #fff; font-size: 32px; font-weight: 600; margin-bottom: 12px; }
.svc-outcomes .lead { color: rgba(255,255,255,0.8); font-size: 16px; max-width: 620px; margin-bottom: 32px; }
.svc-outcome-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.glass-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-card);
    padding: 32px;
}
.glass-card .gc-icon { color: var(--primary-fixed-dim); margin-bottom: 24px; display: flex; }
.glass-card h4 { color: #fff; font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.glass-card p { color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.55; }

/* Related conditions */
.svc-related-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.svc-related-head .svc-title { font-size: 32px; }
.svc-related-head p { color: var(--on-surface-variant); margin-top: 10px; max-width: 520px; }
.link-arrow-anim { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 700; white-space: nowrap; transition: gap .2s var(--ease); }
.link-arrow-anim:hover { gap: 14px; }
.svc-related-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-related-card {
    display: block;
    padding: 32px;
    background: var(--surface-container-lowest);
    border: 1px solid var(--outline-variant);
    border-radius: var(--r-card);
    box-shadow: var(--shadow-1);
    transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.svc-related-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-2); }
.svc-related-card h4 { color: var(--premium-blue); font-size: 24px; font-weight: 700; margin-bottom: 12px; transition: color .2s var(--ease); }
.svc-related-card:hover h4 { color: var(--primary); }
.svc-related-card p { color: var(--on-surface-variant); margin-bottom: 24px; line-height: 1.55; }
.svc-related-card .rc-cta { color: var(--primary); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; }

/* Service CTA box */
.svc-cta-box {
    background: var(--primary-container);
    border-radius: 28px;
    padding: 44px 40px;
    text-align: center;
    color: #fff;
}
.svc-cta-box h2 { color: #fff; font-size: 32px; font-weight: 600; margin-bottom: 20px; }
.svc-cta-box > p { font-size: 20px; color: rgba(255,255,255,0.9); max-width: 640px; margin: 0 auto 40px; line-height: 1.5; }
.svc-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.svc-cta-box .fine-print { margin-top: 32px; font-size: 14px; color: rgba(255,255,255,0.7); }
.btn-fixed { background: var(--primary-fixed-dim); color: var(--on-primary-fixed); }
.btn-fixed:hover { background: #fff; }

/* ========================================================
   CONCERN PAGE (Speech Delay)
   ======================================================== */
.text-teal { color: var(--primary); }

/* Hero */
.con-hero { padding: 40px 0 var(--section-gap); }
.con-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.con-hero h1 { font-size: 44px; font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; margin: 20px 0 24px; }
.con-hero .hero-lead { max-width: 600px; margin-bottom: 36px; }
.con-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.con-hero-visual { position: relative; }
.con-hero-visual .glow { position: absolute; inset: -16px; background: rgba(103, 217, 201, 0.22); filter: blur(48px); border-radius: 32px; z-index: 0; }
.con-hero-img { position: relative; z-index: 1; aspect-ratio: 1/1; border-radius: 28px; overflow: hidden; border: 8px solid #fff; box-shadow: var(--shadow-2); }
.con-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* Milestones */
.con-milestones { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.milestone-card {
    background: var(--surface-container-lowest);
    border: 1px solid var(--surface-container);
    border-radius: var(--r-card);
    padding: 24px 24px 26px;
    box-shadow: var(--shadow-1);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.milestone-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.milestone-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--outline-variant); }
.milestone-icon { width: 44px; height: 44px; border-radius: var(--r-btn); background: rgba(152, 184, 255, 0.22); color: var(--secondary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.milestone-card h3 { color: var(--premium-blue); font-size: 20px; font-weight: 600; line-height: 1.2; }
.milestone-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.milestone-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--on-surface-variant); line-height: 1.5; }
.milestone-list li .check { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.red-flag { display: block; background: rgba(186, 26, 26, 0.05); padding: 12px 16px; border-radius: var(--r-btn); border-left: 4px solid var(--error); font-size: 14px; line-height: 1.5; color: var(--on-surface-variant); }
.red-flag strong { display: block; color: var(--error); margin-bottom: 4px; }

/* Approach (teal-tint band) */
.con-approach { background: rgba(0, 104, 94, 0.05); }
.con-approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.con-steps { display: flex; flex-direction: column; gap: 24px; }
.con-step { display: flex; gap: 24px; align-items: flex-start; }
.con-step-num { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 20px; }
.con-step h4 { color: var(--primary); font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.con-step p { color: var(--on-surface-variant); line-height: 1.6; }
.con-approach-copy h2 { font-size: 32px; font-weight: 600; line-height: 1.2; margin-bottom: 20px; }
.con-approach-copy > p { font-size: 16px; color: var(--on-surface-variant); margin-bottom: 32px; line-height: 1.6; }
.con-approach-img { aspect-ratio: 16/9; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-2); }
.con-approach-img img { width: 100%; height: 100%; object-fit: cover; }

/* Professional Insight */
.con-insight { background: var(--premium-blue); border-radius: 28px; padding: 32px; color: #fff; }
.insight-author { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.insight-author .avatar { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(255,255,255,0.3); flex-shrink: 0; }
.insight-author .avatar img { width: 100%; height: 100%; object-fit: cover; }
.insight-author .a-name { font-weight: 700; font-size: 16px; }
.insight-author .a-role { color: rgba(255,255,255,0.7); font-size: 14px; }
.con-insight .quote { color: #fff; font-size: 28px; font-weight: 700; font-style: italic; line-height: 1.25; margin-bottom: 32px; max-width: 900px; }
.con-insight .lead { color: rgba(255,255,255,0.8); font-size: 20px; line-height: 1.6; margin-bottom: 26px; max-width: 820px; }
.insight-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); max-width: 720px; }
.insight-stats .num { font-size: 28px; font-weight: 700; color: var(--primary-fixed-dim); margin-bottom: 4px; }
.insight-stats .lbl { font-size: 14px; color: rgba(255,255,255,0.6); }

/* FAQ */
.con-faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; }
.con-faq-intro h2 { font-size: 32px; font-weight: 600; margin-bottom: 16px; }
.con-faq-intro p { color: var(--on-surface-variant); font-size: 16px; line-height: 1.6; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface-container-lowest); border: 1px solid var(--surface-container); border-radius: var(--r-card); box-shadow: var(--shadow-1); overflow: hidden; }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 24px; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span.q { font-size: 16px; font-weight: 600; color: var(--premium-blue); }
.faq-chevron { color: var(--primary); flex-shrink: 0; transition: transform .2s var(--ease); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-body { padding: 0 24px 20px; color: var(--on-surface-variant); line-height: 1.6; }

/* Final CTA (white box) */
.con-final-cta { background: var(--surface-container-lowest); border: 1px solid rgba(0, 104, 94, 0.1); border-radius: 28px; padding: 44px 40px; text-align: center; box-shadow: var(--shadow-1); }
.con-final-cta h2 { font-size: 32px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 20px; }
.con-final-cta > p { font-size: 16px; color: var(--on-surface-variant); max-width: var(--text-width); margin: 0 auto 40px; line-height: 1.6; }
.con-final-cta .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.con-final-cta .trust { margin-top: 32px; font-size: 14px; color: var(--outline); }

/* ========================================================
   ASSESSMENT PAGE
   ======================================================== */
.asm-glass { background: rgba(255,255,255,0.8); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.4); box-shadow: var(--shadow-1); }
.btn-surface { background: var(--surface-container-high); color: var(--on-surface); }
.btn-surface:hover { background: var(--surface-container-highest); }
.btn-block { width: 100%; }

/* Hero */
.asm-hero { padding: 40px 0 var(--section-gap); }
.asm-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.badge.alt { background: #d8e2ff; color: #204584; }
.asm-hero h1 { font-size: 44px; font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; margin: 20px 0 24px; }
.asm-hero .hero-lead { max-width: var(--text-width); margin-bottom: 36px; }
.asm-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.asm-hero-visual { position: relative; }
.asm-hero-img { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-2); transform: rotate(2deg); transition: transform .5s var(--ease); }
.asm-hero-img:hover { transform: rotate(0); }
.asm-hero-img img { width: 100%; height: 500px; object-fit: cover; display: block; }
.asm-badge-float { position: absolute; bottom: -24px; left: -24px; padding: 24px; border-radius: var(--r-btn); max-width: 240px; }
.asm-badge-float .bf-title { font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.asm-badge-float p { font-size: 12px; color: var(--on-surface-variant); line-height: 1.5; }

/* Philosophy cards */
.asm-phil { background: var(--surface-container-lowest); }
.asm-phil-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.asm-phil-card { padding: 28px; border-radius: var(--r-card); background: var(--surface); border: 1px solid var(--outline-variant); transition: box-shadow .3s var(--ease), transform .3s var(--ease); }
.asm-phil-card:hover { box-shadow: var(--shadow-2); transform: translateY(-4px); }
.asm-phil-icon { width: 56px; height: 56px; border-radius: var(--r-btn); display: flex; align-items: center; justify-content: center; margin-bottom: 32px; }
.asm-phil-icon.teal { background: var(--primary-fixed); color: var(--primary); }
.asm-phil-icon.blue { background: #d8e2ff; color: var(--secondary); }
.asm-phil-icon.green { background: #6bff8f; color: var(--tertiary); }
.asm-phil-card h3 { font-size: 21px; font-weight: 600; margin-bottom: 16px; }
.asm-phil-card p { color: var(--on-surface-variant); line-height: 1.6; }

/* Timeline */
.asm-expect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.asm-expect-copy > h2 { font-size: 32px; font-weight: 600; margin-bottom: 26px; }
.asm-timeline { position: relative; }
.asm-timeline::before { content: ""; position: absolute; left: 31px; top: 8px; bottom: 8px; width: 2px; background: var(--outline-variant); }
.asm-tl-item { position: relative; padding-left: 96px; margin-bottom: 28px; }
.asm-tl-item:last-child { margin-bottom: 0; }
.asm-tl-node { position: absolute; left: 0; top: 0; width: 64px; height: 64px; border-radius: 50%; background: #fff; border: 2px solid var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--primary); z-index: 1; }
.asm-tl-item h4 { font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.asm-tl-item p { color: var(--on-surface-variant); line-height: 1.55; }
.asm-report { border-radius: var(--r-card); padding: 16px; }
.asm-report img { border-radius: var(--r-btn); width: 100%; height: 600px; object-fit: cover; display: block; }

/* Team */
.asm-team { background: var(--surface-container-low); }
.asm-team-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.asm-team-head h2 { font-size: 32px; font-weight: 600; margin-bottom: 12px; }
.asm-team-head p { color: var(--on-surface-variant); max-width: var(--text-width); }
.asm-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.asm-member .photo { aspect-ratio: 1/1; border-radius: var(--r-card); overflow: hidden; margin-bottom: 20px; background: var(--surface-container-high); }
.asm-member .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.asm-member:hover .photo img { transform: scale(1.05); }
.asm-member h4 { font-size: 20px; font-weight: 600; margin-bottom: 4px; }
.asm-member .m-role { font-size: 14px; color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.asm-member .m-bio { font-size: 13px; color: var(--on-surface-variant); line-height: 1.5; }

/* Booking */
.asm-booking { position: relative; overflow: hidden; }
.asm-booking::before { content: ""; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: rgba(0,104,94,0.05); transform: skewX(-12deg) translateX(25%); z-index: 0; }
.asm-booking-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 5fr 7fr; gap: 44px; align-items: start; }
.asm-booking-intro h2 { font-size: 32px; font-weight: 600; margin-bottom: 20px; }
.asm-booking-intro > p { color: var(--on-surface-variant); font-size: 16px; margin-bottom: 26px; line-height: 1.6; }
.asm-trust-item { display: flex; align-items: center; gap: 14px; padding: 15px 18px; border-radius: var(--r-btn); background: #fff; box-shadow: var(--shadow-1); border: 1px solid var(--outline-variant); margin: 18px 0 0; }
.asm-trust-item .ti-icon { color: var(--primary); display: flex; }
.asm-trust-item p { font-size: 14px; font-weight: 600; }

.asm-form-card { background: #fff; padding: 30px 30px 26px; border-radius: var(--r-card); box-shadow: var(--shadow-2); border: 1px solid var(--outline-variant); }

/* Stepper */
.asm-stepper { display: flex; align-items: center; margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--outline-variant); }
.asm-step { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.asm-step-node { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--outline-variant); color: var(--outline); display: flex; align-items: center; justify-content: center; font-weight: 700; transition: all .2s var(--ease); }
.asm-step-node.active { border-color: var(--primary); color: var(--primary); }
.asm-step-node.done { background: var(--primary); border-color: var(--primary); color: #fff; }
.asm-step-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; color: var(--outline); }
.asm-step-line { flex: 1; height: 2px; background: var(--surface-container-highest); margin: 0 16px; margin-bottom: 26px; }

/* Form */
.asm-form-step { display: none; }
.asm-form-step.active { display: block; animation: asmFade .4s var(--ease); }
@keyframes asmFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.asm-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.asm-field label { font-size: 14px; font-weight: 600; color: var(--on-surface-variant); }
.asm-field input, .asm-field select, .asm-field textarea {
    width: 100%; padding: 12px 16px;
    border: 1px solid var(--outline-variant);
    border-radius: var(--r-btn);
    font-family: "Inter", sans-serif; font-size: 15px;
    background: #fff; color: var(--on-surface);
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.asm-field input:focus, .asm-field select:focus, .asm-field textarea:focus {
    outline: none; border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary);
}
.asm-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.asm-form-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.asm-success { display: none; text-align: center; padding: 24px 8px; }
.asm-success .s-icon { width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 50%; background: var(--primary-fixed); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.asm-success h4 { font-size: 24px; font-weight: 600; margin-bottom: 12px; }
.asm-success p { color: var(--on-surface-variant); line-height: 1.6; max-width: 420px; margin: 0 auto; }

/* FAQ (narrow) */
.asm-faq { max-width: 820px; margin: 0 auto; }
.asm-faq h2 { text-align: center; font-size: 32px; font-weight: 600; margin-bottom: 32px; }

/* Form error note (shared) */
.form-error-note { background: rgba(186,26,26,0.08); color: var(--error); border-left: 4px solid var(--error); padding: 12px 16px; border-radius: var(--r-btn); margin-bottom: 20px; font-size: 14px; line-height: 1.5; }

/* ========================================================
   CONTACT PAGE
   ======================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); box-shadow: var(--shadow-1); }
.contact-item .ci-icon { width: 44px; height: 44px; border-radius: var(--r-btn); background: var(--primary-fixed); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item h4 { font-size: 16px; font-weight: 600; margin-bottom: 2px; }
.contact-item a, .contact-item p { color: var(--on-surface-variant); font-size: 15px; line-height: 1.5; }
.contact-item a:hover { color: var(--primary); }

/* ========================================================
   BLOG
   ======================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
    display: flex; flex-direction: column;
    background: var(--surface-container-lowest);
    border: 1px solid var(--outline-variant);
    border-radius: var(--r-card);
    overflow: hidden;
    box-shadow: var(--shadow-1);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.blog-card .thumb { aspect-ratio: 16/10; overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.blog-card .meta { font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }
.blog-card h3 { font-size: 20px; font-weight: 600; line-height: 1.3; margin-bottom: 10px; }
.blog-card p { font-size: 15px; color: var(--on-surface-variant); line-height: 1.55; margin-bottom: 18px; }
.blog-card .read-more { margin-top: auto; color: var(--primary); font-weight: 600; font-size: 14px; }

.blog-empty { text-align: center; padding: 40px 0; color: var(--on-surface-variant); }
.blog-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 20px; }
.blog-grid-4 .blog-card .body { padding: 20px 20px 24px; }
.blog-grid-4 .blog-card h3 { font-size: 18px; }

.blog-pagination { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px; margin-top: 40px; }
.blog-pagination > a, .blog-pagination > span {
    min-width: 42px; height: 42px; padding: 0 14px;
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    border: 1px solid var(--outline-variant); border-radius: 999px;
    font-size: 14px; font-weight: 600; color: var(--on-surface);
    background: var(--surface-container-lowest);
    transition: color .2s var(--ease), border-color .2s var(--ease);
}
.blog-pagination > a:hover { color: var(--primary); border-color: var(--primary); }
.blog-pagination .current { background: var(--primary); border-color: var(--primary); color: #fff; }
@media (max-width: 600px) {
    .blog-pagination { flex-wrap: nowrap; gap: 6px; margin-top: 28px; }
    .blog-pagination > a, .blog-pagination > span { min-width: 36px; height: 36px; padding: 0 8px; font-size: 13.5px; }
    .page-step-label { display: none; }
}

/* Article */
.article { max-width: 780px; margin: 0 auto; }
.article-back { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 600; font-size: 14px; margin-bottom: 28px; }
.article-meta { font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; }
.article h1 { font-size: 32px; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px; }
.article-byline { color: var(--outline); font-size: 15px; margin-bottom: 32px; }
.article-cover { border-radius: var(--r-card); overflow: hidden; margin-bottom: 36px; box-shadow: var(--shadow-1); }
.article-cover img { width: 100%; height: auto; display: block; }
.article-body { font-size: 16px; line-height: 1.75; color: var(--on-surface-variant); }
.article-body p { margin-bottom: 22px; }
.article-body h2 { font-size: 28px; color: var(--on-surface); margin: 36px 0 14px; }
.article-body h3 { font-size: 22px; color: var(--on-surface); margin: 28px 0 12px; }
.article-body a { color: var(--primary); text-decoration: underline; }
.article-body img { max-width: 100%; height: auto; border-radius: var(--r-btn); margin: 24px 0; }
/* Rich-text editor output */
.article-body h4 { font-size: 18px; color: var(--on-surface); margin: 24px 0 10px; }
.article-body ol { margin: 0 0 22px 22px; display: flex; flex-direction: column; gap: 8px; }
.article-body strong { color: var(--on-surface); }
.article-body blockquote { margin: 28px 0; padding: 18px 24px; border-left: 4px solid var(--primary); background: #e9f4f1; border-radius: 0 var(--r-btn) var(--r-btn) 0; font-size: 17px; color: var(--on-surface); }
.article-body blockquote p:last-child { margin-bottom: 0; }
.article-body figure { margin: 28px 0; }
.article-body figure img { margin: 0; }
.article-body figcaption { margin-top: 8px; font-size: 13.5px; color: var(--outline); text-align: center; }
.article-body figure.image-style-align-center { text-align: center; }
.article-body figure.image-style-align-left { float: left; max-width: 50%; margin: 6px 24px 16px 0; }
.article-body figure.image-style-align-right { float: right; max-width: 50%; margin: 6px 0 16px 24px; }
.article-body::after { content: ""; display: table; clear: both; }
.article-body figure.table { overflow-x: auto; }
.article-body table { width: 100%; border-collapse: collapse; font-size: 15px; }
.article-body th, .article-body td { border: 1px solid var(--outline-variant); padding: 10px 14px; text-align: left; vertical-align: top; }
.article-body th { background: #e9f4f1; color: var(--on-surface); font-weight: 600; }
@media (max-width: 600px) {
    .article-body figure.image-style-align-left, .article-body figure.image-style-align-right { float: none; max-width: 100%; margin: 24px 0; }
}

/* ========================================================
   HOME PAGE (v2 — full landing)
   ======================================================== */
.fineprint { text-align: center; color: var(--outline); font-size: 13px; margin-top: 20px; }

/* Hero */
.hp-hero { padding: 40px 0 var(--section-gap); }
.hp-hero-grid { display: grid; grid-template-columns: 52fr 48fr; gap: 44px; align-items: center; }
.hero-pill { display: inline-flex; align-items: center; padding: 7px 16px; border-radius: var(--r-full); background: rgba(0,131,119,0.08); color: var(--primary); border: 1px solid rgba(0,131,119,0.2); font-size: 13px; font-weight: 600; }
.hp-hero-copy h1 { font-size: 44px; font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; margin: 16px 0; }
.hp-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.hero-trust { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; margin-top: 22px; }
.hero-trust-item { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--on-surface-variant); }
.hero-trust-item svg { color: var(--primary); flex-shrink: 0; }
.hp-hero-visual { position: relative; }
.hp-hero-img { aspect-ratio: 4/5; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-2); }
.hp-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hp-float { position: absolute; background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.5); box-shadow: var(--shadow-1); border-radius: 16px; padding: 12px 16px; font-weight: 600; font-size: 14px; color: var(--premium-blue); display: flex; align-items: center; gap: 10px; }
.hp-float.tl { left: -18px; top: 24%; }
.hp-float.br { right: -12px; bottom: 12%; color: var(--primary); }
.hpf-icon { width: 32px; height: 32px; border-radius: 9px; background: var(--primary-container); color: #fff; display: flex; align-items: center; justify-content: center; }

/* Trust strip */
.trust-strip { border-top: 1px solid var(--outline-variant); border-bottom: 1px solid var(--outline-variant); padding: 26px 0; background: var(--surface-container-lowest); }
.trust-strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trust-stat { text-align: center; }
.trust-stat:not(:last-child) { border-right: 1px solid var(--outline-variant); }
.trust-stat strong { display: block; color: var(--primary); font-size: 22px; font-weight: 800; line-height: 1.1; margin-bottom: 2px; }
.trust-stat > span { color: var(--outline); font-size: 13px; font-weight: 600; line-height: 1.35; display: block; }

/* Concern intro */
.concern-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.concern-intro-grid .msg { font-size: 16px; line-height: 1.7; color: var(--on-surface-variant); margin-bottom: 16px; }
.concern-quote { background: var(--primary); color: #fff; padding: 34px; border-radius: 24px; font-size: 20px; font-weight: 600; font-style: italic; line-height: 1.5; }

/* Signs (8) */
.signs8-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sign8-card { background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); padding: 22px; box-shadow: var(--shadow-1); display: flex; flex-direction: column; gap: 8px; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.sign8-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.s8-icon { width: 46px; height: 46px; border-radius: 13px; background: rgba(0,104,94,0.09); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 4px; transition: background .2s var(--ease), transform .2s var(--ease); }
.sign8-card:hover .s8-icon { background: rgba(0,104,94,0.16); transform: translateY(-1px); }
.sign8-card h3 { font-size: 17px; font-weight: 700; }
.sign8-card p { font-size: 13.5px; color: var(--on-surface-variant); line-height: 1.5; }
.s8-link { margin-top: auto; color: var(--primary); font-weight: 600; font-size: 13px; }

/* Services (3 image cards) */
.svc3-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc3-card { background: var(--surface-container-lowest); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-1); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.svc3-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.svc3-thumb { aspect-ratio: 16/10; overflow: hidden; }
.svc3-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.svc3-card:hover .svc3-thumb img { transform: scale(1.05); }
.svc3-body { padding: 22px 24px 26px; }
.svc3-body h3 { color: var(--primary); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.svc3-body p { color: var(--on-surface-variant); font-size: 15px; line-height: 1.55; margin-bottom: 14px; }

/* Conditions */
.cond-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 28px; }
.cond-chips span { padding: 10px 18px; background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-full); font-size: 14px; font-weight: 600; transition: background .2s var(--ease), color .2s var(--ease); cursor: default; }
.cond-chips span:hover { background: var(--primary-container); color: #fff; border-color: var(--primary-container); }
/* Grouped conditions (2x2 category cards, compact lists) */
.cond-groups { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px 28px; text-align: left; }
.cond-group h3 { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--premium-blue); margin-bottom: 12px; padding-bottom: 9px; border-bottom: 2px solid var(--primary); line-height: 1.3; }
.cond-group h3 .cg-num { flex-shrink: 0; width: 22px; height: 22px; border-radius: 6px; background: rgba(0,104,94,0.10); color: var(--primary); font-size: 11px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; }
.cg-list { list-style: none; margin: 0; padding: 0; }
.cg-list li { position: relative; padding-left: 16px; font-size: 13.5px; line-height: 1.4; color: var(--on-surface-variant); }
.cg-list li:not(:last-child) { margin-bottom: 7px; }
.cg-list li::before { content: ""; position: absolute; left: 1px; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--primary); }
@media (max-width: 900px) { .cond-groups { grid-template-columns: repeat(2, 1fr); gap: 22px 28px; } }
@media (max-width: 560px) { .cond-groups { grid-template-columns: 1fr; gap: 20px; } }
.cond-highlight { max-width: 680px; margin: 0 auto; padding: 24px 28px; background: rgba(0,131,119,0.06); border: 2px dashed var(--primary-container); border-radius: 20px; }
.ch-title { color: var(--primary); font-weight: 700; font-size: 18px; margin-bottom: 6px; }
.cond-highlight p { color: var(--on-surface-variant); font-size: 15px; }

/* Process timeline */
.process-track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative; }
.process-track::before { content: ""; position: absolute; top: 27px; left: 10%; right: 10%; height: 2px; background: var(--outline-variant); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num { width: 54px; height: 54px; border-radius: 50%; background: #fff; border: 3px solid var(--primary); color: var(--primary); font-weight: 800; font-size: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.process-step h4 { font-size: 16px; font-weight: 700; color: var(--premium-blue); margin-bottom: 4px; }
.process-step p { font-size: 13px; color: var(--on-surface-variant); line-height: 1.45; padding: 0 6px; }

/* Programmes */
.prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.prog-card { background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: 24px; padding: 30px 28px; box-shadow: var(--shadow-1); }
.prog-card.featured { border: 2px solid var(--primary-container); box-shadow: var(--shadow-2); position: relative; }
.prog-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--primary-container); color: #fff; padding: 5px 16px; border-radius: var(--r-full); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.prog-card h3 { font-size: 21px; font-weight: 700; margin-bottom: 4px; }
.prog-sub { color: var(--outline); font-size: 14px; margin-bottom: 16px; }
.prog-bestfor { font-size: 13px; line-height: 1.5; color: var(--on-surface-variant); background: rgba(0,104,94,0.06); border-radius: 10px; padding: 10px 12px; margin-bottom: 18px; }
.prog-bestfor span { display: inline-block; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; font-size: 10.5px; color: var(--primary); margin-right: 4px; }
.prog-card.featured .prog-bestfor { background: rgba(30,58,138,0.07); }
.prog-card.featured .prog-bestfor span { color: var(--premium-blue); }
.prog-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.prog-list li { position: relative; padding-left: 24px; font-size: 14px; color: var(--on-surface); }
.prog-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--primary); font-weight: 700; }

/* Why OT Cloud */
.why-otc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.why-otc-img { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-2); }
.why-otc-img img { width: 100%; height: 440px; object-fit: cover; display: block; }
.why-otc-copy > h2 { margin-bottom: 24px; }
.why-otc-features { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.why-feat h4 { color: var(--premium-blue); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.why-feat p { font-size: 13.5px; color: var(--on-surface-variant); line-height: 1.5; }

/* Core values band */
.values { background: var(--primary); color: #fff; padding: 52px 0; text-align: center; }
.values-icons { display: flex; justify-content: center; gap: 48px; margin-bottom: 26px; }
.value-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.value-item span { font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.values-quote { color: #fff; font-size: 26px; font-weight: 700; line-height: 1.35; max-width: 760px; margin: 0 auto; }

/* Founder (home) */
.hp-founder-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 44px; align-items: center; }
.hp-founder-img { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-2); }
.hp-founder-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.hp-founder-copy .eyebrow { display: block; margin-bottom: 8px; }
.hp-founder-copy h3 { font-size: 27px; font-weight: 800; margin-bottom: 2px; }
.hpf-role { color: var(--primary); font-weight: 600; font-size: 15px; margin-bottom: 16px; }
.hp-founder-copy .msg { font-size: 16px; line-height: 1.7; color: var(--on-surface-variant); margin-bottom: 16px; }
.hpf-quote { font-style: italic; font-weight: 700; color: var(--premium-blue); font-size: 17px; }

/* Parent journey */
.journey-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.journey-card { background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); padding: 26px 22px; text-align: center; box-shadow: var(--shadow-1); }
.j-icon { display: inline-flex; width: 52px; height: 52px; border-radius: 14px; background: var(--primary-fixed); color: var(--primary); align-items: center; justify-content: center; margin-bottom: 14px; }
.journey-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.journey-card p { font-size: 13.5px; color: var(--on-surface-variant); line-height: 1.5; }

/* Bento gallery */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.bento-tile { height: 300px; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-1); }
.bento-tile img { width: 100%; height: 100%; object-fit: cover; }
.b-8 { grid-column: span 8; }
.b-4 { grid-column: span 4; }

/* Final CTA */
.hp-cta { background: var(--premium-blue); color: #fff; border-radius: 32px; padding: 48px 40px; text-align: center; }
.hp-cta h2 { color: #fff; font-size: 32px; font-weight: 800; margin-bottom: 14px; line-height: 1.2; }
.hp-cta > p { color: rgba(255,255,255,0.82); font-size: 17px; max-width: 640px; margin: 0 auto 28px; line-height: 1.5; }
.hp-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hp-cta > p.hp-cta-note { max-width: 560px; margin: 28px auto 0; font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,0.62); }

/* Home v2 — responsive */
@media (max-width: 900px) {
    .hp-hero-grid { grid-template-columns: 1fr; gap: 28px; }
    .hp-hero-copy h1 { font-size: 34px; }
    .hp-float { display: none; }
    .trust-strip-grid { grid-template-columns: repeat(3, 1fr); gap: 24px 10px; }
    .concern-intro-grid, .why-otc-grid, .hp-founder-grid { grid-template-columns: 1fr; gap: 28px; }
    .signs8-grid { grid-template-columns: repeat(2, 1fr); }
    .svc3-grid, .prog-grid { grid-template-columns: 1fr; }
    .journey-grid { grid-template-columns: repeat(2, 1fr); }
    .why-otc-img img { height: 300px; }
    .values-icons { gap: 28px; }
    .values-quote { font-size: 21px; }
    /* Process becomes a vertical timeline */
    .process-track { grid-template-columns: 1fr; gap: 22px; }
    .process-track::before { display: none; }
    .process-step {
        display: grid; grid-template-columns: 46px 1fr;
        column-gap: 16px; row-gap: 3px; align-items: start; text-align: left;
        position: relative; z-index: 1;
    }
    /* connecting spine between the numbered circles */
    .process-step::after {
        content: ""; position: absolute; left: 22px; top: 46px; bottom: -22px;
        width: 2px; background: var(--outline-variant); z-index: -1;
    }
    .process-step:last-child::after { display: none; }
    .process-num { margin: 0; width: 46px; height: 46px; font-size: 18px; flex-shrink: 0; grid-row: 1 / span 2; align-self: start; }
    .process-step h4 { grid-column: 2; grid-row: 1; margin-bottom: 0; }
    .process-step p { grid-column: 2; grid-row: 2; padding: 0; }
    /* Bento stacks */
    .b-8, .b-4 { grid-column: span 12; }
    .bento-tile { height: 220px; }
    .hp-cta { padding: 36px 22px; border-radius: 24px; }
}
@media (max-width: 600px) {
    .hp-hero-copy h1 { font-size: 30px; }
    .signs8-grid, .journey-grid { grid-template-columns: 1fr; }
    /* Trust strip: compact 2x2 with cross dividers */
    .trust-strip { padding: 14px 0; }
    .trust-strip-grid { grid-template-columns: repeat(3, 1fr); gap: 14px 8px; }
    .trust-stat { padding: 4px 4px; }
    .trust-stat strong { font-size: 16px; }
    .trust-stat > span { font-size: 11px; line-height: 1.35; }
    .why-otc-features { grid-template-columns: 1fr; }
    .concern-quote { font-size: 18px; padding: 26px; }
}

/* ========================================================
   CONCERNS HUB (v2)
   ======================================================== */
.con2-hero { padding: 44px 0 var(--section-gap); text-align: center; }
.con2-hero .badge { margin-bottom: 16px; }
.con2-hero h1 { font-size: 40px; font-weight: 800; line-height: 1.16; letter-spacing: -0.02em; max-width: 900px; margin: 0 auto 16px; color: var(--secondary); }
.con2-hero .hero-lead { max-width: var(--text-width); margin: 0 auto 24px; }

/* Why early observation */
.obs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.obs-img { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-2); }
.obs-img img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.obs-features { display: flex; flex-direction: column; gap: 20px; }
.obs-feat { display: flex; gap: 16px; }
.of-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--primary-fixed); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.obs-feat h4 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.obs-feat p { font-size: 14px; color: var(--on-surface-variant); line-height: 1.55; }

/* Developmental areas */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.area-card { background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); padding: 24px; box-shadow: var(--shadow-1); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.area-icon { display: inline-flex; width: 44px; height: 44px; border-radius: 12px; background: rgba(0,131,119,0.1); color: var(--primary); align-items: center; justify-content: center; margin-bottom: 14px; }
.area-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.area-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.area-list li { position: relative; padding-left: 16px; font-size: 13.5px; color: var(--on-surface-variant); line-height: 1.5; }
.area-list li::before { content: "•"; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

/* Conditions */
.cond2-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cond2-card { display: block; background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); padding: 20px; box-shadow: var(--shadow-1); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.cond2-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.cond2-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.c2-link { color: var(--primary); font-weight: 600; font-size: 13px; }

/* Age-wise guide */
.age-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 28px; border-bottom: 1px solid var(--outline-variant); padding-bottom: 16px; }
.age-tab { padding: 9px 18px; border-radius: var(--r-full); border: none; cursor: pointer; font-family: "Inter", sans-serif; font-weight: 600; font-size: 14px; background: var(--surface-container); color: var(--on-surface-variant); transition: background .2s var(--ease), color .2s var(--ease); }
.age-tab:hover { background: var(--surface-container-high); }
.age-tab.active { background: var(--primary); color: #fff; }
.age-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.age-col { border-radius: var(--r-card); padding: 28px; }
.age-col.milestones { background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-left: 4px solid var(--primary); box-shadow: var(--shadow-1); }
.age-col.consult { background: rgba(59,93,158,0.06); border: 1px solid var(--outline-variant); }
.age-col h4 { display: flex; align-items: center; gap: 8px; font-size: 19px; font-weight: 700; margin-bottom: 18px; }
.age-col.milestones h4 { color: var(--primary); }
.age-col.consult h4 { color: var(--error); }
.age-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.age-col ul li { position: relative; padding-left: 26px; font-size: 15px; color: var(--on-surface-variant); line-height: 1.5; }
.age-col ul li.ok::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.age-col ul li.flag::before { content: ""; position: absolute; left: 3px; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--error); }

/* Decision guide */
.decision { background: var(--secondary); color: #fff; border-radius: 32px; padding: 44px; }
.decision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.decision h2 { color: #fff; font-size: 28px; font-weight: 700; margin-bottom: 14px; line-height: 1.2; }
.d-lead { color: rgba(255,255,255,0.8); margin-bottom: 24px; font-size: 16px; line-height: 1.6; }
.decision-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dc-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.4; }
.dc-item svg { color: var(--primary-fixed-dim); flex-shrink: 0; margin-top: 2px; }
.checklist-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--r-card); padding: 28px; }
.checklist-card h3 { color: #fff; font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.cc-sub { color: rgba(255,255,255,0.75); font-size: 14px; margin-bottom: 18px; }
.checklist-card label { display: flex; align-items: center; gap: 12px; color: #fff; font-size: 14px; margin-bottom: 12px; cursor: pointer; }
.checklist-card input { width: 18px; height: 18px; accent-color: var(--primary-fixed-dim); }

/* Resources */
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.resource-card { display: block; }
.rc-thumb { aspect-ratio: 16/10; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-1); margin-bottom: 16px; }
.rc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.resource-card:hover .rc-thumb img { transform: scale(1.05); }
.rc-tag { color: var(--primary); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.resource-card h3 { font-size: 18px; font-weight: 700; margin: 8px 0; transition: color .2s var(--ease); }
.resource-card:hover h3 { color: var(--primary); }
.resource-card p { font-size: 14px; color: var(--on-surface-variant); line-height: 1.5; }

/* Concerns final CTA */
.con2-cta { background: var(--primary); color: #fff; border-radius: 32px; padding: 48px 40px; text-align: center; }
.con2-cta h2 { color: #fff; font-size: 32px; font-weight: 800; margin-bottom: 14px; }
.con2-cta > p { color: rgba(255,255,255,0.9); font-size: 17px; max-width: var(--text-width); margin: 0 auto 28px; line-height: 1.5; }
.con2-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-navy { background: var(--secondary); color: #fff; }
.btn-navy:hover { background: #2f4a80; }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1eb85a; }

@media (max-width: 900px) {
    .obs-grid, .decision-grid, .age-panels { grid-template-columns: 1fr; gap: 28px; }
    .resources-grid { grid-template-columns: 1fr; }
    .area-grid, .cond2-grid { grid-template-columns: repeat(2, 1fr); }
    .decision-checks { grid-template-columns: 1fr; }
    .obs-img img { height: 280px; }
    .con2-hero h1 { font-size: 30px; }
    .decision { padding: 32px 22px; border-radius: 24px; }
    .con2-cta { padding: 36px 22px; border-radius: 24px; }
}
@media (max-width: 600px) {
    .area-grid, .cond2-grid { grid-template-columns: 1fr; }
    .con2-hero h1 { font-size: 27px; }
}

/* ========================================================
   SERVICE PAGE (v2 — Occupational Therapy)
   ======================================================== */
.svc2-float { position: absolute; bottom: -18px; left: -18px; z-index: 2; background: #fff; border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow-1); border: 1px solid var(--outline-variant); display: flex; align-items: center; gap: 12px; }
.svc2-float-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--primary-fixed); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.svc2-float .f-title { font-weight: 700; color: var(--premium-blue); font-size: 14px; }
.svc2-float .f-sub { font-size: 12px; color: var(--outline); }

/* Conditions box */
.cond-box { background: var(--premium-blue); color: #fff; border-radius: 28px; padding: 40px; }
.cond-box h2 { color: #fff; font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.cb-lead { color: rgba(255,255,255,0.9); font-size: 16px; margin-bottom: 24px; max-width: 760px; line-height: 1.6; }
.cond-box-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.cond-box-chips span { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 8px 18px; border-radius: var(--r-full); font-size: 14px; font-weight: 600; }
.cond-box-note { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 16px 20px; font-style: italic; font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.5; }

/* Areas we assess (pills) */
.assess-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.assess-pills span { background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-full); padding: 10px 18px; font-size: 14px; font-weight: 600; color: var(--on-surface); box-shadow: var(--shadow-1); }

/* 6-step process */
.process-track.six { grid-template-columns: repeat(6, 1fr); }

/* Science boxes */
.science-box { background: rgba(133,246,229,0.25); border-radius: var(--r-card); padding: 18px 22px; margin-bottom: 14px; }
.science-box .sb-title { color: var(--primary); font-weight: 700; font-size: 15px; margin-bottom: 2px; }
.science-box p { font-size: 14px; color: var(--on-surface-variant); }

/* Treatment approaches band */
.approaches { background: var(--primary); color: #fff; padding: var(--section-gap) 0; }
.approaches .section-head { margin-bottom: 36px; }
.approaches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.approach-item { border-left: 4px solid var(--primary-fixed-dim); padding-left: 24px; }
.approach-item h4 { color: #fff; font-size: 21px; font-weight: 700; margin-bottom: 10px; }
.approach-item p { color: rgba(255,255,255,0.8); font-size: 15px; line-height: 1.6; }

/* Partners */
.partners { text-align: center; }
.partners-icon { display: inline-flex; color: var(--primary); margin-bottom: 12px; }
.partners-cols { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; margin-top: 28px; }
.partners-cols > div { max-width: 300px; }
.partners-cols h5 { color: var(--premium-blue); font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.partners-cols p { color: var(--on-surface-variant); font-size: 14px; }

/* Success measures */
.success-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.success-card { border: 2px solid var(--primary-fixed-dim); border-radius: var(--r-card); padding: 32px; text-align: center; }
.success-card .s-num { font-size: 34px; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.success-card .s-title { color: var(--premium-blue); font-weight: 700; margin-bottom: 6px; }
.success-card .s-desc { font-size: 14px; color: var(--on-surface-variant); line-height: 1.5; }

/* Resource links */
.res-title { font-weight: 700; color: var(--premium-blue); margin-bottom: 16px; }
.res-links { display: flex; flex-wrap: wrap; gap: 12px 32px; }
.res-links a { color: var(--on-surface-variant); font-size: 15px; transition: color .2s var(--ease); }
.res-links a:hover { color: var(--primary); }

@media (max-width: 900px) {
    .approaches-grid, .success-grid { grid-template-columns: 1fr; }
    .cond-box { padding: 28px 22px; border-radius: 20px; }
    .process-track.six { grid-template-columns: 1fr; }
    .partners-cols { gap: 24px; }
    .svc2-float { left: 12px; bottom: -16px; }
}

/* ========================================================
   SPEECH SERVICE PAGE
   ======================================================== */
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }

/* Speech vs Language vs Communication */
.stlc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stlc-card { background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-top: 4px solid var(--primary); border-radius: var(--r-card); padding: 32px 28px; text-align: center; box-shadow: var(--shadow-1); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.stlc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.stlc-card.teal { border-top-color: var(--primary); }
.stlc-card.blue { border-top-color: var(--secondary); }
.stlc-card.green { border-top-color: var(--tertiary); }
.stlc-icon { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.stlc-card.teal .stlc-icon { background: var(--primary-fixed); color: var(--primary); }
.stlc-card.blue .stlc-icon { background: #d8e2ff; color: var(--secondary); }
.stlc-card.green .stlc-icon { background: #6bff8f; color: var(--tertiary); }
.stlc-card h3 { font-size: 21px; font-weight: 700; margin-bottom: 12px; }
.stlc-card p { color: var(--on-surface-variant); font-size: 15px; line-height: 1.6; }

/* Areas we assess (dark band) */
.assess-dark { background: var(--primary); color: #fff; padding: var(--section-gap) 0; }
.assess-dark .section-head { margin-bottom: 36px; }
.assess-dark-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.ad-tile { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 22px 12px; background: rgba(255,255,255,0.08); border-radius: var(--r-btn); transition: background .2s var(--ease); }
.ad-tile:hover { background: rgba(255,255,255,0.16); }
.ad-tile svg { color: var(--primary-fixed-dim); }
.ad-tile span { font-size: 13px; font-weight: 600; line-height: 1.3; }

/* Speech final CTA links */
.speech-cta-links { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 22px; }
.speech-cta-links a { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 15px; color: var(--secondary); }
.speech-cta-links a.wa { color: var(--primary); }
.speech-cta-links a:hover { text-decoration: underline; }
.speech-cta-links .sep { color: var(--outline-variant); }

@media (max-width: 900px) {
    .cards-2 { grid-template-columns: 1fr; }
    .stlc-grid { grid-template-columns: 1fr; }
    .assess-dark-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .assess-dark-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================================
   EARLY INTERVENTION SERVICE PAGE
   ======================================================== */
.ei-domains { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.ei-domain { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 22px 12px; border-radius: var(--r-card); transition: background .2s var(--ease); }
.ei-domain:hover { background: var(--surface-container-lowest); }
.eid-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--primary-fixed); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.eid-label { font-size: 14px; font-weight: 600; color: var(--on-surface-variant); text-align: center; }

/* Power of early years */
.ei-power-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.ei-images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ei-images img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--r-card); box-shadow: var(--shadow-1); }
.ei-images img:nth-child(2) { margin-top: 28px; }

/* Conditions supported (on dark band) */
.ei-conditions { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.ei-cond-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ei-cond-item { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-btn); padding: 12px 14px; font-size: 14px; font-weight: 600; }
.ei-cond-item svg { color: var(--primary-fixed-dim); flex-shrink: 0; }
.ei-cond-img { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-2); }
.ei-cond-img img { width: 100%; height: 440px; object-fit: cover; display: block; }

/* Play with purpose */
.ei-play-list { display: flex; flex-direction: column; gap: 14px; }

/* Parent partnership */
.ei-partner { background: #d8e2ff; border-radius: 32px; padding: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.ei-partner-copy h2 { color: #001a42; font-size: 28px; font-weight: 700; margin-bottom: 14px; line-height: 1.2; }
.ei-partner-copy > p { color: #204584; font-size: 16px; line-height: 1.6; margin-bottom: 22px; }
.ei-partner-checks { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ei-partner-checks li { display: flex; align-items: center; gap: 10px; color: #204584; font-weight: 600; font-size: 15px; }
.ei-partner-checks svg { color: var(--secondary); flex-shrink: 0; }
.ei-partner-img { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-1); border: 6px solid rgba(255,255,255,0.5); }
.ei-partner-img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }

/* Measuring change */
.ei-progress { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.ei-prog-item .num { display: block; font-size: 40px; font-weight: 800; color: rgba(0,104,94,0.2); margin-bottom: 8px; line-height: 1; }
.ei-prog-item p { font-weight: 600; font-size: 15px; color: var(--on-surface); }

/* Resource grid (4 up) */
.res-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 900px) {
    .ei-domains { grid-template-columns: repeat(3, 1fr); }
    .ei-power-grid, .ei-conditions, .ei-partner { grid-template-columns: 1fr; gap: 28px; }
    .ei-cond-img img { height: 280px; }
    .ei-progress { grid-template-columns: repeat(3, 1fr); }
    .res-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .ei-partner { padding: 28px 22px; border-radius: 24px; }
}
@media (max-width: 600px) {
    .ei-domains, .ei-progress { grid-template-columns: repeat(2, 1fr); }
    .ei-cond-list { grid-template-columns: 1fr; }
    .res-grid-4 { grid-template-columns: 1fr; }
}

/* ========================================================
   SPECIAL EDUCATION SERVICE PAGE
   ======================================================== */
.teach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.sr-box { background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: 32px; padding: 40px; box-shadow: var(--shadow-1); display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.sr-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sr-check { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--on-surface); }
.sr-check svg { color: var(--primary); flex-shrink: 0; }
.sr-img { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-1); }
.sr-img img { width: 100%; height: 360px; object-fit: cover; display: block; }

.collab-band { background: var(--primary-container); color: #fff; padding: var(--section-gap) 0; text-align: center; }
.collab-band h2 { color: #fff; font-size: 30px; font-weight: 700; margin-bottom: 16px; }
.collab-band p { color: rgba(255,255,255,0.9); font-size: 17px; line-height: 1.7; }

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

@media (max-width: 900px) {
    .teach-grid { grid-template-columns: 1fr; }
    .sr-box { grid-template-columns: 1fr; gap: 28px; padding: 28px 22px; border-radius: 24px; }
    .whychoose-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .sr-checks { grid-template-columns: 1fr; }
}

/* ========================================================
   CHILD PSYCHOLOGY SERVICE PAGE
   ======================================================== */
.psy-def-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.psy-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.psy-chip { display: flex; align-items: center; gap: 14px; font-weight: 600; color: var(--premium-blue); font-size: 15px; }
.pc-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--surface-container-lowest); color: var(--primary); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-1); flex-shrink: 0; }

/* Philosophy band */
.philosophy-band { background: var(--premium-blue); color: #fff; border-radius: 32px; padding: 56px 40px; text-align: center; }
.philosophy-band h2 { color: #fff; font-size: 30px; font-weight: 700; margin-bottom: 16px; }
.philosophy-band > p { color: rgba(255,255,255,0.85); font-size: 17px; line-height: 1.7; max-width: 780px; margin: 0 auto 24px; }
.philosophy-quote { color: var(--primary-fixed-dim) !important; font-size: 28px !important; font-weight: 700; font-style: italic; line-height: 1.3; max-width: 720px; margin: 0 auto !important; }

/* Clinical journey (dark) */
.psy-journey { background: var(--ink); color: #fff; padding: var(--section-gap) 0; }
.psy-journey .section-head { margin-bottom: 36px; }
.psy-journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 40px; }
.psy-step { display: flex; gap: 18px; }
.psy-step-num { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; }
.psy-step h4 { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.psy-step p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.55; }

/* Parent partnership */
.psy-partner { background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: 28px; padding: 40px; box-shadow: var(--shadow-1); }
.psy-partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.psy-partner-item { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--premium-blue); font-size: 15px; }
.psy-partner-item svg { color: var(--primary); flex-shrink: 0; }

@media (max-width: 900px) {
    .psy-def-grid { grid-template-columns: 1fr; gap: 28px; }
    .psy-journey-grid { grid-template-columns: 1fr; gap: 24px; }
    .psy-partner-grid { grid-template-columns: 1fr; }
    .philosophy-band { padding: 36px 22px; border-radius: 24px; }
    .philosophy-quote { font-size: 22px !important; }
}
@media (max-width: 600px) {
    .psy-chips { grid-template-columns: 1fr; }
}

/* ========================================================
   ASSESSMENT PAGE (v2 content)
   ======================================================== */
/* 6-step process (dark band) */
.assess-process { background: var(--ink); color: #fff; padding: var(--section-gap) 0; }
.assess-process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.astep-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-card); padding: 24px; transition: background .2s var(--ease); }
.astep-card:hover { background: rgba(255,255,255,0.12); }
.astep-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--primary-fixed-dim); margin-bottom: 10px; }
.astep-card h3 { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.astep-card p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.55; }

/* What we evaluate */
.evaluate-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.eval-tile { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; padding: 24px 12px; border: 1px solid var(--outline-variant); border-radius: 20px; color: var(--primary); transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease); }
.eval-tile:hover { background: var(--primary-container); border-color: var(--primary-container); color: #fff; }
.eval-tile span { font-size: 13px; font-weight: 700; color: var(--on-surface); }
.eval-tile:hover span { color: #fff; }

/* Logistics */
.logistics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.logi-box { background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: 28px; padding: 40px; box-shadow: var(--shadow-1); }
.logi-box h3 { display: flex; align-items: center; gap: 14px; font-size: 21px; font-weight: 700; margin-bottom: 22px; }
.lb-icon { color: var(--primary); display: flex; }
.logi-checks { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.logi-checks li { display: flex; align-items: flex-start; gap: 14px; color: var(--on-surface-variant); font-size: 15px; line-height: 1.5; }
.lc-dot { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--primary-container); color: #fff; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.logi-box.dark { background: var(--primary); color: #fff; display: flex; flex-direction: column; justify-content: center; }
.logi-box.dark h3 { color: #fff; }
.logi-box.dark p { color: rgba(255,255,255,0.9); font-size: 16px; line-height: 1.6; margin-bottom: 24px; }
.logi-box.dark strong { color: #fff; }
.logi-timeline { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,0.1); padding: 20px; border-radius: 18px; }
.lt-icon { color: var(--primary-fixed-dim); display: flex; }
.lt-title { font-weight: 700; }
.lt-sub { font-size: 13px; color: rgba(255,255,255,0.8); }

/* Clinical transparency */
.transparency-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; text-align: left; max-width: 900px; margin: 0 auto; }
.trans-item { border-left: 4px solid var(--primary-container); padding-left: 24px; }
.trans-item h4 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.trans-item p { color: var(--on-surface-variant); line-height: 1.6; font-size: 15px; }

@media (max-width: 900px) {
    .assess-process-grid { grid-template-columns: 1fr; }
    .evaluate-grid { grid-template-columns: repeat(3, 1fr); }
    .logistics-grid, .transparency-grid { grid-template-columns: 1fr; }
    .logi-box { padding: 28px 22px; }
}
@media (max-width: 600px) {
    .evaluate-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================================
   RESOURCES / LEARNING center
   ======================================================== */
.res-quote { position: absolute; bottom: -20px; right: -16px; max-width: 260px; padding: 20px 22px; background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.5); border-radius: var(--r-card); box-shadow: var(--shadow-1); font-style: italic; font-size: 14px; color: var(--premium-blue); line-height: 1.5; }

/* Explore by topic (bento) */
.topic-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.topic-card { display: flex; flex-direction: column; justify-content: flex-end; min-height: 260px; padding: 32px; border-radius: 20px; transition: transform .2s var(--ease), background .2s var(--ease); }
.topic-card:hover { transform: translateY(-4px); }
.topic-card.wide { grid-column: span 2; }
.topic-card.teal { background: rgba(0,104,94,0.06); }
.topic-card.teal:hover { background: rgba(0,104,94,0.11); }
.topic-card.blue { background: rgba(59,93,158,0.06); }
.topic-card.blue:hover { background: rgba(59,93,158,0.11); }
.topic-card.green { background: rgba(0,107,45,0.07); }
.topic-card.green:hover { background: rgba(0,107,45,0.12); }
.topic-card.outline { border: 1px solid var(--outline-variant); }
.topic-card.outline:hover { border-color: var(--primary); }
.tc-icon { margin-bottom: 16px; }
.topic-card.teal .tc-icon { color: var(--primary); }
.topic-card.blue .tc-icon { color: var(--secondary); }
.topic-card.green .tc-icon { color: var(--tertiary); }
.topic-card.outline .tc-icon { color: var(--outline); }
.topic-card h3 { color: var(--premium-blue); font-size: 21px; font-weight: 700; margin-bottom: 8px; }
.topic-card p { color: var(--on-surface-variant); font-size: 14px; line-height: 1.5; max-width: 340px; }
.tc-link { margin-top: 16px; font-weight: 600; font-size: 14px; color: var(--primary); }

/* Myth vs Fact */
.myth-box { background: var(--premium-blue); color: #fff; border-radius: 32px; padding: 48px; display: grid; grid-template-columns: 1fr 1.3fr; gap: 44px; align-items: center; }
.myth-intro h2 { color: #fff; font-size: 32px; font-weight: 700; margin-bottom: 14px; }
.myth-intro > p { color: rgba(255,255,255,0.8); font-size: 17px; line-height: 1.6; margin-bottom: 24px; }
.myth-list { display: flex; flex-direction: column; gap: 18px; }
.myth-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-card); padding: 24px; }
.mc-row { display: flex; gap: 12px; align-items: flex-start; }
.mc-row.fact { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.1); }
.mc-myth { color: #ff8a8a; font-weight: 700; flex-shrink: 0; }
.mc-fact { color: var(--tertiary-fixed, #6bff8f); font-weight: 700; flex-shrink: 0; }
.myth-card p { font-size: 15px; line-height: 1.5; }
.mc-row.fact p { color: rgba(255,255,255,0.82); }

/* Professional authority */
.authority-box { display: flex; gap: 28px; align-items: center; background: var(--surface-container-low); border: 1px solid var(--outline-variant); border-radius: 32px; padding: 40px; }
.auth-icon { flex-shrink: 0; width: 84px; height: 84px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; }
.authority-box h3 { color: var(--premium-blue); font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.authority-box p { color: var(--on-surface-variant); font-size: 16px; line-height: 1.7; }
.authority-box strong { color: var(--premium-blue); }

/* Community education / workshops */
.workshop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.workshop-card { position: relative; aspect-ratio: 4/3; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-1); }
.workshop-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.workshop-card:hover img { transform: scale(1.08); }
.workshop-card .wc-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; background: linear-gradient(to top, rgba(30,41,59,0.85), transparent 60%); color: #fff; }
.wc-overlay h4 { color: #fff; font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.wc-overlay p { color: rgba(255,255,255,0.85); font-size: 13px; line-height: 1.4; }

/* Newsletter */
.newsletter { background: var(--primary); color: #fff; padding: var(--section-gap) 0; }
.newsletter h2 { color: #fff; font-size: 32px; font-weight: 700; margin-bottom: 12px; }
.newsletter > .container > p { color: var(--primary-fixed-dim); font-size: 17px; max-width: 600px; margin: 0 auto 28px; line-height: 1.6; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 14px 18px; border: none; border-radius: var(--r-btn); font-family: "Inter", sans-serif; font-size: 15px; background: #fff; color: var(--premium-blue); }
.newsletter-form input:focus { outline: none; box-shadow: 0 0 0 3px var(--primary-fixed-dim); }
.nl-note { color: rgba(255,255,255,0.5); font-size: 12px; margin-top: 18px; }
.nl-success { max-width: 520px; margin: 0 auto; }
.nls-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,0.15); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.nl-success h2 { color: #fff; }
.nl-success p { color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.6; }

@media (max-width: 900px) {
    .topic-bento { grid-template-columns: 1fr 1fr; }
    .topic-card.wide { grid-column: span 2; }
    .myth-box { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; border-radius: 24px; }
    .authority-box { flex-direction: column; text-align: center; padding: 32px 24px; }
    .workshop-grid { grid-template-columns: 1fr; }
    .res-quote { position: static; max-width: 100%; margin-top: 14px; }
}
@media (max-width: 600px) {
    .topic-bento { grid-template-columns: 1fr; }
    .topic-card.wide { grid-column: span 1; }
    .newsletter-form { flex-direction: column; }
}

/* ========================================================
   ABOUT / MEET THE TEAM
   ======================================================== */
.about-founder-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.about-founder-grid .eyebrow { display: block; }
.about-founder-grid .msg { margin-bottom: 22px; }
.founder-quote { background: rgba(0,104,94,0.05); border-left: 4px solid var(--primary); border-radius: 0 var(--r-card) var(--r-card) 0; padding: 24px 28px; font-style: italic; font-size: 18px; line-height: 1.5; color: var(--premium-blue); margin-bottom: 24px; }
.fq-label { font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--on-surface-variant); margin-bottom: 12px; }
.af-portrait { aspect-ratio: 3/4; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-2); }
.af-portrait img { width: 100%; height: 100%; object-fit: cover; }

/* Team roles (dark) */
.team-roles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.role-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-card); padding: 28px; transition: background .2s var(--ease); }
.role-card:hover { background: rgba(255,255,255,0.1); }
.rc-ico { display: inline-flex; color: var(--primary-fixed-dim); margin-bottom: 16px; }
.role-card h3 { color: #fff; font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.role-card p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.55; }

/* Collaborative workflow (scrollable timeline) */
.workflow-scroll { overflow-x: auto; padding-bottom: 10px; }
.workflow-track { display: flex; justify-content: space-between; gap: 12px; min-width: 820px; position: relative; padding-top: 8px; }
.workflow-track::before { content: ""; position: absolute; top: 30px; left: 40px; right: 40px; height: 2px; background: var(--outline-variant); }
.wf-step { flex: 1; text-align: center; position: relative; }
.wf-num { width: 46px; height: 46px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; margin: 0 auto 16px; box-shadow: 0 0 0 6px var(--surface-container-lowest); }
.wf-step h4 { font-size: 15px; font-weight: 700; color: var(--premium-blue); margin-bottom: 4px; }
.wf-step p { font-size: 12px; color: var(--on-surface-variant); line-height: 1.4; padding: 0 4px; }

/* What parents expect */
.expect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px 32px; }
.expect-item { display: flex; gap: 14px; }
.exp-check { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--primary-fixed); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.expect-item h4 { font-size: 16px; font-weight: 700; color: var(--premium-blue); margin-bottom: 3px; }
.expect-item p { font-size: 14px; color: var(--on-surface-variant); line-height: 1.5; }

/* Gallery */
.about-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.about-gallery .ag-tile { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-1); }
.about-gallery .ag-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.about-gallery .ag-tile:hover img { transform: scale(1.05); }
.about-gallery .ag-tile.big { grid-column: span 2; grid-row: span 2; }
.about-gallery .ag-tile.wide { grid-column: span 2; }

@media (max-width: 900px) {
    .about-founder-grid { grid-template-columns: 1fr; gap: 28px; }
    .af-portrait { max-width: 360px; }
    .team-roles-grid { grid-template-columns: 1fr; }
    .expect-grid { grid-template-columns: 1fr 1fr; }
    .about-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
    .about-gallery .ag-tile.big, .about-gallery .ag-tile.wide { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 600px) {
    .expect-grid { grid-template-columns: 1fr; }
    .about-gallery { grid-template-columns: 1fr; }
    .about-gallery .ag-tile.big, .about-gallery .ag-tile.wide { grid-column: span 1; }
}

/* ========================================================
   CONTACT PAGE (v2)
   ======================================================== */
.ct-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.ct-hero h1 { font-size: 42px; font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; margin: 16px 0; }
.ct-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.ct-hero-img { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-2); }
.ct-hero-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

/* Connection cards */
.ct-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ct-card { background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); padding: 26px; box-shadow: var(--shadow-1); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.ct-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.ctc-icon { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.ctc-icon.teal { background: var(--primary-fixed); color: var(--primary); }
.ctc-icon.blue { background: #d8e2ff; color: var(--secondary); }
.ctc-icon.green { background: rgba(37,211,102,0.15); color: #1eaf57; }
.ct-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.ct-card p { color: var(--on-surface-variant); font-size: 15px; margin-bottom: 12px; }
.ct-card p a:hover { color: var(--primary); }
.ctc-link { color: var(--primary); font-weight: 600; font-size: 14px; }
.ctc-meta { color: var(--outline); font-weight: 600; font-size: 13px; }

/* Booking hub */
.booking-hub { display: grid; grid-template-columns: 2fr 3fr; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-2); border: 1px solid var(--outline-variant); }
.bh-panel { background: var(--primary-container); color: #fff; padding: 40px; display: flex; flex-direction: column; justify-content: space-between; gap: 32px; }
.bh-panel h2 { color: #fff; font-size: 26px; font-weight: 700; margin-bottom: 14px; line-height: 1.25; }
.bh-panel > div > p { color: rgba(255,255,255,0.9); font-size: 15px; line-height: 1.6; margin-bottom: 22px; }
.bh-checks { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.bh-checks li { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.bh-checks svg { flex-shrink: 0; background: rgba(255,255,255,0.2); border-radius: 50%; padding: 4px; box-sizing: content-box; }
.bh-quote { font-style: italic; font-size: 14px; color: rgba(255,255,255,0.85); border-top: 1px solid rgba(255,255,255,0.2); padding-top: 24px; line-height: 1.5; }
.bh-quote span { display: block; font-style: normal; font-weight: 700; margin-top: 8px; }
.bh-form-wrap { background: #fff; padding: 40px; }
.bh-radios { display: flex; gap: 20px; padding-top: 6px; }
.bh-radio { display: flex; align-items: center; gap: 8px; font-size: 15px; cursor: pointer; }
.bh-radio input { accent-color: var(--primary); width: 16px; height: 16px; }
.bh-fineprint { text-align: center; font-size: 12px; color: var(--outline); margin-top: 14px; }

/* Preparation */
.prep-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.prep-col { background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); padding: 36px; box-shadow: var(--shadow-1); }
.prep-col h3 { display: flex; align-items: center; gap: 14px; font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.pc-i { color: var(--primary); display: flex; }
.pc-i.blue { color: var(--secondary); }
.prep-item { display: flex; gap: 16px; margin-bottom: 20px; }
.prep-item:last-child { margin-bottom: 0; }
.pi-ic { flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.pi-ic.teal { background: var(--primary-fixed); color: var(--primary); }
.pi-ic.blue { background: #d8e2ff; color: var(--secondary); }
.prep-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 3px; }
.prep-item p { font-size: 14px; color: var(--on-surface-variant); line-height: 1.5; }

/* Showcase + hours */
.showcase-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }
.showcase-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.showcase-imgs img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--r-card); box-shadow: var(--shadow-1); }
.showcase-imgs img:nth-child(2) { margin-top: 24px; }
.ct-map { border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--outline-variant); height: 240px; }
.ct-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-note { display: flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--on-surface-variant); font-size: 14px; }
.map-note svg { color: var(--primary); flex-shrink: 0; }
.hours-card { background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); padding: 36px; box-shadow: var(--shadow-1); }
.hours-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.hours-table { width: 100%; border-collapse: collapse; border: 1px solid var(--outline-variant); border-radius: var(--r-btn); overflow: hidden; }
.hours-table th { background: var(--surface); text-align: left; padding: 12px 16px; font-size: 13px; font-weight: 700; color: var(--on-surface-variant); }
.hours-table td { padding: 14px 16px; font-size: 14px; border-top: 1px solid var(--outline-variant); }
.badge-open { background: rgba(16,135,59,0.12); color: #0a7a34; padding: 4px 12px; border-radius: var(--r-full); font-size: 12px; font-weight: 700; }
.badge-closed { background: rgba(186,26,26,0.1); color: var(--error); padding: 4px 12px; border-radius: var(--r-full); font-size: 12px; font-weight: 700; }
.pro-enquiry { margin-top: 28px; padding: 24px; background: rgba(0,104,94,0.05); border: 1px solid rgba(0,104,94,0.12); border-radius: var(--r-card); }
.pro-enquiry h4 { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.pro-enquiry h4 svg { color: var(--primary); }
.pro-enquiry p { font-size: 14px; color: var(--on-surface-variant); margin-bottom: 14px; line-height: 1.5; }

/* Values dark */
.values-dark { background: var(--ink); color: #fff; padding: var(--section-gap) 0; }
.values-dark-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 900px; margin: 0 auto; }
.vd-num { display: block; font-size: 36px; font-weight: 800; color: var(--primary-fixed-dim); margin-bottom: 12px; }
.values-dark-grid h4 { color: #fff; font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.values-dark-grid p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.55; }

/* Trust bar */
.trust-bar-section { border-top: 1px solid var(--outline-variant); padding: 32px 0; }
.trust-bar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; }
.tb-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--on-surface-variant); }
.tb-item svg { color: var(--primary); }

@media (max-width: 900px) {
    .ct-hero-grid, .booking-hub, .prep-grid, .showcase-grid { grid-template-columns: 1fr; }
    .ct-hero h1 { font-size: 32px; }
    .ct-cards { grid-template-columns: 1fr 1fr; }
    .bh-panel { padding: 32px 24px; }
    .bh-form-wrap { padding: 32px 24px; }
    .values-dark-grid { grid-template-columns: 1fr; gap: 28px; }
    .trust-bar { justify-content: center; gap: 24px; }
}
@media (max-width: 600px) {
    .ct-cards { grid-template-columns: 1fr; }
    .showcase-imgs img:nth-child(2) { margin-top: 0; }
}

/* ========================================================
   SERVICES INDEX
   ======================================================== */
.svc-index-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.svc-index-card { display: flex; flex-direction: column; background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); padding: 24px 22px; box-shadow: var(--shadow-1); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.svc-index-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.sic-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.sic-icon { width: 40px; height: 40px; flex-shrink: 0; border-radius: 11px; background: var(--primary-fixed); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.svc-index-card h3 { font-size: 17px; font-weight: 700; line-height: 1.25; margin-bottom: 0; }
.svc-index-card p { color: var(--on-surface-variant); font-size: 14px; line-height: 1.5; margin-bottom: 14px; }
.sic-link { margin-top: auto; color: var(--primary); font-weight: 600; font-size: 13.5px; }

@media (max-width: 900px) { .svc-index-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .svc-index-grid { grid-template-columns: 1fr; } }

/* ========================================================
   MOBILE ACTION BAR (Call / WhatsApp / Book)
   ======================================================== */
.mobile-actions { display: none; }

/* --------------------------------------------------------
   Responsive
   -------------------------------------------------------- */
@media (max-width: 1024px) {
    :root { --section-gap: 40px; }
    .cards-4, .svc-outcome-cards, .asm-team-grid, .blog-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .hero-grid, .split, .assessment-grid { grid-template-columns: 1fr; gap: 28px; }
    .hero h1 { font-size: 34px; }
    .section-title, .split h2, .services-head h2, .assessment h2 { font-size: 32px; }
    .cards-3, .why-grid { grid-template-columns: 1fr; }
    /* Header keeps logo + phone + email; all nav items live in the drawer */
    .nav-brand { gap: 14px; }
    .nav-contacts { gap: 12px; padding-left: 14px; }
    .cta h2 { font-size: 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }

    /* About */
    .about-hero-grid, .story-grid, .standards-grid, .founder-grid { grid-template-columns: 1fr; gap: 28px; }
    .founder-body h2 { font-size: 28px; }
    .about-hero h1 { font-size: 34px; }
    .story h2, .facility-head h2, .standards-copy h2, .cta-teal h2 { font-size: 32px; }
    .pillars { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: 1fr; height: auto; }
    .gallery-tile { aspect-ratio: 4/3; }
    .facility-head { flex-direction: column; align-items: flex-start; }

    /* Services */
    .svc-hero-grid, .svc-intro-grid, .svc-approach-grid { grid-template-columns: 1fr; gap: 28px; }
    .svc-hero h1 { font-size: 34px; }
    .svc-title, .svc-outcomes h2, .svc-cta-box h2 { font-size: 32px; }
    .svc-cards, .svc-related-cards, .svc-outcome-cards { grid-template-columns: 1fr; }
    .svc-related-head { flex-direction: column; align-items: flex-start; }
    .svc-cta-box { padding: 36px 22px; border-radius: 24px; }
    .svc-approach-imgs img:first-child { margin-top: 0; }

    /* Concerns */
    .con-hero-grid, .con-approach-grid, .con-faq-grid { grid-template-columns: 1fr; gap: 28px; }
    .con-hero h1 { font-size: 34px; }
    .con-milestones { grid-template-columns: 1fr; }
    .con-approach-copy h2, .con-faq-intro h2 { font-size: 32px; }
    .con-insight { padding: 32px 22px; border-radius: 24px; }
    .con-insight .quote { font-size: 28px; }
    .insight-stats { grid-template-columns: 1fr 1fr; }
    .con-final-cta { padding: 36px 22px; border-radius: 24px; }
    .con-final-cta h2 { font-size: 27px; }

    /* Assessment */
    .asm-hero-grid, .asm-expect-grid, .asm-booking-grid { grid-template-columns: 1fr; gap: 28px; }
    .asm-hero h1 { font-size: 34px; }
    .asm-hero-img { transform: none; }
    .asm-phil-cards { grid-template-columns: 1fr; }
    .asm-expect-copy > h2, .asm-team-head h2, .asm-booking-intro h2, .asm-faq h2 { font-size: 32px; }
    .asm-report img { height: 400px; }
    .asm-team-head { flex-direction: column; align-items: flex-start; }
    .asm-booking::before { display: none; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 24px; }

    /* Blog */
    .blog-grid { grid-template-columns: 1fr; }
    .article h1 { font-size: 32px; }

    /* Mobile action bar */
    body { padding-bottom: 66px; }
    .mobile-actions {
        display: flex; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 60;
        justify-content: space-around; align-items: center;
        background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
        border-top: 1px solid var(--surface-container);
        box-shadow: 0 -4px 20px rgba(30,41,59,0.08);
        padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    }
    /* Standardized single colour scheme for all bottom-bar items */
    .mobile-actions a, .mobile-actions a.book { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 10px; font-weight: 700; color: var(--primary); }
}
@media (max-width: 600px) {
    .asm-team-grid { grid-template-columns: 1fr; }
    .asm-badge-float { left: 12px; bottom: -16px; }
}
@media (max-width: 600px) {
    :root { --section-gap: 24px; --section-pad: 22px; --gutter: 18px; }
    .section-head { margin-bottom: 18px; }
    .hero h1 { font-size: 30px; }
    .welcome-inner h2 { font-size: 25px; }
    .card, .testimonial { padding: 28px; }
    /* Signs — mobile */
    .signs-grid { gap: 16px; }
    .sign-card { padding: 22px 20px 24px; }
    .sign-head { gap: 12px; margin-bottom: 14px; padding-bottom: 14px; }
    .sign-icon { width: 42px; height: 42px; }
    .sign-head h3 { font-size: 16px; }
    .signs-cta a { display: inline-block; margin-top: 4px; }
    .services-grid { grid-template-columns: 1fr; gap: 14px; }
    .service-item { padding: 18px 20px; gap: 16px; }
    .service-ic { width: 44px; height: 44px; }
    .cards-4 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .expert-cards { grid-template-columns: 1fr !important; }
    .services-head { flex-direction: column; align-items: flex-start; }
}

/* --------------------------------------------------------
   LEGAL PAGES (Privacy Policy / Terms)
   -------------------------------------------------------- */
.legal-hero { background: var(--surface-container-lowest); padding-bottom: 0; }
.legal-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--primary); margin-bottom: 18px; }
.legal-breadcrumb a { color: var(--primary); }
.legal-breadcrumb svg { color: var(--outline); }
.legal-breadcrumb span { color: var(--on-surface-variant); }
.legal-hero h1 { font-size: 42px; margin-bottom: 16px; }
.legal-hero .hero-lead { max-width: var(--text-width); }

.legal-body { background: var(--surface-container-lowest); }
.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: 64px; align-items: start; }

.legal-sidebar { position: sticky; top: 96px; }
.legal-sidebar h4 { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); margin-bottom: 18px; }
.legal-nav { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.legal-nav a { display: block; padding: 8px 0 8px 16px; border-left: 3px solid var(--outline-variant); font-size: 14px; font-weight: 600; color: var(--on-surface-variant); transition: color .2s var(--ease), border-color .2s var(--ease); }
.legal-nav a:hover { color: var(--primary); }
.legal-nav a.active { color: var(--primary); border-left-color: var(--primary); }

.legal-content { max-width: var(--text-width); }
.legal-content h2 { font-size: 24px; font-weight: 700; color: var(--premium-blue); margin: 48px 0 18px; }
.legal-content section:first-child h2 { margin-top: 0; }
.legal-content #intro p:first-child { margin-top: 0; }
.legal-content p { font-size: 16px; line-height: 1.65; color: var(--on-surface-variant); margin-bottom: 18px; }
.legal-content strong { color: var(--on-surface); font-weight: 700; }
.legal-content ul { list-style: none; margin: 0 0 22px; padding: 0; }
.legal-content li { position: relative; padding-left: 30px; margin-bottom: 12px; font-size: 16px; line-height: 1.6; color: var(--on-surface-variant); }
.legal-content li::before { content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--primary); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat; }

.legal-callout { background: var(--surface-container-low); border: 1px solid var(--outline-variant); border-radius: var(--r-card); padding: 28px 32px; margin: 40px 0; }
.legal-callout h3 { display: flex; align-items: center; gap: 12px; font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.legal-callout p { margin-bottom: 0; }

.legal-contact { margin-top: 56px; padding: 28px 32px; background: rgba(0, 104, 94, 0.05); border: 1px solid rgba(0, 104, 94, 0.15); border-radius: var(--r-card); }
.legal-contact h4 { font-size: 18px; font-weight: 700; color: var(--on-surface); margin-bottom: 10px; }
.legal-contact-rows { display: flex; flex-wrap: wrap; gap: 12px 28px; margin: 14px 0 14px; }
.legal-contact-rows a { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: var(--primary); }
.legal-address { font-size: 14px; color: var(--on-surface-variant); margin-bottom: 0; }

@media (max-width: 900px) {
    .legal-layout { grid-template-columns: 1fr; gap: 8px; }
    .legal-sidebar { display: none; }
    .legal-hero h1 { font-size: 34px; }
}
@media (max-width: 600px) {
    .legal-callout, .legal-contact { padding: 22px 20px; }
    .legal-content h2 { font-size: 21px; margin-top: 36px; }
}

/* --------------------------------------------------------
   TERMS OF SERVICE (extends LEGAL PAGES)
   -------------------------------------------------------- */
.terms-card { background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-left: 4px solid var(--primary); border-radius: var(--r-card); padding: 26px 30px; margin: 26px 0 8px; box-shadow: var(--shadow-1); }
.terms-card h3 { font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.terms-card p { margin-bottom: 12px; }

.terms-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 8px; }
.terms-panel { background: var(--surface-container-low); border-radius: var(--r-card); padding: 26px 28px; }
.terms-panel h4 { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.terms-panel p { margin-bottom: 12px; }
.terms-panel p:last-child { margin-bottom: 0; }

.cookie-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 20px 0 8px; }
.cookie-card { background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); padding: 26px 24px; box-shadow: var(--shadow-1); }
.cookie-ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(0, 104, 94, 0.10); color: var(--primary); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.cookie-card h4 { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.cookie-card p { font-size: 14px; margin-bottom: 16px; }
.cookie-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--primary); background: rgba(0, 104, 94, 0.08); padding: 4px 12px; border-radius: var(--r-full); }
.cookie-tag.muted { color: var(--on-surface-variant); background: var(--surface-container-high); }
.cookie-note { font-size: 14px; margin-top: 4px; }

.terms-cta { margin-top: 56px; background: var(--primary); color: #fff; border-radius: 28px; padding: 44px 40px; text-align: center; }
.terms-cta h3 { font-size: 26px; font-weight: 700; margin-bottom: 12px; color: #fff; }
.terms-cta p { color: rgba(255, 255, 255, 0.9); max-width: 520px; margin: 0 auto 26px; font-size: 16px; }
.terms-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.btn-onprimary { background: #fff; color: var(--primary); }
.btn-onprimary:hover { background: var(--surface-container-low); }
.btn-ghost-light { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, 0.4); }
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.12); }

@media (max-width: 900px) {
    .terms-2col { grid-template-columns: 1fr; }
    .cookie-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .terms-card, .terms-panel { padding: 22px 20px; }
    .terms-cta { padding: 32px 22px; border-radius: 22px; }
    .terms-cta h3 { font-size: 22px; }
}

/* --------------------------------------------------------
   MOBILE CARD CAROUSELS
   Turn stacked card galleries into horizontal swipe rows on
   phones to save vertical space. Desktop/tablet unaffected.
   -------------------------------------------------------- */
@media (max-width: 600px) {
    .signs8-grid,
    .cards-3,
    .cards-4,
    .svc3-grid,
    .svc-index-grid,
    .prog-grid,
    .journey-grid,
    .approaches-grid,
    .resources-grid,
    .workshop-grid,
    .stlc-grid,
    .teach-grid,
    .why-grid,
    .whychoose-grid,
    .success-grid,
    .blog-grid,
    .area-grid,
    .cond2-grid,
    .cookie-grid {
        display: flex !important;
        grid-template-columns: none !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        scroll-padding-left: var(--gutter);
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        margin-left: calc(-1 * var(--gutter));
        margin-right: calc(-1 * var(--gutter));
        padding: 4px var(--gutter) 14px;
        scrollbar-width: none;
    }
    .signs8-grid::-webkit-scrollbar,
    .cards-3::-webkit-scrollbar,
    .cards-4::-webkit-scrollbar,
    .svc3-grid::-webkit-scrollbar,
    .svc-index-grid::-webkit-scrollbar,
    .prog-grid::-webkit-scrollbar,
    .journey-grid::-webkit-scrollbar,
    .approaches-grid::-webkit-scrollbar,
    .resources-grid::-webkit-scrollbar,
    .workshop-grid::-webkit-scrollbar,
    .stlc-grid::-webkit-scrollbar,
    .teach-grid::-webkit-scrollbar,
    .why-grid::-webkit-scrollbar,
    .whychoose-grid::-webkit-scrollbar,
    .success-grid::-webkit-scrollbar,
    .blog-grid::-webkit-scrollbar,
    .area-grid::-webkit-scrollbar,
    .cond2-grid::-webkit-scrollbar,
    .cookie-grid::-webkit-scrollbar { display: none; }

    .signs8-grid > *,
    .cards-3 > *,
    .cards-4 > *,
    .svc3-grid > *,
    .svc-index-grid > *,
    .prog-grid > *,
    .journey-grid > *,
    .approaches-grid > *,
    .resources-grid > *,
    .workshop-grid > *,
    .stlc-grid > *,
    .teach-grid > *,
    .why-grid > *,
    .whychoose-grid > *,
    .success-grid > *,
    .blog-grid > *,
    .area-grid > *,
    .cond2-grid > *,
    .cookie-grid > * {
        flex: 0 0 62%;
        max-width: 300px;
        min-width: 0;
        scroll-snap-align: start;
    }
}

/* --------------------------------------------------------
   COMPACT CHIP CLOUDS (mobile)
   Tag/pill lists wrap tighter so more fit per row and the
   section takes far less vertical space.
   -------------------------------------------------------- */
@media (max-width: 600px) {
    .assess-pills, .cond-chips, .cond-box-chips { gap: 7px; }
    .assess-pills span, .cond-chips span, .cond-box-chips span {
        padding: 7px 13px; font-size: 12.5px;
    }
    /* "What We Evaluate" icon tiles → compact horizontal chips */
    .evaluate-grid {
        display: flex; flex-wrap: wrap; justify-content: center;
        grid-template-columns: none; gap: 8px;
    }
    .eval-tile {
        flex-direction: row; align-items: center; gap: 8px;
        padding: 8px 14px; border-radius: var(--r-full);
    }
    .eval-tile svg { width: 18px; height: 18px; }
    .eval-tile span { font-size: 12.5px; }
}

/* Programme carousel: room for the "Recommended" badge above the card */
@media (max-width: 600px) {
    .prog-grid { padding-top: 22px; }
}

/* --------------------------------------------------------
   THERAPY PROGRAMME CAROUSEL — arrows + side peek (mobile)
   -------------------------------------------------------- */
.prog-carousel { position: relative; }
.prog-nav { display: none; }
@media (max-width: 600px) {
    .prog-nav {
        display: flex; align-items: center; justify-content: center;
        position: absolute; top: 50%; transform: translateY(-50%);
        z-index: 5; width: 40px; height: 40px; border-radius: 50%;
        background: #fff; color: var(--primary);
        border: 1px solid var(--outline-variant); box-shadow: var(--shadow-2);
        cursor: pointer; transition: opacity .2s var(--ease);
    }
    .prog-nav.prev { left: -4px; }
    .prog-nav.next { right: -4px; }
    .prog-nav.disabled { opacity: 0; pointer-events: none; }
    /* show more of the neighbouring cards on each side */
    .prog-grid > * { flex-basis: 80% !important; }
    /* gentle snap so the default centered position is preserved */
    .prog-grid { scroll-snap-type: x proximity; }
}

/* --------------------------------------------------------
   INTERACTIVE JOURNEY TIMELINE ("Your Journey to Progress")
   -------------------------------------------------------- */
.journey-timeline { max-width: 960px; margin: 0 auto; }
/* Stepper */
.jt-track { position: relative; display: grid; grid-template-columns: repeat(var(--jt-steps, 5), 1fr); gap: 0; margin-bottom: 32px; }
.jt-line { position: absolute; top: 27px; left: 10%; right: 10%; height: 3px; background: var(--outline-variant); border-radius: 3px; z-index: 0; }
.jt-line-fill { display: block; height: 100%; width: 0; background: var(--primary); border-radius: 3px; transition: width .35s var(--ease); }
.jt-node { position: relative; z-index: 1; background: none; border: none; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 10px; font-family: inherit; padding: 0; -webkit-tap-highlight-color: transparent; }
.jt-node:focus { outline: none; }
.jt-node:focus-visible .jt-dot { outline: 2px solid var(--primary); outline-offset: 3px; }
.jt-dot { width: 54px; height: 54px; border-radius: 50%; background: #fff; border: 3px solid var(--outline-variant); color: var(--outline); font-weight: 800; font-size: 20px; display: flex; align-items: center; justify-content: center; transition: all .25s var(--ease); }
.jt-node em { font-style: normal; font-size: 13px; font-weight: 700; color: var(--on-surface-variant); transition: color .25s var(--ease); text-align: center; }
.jt-node em small { display: block; font-size: 10.5px; font-weight: 600; color: var(--outline); margin-top: 2px; }
.jt-node.active em small, .jt-node.done em small { color: var(--primary); }
.jt-we { font-size: 0.62em; font-weight: 700; color: var(--primary); vertical-align: middle; }
.jt-node:hover .jt-dot { border-color: var(--primary); color: var(--primary); }
.jt-node.done .jt-dot { background: var(--primary); border-color: var(--primary); color: #fff; }
.jt-node.active .jt-dot { background: var(--primary); border-color: var(--primary); color: #fff; transform: scale(1.08); box-shadow: 0 0 0 6px rgba(0,104,94,0.12); }
.jt-node.active em { color: var(--primary); }

/* Panels */
.jt-panels { position: relative; }
.jt-panel { display: none; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: center; }
.jt-panel.active { display: grid; animation: jtFade .35s var(--ease); }
@keyframes jtFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.jt-media { position: relative; aspect-ratio: 16 / 10; border-radius: var(--r-card); overflow: hidden; background: linear-gradient(135deg, #e8f3f1, #dbe9ff); border: 1px solid var(--outline-variant); display: flex; align-items: center; justify-content: center; }
.jt-media img, .jt-media video { width: 100%; height: 100%; object-fit: cover; }
.jt-media-ph { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--primary); font-size: 13px; font-weight: 700; text-align: center; padding: 16px; }
.jt-media-ph svg { opacity: 0.85; }
.jt-body { padding: 4px; }
.jt-step-label { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); background: rgba(0,104,94,0.08); padding: 4px 12px; border-radius: var(--r-full); margin-bottom: 12px; }
.jt-body h3 { font-size: 26px; font-weight: 700; color: var(--premium-blue); margin-bottom: 10px; }
.jt-body p { font-size: 16px; line-height: 1.6; color: var(--on-surface-variant); }

@media (max-width: 900px) {
    .jt-node em { font-size: 12px; }
    .jt-dot { width: 46px; height: 46px; font-size: 18px; }
    .jt-line { top: 23px; }
    .jt-panel.active { grid-template-columns: 1fr; gap: 20px; }
    .jt-body { text-align: center; }
}
@media (max-width: 600px) {
    .jt-node em { display: none; }              /* labels off; dots + progress remain */
    .jt-track { margin-bottom: 24px; }
    .jt-body h3 { font-size: 22px; }
}

/* --------------------------------------------------------
   ANNOUNCEMENT — live scrolling ticker
   -------------------------------------------------------- */
.announce-bar { display: flex; align-items: center; gap: 0; background: var(--premium-blue); color: #fff; height: 40px; overflow: hidden; }
/* "LIVE" badge (fixed at the left) */
.announce-live { flex-shrink: 0; display: inline-flex; align-items: center; gap: 7px; height: 100%; padding: 0 16px; background: rgba(0,0,0,0.18); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.al-dot { width: 8px; height: 8px; border-radius: 50%; background: #ff5b5b; box-shadow: 0 0 0 0 rgba(255,91,91,0.7); animation: alPulse 1.6s ease-out infinite; }
@keyframes alPulse { 0% { box-shadow: 0 0 0 0 rgba(255,91,91,0.7); } 70% { box-shadow: 0 0 0 7px rgba(255,91,91,0); } 100% { box-shadow: 0 0 0 0 rgba(255,91,91,0); } }
/* scrolling track */
.announce-marquee { flex: 1; min-width: 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 24px, #000 calc(100% - 24px), transparent); mask-image: linear-gradient(90deg, transparent, #000 24px, #000 calc(100% - 24px), transparent); }
.announce-track { display: inline-flex; align-items: center; white-space: nowrap; will-change: transform; animation: annScroll 40s linear infinite; }
.announce-bar:hover .announce-track { animation-play-state: paused; }
.announce-item { display: inline-flex; align-items: center; gap: 8px; padding: 0 4px; font-size: 13px; font-weight: 500; }
.announce-item > svg { flex-shrink: 0; opacity: 0.85; }
.announce-sep { margin: 0 18px; opacity: 0.5; }
@keyframes annScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* fixed CTA at the right */
.announce-cta { flex-shrink: 0; height: 100%; display: inline-flex; align-items: center; padding: 0 16px; background: rgba(255,255,255,0.14); color: #fff; font-size: 12.5px; font-weight: 700; white-space: nowrap; }
.announce-cta:hover { background: rgba(255,255,255,0.24); }
@media (max-width: 600px) {
    .announce-live { padding: 0 11px; letter-spacing: .08em; }
    .announce-cta { display: none; }
    .announce-item { font-size: 12.5px; }
}
@media (prefers-reduced-motion: reduce) { .announce-track { animation: none; } }

/* --------------------------------------------------------
   MILESTONE CHECKER (self-assessment tool)
   -------------------------------------------------------- */
.mq { max-width: 680px; margin: 0 auto; background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); box-shadow: var(--shadow-1); padding: 36px 34px; }
.mq-h { font-size: 24px; font-weight: 700; color: var(--premium-blue); margin-bottom: 6px; }
.mq-h em { font-style: normal; color: var(--primary); }
.mq-sub { font-size: 14px; color: var(--on-surface-variant); margin-bottom: 22px; }

.mq-ages { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mq-age { padding: 18px 16px; border: 1.5px solid var(--outline-variant); border-radius: var(--r-btn); background: var(--surface-container-low); font-family: inherit; font-size: 15px; font-weight: 700; color: var(--on-surface); cursor: pointer; transition: all .18s var(--ease); }
.mq-age:hover { border-color: var(--primary); color: var(--primary); background: rgba(0,104,94,0.05); transform: translateY(-2px); }

.mq-progress { height: 6px; background: var(--surface-container-high); border-radius: 6px; overflow: hidden; margin-bottom: 22px; }
.mq-progress-fill { display: block; height: 100%; width: 0; background: var(--primary); border-radius: 6px; transition: width .25s var(--ease); }

.mq-items { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.mq-items label { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1.5px solid var(--outline-variant); border-radius: var(--r-btn); cursor: pointer; font-size: 15px; font-weight: 500; transition: all .15s var(--ease); }
.mq-items label:hover { border-color: var(--primary); }
.mq-items input { appearance: none; -webkit-appearance: none; width: 24px; height: 24px; border: 2px solid var(--outline); border-radius: 7px; flex-shrink: 0; cursor: pointer; position: relative; transition: all .15s var(--ease); }
.mq-items input:checked { background: var(--primary); border-color: var(--primary); }
.mq-items input:checked::after { content: ""; position: absolute; left: 8px; top: 4px; width: 6px; height: 11px; border: solid #fff; border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }
.mq-items label:has(input:checked) { border-color: var(--primary); background: rgba(0,104,94,0.05); }

.mq-actions { display: flex; gap: 12px; justify-content: space-between; }
.mq-actions .mq-see { margin-left: auto; }

/* Result */
.mq-result { text-align: center; padding: 8px 4px; }
.mq-result-icon { display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 72px; border-radius: 50%; margin-bottom: 16px; }
.mq-result.ok .mq-result-icon { background: rgba(0,135,59,0.12); color: var(--success); }
.mq-result.watch .mq-result-icon { background: rgba(245,158,11,0.14); color: var(--warning); }
.mq-result.flag .mq-result-icon { background: rgba(186,26,26,0.10); color: var(--error); }
.mq-result h2 { font-size: 23px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.mq-result p { font-size: 15px; line-height: 1.6; color: var(--on-surface-variant); max-width: 520px; margin: 0 auto 24px; }
.mq-result-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 18px; }
.mq-restart { background: none; border: none; color: var(--primary); font-weight: 700; font-size: 14px; cursor: pointer; }

.mq-disclaimer { max-width: 680px; margin: 20px auto 0; font-size: 12.5px; line-height: 1.55; color: var(--outline); text-align: center; }

@media (max-width: 600px) {
    .mq { padding: 26px 20px; }
    .mq-ages { grid-template-columns: 1fr; }
    .mq-actions { flex-direction: column-reverse; }
    .mq-actions .btn { width: 100%; justify-content: center; }
    .mq-actions .mq-see { margin-left: 0; }
}

/* Founder credentials (placeholder-friendly) */
.founder-creds { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.cred { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: var(--r-btn); font-size: 13.5px; font-weight: 600; color: var(--premium-blue); background: rgba(30,58,138,0.06); border: 1px solid rgba(30,58,138,0.15); }
.cred svg { flex-shrink: 0; }
.cred.is-placeholder { color: var(--outline); background: transparent; border: 1.5px dashed var(--outline-variant); }

/* --------------------------------------------------------
   REAL center GALLERY (photo bento with captions)
   -------------------------------------------------------- */
.center-gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.cg-item { position: relative; border-radius: var(--r-card); overflow: hidden; background: var(--surface-container-high); box-shadow: var(--shadow-1); }
.cg-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cg-item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 18px 14px; color: #fff; font-size: 14px; font-weight: 700; background: linear-gradient(to top, rgba(15,23,42,0.72), transparent); }
.cg-a { grid-column: span 8; height: 340px; }
.cg-b { grid-column: span 4; height: 340px; }
.cg-c, .cg-d, .cg-e { grid-column: span 4; height: 240px; }

@media (max-width: 900px) {
    .cg-a { grid-column: span 12; height: 300px; }
    .cg-b { grid-column: span 12; height: 240px; }
    .cg-c, .cg-d, .cg-e { grid-column: span 4; height: 180px; }
}
@media (max-width: 600px) {
    .center-gallery { gap: 10px; }
    .cg-a, .cg-b, .cg-c, .cg-d, .cg-e { grid-column: span 12; height: 220px; }
    .cg-item figcaption { font-size: 13px; }
}

/* --------------------------------------------------------
   VIDEO MODAL (lightbox)
   -------------------------------------------------------- */
.vmodal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.vmodal[hidden] { display: none; }
.vmodal-backdrop { position: absolute; inset: 0; background: rgba(10, 16, 24, 0.82); backdrop-filter: blur(3px); animation: vmFade .2s ease; }
.vmodal-box { position: relative; width: min(960px, 100%); }
@keyframes vmFade { from { opacity: 0; } to { opacity: 1; } }
.vmodal-frame { position: relative; z-index: 1; aspect-ratio: 16 / 9; background: #000; border-radius: var(--r-card); overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.5); animation: vmPop .25s var(--ease); }
@keyframes vmPop { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: none; } }
.vmodal-frame iframe, .vmodal-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vmodal-ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: rgba(255,255,255,0.85); }
.vmodal-ph p { font-size: 15px; font-weight: 600; }
.vmodal-close { position: absolute; top: -14px; right: -14px; z-index: 2; width: 42px; height: 42px; border-radius: 50%; background: #fff; color: var(--ink); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-2); }
.vmodal-close:hover { background: var(--surface-container-low); }
@media (max-width: 600px) { .vmodal-close { top: -46px; right: 0; } }

/* Play button overlay (e.g. founder message) */
.hp-founder-img { position: relative; }
.video-play { position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 8px; background: rgba(255,255,255,0.92); backdrop-filter: blur(6px); border: none; border-radius: var(--r-full); cursor: pointer; box-shadow: var(--shadow-2); font-family: inherit; font-weight: 700; font-size: 14px; color: var(--ink); transition: transform .2s var(--ease); }
.video-play:hover { transform: translateX(-50%) translateY(-3px); }
.vp-ring { width: 38px; height: 38px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vp-ring svg { margin-left: 2px; }

/* --------------------------------------------------------
   PARENT JOURNEY — micro-animations
   -------------------------------------------------------- */
.j-icon { position: relative; }
@media (prefers-reduced-motion: no-preference) {
    .journey-card .j-icon { transition: transform .3s var(--ease); }
    .journey-card:hover .j-icon { transform: translateY(-4px); }

    /* We Listen — pulsing sound waves */
    .jc-listen .j-icon::before, .jc-listen .j-icon::after { content: ""; position: absolute; inset: -3px; border-radius: 16px; border: 2px solid var(--primary); opacity: 0; }
    .jc-listen:hover .j-icon::before,
    .jc-anim.in-view .jc-listen .j-icon::before { animation: jWave 1.9s ease-out infinite; }
    .jc-listen:hover .j-icon::after,
    .jc-anim.in-view .jc-listen .j-icon::after { animation: jWave 1.9s ease-out .95s infinite; }
    @keyframes jWave { 0% { transform: scale(.85); opacity: .55; } 100% { transform: scale(1.6); opacity: 0; } }

    /* We Assess — the check line draws itself */
    .jc-assess .jc-line { stroke-dasharray: 22; stroke-dashoffset: 22; }
    .jc-assess:hover .jc-line,
    .jc-anim.in-view .jc-assess .jc-line { animation: jDraw 1s var(--ease) forwards; }
    @keyframes jDraw { to { stroke-dashoffset: 0; } }

    /* We Plan — gentle nudge */
    .jc-plan:hover .j-icon,
    .jc-anim.in-view .jc-plan .j-icon { animation: jNudge 1.4s var(--ease); }
    @keyframes jNudge { 0%, 100% { transform: translateY(0); } 40% { transform: translateY(-5px); } }

    /* We Review — the refresh arrows spin */
    .jc-review:hover .j-icon svg,
    .jc-anim.in-view .jc-review .j-icon svg { animation: jSpin 1.1s var(--ease); transform-origin: 50% 50%; }
    @keyframes jSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
}

/* --------------------------------------------------------
   SERVICES VIDEO CAROUSEL (home "Comprehensive Therapy Services")
   -------------------------------------------------------- */
.svcv-carousel { position: relative; }
.svcv-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 4px 2px 12px; }
.svcv-track::-webkit-scrollbar { display: none; }
.svcv-card { flex: 0 0 330px; max-width: 84%; scroll-snap-align: start; display: flex; flex-direction: column; background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-1); }
.svcv-media { position: relative; aspect-ratio: 16 / 10; background: linear-gradient(135deg, #e8f3f1, #dbe9ff); display: flex; align-items: center; justify-content: center; }
.svcv-media video, .svcv-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svcv-ph { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--primary); font-size: 12.5px; font-weight: 700; text-align: center; }
.svcv-ph svg { opacity: .85; }
.svcv-media video { background: #000; }
.svcv-body { display: flex; flex-direction: column; flex: 1; padding: 20px 22px 22px; }
.svcv-body h3 { font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.svcv-body p { font-size: 14px; color: var(--on-surface-variant); line-height: 1.55; margin-bottom: 14px; flex: 1; }

.svcv-nav { position: absolute; top: 34%; transform: translateY(-50%); z-index: 5; width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--primary); border: 1px solid var(--outline-variant); box-shadow: var(--shadow-2); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: opacity .2s var(--ease); }
.svcv-nav.prev { left: -8px; }
.svcv-nav.next { right: -8px; }
.svcv-nav.disabled { opacity: 0; pointer-events: none; }

@media (max-width: 600px) {
    .svcv-nav { display: none; }
    .svcv-card { flex-basis: 300px; }
}

/* --------------------------------------------------------
   "IMAGE COMING SOON" placeholder (replaces stock imagery)
   Fills whatever container the original <img> lived in.
   -------------------------------------------------------- */
.media-soon {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
    width: 100%; height: 100%; min-height: 200px;
    background: linear-gradient(135deg, #eef5f4, #e6eefb);
    border: 1px dashed rgba(0, 104, 94, 0.35);
    border-radius: inherit;
    color: var(--primary); font-size: 14px; font-weight: 700; letter-spacing: .01em;
    text-align: center; padding: 20px; box-sizing: border-box;
}
.media-soon svg { opacity: .7; }

/* --------------------------------------------------------
   MOTION & INTERACTION POLISH
   -------------------------------------------------------- */
/* Scroll-reveal (only active when <html> has .reveal-ready) */
.reveal-ready .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .75s cubic-bezier(.2, .7, .2, 1); }
.reveal-ready .reveal.in { opacity: 1; transform: none; }

/* Unified card hover: gentle lift + deeper shadow */
.asm-phil-card, .role-card, .myth-card, .topic-card, .astep-card, .blog-card,
.testimonial, .svcv-card, .sign8-card, .eval-tile, .workshop-card, .svc-index-card, .prog-card {
    transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.asm-phil-card:hover, .role-card:hover, .myth-card:hover, .topic-card:hover, .astep-card:hover,
.blog-card:hover, .testimonial:hover, .svcv-card:hover, .sign8-card:hover, .svc-index-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2);
}
.eval-tile:hover { transform: translateY(-3px); }

/* Button micro-interactions */
.btn { transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0, 104, 94, 0.26); }
.btn-ghost:hover, .btn-surface:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Accent underline beneath section headings (block-level, keeps title centering intact) */
.section-head::after {
    content: ""; display: block; height: 3px; width: 48px; margin: 14px auto 0;
    background: linear-gradient(90deg, var(--primary), var(--primary-fixed-dim));
    border-radius: 3px;
}
/* left-aligned heads: anchor the underline to the left */
.section-head[style*="left"]::after,
.section-head:has(.section-title[style*="left"])::after { margin-left: 0; margin-right: auto; }

@media (prefers-reduced-motion: reduce) {
    .reveal, .btn, .testimonial, .blog-card, .svcv-card { transition: none !important; }
}

/* Contact address card */
.ctc-addr { line-height: 1.55; }
.ctc-landmark { color: var(--outline); font-size: 13px; }

/* About — bold founder lead */
.founder-lead { font-size: 17px; line-height: 1.6; color: var(--on-surface); margin-bottom: 16px; }

/* About — Vision, Mission & Values */
.vmv-brand { text-align: center; margin-bottom: 34px; }
.vmv-logo { height: 58px; width: auto; }
.vmv-tag { margin-top: 10px; font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); }
.vmv-statements { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 36px; }
.vmv-card { background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); padding: 30px 32px; box-shadow: var(--shadow-1); transition: transform .28s var(--ease), box-shadow .28s var(--ease); }
.vmv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.vmv-icon { display: inline-flex; width: 52px; height: 52px; border-radius: 14px; background: rgba(0,104,94,0.10); color: var(--primary); align-items: center; justify-content: center; margin-bottom: 16px; }
.vmv-card h3 { font-size: 20px; font-weight: 700; color: var(--premium-blue); margin-bottom: 10px; }
.vmv-card p { font-size: 15px; line-height: 1.6; color: var(--on-surface-variant); }
.vmv-values-title { text-align: center; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--outline); margin-bottom: 20px; }
.vmv-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vmv-value { text-align: center; padding: 8px; }
.vv-num { display: block; font-size: 26px; font-weight: 800; color: var(--primary-fixed-dim); margin-bottom: 4px; }
.vmv-value h5 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.vmv-value p { font-size: 13.5px; color: var(--on-surface-variant); line-height: 1.5; }
@media (max-width: 700px) { .vmv-statements, .vmv-values-grid { grid-template-columns: 1fr; gap: 16px; } }

/* --------------------------------------------------------
   ABOUT — "Inside Our Center" photo blocks
   -------------------------------------------------------- */
.ic-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.ic-card { flex: 0 1 calc(33.333% - 14px); display: flex; flex-direction: column; background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-1); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.ic-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.ic-media { position: relative; aspect-ratio: 1195 / 726; overflow: hidden; }
.ic-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.ic-card:hover .ic-media img { transform: scale(1.07); }
.ic-cap { display: flex; align-items: center; gap: 10px; padding: 15px 18px; font-size: 14.5px; font-weight: 700; color: var(--ink); }
.ic-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); flex-shrink: 0; box-shadow: 0 0 0 4px rgba(0,104,94,0.12); }
@media (max-width: 800px) { .ic-card { flex-basis: calc(50% - 10px); } }
@media (max-width: 520px) { .ic-card { flex-basis: 100%; } }

/* Home Center teaser — all five rooms listed inline */

/* --------------------------------------------------------
   HOME (spec content blocks)
   -------------------------------------------------------- */
.concern-intro-text { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.concern-intro-text .msg { margin-bottom: 14px; }
.concern-cta { text-align: center; margin-top: 28px; }
.svcv-more { text-align: center; margin-top: 24px; }
.journey-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 32px; }
.testi-more { text-align: center; margin-top: 26px; }
.hpf-btn { margin-top: 8px; }

/* "OTCloud Difference" grid */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.diff-card { background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); padding: 26px; box-shadow: var(--shadow-1); transition: transform .28s var(--ease), box-shadow .28s var(--ease); }
.diff-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); }
.diff-ic { display: inline-flex; width: 48px; height: 48px; border-radius: 12px; background: rgba(0,104,94,0.10); color: var(--primary); align-items: center; justify-content: center; margin-bottom: 14px; }
.diff-card h4 { font-size: 17px; font-weight: 700; color: var(--premium-blue); margin-bottom: 8px; }
.diff-card p { font-size: 14px; line-height: 1.55; color: var(--on-surface-variant); }
.values-grid { grid-template-columns: repeat(4, 1fr); }
/* Core values: the three pillars from the clinic's promise, called out as blocks */
.cv-pillars { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin: -4px 0 30px; }
.cv-pillar { display: inline-flex; align-items: center; gap: 10px; padding: 11px 22px 11px 14px; border-radius: var(--r-full); background: var(--surface-container-lowest); border: 1px solid rgba(0,104,94,0.22); box-shadow: var(--shadow-1); font-size: 15px; font-weight: 700; letter-spacing: .01em; color: var(--premium-blue); }
.cv-pillar-ic { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: rgba(0,104,94,0.10); color: var(--primary); flex-shrink: 0; }
/* Value cards carry a teal cap so this grid reads differently from the others */
.values-grid .diff-card { position: relative; overflow: hidden; }
.values-grid .diff-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--primary-fixed-dim)); }
@media (max-width: 560px) {
    .cv-pillars { gap: 10px; }
    .cv-pillar { font-size: 13.5px; padding: 9px 16px 9px 11px; }
    .cv-pillar-ic { width: 26px; height: 26px; }
    .cv-pillar-ic svg { width: 15px; height: 15px; }
}

@media (max-width: 1100px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }

/* Center teaser: 3 per row over 2 rows, five rooms in all. Six columns with each
   card spanning two gives 3-up; the 4th card is offset by one column so the
   second row's pair sits centred instead of stranded on the left.
   Tiles keep .ic-media's 1195/726 ratio, so the room photos stay uncropped. */
.Center-teaser { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; max-width: 1080px; margin-inline: auto; }
.Center-teaser > .ic-card { grid-column: span 2; }
.Center-teaser > .ic-card:nth-child(4) { grid-column: 2 / span 2; }
.Center-teaser .ic-cap { padding: 14px 16px; font-size: 14px; gap: 9px; line-height: 1.35; }

@media (max-width: 900px) {
    .diff-grid { grid-template-columns: repeat(2, 1fr); }
    .Center-teaser { grid-template-columns: repeat(4, 1fr); }
    .Center-teaser > .ic-card:nth-child(4) { grid-column: span 2; }
    .Center-teaser > .ic-card:nth-child(5) { grid-column: 2 / span 2; }
}
@media (max-width: 560px) {
    .diff-grid { grid-template-columns: 1fr; }
    .Center-teaser { grid-template-columns: 1fr; }
    .Center-teaser > .ic-card,
    .Center-teaser > .ic-card:nth-child(4),
    .Center-teaser > .ic-card:nth-child(5) { grid-column: span 1; }
}

/* Footer full name under logo */
.footer-fullname { font-weight: 700; color: var(--on-surface); margin: 4px 0 8px; font-size: 14px; }

/* --------------------------------------------------------
   CONCERNS PAGE (spec rebuild)
   -------------------------------------------------------- */
.con-reassure { max-width: 720px; margin: 18px auto 26px; padding: 14px 22px; background: rgba(0,104,94,0.06); border-left: 3px solid var(--primary); border-radius: 10px; font-size: 15px; color: var(--on-surface); font-weight: 500; text-align: left; }

.concern-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; text-align: left; }
@media (max-width: 1000px) { .concern-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .concern-grid { grid-template-columns: 1fr; } }
.concern-card { background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); padding: 22px 24px; box-shadow: var(--shadow-1); display: flex; flex-direction: column; transition: transform .28s var(--ease), box-shadow .28s var(--ease); }
.concern-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.concern-card h3 { font-size: 19px; font-weight: 700; color: var(--premium-blue); margin-bottom: 8px; }
.cc-desc { font-size: 14px; color: var(--on-surface-variant); line-height: 1.55; margin-bottom: 14px; }
.cc-label { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }
.notice-list { list-style: none; margin: 0 0 18px; padding: 0; }
.notice-list li { position: relative; padding-left: 20px; font-size: 14px; line-height: 1.5; color: var(--on-surface-variant); margin-bottom: 7px; }
.notice-list li::before { content: ""; position: absolute; left: 2px; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--primary-fixed-dim); }
.notice-list.two-col { columns: 2; column-gap: 34px; }
.concern-card .link-arrow { margin-top: auto; }
.con-disclaimer { max-width: 900px; margin: 28px auto 0; font-size: 13px; line-height: 1.6; color: var(--outline); text-align: center; }

/* Age-wise tabs */
.age-tablist { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 28px; }
.age-tab { padding: 9px 18px; border: 1.5px solid var(--outline-variant); background: var(--surface-container-lowest); border-radius: var(--r-full); font-family: inherit; font-size: 14px; font-weight: 700; color: var(--on-surface-variant); cursor: pointer; transition: all .2s var(--ease); }
.age-tab:hover { border-color: var(--primary); color: var(--primary); }
.age-tab.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.age-panel { display: none; }
.age-panel.active { display: block; animation: jtFade .35s var(--ease); }
.age-panel h3 { font-size: 22px; font-weight: 700; color: var(--premium-blue); text-align: center; margin-bottom: 24px; }
.age-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.age-col { border-radius: var(--r-card); padding: 24px 26px; border: 1px solid var(--outline-variant); }
.age-col.ok { background: rgba(0,135,59,0.05); border-color: rgba(0,135,59,0.22); }
.age-col.watch { background: rgba(245,158,11,0.06); border-color: rgba(245,158,11,0.28); }
.age-col h4 { font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.age-col.ok h4 { color: var(--success); }
.age-col.watch h4 { color: #b45309; }
.age-col ul { list-style: none; margin: 0; padding: 0; }
.age-col li { position: relative; padding-left: 22px; font-size: 14px; line-height: 1.5; color: var(--on-surface-variant); margin-bottom: 8px; }
.age-col.ok li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--success); font-weight: 800; font-size: 13px; }
.age-col.watch li::before { content: "!"; position: absolute; left: 5px; top: 0; color: #b45309; font-weight: 800; }
.age-note { max-width: 860px; margin: 22px auto 0; font-size: 13.5px; line-height: 1.6; color: var(--on-surface-variant); background: var(--surface-container-low); border-radius: 12px; padding: 14px 18px; }
.milestone-disclaimer { max-width: 900px; margin: 32px auto 0; font-size: 13px; line-height: 1.6; color: var(--outline); }
.milestone-disclaimer p { margin-bottom: 10px; }

/* When to seek guidance */
.seek-panel { max-width: 900px; margin: 0 auto 26px; background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); padding: 26px 30px; box-shadow: var(--shadow-1); text-align: left; }
.medical-box { display: flex; gap: 16px; max-width: 900px; margin: 0 auto 22px; background: rgba(186,26,26,0.05); border: 1px solid rgba(186,26,26,0.2); border-radius: var(--r-card); padding: 24px 26px; text-align: left; }
.mb-ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: rgba(186,26,26,0.1); color: var(--error); display: flex; align-items: center; justify-content: center; }
.medical-box h3 { font-size: 18px; font-weight: 700; color: var(--error); margin-bottom: 8px; }
.medical-box p { font-size: 14px; line-height: 1.6; color: var(--on-surface-variant); margin-bottom: 8px; }
.medical-box p:last-child { margin-bottom: 0; }
.guidance-card { max-width: 900px; margin: 0 auto; background: var(--premium-blue); color: #fff; border-radius: var(--r-card); padding: 34px 36px; text-align: center; }
.guidance-card h3 { color: #fff; font-size: 22px; margin-bottom: 10px; }
.guidance-card p { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.6; max-width: 620px; margin: 0 auto 22px; }
.guidance-card .con2-cta-actions { justify-content: center; }

/* Final CTA extra lines */
.con-cta-contact, .con2-cta > p.con-cta-contact { margin: 18px 0 0; font-size: 15px; }
.con-cta-contact a { text-decoration: underline; }
.con-cta-note, .con2-cta > p.con-cta-note { font-size: 13.5px; opacity: 0.85; margin: 6px 0 0; }

/* Clinical disclaimer band */
.clinical-disclaimer { background: var(--surface-container-low); padding: 34px 0; border-top: 1px solid var(--outline-variant); }
.clinical-disclaimer h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--on-surface-variant); margin-bottom: 12px; }
.clinical-disclaimer p { font-size: 13px; line-height: 1.6; color: var(--outline); margin-bottom: 10px; max-width: 920px; }

@media (max-width: 800px) {
    .age-cols { grid-template-columns: 1fr; }
    .notice-list.two-col { columns: 1; }
    .medical-box { flex-direction: column; gap: 12px; }
}

/* --------------------------------------------------------
   ASSESSMENT PAGE (spec rebuild) — additions
   -------------------------------------------------------- */
.cc-foot { font-size: 12.5px; line-height: 1.5; color: var(--outline); font-style: italic; margin-top: auto; }
.diff-ic.num { font-weight: 800; font-size: 15px; letter-spacing: .02em; }

/* Six-step process */
.aproc { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; }
.aproc-step { display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start; background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); padding: 24px 28px; box-shadow: var(--shadow-1); }
.aproc-num { width: 48px; height: 48px; border-radius: 14px; background: var(--primary); color: #fff; font-weight: 800; font-size: 20px; display: flex; align-items: center; justify-content: center; }
.aproc-step h3 { font-size: 18px; font-weight: 700; color: var(--premium-blue); margin-bottom: 8px; }
.aproc-step > div > p { font-size: 14px; color: var(--on-surface-variant); line-height: 1.6; margin-bottom: 10px; }
.aproc-step .notice-list { margin-bottom: 6px; }

/* Assessment team lead card */
.lead-card { display: flex; gap: 24px; align-items: center; max-width: 720px; margin: 0 auto; background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); padding: 24px 28px; box-shadow: var(--shadow-1); }
.lead-photo { flex-shrink: 0; width: 110px; height: 130px; border-radius: 16px; overflow: hidden; }
.lead-photo img { width: 100%; height: 100%; object-fit: cover; }
.lead-card h3 { font-size: 20px; font-weight: 700; margin: 4px 0 6px; }
.lead-role { font-size: 13.5px; line-height: 1.6; color: var(--on-surface-variant); }

/* Final trust points */
.trust-points { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 28px; }
.tp-item { background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); padding: 22px 20px; text-align: center; }
.tp-item h4 { font-size: 15px; font-weight: 700; color: var(--premium-blue); margin-bottom: 8px; }
.tp-item p { font-size: 13px; line-height: 1.55; color: var(--on-surface-variant); }

/* Consultation form extras */
.asm-note-small, .asm-booking-intro > p.asm-note-small { font-size: 13px; line-height: 1.55; color: var(--outline); font-style: italic; margin: 0; }
.asm-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; line-height: 1.5; color: var(--on-surface-variant); margin: 4px 0 12px; cursor: pointer; }
.asm-consent input { margin-top: 3px; flex-shrink: 0; }
.asm-privacy, .asm-booking-intro > p.asm-privacy { font-size: 12.5px; line-height: 1.5; color: var(--outline); margin-bottom: 16px; }
.asm-privacy a, .asm-consent a { color: var(--primary); text-decoration: underline; }

@media (max-width: 900px) { .trust-points { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
    .aproc-step { grid-template-columns: 1fr; }
    .lead-card { flex-direction: column; text-align: center; }
    .trust-points { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------
   ACCORDION LISTS (compact list-heavy sections)
   -------------------------------------------------------- */
.acc-list { max-width: 860px; margin: 8px auto 0; display: flex; flex-direction: column; gap: 10px; text-align: left; }
.acc-item { background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: 14px; overflow: hidden; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.acc-item[open] { box-shadow: var(--shadow-1); border-color: rgba(0,104,94,0.35); }
.acc-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 15px 20px; font-size: 16px; font-weight: 700; color: var(--premium-blue); }
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary:hover { color: var(--primary); }
.acc-item[open] summary { color: var(--primary); }
.acc-chevron { flex-shrink: 0; color: var(--outline); display: inline-flex; transition: transform .25s var(--ease); }
.acc-item[open] .acc-chevron { transform: rotate(180deg); color: var(--primary); }
.acc-body { padding: 0 20px 18px; animation: jtFade .3s var(--ease); }
.acc-body .cc-desc { margin-bottom: 12px; }
.acc-body .notice-list { margin-bottom: 12px; }
.acc-body .notice-list:last-child, .acc-body .link-arrow:last-child { margin-bottom: 0; }

/* 4-card sections → all four in one horizontal row */
.concern-grid.cols-2 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .concern-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .concern-grid.cols-2 { grid-template-columns: 1fr; } }

/* Six-step process as numbered accordion */
.aproc-acc { max-width: 900px; }
.acc-sum-left { display: flex; align-items: center; gap: 12px; }
.aproc-badge { width: 26px; height: 26px; border-radius: 8px; background: var(--primary); color: #fff; font-weight: 800; font-size: 13px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.acc-item[open] .aproc-badge { background: var(--premium-blue); }

/* "What You Receive" — even numbered rows (avoids uneven grid blocks) */
.receive-list { max-width: 860px; margin: 8px auto 0; display: flex; flex-direction: column; gap: 14px; }
.receive-item { display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-items: start; background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: 16px; padding: 20px 24px; box-shadow: var(--shadow-1); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.receive-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.ri-num { width: 40px; height: 40px; border-radius: 12px; background: rgba(0,104,94,0.10); color: var(--primary); font-weight: 800; font-size: 18px; display: flex; align-items: center; justify-content: center; }
.ri-body h3 { font-size: 17px; font-weight: 700; color: var(--premium-blue); margin-bottom: 6px; }
.ri-body p { font-size: 14px; line-height: 1.6; color: var(--on-surface-variant); }
@media (max-width: 600px) { .receive-item { grid-template-columns: 1fr; gap: 8px; } }

/* --------------------------------------------------------
   HERO IMAGE CAROUSEL (3 auto-sliding slides)
   -------------------------------------------------------- */
.hp-hero-img { position: relative; }
.hero-slider { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s var(--ease); }
.hero-slide.active { opacity: 1; }
.hero-slide .media-soon, .hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-dots { position: absolute; left: 0; right: 0; bottom: 14px; z-index: 3; display: flex; gap: 8px; justify-content: center; }
.hero-dot { width: 8px; height: 8px; padding: 0; border: none; border-radius: 50%; background: rgba(255,255,255,0.6); box-shadow: 0 0 0 1px rgba(0,0,0,0.08); cursor: pointer; transition: all .25s var(--ease); }
.hero-dot.active { width: 22px; border-radius: 5px; background: var(--primary); }

/* --------------------------------------------------------
   FULL-WIDTH HERO BANNER (3 sliding images + text overlay)
   -------------------------------------------------------- */
.hero-banner { position: relative; overflow: hidden; min-height: clamp(460px, 38vw, 560px); display: flex; align-items: center; background: #0b2b34; }
.hb-slider { position: absolute; inset: 0; z-index: 0; }
.hb-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s var(--ease); background-size: cover; background-position: center 42%; background-repeat: no-repeat; display: flex; align-items: center; }
.hb-slide:nth-child(1) { background-color: #0e3b36; }
.hb-slide:nth-child(2) { background-color: #123a63; }
.hb-slide:nth-child(3) { background-color: #1b2a4a; }
.hb-slide.active { opacity: 1; }
.hb-slide img { width: 100%; height: 100%; object-fit: cover; }
.hb-ph { position: absolute; right: 18px; bottom: 14px; font-size: 12px; color: rgba(255,255,255,0.4); }
.hb-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(6,20,26,0.62) 0%, rgba(6,20,26,0.72) 45%, rgba(6,20,26,0.82) 100%); }
.hb-content { position: relative; z-index: 2; color: #fff; text-align: center; max-width: 860px; margin: 0 auto; padding: 60px 20px; }
.hero-banner .hero-pill { display: inline-block; background: rgba(255,255,255,0.14); color: #fff; border: 1px solid rgba(255,255,255,0.30); }
.hb-content h1 { font-size: 52px; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin: 18px 0 16px; color: #fff; }
.hero-banner .text-teal { color: var(--primary-fixed-dim); }
.hb-lead { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.9); max-width: 640px; margin: 0 auto 28px; }
.hb-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hb-trust { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.hb-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: #fff; }
.hb-trust svg { color: var(--primary-fixed-dim); flex-shrink: 0; }
.hero-banner .hero-dots { bottom: 20px; z-index: 3; }
.hero-banner .hero-dot { background: rgba(255,255,255,0.5); box-shadow: none; }
.hero-banner .hero-dot.active { background: #fff; }
@media (max-width: 900px) {
    .hero-banner { min-height: 420px; }
    .hb-slide { background-position: center 38%; }
    .hb-content { padding: 70px 0; }
    .hb-content h1 { font-size: 38px; }
}
@media (max-width: 600px) {
    .hero-banner { min-height: 380px; }
    .hb-content { padding: 54px 0; }
    .hb-content h1 { font-size: 30px; }
    .hb-overlay { background: linear-gradient(180deg, rgba(6,20,26,0.55), rgba(6,20,26,0.85)); }
}

/* Hero banner — prev/next arrows + refined dots */
.hb-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.35); background: rgba(255,255,255,0.14); color: #fff; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s var(--ease); }
.hb-nav:hover { background: rgba(255,255,255,0.30); }
.hb-nav.prev { left: 24px; }
.hb-nav.next { right: 24px; }
.hero-banner .hero-dots { display: flex; gap: 10px; padding: 8px 14px; background: rgba(0,0,0,0.22); border-radius: var(--r-full); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); width: max-content; left: 50%; right: auto; transform: translateX(-50%); }
.hero-banner .hero-dot { width: 10px; height: 10px; background: rgba(255,255,255,0.55); box-shadow: none; }
.hero-banner .hero-dot:hover { background: rgba(255,255,255,0.85); }
.hero-banner .hero-dot.active { width: 26px; border-radius: 5px; background: #fff; }
@media (max-width: 600px) {
    .hb-nav { width: 40px; height: 40px; }
    .hb-nav.prev { left: 10px; }
    .hb-nav.next { right: 10px; }
}

/* Very small phones: compact header contact block */
/* Phones: the two lines stack beside the logo — still complete, never clipped */
@media (max-width: 640px) {
    .nav-contacts { flex-direction: column; align-items: flex-start; gap: 7px; padding-left: 14px; }
    .nav-contact { font-size: 11.5px; gap: 8px; }
    .nav-contact .nc-ic { width: 24px; height: 24px; border-radius: 7px; }
    .nav-contact .nc-ic svg { width: 13px; height: 13px; }
}
@media (max-width: 420px) {
    .logo-img { height: 32px; }
    .nav-contact { font-size: 10.5px; gap: 7px; }
    .nav-contact .nc-ic { width: 21px; height: 21px; border-radius: 6px; }
    .nav-contact .nc-ic svg { width: 12px; height: 12px; }
    .nav-brand { gap: 10px; }
    .nav-contacts { gap: 6px; padding-left: 10px; }
}

/* --------------------------------------------------------
   Home: milestone check, gallery modal, reviews slider
   -------------------------------------------------------- */
body.no-scroll { overflow: hidden; }

/* Milestone check on the home page */
#milestone-check .mq { max-width: 720px; }
#milestone-check .mq-h { font-size: 22px; font-weight: 700; color: var(--premium-blue); margin-bottom: 6px; }
.mq-submit { margin-left: auto; }
.mq-thanks { text-align: center; }
.mq-thanks .mq-result-icon { background: rgba(0,135,59,0.12); color: var(--success); }
.mq-thanks h3 { font-size: 23px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.mq-thanks p { font-size: 15px; line-height: 1.6; color: var(--on-surface-variant); max-width: 520px; margin: 0 auto 24px; }
.mq-restart-link { display: inline-block; color: var(--primary); font-weight: 700; font-size: 14px; }

/* Shared modal shell (milestone details + center gallery) */
.ms-modal, .gal-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.ms-modal[hidden], .gal-modal[hidden] { display: none; }
.ms-modal-backdrop, .gal-modal-backdrop { position: absolute; inset: 0; background: rgba(8,25,30,0.62); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.ms-modal-card, .gal-modal-card { position: relative; z-index: 1; background: var(--surface-container-lowest); border-radius: var(--r-card); box-shadow: var(--shadow-3, 0 24px 60px rgba(0,0,0,.28)); width: 100%; max-height: 90dvh; overflow-y: auto; animation: msPop .22s var(--ease); }
@keyframes msPop { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .ms-modal-card, .gal-modal-card { animation: none; } }

.ms-modal-card { max-width: 560px; padding: 30px 30px 26px; }
.ms-modal-card h3 { font-size: 21px; font-weight: 700; color: var(--ink); margin-bottom: 8px; padding-right: 30px; }
.ms-modal-sub { font-size: 14px; line-height: 1.6; color: var(--on-surface-variant); margin-bottom: 22px; }
.ms-modal-close, .gal-modal-close { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--outline-variant); background: var(--surface); color: var(--on-surface-variant); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .18s var(--ease); }
.ms-modal-close:hover, .gal-modal-close:hover { background: var(--surface-container-high); color: var(--ink); }
.ms-form .asm-field { margin-bottom: 16px; }
.ms-form-hint { font-size: 12.5px; color: var(--outline); margin: -4px 0 16px; }
.ms-summary { background: var(--surface); border: 1px dashed var(--outline-variant); border-radius: var(--r-btn); padding: 12px 14px; font-size: 13.5px; font-weight: 600; color: var(--on-surface-variant); margin-bottom: 18px; }
.ms-submit-btn { width: 100%; justify-content: center; }
.ms-privacy { font-size: 12px; color: var(--outline); text-align: center; margin-top: 12px; line-height: 1.5; }

/* Center gallery modal */
.gal-modal-card { max-width: 1000px; padding: 22px 24px 26px; }
.gal-modal-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.gal-modal-head h3 { font-size: 21px; font-weight: 700; color: var(--ink); }
.gal-modal-close { position: static; flex-shrink: 0; }
.gal-grid { display: flex; flex-wrap: wrap; gap: 18px; }
.gal-grid .ic-card { flex: 0 1 calc(33.333% - 12px); }
@media (max-width: 800px) { .gal-grid .ic-card { flex-basis: calc(50% - 9px); } }
@media (max-width: 520px) { .gal-grid .ic-card { flex-basis: 100%; } .gal-modal-card { padding: 18px 16px 20px; } }

/* Reviews slider — 3 cards visible on desktop, 2 on tablet, 1 on phones */
.tsl-carousel { position: relative; }
.tsl-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 4px 2px 12px; }
.tsl-track::-webkit-scrollbar { display: none; }
.tsl-card { flex: 0 0 calc((100% - 48px) / 3); scroll-snap-align: start; }
.tsl-card { display: flex; flex-direction: column; border: 1px solid var(--outline-variant); }
.tsl-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.tsl-avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 17px; font-weight: 700; object-fit: cover; }
.tsl-who { min-width: 0; flex: 1; }
.tsl-who .r-name { font-size: 15px; font-weight: 700; color: var(--ink); }
.tsl-who .r-meta { font-size: 12.5px; color: var(--on-surface-variant); margin-top: 2px; }
.tsl-google { flex-shrink: 0; display: inline-flex; align-items: center; }
.tsl-card .stars { margin-bottom: 12px; }
/* Quotes clamp to a fixed height so every card lines up; the pill expands one */
.tsl-body { position: relative; }
.tsl-card .quote { font-size: 15px; margin-bottom: 0; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 7; overflow: hidden; }
.tsl-card.open .quote { -webkit-line-clamp: unset; overflow: visible; }
/* Soft fade on the cut-off line, so the text reads as continuing */
.tsl-card:not(.open) .tsl-body::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 46px; pointer-events: none;
    background: linear-gradient(to bottom, rgba(255,255,255,0), var(--surface-container-lowest) 92%);
}
.tsl-more { align-self: flex-start; display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; padding: 7px 14px 7px 16px; border-radius: var(--r-full, 999px); border: 1px solid var(--outline-variant); background: var(--surface); font-family: inherit; font-size: 13px; font-weight: 700; color: var(--primary); cursor: pointer; transition: background .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease); }
.tsl-more:hover { background: rgba(0,104,94,0.07); border-color: var(--primary); transform: translateY(-1px); }
.tsl-more-ic { display: inline-flex; transition: transform .22s var(--ease); }
.tsl-card.open .tsl-more-ic { transform: rotate(180deg); }
.tsl-track { align-items: stretch; }
.tsl-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--primary); border: 1px solid var(--outline-variant); box-shadow: var(--shadow-2); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: opacity .2s var(--ease); }
.tsl-nav.prev { left: -14px; }
.tsl-nav.next { right: -14px; }
.tsl-nav.disabled { opacity: 0; pointer-events: none; }
@media (min-width: 1500px) { .tsl-card { flex-basis: calc((100% - 72px) / 4); } }
@media (max-width: 1024px) { .tsl-card { flex-basis: calc((100% - 24px) / 2); } }
@media (max-width: 700px) {
    .tsl-nav { display: none; }
    .tsl-card { flex-basis: 88%; }
    .tsl-track { gap: 16px; }
}

/* --------------------------------------------------------
   Photo lightbox
   -------------------------------------------------------- */
img.zoomable { cursor: zoom-in; }
.lightbox { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 28px; background: rgba(9, 22, 26, 0.9); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); cursor: zoom-out; animation: lbFade .18s var(--ease); }
.lightbox[hidden] { display: none; }
.lightbox-img { max-width: min(1200px, 94vw); max-height: 88dvh; width: auto; height: auto; object-fit: contain; border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,.45); background: #fff; }
.lightbox-close { position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.35); background: rgba(255,255,255,0.12); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .18s var(--ease); }
.lightbox-close:hover { background: rgba(255,255,255,0.24); }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .lightbox { animation: none; } }
@media (max-width: 600px) {
    .lightbox { padding: 16px; }
    .lightbox-close { top: 10px; right: 10px; width: 38px; height: 38px; }
}

/* ============================================================
   INTERACTIVE EXPERIENCE LAYER
   Intro + curtains, floating play objects, parallax, tilt cards,
   curved section transitions, nav/button micro-interactions.
   Everything here degrades to static under prefers-reduced-motion.
   ============================================================ */

/* ---------- 1. Logo intro + curtain reveal ---------- */
.intro { position: fixed; inset: 0; z-index: 9999; overflow: hidden; }
.intro[hidden] { display: none; }
.intro-curtain {
    position: absolute; top: -2%; bottom: -2%; width: 51%;
    background: linear-gradient(165deg, #f6fbfa 0%, #e6f3ef 55%, #dcefe9 100%);
    box-shadow: 0 0 90px rgba(0, 60, 54, 0.16);
    transition: transform 1.15s cubic-bezier(.76, 0, .24, 1);
}
.intro-curtain.left { left: 0; border-radius: 0 46px 46px 0; }
.intro-curtain.right { right: 0; border-radius: 46px 0 0 46px; }
.intro.open .intro-curtain.left { transform: translateX(-102%); }
.intro.open .intro-curtain.right { transform: translateX(102%); }
/* soft seam down the middle while closed */
.intro-curtain::after {
    content: ""; position: absolute; top: 0; bottom: 0; width: 26px;
    background: linear-gradient(90deg, rgba(0, 60, 54, 0) 0%, rgba(0, 60, 54, 0.07) 100%);
}
.intro-curtain.left::after { right: 0; }
.intro-curtain.right::after { left: 0; transform: scaleX(-1); }

.intro-stage {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 16px;
    transition: opacity .45s ease, transform .55s var(--ease);
}
.intro.open .intro-stage { opacity: 0; transform: scale(.94); }
.intro-logo { width: 240px; max-width: 60vw; height: auto; animation: introPop .85s cubic-bezier(.2, .9, .25, 1) both; }
.intro-logo-float { animation: introFloat 2.8s ease-in-out .85s infinite; }
.intro-tag {
    font-size: 12px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
    color: var(--primary); opacity: .85; animation: introUp .7s .4s both;
}
@keyframes introPop { from { opacity: 0; transform: scale(.8) translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes introFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes introUp { from { opacity: 0; transform: translateY(12px); } to { opacity: .85; transform: none; } }

/* playful shapes drifting around the logo */
.intro-shape { position: absolute; opacity: 0; animation: introShape .8s cubic-bezier(.2, .9, .25, 1) forwards; }
.intro-shape span { display: block; animation: shapeDrift 5s ease-in-out infinite; }
@keyframes introShape { to { opacity: 1; } }
@keyframes shapeDrift {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50% { transform: translate3d(0, -16px, 0) rotate(9deg); }
}

/* ---------- 2. Floating play objects (blocks, balls, stars, crayons) ---------- */
.play-layer { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.po { position: absolute; will-change: transform; transition: transform .5s cubic-bezier(.2, .8, .2, 1); }
.po-in { display: block; animation: poFloat 7s ease-in-out infinite; transform-origin: center; }
.po-in.spin { animation: poFloat 8s ease-in-out infinite, poSpin 22s linear infinite; }
.po-ball {
    border-radius: 50%;
    background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, .95), var(--po-c, #67d9c9) 62%, rgba(0, 0, 0, .18) 130%);
    box-shadow: 0 16px 30px rgba(4, 32, 38, .22);
}
@keyframes poFloat { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, -18px, 0); } }
@keyframes poSpin { to { transform: rotate(360deg); } }
/* the hero sits on a dark image — objects there glow slightly */
.hero-banner .po { filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .35)); }

/* ---------- 3. Hero heading word reveal ---------- */
.hb-content h1 .w { display: inline-block; }
.reveal-ready .hb-slide h1 .w { opacity: 0; transform: translateY(28px); }
.reveal-ready .hb-slide.active h1 .w {
    opacity: 1; transform: none;
    transition: opacity .6s cubic-bezier(.2, .8, .2, 1), transform .7s cubic-bezier(.2, .8, .2, 1);
    transition-delay: calc(var(--i, 0) * 55ms + 120ms);
}
.reveal-ready .hb-slide .hero-pill,
.reveal-ready .hb-slide .hb-lead,
.reveal-ready .hb-slide .hb-actions { opacity: 0; transform: translateY(16px); }
.reveal-ready .hb-slide.active .hero-pill,
.reveal-ready .hb-slide.active .hb-lead,
.reveal-ready .hb-slide.active .hb-actions {
    opacity: 1; transform: none;
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal-ready .hb-slide.active .hb-lead { transition-delay: .42s; }
.reveal-ready .hb-slide.active .hb-actions { transition-delay: .54s; }

/* ---------- 4. Curved section transitions (home) ---------- */
.home-experience .section { position: relative; }
.home-experience .section > .container { position: relative; z-index: 2; }
/* Each section carries its own colour up over the one above it, so every
   boundary reads as a soft organic curve instead of a hard rule. */
.home-experience .section::before {
    content: ""; position: absolute; left: -2px; right: -2px; top: -37px; height: 38px;
    background: inherit; border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: 1; pointer-events: none;
}
/* the strip under the hero keeps its crisp edge */
.home-experience .trust-strip + .section::before { display: none; }

/* ---------- 5. Richer scroll reveals ---------- */
.reveal-ready .reveal { opacity: 0; transform: translateY(26px) scale(.99); transition: opacity .7s ease, transform .8s cubic-bezier(.2, .8, .2, 1); }
.reveal-ready .reveal.in { opacity: 1; transform: none; }
/* cards in the values row settle with a gentle bounce, like blocks stacking */
.reveal-ready .values-grid .reveal { transform: translateY(34px) scale(.96); transition-timing-function: cubic-bezier(.2, 1.35, .4, 1); }
/* the accent rule under each heading draws itself in */
.reveal-ready .section-head.reveal::after { width: 0; transition: width .85s .2s cubic-bezier(.2, .8, .2, 1); }
.reveal-ready .section-head.reveal.in::after { width: 48px; }

/* ---------- 6. Interactive cards: lift, depth and a subtle 3D tilt ---------- */
[data-tilt] { transform-style: preserve-3d; transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s var(--ease), border-color .3s var(--ease); }
[data-tilt].tilting { transition: transform .12s linear, box-shadow .35s var(--ease); }
.sign8-card:hover .s8-icon,
.diff-card:hover .diff-ic { transform: translateY(-3px) rotate(-6deg) scale(1.07); }
.s8-icon, .diff-ic { transition: transform .35s cubic-bezier(.2, 1.4, .4, 1), background .25s var(--ease); }
.diff-card:hover .diff-ic { background: rgba(0, 104, 94, 0.17); }
.ic-card:hover { border-color: rgba(0, 104, 94, .35); }
.tsl-card:hover { border-color: rgba(0, 104, 94, .3); }

/* ---------- 7. Buttons: sheen, lift, press ---------- */
.btn { position: relative; overflow: hidden; }
.btn > * { position: relative; z-index: 1; }
.btn::after {
    content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background: linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, .30) 50%, transparent 72%);
    transform: translateX(-130%); transition: transform .7s var(--ease);
}
.btn:hover::after { transform: translateX(130%); }
.btn:active { transform: translateY(1px) scale(.985); }
.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary:hover { box-shadow: 0 14px 30px rgba(0, 104, 94, 0.30); }
.link-arrow { transition: color .2s var(--ease), letter-spacing .25s var(--ease); }
.link-arrow:hover { letter-spacing: .012em; }

/* ---------- 8. Navigation polish ---------- */
.site-header { transition: box-shadow .3s var(--ease), background .3s var(--ease); }
.site-header.scrolled { background: rgba(255, 255, 255, 0.93); box-shadow: 0 10px 30px rgba(18, 59, 122, 0.08); }
.nav { transition: height .3s var(--ease); }
.site-header.scrolled .nav { height: 66px; }
.logo-img { transition: height .3s var(--ease); }
.site-header.scrolled .logo-img { height: 44px; }
.nav-links a { position: relative; }
.nav-links a.active { border-bottom: none; padding-bottom: 0; }
.nav-links a::after,
.nav-drop-toggle::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 2px; border-radius: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-fixed-dim));
    transform: scaleX(0); transform-origin: center; transition: transform .3s cubic-bezier(.2, .8, .2, 1);
}
.nav-links a:hover::after, .nav-links a.active::after,
.nav-item:hover .nav-drop-toggle::after, .nav-drop-toggle.active::after { transform: scaleX(1); }
.nav-contact .nc-ic { transition: transform .3s cubic-bezier(.2, 1.4, .4, 1), background .25s var(--ease); }
.nav-contact:hover .nc-ic { transform: translateY(-2px) scale(1.06); background: rgba(0, 104, 94, 0.18); }

/* reading progress, riding the header's bottom edge */
.scroll-progress { position: absolute; left: 0; bottom: -1px; height: 3px; width: 0; border-radius: 0 3px 3px 0; background: linear-gradient(90deg, var(--primary), var(--primary-fixed-dim)); transition: width .1s linear; z-index: 5; }

/* ---------- 9. Mobile + reduced motion ---------- */
@media (max-width: 900px) {
    .po { display: none; }
    .po.keep-mobile { display: block; transform: none !important; }
    .home-experience .section::before { height: 22px; top: -21px; }
    .intro-logo { width: 180px; }
}
@media (hover: none) {
    .btn::after { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    .intro-logo, .intro-logo-float, .intro-tag, .intro-shape, .intro-shape span,
    .po-in, .po-in.spin { animation: none !important; }
    .intro-curtain { transition: none !important; }
    .po, [data-tilt], .btn, .btn::after, .nav, .logo-img, .site-header { transition: none !important; }
    .reveal-ready .reveal, .reveal-ready .hb-slide h1 .w,
    .reveal-ready .hb-slide .hero-pill, .reveal-ready .hb-slide .hb-lead,
    .reveal-ready .hb-slide .hb-actions { opacity: 1 !important; transform: none !important; }
}

/* Intro safety net: if the script never runs, the overlay clears itself */
.intro { animation: introFailsafe 0s 4.2s forwards; }
@keyframes introFailsafe { to { opacity: 0; visibility: hidden; pointer-events: none; } }
.intro-running { overflow: hidden; }
/* Hero content waits behind the curtains rather than playing unseen */
.intro-running .hb-slide.active h1 .w,
.intro-running .hb-slide.active .hero-pill,
.intro-running .hb-slide.active .hb-lead,
.intro-running .hb-slide.active .hb-actions { transition: none !important; opacity: 0; transform: translateY(24px); }
/* Inner-margin objects only appear where there is room beside the hero copy */
@media (max-width: 1200px) { .po-wide { display: none; } }
/* Objects drifting inside light sections sit behind the content, quietly */
.section-play { z-index: 0; }
.po-soft { opacity: .75; }
/* Phones: the hero panel is fixed-height, so keep the copy comfortably inside it */
@media (max-width: 700px) {
    .hero-banner { min-height: 560px; }
    .hb-content { padding: 48px 0; }
    .hb-content h1 { font-size: 32px; }
    .hb-lead { font-size: 15.5px; margin-bottom: 22px; }
}
@media (max-width: 430px) {
    .hero-banner { min-height: 580px; }
    .hb-content h1 { font-size: 28px; }
    .hb-lead { font-size: 14.5px; }
    .hb-actions .btn { min-height: 44px; font-size: 15px; padding: 10px 20px; }
}

/* ============================================================
   BLOG — hub, topic listings and article pages
   ============================================================ */

/* Hero: copy on the left, a real session photo on the right */
.blog-hero, .split-hero { padding: 40px 0 28px; }
.blog-hero { padding-bottom: 56px; }
.blog-hero-grid, .split-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.blog-hero-copy .badge { margin-bottom: 16px; }
.blog-hero-copy h1 { font-size: 40px; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; color: var(--secondary); margin-bottom: 18px; }
.blog-hero-copy .hero-lead { margin-bottom: 14px; max-width: 560px; }
.blog-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.blog-hero-media, .split-hero-media { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-2); }
.blog-hero-media img, .split-hero-media img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; display: block; }

/* Topic chips under the hero */
.blog-cat-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--outline-variant); }
.blog-cat-nav a {
    display: inline-flex; align-items: center; padding: 9px 16px; border-radius: var(--r-full);
    border: 1px solid var(--outline-variant); background: var(--surface-container-lowest);
    font-size: 13.5px; font-weight: 600; color: var(--on-surface-variant);
    transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.blog-cat-nav a:hover { color: var(--primary); border-color: var(--primary); transform: translateY(-2px); }
.blog-cat-nav a.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Explore by topic */
.topic-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.topic-grid > .topic-tile:last-child:nth-child(odd) { grid-column: 1 / -1; }
.topic-tile {
    display: flex; align-items: center; gap: 16px; padding: 16px 20px;
    background: var(--surface-container-lowest); border: 1px solid var(--outline-variant);
    border-radius: var(--r-card); box-shadow: var(--shadow-1);
    transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.topic-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: rgba(0,104,94,.35); }
.tt-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; background: rgba(0,104,94,0.09); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; transition: transform .35s cubic-bezier(.2,1.4,.4,1), background .25s var(--ease); }
.topic-tile:hover .tt-icon { transform: rotate(-6deg) scale(1.07); background: rgba(0,104,94,0.17); }
.tt-text { flex: 1; min-width: 0; }
.topic-tile h3 { font-size: 16.5px; font-weight: 700; color: var(--premium-blue); line-height: 1.3; }
.topic-tile p { font-size: 13.5px; line-height: 1.45; color: var(--on-surface-variant); margin-top: 2px; }
.tt-count { flex-shrink: 0; font-size: 12.5px; font-weight: 600; color: var(--outline); white-space: nowrap; }
.tt-arrow { flex-shrink: 0; font-size: 18px; font-weight: 700; color: var(--primary); transition: transform .25s var(--ease); }
.topic-tile:hover .tt-arrow { transform: translateX(4px); }

/* Article cards: reading time next to the link */
.blog-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.blog-card-foot .read-more { margin-top: 0; }
.read-time { font-size: 12.5px; font-weight: 600; color: var(--outline); white-space: nowrap; }
.blog-more { text-align: center; margin-top: 28px; }

/* Section heading on the left, a call to action on the right */
.section-head-split { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.section-head-split .section-head { margin-bottom: 0; }
.section-head-split .section-title,
.section-head-split .section-sub { text-align: left; margin-left: 0; }
.section-head-split .section-head::after { margin-left: 0; }
.section-head-split > .btn { flex-shrink: 0; }

/* All Blogs: one post per row, image left and text right */
.blog-rows { display: flex; flex-direction: column; gap: 20px; }
.blog-rows .blog-card { flex-direction: row; }
.blog-rows .blog-card .thumb { display: block; flex: 0 0 320px; aspect-ratio: auto; min-height: 210px; }
.blog-rows .blog-card .body { padding: 26px 32px; justify-content: center; }
.blog-rows .blog-card h3 { font-size: 22px; }
.blog-rows .blog-card p { max-width: 720px; }
.blog-rows .blog-card-foot { margin-top: 4px; justify-content: flex-start; gap: 24px; }
@media (max-width: 900px) {
    .blog-rows .blog-card .thumb { flex-basis: 230px; min-height: 180px; }
    .blog-rows .blog-card .body { padding: 20px 22px; }
    .blog-rows .blog-card h3 { font-size: 19px; }
}
@media (max-width: 600px) {
    .section-head-split { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 18px; }
    .blog-rows { gap: 14px; }
    .blog-rows .blog-card .thumb { flex-basis: 112px; min-height: 0; }
    .blog-rows .blog-card .body { padding: 14px 16px; }
    .blog-rows .blog-card .meta { font-size: 11px; margin-bottom: 6px; }
    .blog-rows .blog-card h3 { font-size: 16px; margin-bottom: 8px; }
    .blog-rows .blog-card p { display: none; }
}

/* Parent guides */
.guide-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.guide-card {
    display: flex; flex-direction: column; gap: 10px; padding: 26px 28px 22px;
    background: var(--surface-container-lowest); border: 1px solid var(--outline-variant);
    border-left: 4px solid var(--primary); border-radius: var(--r-card); box-shadow: var(--shadow-1);
    transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.guide-tag { align-self: flex-start; font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--primary); background: rgba(0,104,94,0.10); padding: 5px 12px; border-radius: var(--r-full); }
.guide-card h3 { font-size: 19px; font-weight: 700; color: var(--premium-blue); line-height: 1.3; }
.guide-card p { font-size: 14.5px; line-height: 1.6; color: var(--on-surface-variant); }
.guide-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 12px; }
.guide-foot .link-arrow { font-size: 14px; font-weight: 700; color: var(--primary); }

/* Insights from the therapy team */
.insight-list { list-style: none; display: flex; flex-direction: column; gap: 12px; max-width: 940px; margin: 0 auto; }
.insight-list a {
    display: grid; grid-template-columns: 200px 1fr auto; align-items: center; gap: 18px;
    padding: 18px 24px; background: var(--surface-container-lowest);
    border: 1px solid var(--outline-variant); border-radius: var(--r-card); box-shadow: var(--shadow-1);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.insight-list a:hover { transform: translateX(4px); box-shadow: var(--shadow-2); border-color: rgba(0,104,94,.35); }
.ins-cat { font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); }
.ins-title { font-size: 16.5px; font-weight: 600; color: var(--on-surface); line-height: 1.4; }
.ins-go { display: inline-flex; align-items: center; gap: 12px; color: var(--primary); }
.insight-list a:hover .ins-go svg { transform: translateX(3px); }
.ins-go svg { transition: transform .25s var(--ease); }

/* Parents are reading */
.popular-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.popular-card {
    display: flex; gap: 16px; padding: 22px 22px 20px; background: var(--surface-container-lowest);
    border: 1px solid var(--outline-variant); border-radius: var(--r-card); box-shadow: var(--shadow-1);
    transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.popular-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.pop-num { font-size: 26px; font-weight: 800; line-height: 1; color: rgba(0,104,94,.28); flex-shrink: 0; }
.pop-body { display: flex; flex-direction: column; gap: 7px; }
.pop-cat { font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); }
.pop-title { font-size: 15.5px; font-weight: 600; line-height: 1.4; color: var(--on-surface); }

/* Breadcrumbs */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: var(--outline); margin-bottom: 22px; }
.crumbs a { color: var(--on-surface-variant); font-weight: 600; }
.crumbs a:hover { color: var(--primary); }
.crumbs span { color: var(--outline-variant); }
.crumb-current { color: var(--primary); font-weight: 700; }

/* Topic listing hero */
.blog-topic-hero { padding: 34px 0 10px; }
.blog-topic-hero h1 { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; color: var(--secondary); margin-bottom: 12px; }
.blog-topic-hero .hero-lead { max-width: var(--text-width); }
.blog-topic-hero .blog-cat-nav { margin-top: 26px; }

/* Article page */
.article-cat { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 14px; }
.article-cat a { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); }
.article-intro { font-size: 18px; line-height: 1.6; color: var(--on-surface-variant); margin-bottom: 18px; }
.article-byline { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; color: var(--outline); font-size: 14px; margin-bottom: 30px; }
.article-byline .sep { color: var(--outline-variant); }
.article-body ul { margin: 0 0 22px 20px; display: flex; flex-direction: column; gap: 8px; }
.article-body li { line-height: 1.7; }

@media (max-width: 1100px) {
    .popular-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .blog-hero-grid, .split-hero-grid { grid-template-columns: 1fr; gap: 28px; }
    .blog-hero-copy h1, .split-hero-copy h1 { font-size: 32px; }
    .blog-hero-media img, .split-hero-media img { height: 300px; }
    .topic-grid { grid-template-columns: 1fr; }
    .guide-grid { grid-template-columns: 1fr; }
    .insight-list a { grid-template-columns: 1fr; gap: 8px; }
    .ins-go { justify-content: space-between; }
}
@media (max-width: 560px) {
    .popular-grid { grid-template-columns: 1fr; }
    .topic-tile { padding: 14px 16px; gap: 14px; }
    .tt-count { display: none; }
    .blog-cat-nav { gap: 8px; }
    .blog-cat-nav a { font-size: 12.5px; padding: 8px 13px; }
    .blog-topic-hero h1 { font-size: 28px; }
    .blog-hero { padding-bottom: 32px; }
    .article-intro { font-size: 16.5px; }
}

/* ---- Concerns: split hero, medical evaluation panel, condition blocks ---- */
.split-hero-copy h1 { font-size: 40px; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; color: var(--secondary); margin-bottom: 18px; }
.split-hero-copy .hero-lead { margin-bottom: 14px; max-width: 580px; }
.split-hero-copy .con-reassure { margin-bottom: 0; }
.split-hero-copy .con2-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

.med-panel { background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); box-shadow: var(--shadow-1); padding: 30px 32px; max-width: 980px; margin: 0 auto; }
.med-lead { font-size: 15.5px; font-weight: 600; color: var(--on-surface); margin-bottom: 16px; }
.med-flags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.med-flag { display: inline-flex; align-items: center; padding: 8px 15px; border-radius: var(--r-full); background: rgba(0,104,94,0.08); border: 1px solid rgba(0,104,94,0.18); font-size: 13.5px; font-weight: 600; color: var(--primary); }
.med-urgent { display: flex; gap: 16px; align-items: flex-start; padding: 20px 22px; border-radius: var(--r-card); background: rgba(186,26,26,0.06); border: 1px solid rgba(186,26,26,0.18); }
.med-urgent .mb-ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: rgba(186,26,26,0.10); color: var(--error); display: flex; align-items: center; justify-content: center; }
.med-urgent h3 { font-size: 16.5px; font-weight: 700; color: var(--error); margin-bottom: 6px; }
.med-urgent p { font-size: 14.5px; line-height: 1.6; color: var(--on-surface-variant); }

.cc-support { font-size: 14.5px; line-height: 1.65; color: var(--on-surface-variant); margin-bottom: 16px; }
.cc-services { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 16px; }
.ccs-label { font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--outline); margin-right: 4px; }
.ccs-chip { display: inline-flex; align-items: center; padding: 7px 14px; border-radius: var(--r-full); border: 1px solid var(--outline-variant); background: var(--surface-container-lowest); font-size: 13px; font-weight: 600; color: var(--on-surface-variant); transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease); }
.ccs-chip:hover { color: var(--primary); border-color: var(--primary); transform: translateY(-2px); }

@media (max-width: 700px) {
    .med-panel { padding: 24px 20px; }
    .med-urgent { flex-direction: column; gap: 12px; }
}

/* ---- Occupational Therapy page ---- */
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--outline-variant); }
.hero-tag { display: inline-flex; align-items: center; padding: 7px 14px; border-radius: var(--r-full); background: rgba(0,104,94,0.08); border: 1px solid rgba(0,104,94,0.18); font-size: 13px; font-weight: 600; color: var(--primary); }

.ot-what-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 44px; align-items: center; margin-bottom: 36px; }
.ot-what-media { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-2); }
.ot-what-media img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.ot-what-copy .msg { margin-bottom: 16px; }
.ot-what-copy .msg.lead { font-size: 18px; color: var(--on-surface); }

.skill-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.skill-card { background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); box-shadow: var(--shadow-1); padding: 24px 22px; display: flex; flex-direction: column; gap: 8px; transition: transform .28s var(--ease), box-shadow .28s var(--ease); }
.skill-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.skill-icon { width: 46px; height: 46px; border-radius: 13px; background: rgba(0,104,94,0.09); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 4px; transition: transform .35s cubic-bezier(.2,1.4,.4,1), background .25s var(--ease); }
.skill-card:hover .skill-icon { transform: translateY(-3px) rotate(-6deg) scale(1.07); background: rgba(0,104,94,0.17); }
.skill-card h3 { font-size: 17px; font-weight: 700; color: var(--premium-blue); }
.skill-card p { font-size: 14px; line-height: 1.55; color: var(--on-surface-variant); }

.ot-highlight { max-width: 720px; margin: 0 auto 30px; text-align: center; font-size: 16.5px; font-weight: 600; line-height: 1.6; color: var(--primary); background: rgba(0,104,94,0.07); border: 1px dashed rgba(0,104,94,0.25); border-radius: var(--r-card); padding: 16px 22px; }

.ot-areas { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 940px; margin: 0 auto; }
.ot-area { display: inline-flex; align-items: center; padding: 9px 17px; border-radius: var(--r-full); background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); font-size: 13.5px; font-weight: 600; color: var(--on-surface-variant); transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease); }
.ot-area:hover { color: var(--primary); border-color: var(--primary); transform: translateY(-2px); }

.cond-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 24px; }
.cond-card { position: relative; background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); box-shadow: var(--shadow-1); padding: 22px 20px 20px; transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease); }
.cond-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: rgba(0,104,94,.32); }
.cond-dot { display: block; width: 26px; height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--primary), var(--primary-fixed-dim)); margin-bottom: 12px; }
.cond-card h3 { font-size: 16px; font-weight: 700; color: var(--premium-blue); margin-bottom: 6px; line-height: 1.3; }
.cond-card p { font-size: 13.5px; line-height: 1.5; color: var(--on-surface-variant); }

/* True masonry: every photo keeps its own aspect ratio, so nothing is cropped.
   Columns give the staggered look the fixed-height grid used to fake. */
.ot-gallery, .slt-gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.otg-item { position: relative; display: block; margin: 0; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-1); background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); }
.otg-item img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; display: block; transition: transform .6s var(--ease); }
.otg-item:hover img { transform: scale(1.06); }
.otg-item .media-soon { aspect-ratio: 1 / 1; }
.otg-item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 18px 16px; display: flex; flex-direction: column; gap: 3px; background: linear-gradient(to top, rgba(6,26,30,.86), rgba(6,26,30,0)); color: #fff; }
.otg-title { font-size: 15px; font-weight: 700; }
.otg-desc { font-size: 12.5px; color: rgba(255,255,255,.82); line-height: 1.45; }
/* Tiles still waiting on a photo keep dark text on the light placeholder */
.otg-item.no-photo figcaption { position: static; background: none; padding: 0 18px 16px; color: var(--on-surface); }
.otg-item.no-photo .otg-title { color: var(--premium-blue); }
.otg-item.no-photo .otg-desc { color: var(--on-surface-variant); }
.otg-item.no-photo { display: flex; flex-direction: column; }
.otg-item.no-photo .media-soon { border: none; background: linear-gradient(135deg, #eef5f4, #e6eefb); }
.otg-item.no-photo figcaption { padding: 0 18px 14px; }

@media (max-width: 1100px) {
    .skill-grid, .cond-card-grid { grid-template-columns: repeat(2, 1fr); }
    .ot-gallery, .slt-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .ot-what-grid { grid-template-columns: 1fr; gap: 26px; }
    .ot-what-media img { aspect-ratio: 3 / 2; }
}
@media (max-width: 560px) {
    .skill-grid, .cond-card-grid { grid-template-columns: 1fr; }
    .ot-gallery, .slt-gallery { grid-template-columns: 1fr; }
    .ot-highlight { font-size: 15px; padding: 14px 16px; }
}

/* ---- Speech & Language Therapy page ---- */
/* Floating labels around the hero visual */
.split-hero-media.has-floats { position: relative; overflow: visible; }
.split-hero-media.has-floats img { border-radius: var(--r-card); }
.float-label {
    position: absolute; display: inline-flex; align-items: center; gap: 7px;
    padding: 9px 16px; border-radius: var(--r-full); background: rgba(255,255,255,0.96);
    box-shadow: var(--shadow-2); border: 1px solid var(--outline-variant);
    font-size: 13px; font-weight: 700; color: var(--primary); white-space: nowrap;
    animation: floatBob 6s ease-in-out infinite;
}
.float-label::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--primary); }
.float-label.fl-1 { top: 8%; left: -22px; }
.float-label.fl-2 { bottom: 16%; right: -20px; animation-delay: 1.2s; }
.float-label.fl-3 { bottom: -16px; left: 12%; animation-delay: 2.4s; }
@keyframes floatBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@media (prefers-reduced-motion: reduce) { .float-label { animation: none; } }

.ot-what-grid.reverse { grid-template-columns: 1.05fr 0.95fr; }
/* Used where the paired photo has been moved elsewhere. */
.ot-what-grid.single { grid-template-columns: 1fr; }
.skill-grid-label { text-align: center; font-size: 16px; font-weight: 700; color: var(--premium-blue); margin-bottom: 20px; }
.skill-card { position: relative; }
.skill-num { position: absolute; top: 18px; right: 20px; font-size: 13px; font-weight: 800; letter-spacing: .04em; color: rgba(0,104,94,.28); }

/* "Parents may notice" — 2 x 2 cards */
.notice-heading { text-align: center; margin-bottom: 18px; }
.notice-quad { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.notice-card { background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); box-shadow: var(--shadow-1); padding: 26px 28px; transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease); }
.notice-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: rgba(0,104,94,.3); }
.nq-icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 13px; background: rgba(0,104,94,0.09); color: var(--primary); margin-bottom: 14px; transition: transform .35s cubic-bezier(.2,1.4,.4,1), background .25s var(--ease); }
.notice-card:hover .nq-icon { transform: translateY(-3px) rotate(-6deg) scale(1.07); background: rgba(0,104,94,0.17); }
.notice-card h3 { font-size: 17px; font-weight: 700; color: var(--premium-blue); margin-bottom: 12px; }
.ot-highlight.wide { max-width: none; }
.ot-highlight:last-child { margin-bottom: 0; }

/* Condition cards that link through to the Concerns page */
.cond-card { display: flex; flex-direction: column; }
.cond-card .link-arrow { margin-top: auto; padding-top: 12px; font-size: 13.5px; font-weight: 700; color: var(--primary); }

/* Photo-led mosaic gallery */

/* FAQ with a + / − toggle */
.faq-plus .faq-pm { color: var(--primary); flex-shrink: 0; display: inline-flex; }
.faq-plus .faq-pm .pm-v { transform-origin: center; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.faq-plus .faq-item[open] .faq-pm .pm-v { transform: rotate(90deg); opacity: 0; }

/* Final CTA: visual on one side, action on the other */
.cta-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-2); border: 1px solid var(--outline-variant); background: var(--surface-container-lowest); }
.cta-split-media img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; display: block; }
.cta-split-copy { padding: 42px 44px; display: flex; flex-direction: column; justify-content: center; }
.cta-split-copy h2 { font-size: 30px; font-weight: 800; line-height: 1.2; color: var(--secondary); margin-bottom: 14px; }
.cta-split-copy > p { font-size: 16px; line-height: 1.6; color: var(--on-surface-variant); margin-bottom: 26px; }
.cta-split-copy .con2-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-split-note, .cta-split-copy > p.cta-split-note { margin: 20px 0 0; font-size: 13px; font-weight: 600; letter-spacing: .06em; color: var(--primary); }

@media (max-width: 1100px) {
    .slt-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1100px) {
    .notice-quad { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .ot-what-grid.reverse { grid-template-columns: 1fr; }
    .notice-quad { grid-template-columns: 1fr; }
    .cta-split { grid-template-columns: 1fr; }
    .cta-split-media img { min-height: 240px; }
    .cta-split-copy { padding: 30px 26px; }
    .float-label.fl-1 { left: 8px; }
    .float-label.fl-2 { right: 8px; }
    .float-label.fl-3 { display: none; }
}
@media (max-width: 560px) {
    .slt-gallery { grid-template-columns: 1fr; }
    .cta-split-copy h2 { font-size: 24px; }
    .float-label { font-size: 11.5px; padding: 7px 12px; }
}

/* ---- Child Psychology page ---- */
.hero-sub { font-size: 19px; font-weight: 700; line-height: 1.45; color: var(--primary); margin-bottom: 16px; }

/* Compact labelled grid for the concerns we support */
.chip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.chip-tile { display: inline-flex; align-items: center; gap: 12px; padding: 16px 18px; border-radius: var(--r-card); background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); box-shadow: var(--shadow-1); font-size: 14.5px; font-weight: 600; color: var(--on-surface); line-height: 1.4; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.chip-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: rgba(0,104,94,.32); }
.chip-mark { flex-shrink: 0; width: 28px; height: 28px; border-radius: 9px; background: rgba(0,104,94,0.10); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; }

/* Four-step support process */
.proc-steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 0; padding: 0; }
.proc-step { position: relative; background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); box-shadow: var(--shadow-1); padding: 24px 22px 22px; text-align: left; transition: transform .28s var(--ease), box-shadow .28s var(--ease); }
.proc-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.proc-num { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: #fff; font-size: 16px; font-weight: 800; box-shadow: 0 6px 16px rgba(0,104,94,.22); }
.proc-step h3 { font-size: 16.5px; font-weight: 700; line-height: 1.3; color: var(--premium-blue); margin-bottom: 8px; }
.proc-step p { font-size: 13.5px; line-height: 1.55; color: var(--on-surface-variant); }

/* How sessions are run — five tiles */
.method-tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.method-tile { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; padding: 24px 16px; border-radius: var(--r-card); background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); box-shadow: var(--shadow-1); transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease); }
.method-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: rgba(0,104,94,.32); }
.mt-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(0,104,94,0.09); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; transition: transform .35s cubic-bezier(.2,1.4,.4,1), background .25s var(--ease); }
.method-tile:hover .mt-icon { transform: translateY(-3px) rotate(-6deg) scale(1.07); background: rgba(0,104,94,0.17); }
.mt-title { font-size: 14px; font-weight: 700; color: var(--premium-blue); line-height: 1.35; }

/* Parent guidance points */
.guide-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 6px; }
.guide-tile { position: relative; padding: 13px 14px 13px 34px; border-radius: var(--r-btn); background: var(--surface); border: 1px solid var(--outline-variant); font-size: 13.5px; font-weight: 600; color: var(--on-surface-variant); line-height: 1.4; }
.guide-tile::before { content: ""; position: absolute; left: 14px; top: 18px; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }

@media (max-width: 1100px) {
    .chip-grid { grid-template-columns: repeat(2, 1fr); }
    .proc-steps { grid-template-columns: repeat(2, 1fr); }
    .method-tiles { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
    .guide-tiles { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .chip-grid, .proc-steps { grid-template-columns: 1fr; }
    .method-tiles { grid-template-columns: repeat(2, 1fr); }
    .hero-sub { font-size: 17px; }
}

/* ---- Child Physiotherapy page ---- */
/* Photo beside a stack of skill cards */
.stack-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.stack-media { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-2); }
.stack-media img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.stack-cards { display: flex; flex-direction: column; gap: 12px; }
.skill-grid-label.left { text-align: left; margin-bottom: 4px; }
.stack-card { display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px; background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); box-shadow: var(--shadow-1); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.stack-card:hover { transform: translateX(4px); box-shadow: var(--shadow-2); border-color: rgba(0,104,94,.32); }
.stack-card .skill-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 13px; background: rgba(0,104,94,0.09); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; }
.stack-card h3 { font-size: 16.5px; font-weight: 700; color: var(--premium-blue); margin-bottom: 4px; }
.stack-card p { font-size: 13.5px; line-height: 1.5; color: var(--on-surface-variant); }

/* Therapy goals */
.goal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 40px; }
.goal-card { display: flex; align-items: flex-start; gap: 14px; padding: 20px 20px; background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); box-shadow: var(--shadow-1); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.goal-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.goal-tick { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: rgba(0,104,94,0.10); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; }
.goal-card h3 { font-size: 15.5px; font-weight: 700; color: var(--premium-blue); margin-bottom: 4px; }
.goal-card p { font-size: 13.5px; line-height: 1.5; color: var(--on-surface-variant); }

/* Assess → Plan → Practice → Participate → Progress */
.journey-strip { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; margin: 0; padding: 0; }
.journey-step + .journey-step::before { content: ""; position: absolute; top: 32px; right: 50%; width: 100%; height: 2px; background: rgba(0,104,94,.20); z-index: 0; }
.journey-step { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0; padding: 0 12px; }
.js-icon { position: relative; z-index: 1; width: 64px; height: 64px; border-radius: 50%; background: var(--primary); border: none; color: #fff; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 6px 16px rgba(0,104,94,.22); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.journey-step:hover .js-icon { transform: translateY(-4px); border-color: var(--primary); }
.js-title { margin-top: 8px; font-size: 16px; font-weight: 700; line-height: 1.3; color: var(--premium-blue); }
/* Physio has no number chip, so the title follows the node directly. */
.js-icon + .js-title { margin-top: 14px; }
.js-desc { margin-top: 6px; font-size: 13.5px; line-height: 1.5; color: var(--on-surface-variant); max-width: 200px; }

/* Grouped FAQ labels */
.faq-group-label { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); margin: 26px 0 12px; }
.faq-group-label:first-child { margin-top: 0; }

@media (max-width: 1100px) {
    .goal-grid { grid-template-columns: repeat(2, 1fr); }
    .journey-strip { grid-template-columns: repeat(3, 1fr); gap: 30px 0; }
    .journey-step + .journey-step::before { display: none; }
}
@media (max-width: 900px) {
    .stack-grid { grid-template-columns: 1fr; gap: 26px; }
    .stack-media img { height: 300px; }
}
@media (max-width: 560px) {
    .goal-grid { grid-template-columns: 1fr; }
    .journey-strip { grid-template-columns: repeat(2, 1fr); gap: 26px 0; }
}

/* ---- Early Intervention page ---- */
/* Full-width photographic hero with the copy laid over it */
.ei-hero { position: relative; min-height: 540px; display: flex; align-items: center; overflow: hidden; background: #0b2b34; }
.ei-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ei-hero-veil { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(6,28,32,.92) 0%, rgba(6,28,32,.78) 42%, rgba(6,28,32,.30) 100%); }
.ei-hero-inner { position: relative; z-index: 1; padding-block: 64px; }
.ei-hero-copy { max-width: 640px; color: #fff; }
.badge.light { background: rgba(255,255,255,0.14); color: #fff; border: 1px solid rgba(255,255,255,0.28); }
.badge.light .dot { background: var(--primary-fixed-dim); }
.ei-hero-copy h1 { font-size: 46px; font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; color: #fff; margin: 16px 0 14px; }
.ei-hero-sub { font-size: 19px; font-weight: 700; color: var(--primary-fixed-dim); margin-bottom: 14px; }
.ei-hero-lead { font-size: 16.5px; line-height: 1.65; color: rgba(255,255,255,0.88); margin-bottom: 26px; max-width: 560px; }
.ei-hero-copy .con2-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.ei-hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.18); }
.ei-hero-tag { display: inline-flex; align-items: center; padding: 7px 15px; border-radius: var(--r-full); background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.26); font-size: 13px; font-weight: 600; color: #fff; }

/* Five-across concern cards */
.signs8-grid.five { grid-template-columns: repeat(5, 1fr); }

/* Scannable condition cards that link into the Concerns page */
.compact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.compact-card { display: flex; align-items: flex-start; gap: 12px; padding: 20px 18px; background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); box-shadow: var(--shadow-1); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.compact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: rgba(0,104,94,.34); }
.compact-card .cc-dot { flex-shrink: 0; width: 10px; height: 10px; margin-top: 6px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-fixed-dim)); }
.cc-body { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.cc-title { font-size: 15.5px; font-weight: 700; color: var(--premium-blue); line-height: 1.3; }
.cc-line { font-size: 13px; line-height: 1.5; color: var(--on-surface-variant); }
.cc-go { flex-shrink: 0; color: var(--primary); opacity: .55; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.compact-card:hover .cc-go { transform: translateX(3px); opacity: 1; }

.journey-strip.four { grid-template-columns: repeat(4, 1fr); }
.js-num { margin-top: 14px; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); background: rgba(0,104,94,.09); border-radius: var(--r-full); padding: 3px 10px; }

/* Child at the centre, the disciplines around it */
.team-orbit { display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 24px; align-items: center; }
.orbit-col { display: flex; flex-direction: column; gap: 14px; }
.orbit-media { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-2); }
.orbit-media img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.orbit-card { display: flex; align-items: center; gap: 12px; padding: 16px 18px; background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); box-shadow: var(--shadow-1); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.orbit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: rgba(0,104,94,.34); }
.orbit-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px; background: rgba(0,104,94,0.09); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; }
.orbit-title { flex: 1; font-size: 14.5px; font-weight: 700; color: var(--premium-blue); line-height: 1.3; }
.orbit-go { color: var(--primary); font-weight: 700; opacity: .6; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.orbit-card:hover .orbit-go { transform: translateX(3px); opacity: 1; }

@media (max-width: 1100px) {
    .signs8-grid.five { grid-template-columns: repeat(3, 1fr); }
    .compact-grid { grid-template-columns: repeat(2, 1fr); }
    .journey-strip.four { grid-template-columns: repeat(2, 1fr); }
    .team-orbit { grid-template-columns: 1fr 1fr; }
    .orbit-media { grid-column: 1 / -1; order: -1; }
    .orbit-media img { height: 300px; }
}
@media (max-width: 700px) {
    .ei-hero { min-height: 0; }
    .ei-hero-inner { padding-block: 48px; }
    .ei-hero-copy h1 { font-size: 32px; }
    .ei-hero-sub { font-size: 17px; }
    .ei-hero-veil { background: linear-gradient(180deg, rgba(6,28,32,.82) 0%, rgba(6,28,32,.92) 100%); }
}
@media (max-width: 560px) {
    .compact-grid, .team-orbit { grid-template-columns: 1fr; }
    .journey-strip.four { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Special Education page ---- */
.method-tiles.six { grid-template-columns: repeat(3, 1fr); }
.method-tiles.six .method-tile { padding: 26px 22px; }
.mt-desc { font-size: 13px; line-height: 1.5; color: var(--on-surface-variant); }
@media (max-width: 900px) { .method-tiles.six { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .method-tiles.six { grid-template-columns: 1fr; } }

/* ---- Learning Center: the two sub-sections ---- */
.lc-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.lc-card { display: flex; flex-direction: column; gap: 10px; padding: 32px 30px; background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); box-shadow: var(--shadow-1); transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease); }
.lc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); border-color: rgba(0,104,94,.35); }
.lc-icon { width: 54px; height: 54px; border-radius: 15px; background: rgba(0,104,94,0.09); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 4px; transition: transform .35s cubic-bezier(.2,1.4,.4,1), background .25s var(--ease); }
.lc-card:hover .lc-icon { transform: translateY(-3px) rotate(-6deg) scale(1.07); background: rgba(0,104,94,0.17); }
.lc-card h3 { font-size: 22px; font-weight: 700; color: var(--premium-blue); }
.lc-card p { font-size: 15px; line-height: 1.6; color: var(--on-surface-variant); }
.lc-card .link-arrow { margin-top: auto; padding-top: 10px; font-size: 14.5px; font-weight: 700; color: var(--primary); }
@media (max-width: 800px) { .lc-split { grid-template-columns: 1fr; } }

/* ---- About page ---- */
.stat-badge { position: absolute; right: -16px; bottom: 22px; display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 16px 22px; border-radius: var(--r-card); background: rgba(255,255,255,0.97); box-shadow: var(--shadow-2); border: 1px solid var(--outline-variant); }
.stat-badge strong { font-size: 26px; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-badge span { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--on-surface-variant); }

.skill-grid.stack { grid-template-columns: 1fr; gap: 12px; margin-top: 20px; }
.skill-grid.stack .skill-card { flex-direction: row; align-items: flex-start; gap: 14px; padding: 18px 20px; display: flex; }
.skill-grid.stack .skill-card .skill-icon { flex-shrink: 0; margin-bottom: 0; }
.skill-grid.stack .skill-card h3 { font-size: 16px; margin-bottom: 3px; }
.skill-grid.stack .skill-card p { font-size: 13.5px; }

/* Founder */
.founder-split { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 44px; align-items: center; }
.founder-portrait { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-2); aspect-ratio: 4/5; }
.founder-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-copy .msg { margin-bottom: 18px; }
.cred-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.cred { display: inline-flex; align-items: center; gap: 11px; font-size: 14.5px; font-weight: 600; color: var(--on-surface); }
.cred-mark { flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px; background: rgba(0,104,94,0.10); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; }
.founder-quote { margin: 0; padding: 20px 24px; border-left: 4px solid var(--primary); background: var(--surface); border-radius: 0 var(--r-card) var(--r-card) 0; font-size: 17px; font-style: italic; line-height: 1.6; color: var(--premium-blue); }

/* Vision & mission */
.vm-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vm-card { display: flex; flex-direction: column; gap: 10px; padding: 34px 32px; background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); box-shadow: var(--shadow-1); transition: transform .28s var(--ease), box-shadow .28s var(--ease); }
.vm-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.vm-icon { width: 52px; height: 52px; border-radius: 15px; background: rgba(0,104,94,0.09); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; }
.vm-label { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); }
.vm-card h3 { font-size: 22px; font-weight: 700; line-height: 1.25; color: var(--premium-blue); }
.vm-card p { font-size: 15px; line-height: 1.65; color: var(--on-surface-variant); }
.vm-pillars { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.vm-pillar { display: inline-flex; align-items: center; padding: 7px 14px; border-radius: var(--r-full); background: rgba(0,104,94,0.07); border: 1px solid rgba(0,104,94,0.18); font-size: 12.5px; font-weight: 600; color: var(--primary); }

/* Core values, three columns */
.values-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-col { position: relative; padding: 32px 30px; background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); box-shadow: var(--shadow-1); overflow: hidden; transition: transform .28s var(--ease), box-shadow .28s var(--ease); }
.value-col::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--primary-fixed-dim)); }
.value-col:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); }
.value-num { font-size: 13px; font-weight: 800; letter-spacing: .1em; color: rgba(0,104,94,.4); }
.value-col h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.01em; color: var(--premium-blue); margin: 6px 0 4px; }
.value-tagline { font-size: 14.5px; font-weight: 600; color: var(--primary); margin-bottom: 16px; }
.value-points { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.value-points li { position: relative; padding-left: 24px; font-size: 14.5px; line-height: 1.5; color: var(--on-surface-variant); }
.value-points li::before { content: ""; position: absolute; left: 2px; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-card { display: flex; flex-direction: column; background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-1); transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease); }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); border-color: rgba(0,104,94,.32); }
.team-photo { aspect-ratio: 1/1; overflow: hidden; background: var(--surface); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-photo .media-soon { height: 100%; border: none; border-radius: 0; background: linear-gradient(135deg, #eef5f4, #e6eefb); }
.team-body { padding: 20px 22px 22px; }
.team-body h3 { font-size: 17px; font-weight: 700; color: var(--premium-blue); margin-bottom: 6px; }
.team-body p { font-size: 13.5px; line-height: 1.55; color: var(--on-surface-variant); }

@media (max-width: 1000px) {
    .vm-cards, .values-3, .founder-split { grid-template-columns: 1fr; gap: 26px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .founder-portrait { max-width: 360px; }
}
@media (max-width: 600px) {
    .team-grid { grid-template-columns: 1fr; }
    .stat-badge { right: 10px; bottom: 10px; padding: 12px 16px; }
    .stat-badge strong { font-size: 21px; }
}

/* ---- Assessment page ---- */
.why-rows { display: flex; flex-direction: column; gap: 18px; max-width: 1000px; margin: 0 auto; }
.why-row { display: flex; align-items: center; gap: 22px; padding: 26px 30px; background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); box-shadow: var(--shadow-1); transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease); }
.why-row:hover { transform: translateX(5px); box-shadow: var(--shadow-2); border-color: rgba(0,104,94,.32); }
.why-num { font-size: 26px; font-weight: 800; color: rgba(0,104,94,.3); line-height: 1; flex-shrink: 0; }
.why-icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px; background: rgba(0,104,94,0.09); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; transition: transform .35s cubic-bezier(.2,1.4,.4,1), background .25s var(--ease); }
.why-row:hover .why-icon { transform: rotate(-6deg) scale(1.07); background: rgba(0,104,94,0.17); }
.why-body h3 { font-size: 18px; font-weight: 700; color: var(--premium-blue); margin-bottom: 5px; }
.why-body p { font-size: 14.5px; line-height: 1.6; color: var(--on-surface-variant); }

.notice-quad.tight { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 18px; }
.notice-quad.tight .notice-card { padding: 20px 20px; }
.notice-quad.tight .notice-card h3 { font-size: 15.5px; margin-bottom: 6px; }
.notice-quad.tight .notice-card p { font-size: 13.5px; line-height: 1.5; color: var(--on-surface-variant); }
.notice-quad.tight .nq-icon { width: 40px; height: 40px; border-radius: 11px; margin-bottom: 10px; }
.asm-principles { text-align: center; font-size: 13.5px; font-weight: 700; letter-spacing: .04em; color: var(--primary); }

.signs8-grid.three { grid-template-columns: repeat(3, 1fr); }

/* Preparation checklist */
.prep-strip { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 0 0 40px; padding: 0; }
.prep-step { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 7px; padding: 22px 18px; background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); box-shadow: var(--shadow-1); transition: transform .28s var(--ease), box-shadow .28s var(--ease); }
.prep-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.prep-icon { width: 52px; height: 52px; border-radius: 15px; background: rgba(0,104,94,0.09); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.prep-title { font-size: 16px; font-weight: 700; line-height: 1.3; color: var(--premium-blue); }
.prep-desc { font-size: 13.5px; line-height: 1.55; color: var(--on-surface-variant); }

/* Photo beside the request form */
.asm-booking-photo { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-2); margin: 24px 0 0; }
.asm-booking-photo img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; display: block; }

@media (max-width: 1000px) {
    .signs8-grid.three { grid-template-columns: repeat(2, 1fr); }
    .prep-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .signs8-grid.three, .prep-strip { grid-template-columns: 1fr; }
    .why-row { flex-direction: column; align-items: flex-start; gap: 12px; padding: 22px 20px; }
    .asm-booking-photo img { height: 200px; }
}

/* ---- Shared page hero: one photograph, copy centred over it ---- */
.page-hero { position: relative; min-height: clamp(380px, 32vw, 500px); display: flex; align-items: center; overflow: hidden; background: #0b2b34; }
.page-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,28,32,.72) 0%, rgba(6,28,32,.80) 55%, rgba(6,28,32,.88) 100%); }
.page-hero-inner { position: relative; z-index: 1; padding-block: 48px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.page-hero h1 { font-size: 46px; font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; color: #fff; margin: 16px 0 14px; max-width: 900px; }
.page-hero-sub { font-size: 19px; font-weight: 700; color: var(--primary-fixed-dim); margin-bottom: 14px; max-width: 760px; }
.page-hero-lead { font-size: 16.5px; line-height: 1.65; color: rgba(255,255,255,0.88); max-width: 760px; margin-bottom: 12px; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 16px; }
.page-hero-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.18); }
.page-hero-tag { display: inline-flex; align-items: center; padding: 7px 15px; border-radius: var(--r-full); background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.26); font-size: 13px; font-weight: 600; color: #fff; }
@media (max-width: 700px) {
    .page-hero { min-height: 0; }
    .page-hero-inner { padding-block: 38px; }
    .page-hero h1 { font-size: 32px; }
    .page-hero-sub { font-size: 17px; }
    .page-hero-lead { font-size: 15.5px; }
}

/* Journey timeline without a media slot (assessment process) */
#assessmentJourney .jt-track { --jt-steps: 6; }
#assessmentJourney .jt-node em { font-size: 13.5px; }
.jt-panel.no-media { grid-template-columns: 1fr; }
.jt-panel.no-media.active { display: block; }
.jt-panel.no-media .jt-body { max-width: 900px; margin: 0 auto; text-align: left; }
.jt-subtitle { font-size: 16px; font-weight: 600; color: var(--primary); margin-bottom: 14px; }
.jt-panel.no-media .notice-list { margin-top: 12px; }

/* ---- Professional enquiries band (home) ---- */
.pro-band { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--premium-blue) 0%, #16306e 55%, var(--primary) 140%); color: #fff; }
.pro-band::before { content: ""; position: absolute; top: -60px; right: -40px; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,0.06); }
.pro-band::after { content: ""; position: absolute; bottom: -90px; left: 8%; width: 200px; height: 200px; border-radius: 50%; background: rgba(103,217,201,0.12); }
.pro-band-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding-block: 46px; }
.pro-band-eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px; border-radius: var(--r-full); background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.26); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.pro-band-copy h2 { font-size: 30px; font-weight: 800; line-height: 1.2; margin: 16px 0 10px; color: #fff; max-width: 640px; }
.pro-band-copy p { font-size: 15.5px; line-height: 1.65; color: rgba(255,255,255,0.84); max-width: 620px; }
.pro-band-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; flex-shrink: 0; }
.pro-band-link { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(255,255,255,0.35); }
.pro-band-link:hover { color: #fff; }
@media (max-width: 900px) {
    .pro-band-inner { flex-direction: column; align-items: flex-start; gap: 24px; padding-block: 38px; }
    .pro-band-copy h2 { font-size: 24px; }
}
@media (max-width: 900px) {
    #assessmentJourney .jt-track { --jt-steps: 3; row-gap: 22px; }
    #assessmentJourney .jt-line { display: none; }
}
@media (max-width: 600px) {
    /* labels are hidden at this width, so all six dots fit in a single row
       and the progress line can come back */
    #assessmentJourney .jt-track { --jt-steps: 6; row-gap: 0; }
    #assessmentJourney .jt-line { display: block; }
}

/* ---- Contact page refresh ---- */
/* Booking panel is now photo-led, with the copy laid over it */
.bh-panel { position: relative; overflow: hidden; padding: 0; }
.bh-panel-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bh-panel-veil { position: absolute; inset: 0; background: linear-gradient(170deg, rgba(0,86,78,.93) 0%, rgba(0,66,60,.90) 55%, rgba(4,40,44,.94) 100%); }
.bh-panel-body { position: relative; z-index: 1; height: 100%; padding: 40px 36px; display: flex; flex-direction: column; justify-content: space-between; gap: 26px; }

/* Visit the centre */
.visit-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 24px; align-items: stretch; }
.visit-media { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 168px; gap: 16px; }
.visit-photo { position: relative; margin: 0; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-1); border: 1px solid var(--outline-variant); }
.visit-photo.tall { grid-row: span 2; }
.visit-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.visit-photo:hover img { transform: scale(1.06); }
.visit-photo figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 16px 12px; font-size: 13px; font-weight: 700; color: #fff; background: linear-gradient(to top, rgba(6,26,30,.85), rgba(6,26,30,0)); }
.visit-info { display: flex; flex-direction: column; gap: 16px; }
.visit-block { background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); box-shadow: var(--shadow-1); padding: 26px 26px 24px; }
.visit-label { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; }
.visit-addr { font-size: 15px; line-height: 1.6; color: var(--on-surface-variant); margin-bottom: 6px; }
.visit-addr strong { color: var(--ink); }
.visit-landmark { font-size: 13px; color: var(--outline); margin-bottom: 18px; }
.visit-hours { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.visit-hours li { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--surface-container); font-size: 14px; color: var(--on-surface-variant); }
.visit-hours li:last-child { border-bottom: none; padding-bottom: 0; }
.visit-hours li span:first-child { font-weight: 600; color: var(--on-surface); }
.visit-hours li span:last-child { font-weight: 700; color: var(--primary); white-space: nowrap; }
.visit-hours li.closed span:last-child { color: var(--error); }
#visit .ct-map { border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--outline-variant); box-shadow: var(--shadow-1); min-height: 420px; height: 100%; }
#visit .ct-map iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (max-width: 1000px) {
    .visit-grid { grid-template-columns: 1fr; }
    .visit-media { grid-auto-rows: 150px; }
}
@media (max-width: 600px) {
    .bh-panel-body { padding: 30px 24px; }
    #visit .ct-map { min-height: 260px; }
}

/* ---- Ways to reach us: one divided panel instead of four separate cards ---- */
.reach-section { padding-top: 0; margin-top: -54px; position: relative; z-index: 2; }
.reach-panel { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); border-radius: var(--r-card); box-shadow: var(--shadow-2); overflow: hidden; }
.reach-item { position: relative; display: flex; flex-direction: column; gap: 7px; padding: 30px 28px 28px; border-right: 1px solid var(--surface-container); transition: background .25s var(--ease); }
.reach-item:last-child { border-right: none; }
.reach-item::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--primary-fixed-dim)); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.reach-item:hover { background: var(--surface); }
.reach-item:hover::before { transform: scaleX(1); }
.reach-icon { width: 46px; height: 46px; border-radius: 14px; background: rgba(0,104,94,0.09); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 6px; transition: transform .35s cubic-bezier(.2,1.4,.4,1), background .25s var(--ease); }
.reach-item:hover .reach-icon { transform: translateY(-3px) rotate(-6deg) scale(1.06); background: rgba(0,104,94,0.17); }
.reach-label { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--outline); }
.reach-value { font-size: 16px; font-weight: 700; line-height: 1.45; color: var(--ink); }
.reach-meta { font-size: 12.5px; line-height: 1.5; color: var(--on-surface-variant); margin-top: auto; padding-top: 6px; }
.reach-go { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 8px; font-size: 13.5px; font-weight: 700; color: var(--primary); }
.reach-go svg { transition: transform .25s var(--ease); }
.reach-item:hover .reach-go svg { transform: translateX(3px); }

@media (max-width: 1000px) {
    .reach-panel { grid-template-columns: repeat(2, 1fr); }
    .reach-item:nth-child(2) { border-right: none; }
    .reach-item:nth-child(-n+2) { border-bottom: 1px solid var(--surface-container); }
}
@media (max-width: 600px) {
    .reach-section { margin-top: -30px; }
    .reach-panel { grid-template-columns: 1fr; }
    .reach-item { border-right: none; border-bottom: 1px solid var(--surface-container); padding: 24px 22px; }
    .reach-item:last-child { border-bottom: none; }
}

/* ---- Contact page spacing ---- */
/* The reach panel overlaps the hero, so the hero needs room beneath its CTA */
.contact-page .reach-section { margin-top: 0; padding-top: 44px; padding-bottom: 20px; }
.contact-page #booking-hub { padding-top: 20px; }
@media (max-width: 700px) {
    .contact-page .reach-section { padding-top: 34px; padding-bottom: 16px; }
    .contact-page #booking-hub { padding-top: 16px; }
}

/* ============================================================
   MOTION PASS — cheap, composited animation across the site.
   Everything animates opacity/transform only, runs once, and is
   switched off entirely under prefers-reduced-motion.
   ============================================================ */

/* Reveals: slightly longer travel for cards, springier for stat-style blocks */
.reveal-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .75s cubic-bezier(.2, .8, .2, 1); }
.reveal-ready .reveal.in { opacity: 1; transform: none; }
.reveal-ready .prep-strip > .reveal,
.reveal-ready .journey-strip > .reveal,
.reveal-ready .proc-steps > .reveal,
.reveal-ready .values-3 > .reveal { transform: translateY(30px) scale(.97); transition-timing-function: cubic-bezier(.2, 1.3, .4, 1); }
.reveal-ready .ot-gallery > .reveal,
.reveal-ready .slt-gallery > .reveal,
.reveal-ready .ic-grid > .reveal,
.reveal-ready .Center-teaser > .reveal { transform: translateY(20px) scale(.975); }
.reveal-ready .hero-tags > .reveal,
.reveal-ready .page-hero-tags > .reveal,
.reveal-ready .ot-areas > .reveal,
.reveal-ready .vm-pillars > .reveal,
.reveal-ready .med-flags > .reveal { transform: translateY(12px) scale(.94); transition-duration: .45s; }

/* Hero photographs settle with a slow, almost imperceptible zoom */
.page-hero-img, .ei-hero-img { animation: heroSettle 9s cubic-bezier(.2, .6, .2, 1) forwards; transform-origin: 55% 45%; }
@keyframes heroSettle { from { transform: scale(1.08); } to { transform: scale(1); } }

/* Hero copy arrives in sequence */
.page-hero-inner > * { animation: heroRise .7s cubic-bezier(.2, .8, .2, 1) both; }
.page-hero-inner > :nth-child(2) { animation-delay: .08s; }
.page-hero-inner > :nth-child(3) { animation-delay: .16s; }
.page-hero-inner > :nth-child(4) { animation-delay: .24s; }
.page-hero-inner > :nth-child(5) { animation-delay: .32s; }
.page-hero-inner > :nth-child(6) { animation-delay: .40s; }
@keyframes heroRise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* Accordions open with a soft slide instead of snapping */
.faq-item[open] .faq-body,
.acc-item[open] .acc-body { animation: accOpen .3s cubic-bezier(.2, .8, .2, 1); }
@keyframes accOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* Cards lift a touch more decisively, and their icons answer the hover */
.skill-card, .cond-card, .notice-card, .chip-tile, .method-tile, .goal-card, .compact-card,
.team-card, .value-col, .vm-card, .topic-tile, .guide-card, .popular-card, .lc-card, .prep-step,
.visit-block, .why-row, .reach-item, .orbit-card, .stack-card {
    transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s var(--ease), border-color .3s var(--ease), background .25s var(--ease);
}
.journey-step:hover .js-icon, .prep-step:hover .prep-icon { transform: translateY(-4px) scale(1.05); }
.prep-icon { transition: transform .35s cubic-bezier(.2, 1.4, .4, 1); }

/* Counting numbers keep a steady width so the layout never jumps */
[data-count] { font-variant-numeric: tabular-nums; }

/* Live announcement dot + section arcs already move; keep everything still for
   anyone who asks for reduced motion. */
@media (prefers-reduced-motion: reduce) {
    .page-hero-img, .ei-hero-img, .page-hero-inner > *,
    .faq-item[open] .faq-body, .acc-item[open] .acc-body { animation: none !important; }
    .reveal-ready .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Flag on a blog card thumbnail: guide or therapy-team insight */
.blog-card .thumb { position: relative; }

/* The suspended-bolster tile is a square frame in a wide slot: hold the crop
   lower so both the child and the therapist stay in shot. */

/* --------------------------------------------------------
   CARD HEADS — icon and heading on one line
   Cards used to stack a 46px icon tile above the heading, which cost ~60px of
   height per card and left them looking mostly padding. .blk-head puts the two
   on a single row. Appended last so it wins ties against the per-card
   `.x-card h3 { margin-bottom }` rules, which share its specificity.
   -------------------------------------------------------- */
.blk-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.blk-head > span, .blk-head > div { margin-bottom: 0; }
/* Only the icon must keep its size — a text title has to be free to wrap. */
.blk-head > :first-child { flex-shrink: 0; }
/* Method tiles space their rows with `gap`, so the head needs no margin. */
.method-tile .blk-head { margin-bottom: 0; }
.blk-head > h2, .blk-head > h3, .blk-head > h4, .blk-head > h5 { margin-bottom: 0; line-height: 1.25; }
@media (max-width: 420px) { .blk-head { gap: 10px; } }

/* --------------------------------------------------------
   GALLERY COLLAGE
   12-column grid. Each row holds three tiles whose spans total 12, so every
   row is full and the block's top and bottom edges stay straight. Spans and
   aspect-ratios are matched per photo — each row's most landscape image takes
   the widest slot — which keeps 94% of each photo visible on average while
   still reading as a collage. Source order is preserved.
   Ratios are expressed on the tiles (not fixed row heights) so the whole
   thing scales with the viewport and rows stay level at any width.
   -------------------------------------------------------- */
/* OT_GALLERY */
.gal-ot .otg-item:nth-child(1) { grid-column: span 3; aspect-ratio: 0.771; }
.gal-ot .otg-item:nth-child(2) { grid-column: span 4; aspect-ratio: 1.043; }
.gal-ot .otg-item:nth-child(3) { grid-column: span 5; aspect-ratio: 1.315; }
.gal-ot .otg-item:nth-child(4) { grid-column: span 4; aspect-ratio: 1.017; }
.gal-ot .otg-item:nth-child(5) { grid-column: span 5; aspect-ratio: 1.282; }
.gal-ot .otg-item:nth-child(6) { grid-column: span 3; aspect-ratio: 0.751; }
/* SLT_GALLERY */
.gal-slt .otg-item:nth-child(1) { grid-column: span 3; aspect-ratio: 0.884; }
.gal-slt .otg-item:nth-child(2) { grid-column: span 5; aspect-ratio: 1.508; }
.gal-slt .otg-item:nth-child(3) { grid-column: span 4; aspect-ratio: 1.196; }
.gal-slt .otg-item:nth-child(4) { grid-column: span 4; aspect-ratio: 1.356; }
.gal-slt .otg-item:nth-child(5) { grid-column: span 4; aspect-ratio: 1.356; }
.gal-slt .otg-item:nth-child(6) { grid-column: span 4; aspect-ratio: 1.356; }
/* PSY_GALLERY */
.gal-psy .otg-item:nth-child(1) { grid-column: span 4; aspect-ratio: 0.884; }
.gal-psy .otg-item:nth-child(2) { grid-column: span 5; aspect-ratio: 1.115; }
.gal-psy .otg-item:nth-child(3) { grid-column: span 3; aspect-ratio: 0.653; }
.gal-psy .otg-item:nth-child(4) { grid-column: span 5; aspect-ratio: 1.508; }
.gal-psy .otg-item:nth-child(5) { grid-column: span 4; aspect-ratio: 1.196; }
.gal-psy .otg-item:nth-child(6) { grid-column: span 3; aspect-ratio: 0.884; }
/* PHY_GALLERY */
.gal-phy .otg-item:nth-child(1) { grid-column: span 4; aspect-ratio: 0.753; }
.gal-phy .otg-item:nth-child(2) { grid-column: span 4; aspect-ratio: 0.753; }
.gal-phy .otg-item:nth-child(3) { grid-column: span 4; aspect-ratio: 0.753; }
.gal-phy .otg-item:nth-child(4) { grid-column: span 4; aspect-ratio: 0.992; }
.gal-phy .otg-item:nth-child(5) { grid-column: span 5; aspect-ratio: 1.251; }
.gal-phy .otg-item:nth-child(6) { grid-column: span 3; aspect-ratio: 0.733; }
/* SE_GALLERY */
.gal-se .otg-item:nth-child(1) { grid-column: span 4; aspect-ratio: 0.992; }
.gal-se .otg-item:nth-child(2) { grid-column: span 4; aspect-ratio: 0.992; }
.gal-se .otg-item:nth-child(3) { grid-column: span 4; aspect-ratio: 0.992; }
.gal-se .otg-item:nth-child(4) { grid-column: span 4; aspect-ratio: 0.992; }
.gal-se .otg-item:nth-child(5) { grid-column: span 4; aspect-ratio: 0.992; }
.gal-se .otg-item:nth-child(6) { grid-column: span 4; aspect-ratio: 0.992; }
/* EI_GALLERY_NEW */
.gal-ei .otg-item:nth-child(1) { grid-column: span 4; aspect-ratio: 1.130; }
.gal-ei .otg-item:nth-child(2) { grid-column: span 5; aspect-ratio: 1.425; }
.gal-ei .otg-item:nth-child(3) { grid-column: span 3; aspect-ratio: 0.835; }
.gal-ei .otg-item:nth-child(4) { grid-column: span 3; aspect-ratio: 0.668; }
.gal-ei .otg-item:nth-child(5) { grid-column: span 4; aspect-ratio: 0.904; }
.gal-ei .otg-item:nth-child(6) { grid-column: span 5; aspect-ratio: 1.140; }/* About's "Inside OTCloud": five room photos, all 1195x726, so a plain
   uniform grid fits them exactly. Last two centre under the top row. */
.gal-about { grid-template-columns: repeat(6, 1fr); }
.gal-about .otg-item { grid-column: span 2; aspect-ratio: 1195 / 726; }
.gal-about .otg-item:nth-child(4) { grid-column: 2 / span 2; }

/* Collage responsive overrides. These must come AFTER the per-gallery
   :nth-child rules above, which share their specificity — order is what
   decides the tie. Below tablet the collage flattens to an even grid. */
@media (max-width: 1100px) {
    .ot-gallery, .slt-gallery, .gal-about { grid-template-columns: repeat(2, 1fr); }
    .ot-gallery .otg-item, .slt-gallery .otg-item,
    .gal-ot .otg-item:nth-child(n), .gal-slt .otg-item:nth-child(n),
    .gal-psy .otg-item:nth-child(n), .gal-phy .otg-item:nth-child(n),
    .gal-se .otg-item:nth-child(n), .gal-ei .otg-item:nth-child(n) { grid-column: span 1; aspect-ratio: 1 / 1; }
    .gal-about .otg-item, .gal-about .otg-item:nth-child(4) { grid-column: span 1; aspect-ratio: 1195 / 726; }
}
@media (max-width: 560px) {
    .ot-gallery, .slt-gallery, .gal-about { grid-template-columns: 1fr; }
    .gal-ot .otg-item:nth-child(n), .gal-slt .otg-item:nth-child(n),
    .gal-psy .otg-item:nth-child(n), .gal-phy .otg-item:nth-child(n),
    .gal-se .otg-item:nth-child(n), .gal-ei .otg-item:nth-child(n) { aspect-ratio: 4 / 3; }
}
