/* spec-card round + image (Nima) */
.spec-card{ border-radius:14px !important; overflow:hidden; }
.spec-card-img{ height:120px; margin:-2rem -2rem 1.2rem; background-size:cover; background-position:center; }
/* global link color (no browser-default purple) */
a { color: var(--gold-dark, #a78a52); }
.ed-side-all { color: var(--gold-dark, #a78a52) !important; }
:root {
            /* Re-skinned to match parent /nima/ palette (true navy + warm gold) */
            --navy: #0c1829;
            --navy-light: #1a2d45;
            --slate: #2a2a32;
            --gold: #c9a96e;
            --gold-light: #dfc495;
            --gold-dark: #a78a52;
            --cream: #f0ece4;
            --cream-dark: #e0dbd2;
            --white: #ffffff;
            --off: #faf9f6;
            --text-dark: #1a1a2e;
            --text-body: #5a5a6a;
            --text-light: #6c6c75; /* WCAG AA on cream/white (was #a0a0aa, ~2.7:1) */
            --taupe: #9a918a;
            --bdr: #e8e5de;
            --teal: #c9a96e;        /* legacy alias — gold-mapped */
            --teal-light: #faf6ed;  /* legacy alias — light cream */
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background: var(--white);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* ─── Mockup Frame ─── */

        /* ─── Browser Chrome ─── */

        /* ─── Website Navigation ─── */
        .site-nav {
            background: transparent;
            border-bottom: none;
            padding: 0 clamp(0.9rem, 2vw, 2.5rem);
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 104px;
            gap: clamp(0.5rem, 1vw, 1.4rem);
            position: relative;
            z-index: 10;
            margin-bottom: -104px;
            flex-wrap: nowrap;
            min-width: 0;
        }
        .site-nav > * { min-width: 0; }
        .site-logo {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 0.85rem;
            flex-shrink: 0;
            min-width: 0;
        }
        .site-logo-img {
            height: 42px;
            width: auto;
            display: block;
            flex-shrink: 0;
        }
        .site-logo-text {
            display: flex;
            flex-direction: column;
            min-width: 0;
        }
        .site-logo .name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            letter-spacing: 0.03em;
            line-height: 1.2;
            white-space: nowrap;
        }
        .site-logo .title {
            font-size: 0.55rem;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 0.16em;
            font-weight: 500;
            white-space: nowrap;
            margin-top: 2px;
        }
        .site-links {
            display: flex;
            gap: clamp(0.7rem, 1.1vw, 1.9rem);
            list-style: none;
            align-items: center;
            flex-wrap: nowrap;
            min-width: 0;
        }
        .site-links a {
            font-size: clamp(0.66rem, 0.7vw, 0.78rem);
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-weight: 500;
            letter-spacing: clamp(0.04em, 0.4vw, 0.12em);
            text-transform: uppercase;
            transition: color 0.3s;
            white-space: nowrap;
        }
        .site-links a:hover { color: white; }

        /* ─── Dropdown submenu (horizontal full-width strip) ─── */
        .site-links .nav-has-sub { position: static; }
        .site-links .nav-has-sub > a .caret {
            display: inline-block;
            font-size: 0.7em;
            margin-left: 3px;
            transition: transform 0.25s;
            color: var(--gold);
        }
        .site-links .nav-has-sub:hover > a .caret { transform: rotate(180deg); }
        .nav-sub {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            width: 100%;
            background: transparent;
            border-top: 0;
            box-shadow: none;
            padding: 0.85rem 2.5rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 1.6rem 1.8rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-6px);
            transition: opacity 0.22s, visibility 0.22s, transform 0.22s;
            z-index: 200;
        }
        .nav-sub::before {
            content: '';
            position: absolute;
            top: -10px; left: 0; right: 0;
            height: 12px;
        }
        .site-links .nav-has-sub:hover .nav-sub {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .nav-sub a {
            display: inline-block !important;
            padding: 0.35rem 0 !important;
            font-size: 0.74rem !important;
            color: rgba(255,255,255,0.75) !important;
            text-transform: none !important;
            letter-spacing: 0.02em !important;
            font-weight: 500 !important;
            line-height: 1.3;
            white-space: nowrap;
            border-bottom: 1px solid transparent;
            transition: color 0.2s, border-color 0.2s;
        }
        .nav-sub a:hover {
            color: var(--gold) !important;
            border-bottom-color: var(--gold);
        }

        .nav-cta {
            padding: 14px 28px !important;
            background: var(--gold);
            color: var(--navy) !important;
            border-radius: 5px;
            font-size: 0.78rem !important;
            font-weight: 700 !important;
            letter-spacing: 0.12em !important;
        }
        .nav-cta:hover { background: var(--slate) !important; color: white !important; }

        /* ─── Social Icons ─── */
        /* Hidden in the desktop nav at every viewport width — they kept
         overlapping the CONNECT link. They still render in the footer
         via .social-icons.dark. */
        .nav-right .social-icons,
        .site-nav .social-icons { display: none !important; }
        .social-icons {
            display: flex;
            gap: 6px;
            align-items: center;
        }
        .social-icons a {
            width: 28px; height: 28px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.75);
            text-decoration: none;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            border-color: var(--gold);
            color: var(--gold);
            background: rgba(201,169,110,0.06);
        }
        .social-icons a svg {
            width: 12px; height: 12px;
            fill: currentColor;
        }
        .social-icons.dark a {
            border-color: rgba(255,255,255,0.12);
            color: rgba(255,255,255,0.4);
        }
        .social-icons.dark a:hover {
            border-color: var(--gold);
            color: var(--gold-light);
            background: rgba(201,169,110,0.08);
        }
        /* Nav social row */
        .nav-right {
            display: flex;
            align-items: center;
            gap: 1.4rem;
            flex-shrink: 0;
        }
        .nav-phone {
            font-size: 0.92rem;
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-weight: 500;
            letter-spacing: 0.02em;
            display: flex;
            align-items: center;
            gap: 7px;
            white-space: nowrap;
            transition: color 0.3s;
        }
        .nav-phone:hover { color: white; }
        .nav-phone svg {
            width: 14px; height: 14px;
            fill: var(--gold);
        }
        /* Hero social sidebar */
        .hero-social {
            position: absolute;
            left: 1.5%;
            bottom: 6rem;
            z-index: 5;
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: center;
        }
        .hero-social::before {
            content: '';
            width: 1px;
            height: 40px;
            background: rgba(201,169,110,0.3);
            margin-bottom: 6px;
        }
        .hero-social a {
            width: 36px; height: 36px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            transition: all 0.3s;
        }
        .hero-social a:hover {
            border-color: var(--gold);
            color: var(--gold);
            background: rgba(201,169,110,0.1);
        }
        .hero-social a svg {
            width: 15px; height: 15px;
            fill: currentColor;
        }
        .hero-social .social-label {
            writing-mode: vertical-rl;
            text-orientation: mixed;
            font-size: 0.6rem;
            color: rgba(255,255,255,0.3);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 4px;
        }
        /* Footer social */
        .footer-social {
            display: flex;
            gap: 10px;
            margin-top: 1.2rem;
        }
        .footer-social a {
            width: 36px; height: 36px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.35);
            text-decoration: none;
            transition: all 0.3s;
        }
        .footer-social a:hover {
            border-color: var(--gold);
            color: var(--gold-light);
            background: rgba(201,169,110,0.08);
        }
        .footer-social a svg {
            width: 15px; height: 15px;
            fill: currentColor;
        }

        /* ─── Hero Section ─── compact but tall enough for nav + content stack */
        .hero {
            position: relative;
            height: clamp(540px, 64vh, 720px);
            min-height: 540px;
            display: flex;
            overflow: hidden;
        }
        .hero-image {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 40%, var(--slate) 100%);
        }
        /* Simulated clinical environment with geometric shapes */
        .hero-image::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            width: 55%;
            height: 100%;
            background: linear-gradient(
                170deg,
                rgba(201,169,110,0.06) 0%,
                rgba(201,169,110,0.02) 30%,
                transparent 60%
            );
        }
        .hero-geometric {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            width: 420px;
            height: 520px;
        }
        .geo-frame {
            position: absolute;
            border: 1px solid rgba(201,169,110,0.2);
        }
        .geo-frame:nth-child(1) {
            width: 380px; height: 480px;
            top: 0; left: 0;
            border-radius: 200px 200px 8px 8px;
        }
        .geo-frame:nth-child(2) {
            width: 350px; height: 450px;
            top: 15px; left: 15px;
            border-radius: 180px 180px 8px 8px;
            background: linear-gradient(180deg, rgba(201,169,110,0.05), rgba(42,122,122,0.03));
        }
        .geo-inner {
            position: absolute;
            width: 320px; height: 420px;
            top: 30px; left: 30px;
            border-radius: 160px 160px 8px 8px;
            background: linear-gradient(180deg, var(--slate), var(--navy-light));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            text-align: center;
            overflow: hidden;
        }
        .geo-inner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(ellipse at 30% 20%, rgba(201,169,110,0.08) 0%, transparent 50%);
        }
        .geo-inner .silhouette {
            position: relative;
            z-index: 1;
            width: 140px; height: 140px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(201,169,110,0.15), rgba(201,169,110,0.05));
            border: 3px solid rgba(201,169,110,0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            overflow: hidden;
        }
        .silhouette-initials {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--gold);
        }
        .silhouette img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
        }
        .geo-credentials {
            position: relative;
            z-index: 1;
            color: rgba(255,255,255,0.5);
            font-size: 0.65rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }
        .geo-specialty {
            position: relative;
            z-index: 1;
            color: var(--gold-light);
            font-family: 'Cormorant Garamond', serif;
            font-size: 1rem;
            margin-top: 0.5rem;
            font-style: italic;
        }

        .hero-content {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            /* 120px = 104px nav height + 16px gap so the eyebrow can't crash into the nav row */
            padding: 120px 5rem 1.5rem;
            max-width: 50%;
        }
        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 2rem;
        }
        .hero-label .line {
            width: 40px;
            height: 1px;
            background: var(--gold);
        }
        .hero-label::after {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--gold);
            display: block;
            flex-shrink: 0;
        }
        .hero-label span {
            font-size: 0.7rem;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-weight: 600;
        }
        .hero h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2rem, 4.6vw, 3.8rem);
            font-weight: 400;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 1.5rem;
            letter-spacing: -0.01em;
        }
        .hero h1 strong {
            font-weight: 700;
            color: var(--gold-light);
        }
        .hero-desc {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.55);
            max-width: 480px;
            line-height: 1.8;
            margin-bottom: 2.5rem;
        }
        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .btn-gold {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            white-space: nowrap;
            background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
            background-size: 200% 200%;
            background-position: 50% 50%;
            color: var(--navy);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            text-decoration: none;
            border: none;
            border-radius: 50px;
            box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 6px 16px -8px rgba(167,138,82,0.45);
            transition: background-position 0.6s, box-shadow 0.4s, transform 0.3s;
        }
        .btn-gold:hover {
            background-position: 100% 0%;
            box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 10px 22px -8px rgba(167,138,82,0.55);
            transform: translateY(-1px);
        }
        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            white-space: nowrap;
            background: transparent;
            color: var(--white);
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-decoration: none;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 50px;
            transition: all 0.3s;
        }
        .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

        /* ─── Trust Bar ─── */
        .trust-bar {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            background: var(--cream);
            border-bottom: 1px solid #e8e3db;
        }
        .trust-item {
            text-align: center;
            padding: 2rem 1rem;
            border-right: 1px solid #e8e3db;
        }
        .trust-item:last-child { border-right: none; }
        .trust-item .number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--navy);
            line-height: 1;
        }
        .trust-item .label {
            font-size: 0.65rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-top: 0.3rem;
        }

        /* ─── About Section ───
           Full-bleed split: image fills the left half of the viewport edge-to-edge,
           text fills the right half. Both columns stretch to the same height — the
           image grows/shrinks dynamically with the section. */
        .about-section {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
            align-items: stretch;
            gap: 0;
            max-width: none;
            margin: 0;
            padding: 0;
            min-height: 640px;
        }
        .about-image {
            background: transparent;
            display: block;
            position: relative;
            overflow: hidden;
            border-radius: 0;
            width: 100%;
            height: 100%;
            line-height: 0;
        }
        .about-image-inner {
            width: 100%;
            height: 100%;
            background: transparent;
            position: relative;
            display: block;
            overflow: hidden;
            line-height: 0;
        }
        .about-image-inner img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position: center 22%;
        }
        .about-image-inner::before { display: none; }
        .about-placeholder {
            position: relative;
            z-index: 1;
            padding: 2rem;
            text-align: center;
        }
        .about-placeholder .ph-icon {
            width: 80px; height: 80px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
            color: white;
            border: 1px solid rgba(255,255,255,0.3);
        }
        .about-placeholder p {
            font-size: 0.7rem;
            color: rgba(255,255,255,0.7);
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }
        .about-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 6vw, 5.5rem);
            max-width: 720px;
        }
        .about-content .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1.5rem;
        }
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }
        .section-tag .tag-line {
            width: 30px;
            height: 1px;
            background: var(--gold);
        }
        .section-tag::after {
            content: '';
            width: 30px;
            height: 1px;
            background: var(--gold);
            display: block;
            flex-shrink: 0;
        }
        .section-tag span {
            font-size: 0.65rem;
            color: var(--gold-dark);
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-weight: 600;
        }
        .about-content h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.4rem;
            font-weight: 600;
            color: var(--navy);
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        .about-content p {
            font-size: 0.9rem;
            color: var(--text-body);
            margin-bottom: 1rem;
            line-height: 1.8;
        }
        .credentials-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 1.5rem 0;
            list-style: none;
        }
        .credentials-list li {
            padding: 6px 16px;
            background: var(--cream);
            border: 1px solid #e8e3db;
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--navy);
            letter-spacing: 0.04em;
        }
        .about-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.75rem;
            color: var(--gold-dark);
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-top: 1rem;
        }
        /* Career timeline (mirrors about page) */
        .about-content .timeline {
            position: relative;
            padding-left: 1.5rem;
            margin-top: 1.5rem;
        }
        .about-content .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 12px;
            bottom: 12px;
            width: 1px;
            background: linear-gradient(180deg, transparent, var(--gold) 8%, var(--gold) 92%, transparent);
        }
        .about-content .tl-item {
            position: relative;
            padding: 0 0 2rem 1.8rem;
        }
        .about-content .tl-item:last-child { padding-bottom: 0; }
        .about-content .tl-item::before {
            content: '';
            position: absolute;
            left: -5px;
            top: 0.4rem;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--white);
            border: 2px solid var(--gold);
        }
        .about-content .tl-year {
            font-size: 0.55rem;
            color: var(--gold-dark);
            text-transform: uppercase;
            letter-spacing: 0.18em;
            font-weight: 700;
            margin-bottom: 0.3rem;
        }
        .about-content .tl-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 0.35rem;
            line-height: 1.25;
        }
        .about-content .tl-desc {
            font-size: 0.75rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* ─── Credential Mark Bar (institution monograms) ─── */
        .credential-bar {
            background: transparent;
            border-bottom: 1px solid rgba(201,169,110,0.2);
            border-top: 1px solid rgba(201,169,110,0.12);
            padding: 1.6rem 2rem;
            display: flex;
            flex-wrap: wrap;
            gap: 2.2rem;
            justify-content: center;
            align-items: center;
        }
        .credential-mark {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            color: var(--text-light);
            transition: color 0.3s;
        }
        .credential-mark:hover { color: var(--gold-dark); }
        .credential-mark .mark {
            width: 56px; height: 56px;
            border-radius: 50%;
            border: 1.5px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700;
            color: var(--navy);
            background: var(--cream);
            transition: all 0.3s;
        }
        .credential-mark .mark.sm { font-size: 0.78rem; letter-spacing: 0.03em; }
        .credential-mark .mark.md { font-size: 0.95rem; letter-spacing: 0.02em; }
        .credential-mark:hover .mark {
            background: var(--gold);
            color: var(--white);
            border-color: var(--gold);
        }
        .credential-mark .mark.is-logo {
            background: var(--white);
            padding: 10px;
            overflow: hidden;
        }
        .credential-mark .mark.is-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center center;
            display: block;
        }
        /* Per-logo scale tweaks so each fits the circle cleanly */
        .credential-mark .mark.is-logo img[src*="ao.svg"] {
            /* AO svg is filled white (designed for dark bg). On the white
               credential circle that made it invisible — invert to dark. */
            filter: brightness(0);
            transform: scale(0.4);
            transform-origin: center center;
        }
        .credential-mark:hover .mark.is-logo img[src*="ao.svg"] {
            filter: brightness(0) invert(0.45) sepia(1) hue-rotate(15deg) saturate(2.4);
        }
        .credential-mark .mark.is-logo img[src*="wcmt.svg"] {
            /* Churchill stacked text (105x87). object-fit:contain handles fit. */
            transform: scale(1);
            transform-origin: center center;
        }
        .credential-mark .mark.is-logo img[src*="frcs.png"] {
            transform: scale(1);
        }
        .credential-mark .mark.is-logo img[src*="boa.svg"] {
            transform: scale(1);
        }
        .credential-mark .mark.is-logo img[src*="blrs.png"] {
            transform: scale(0.92); /* tree mark — small breathing room */
        }
        .credential-mark .mark.is-logo img[src*="gmc.svg"] {
            transform: scale(0.88);
        }
        .credential-mark:hover .mark.is-logo {
            background: var(--white);
            border-color: var(--gold-dark);
            box-shadow: 0 0 0 3px rgba(201,169,110,0.18);
        }
        .credential-mark .label {
            font-size: 0.6rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            font-weight: 700;
            white-space: nowrap;
        }

        /* ─── Specialisms Section ─── */
        .specialisms {
            padding: 5rem 4rem;
            background: var(--white);
        }
        .specialisms-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 3.5rem;
        }
        .specialisms-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.4rem;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 0.8rem;
        }
        .specialisms-header p {
            font-size: 0.9rem;
            color: var(--text-light);
        }
        .spec-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1rem;
            max-width: 1320px;
            margin: 0 auto;
        }
        /* 3-up modifier: used on the home /index Areas of Expertise grid so the
           three cards centre instead of left-anchoring inside a 6-col track. */
        .spec-grid.spec-grid-3 {
            grid-template-columns: repeat(3, minmax(220px, 1fr));
            max-width: 980px;
            justify-content: center;
        }
        .spec-card {
            background: var(--cream);
            padding: 1.8rem 1rem;
            border-radius: 4px;
            text-align: center;
            transition: all 0.4s;
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
            display: block;
            text-decoration: none;
            color: inherit;
        }
        .spec-card:hover {
            background: var(--white);
            border-color: var(--gold);
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.06);
        }
        .spec-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gold);
            transform: scaleX(0);
            transition: transform 0.4s;
        }
        .spec-card:hover::before { transform: scaleX(1); }
        .spec-icon {
            width: 50px; height: 50px;
            border-radius: 50%;
            background: var(--white);
            border: 1px solid #e8e3db;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.2rem;
            font-size: 1.2rem;
            color: var(--gold-dark);
        }
        .spec-card:hover .spec-icon {
            background: var(--navy);
            border-color: var(--navy);
            color: var(--gold);
        }
        .spec-card h3,
        .spec-card h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.55rem;
            font-weight: 500;
            color: var(--navy);
            margin-bottom: 0.5rem;
            line-height: 1.25;
            text-align: center;
            font-style: italic;
        }
        .spec-card p {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.6;
            text-align: center;
        }

        /* ─── Conditions Ribbon ─── */
        .conditions-ribbon {
            background: var(--navy);
            padding: 5rem 4rem;
            display: block;
        }
        .ribbon-head {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 3.5rem;
        }
        .conditions-ribbon h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.4rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 0.9rem;
            line-height: 1.2;
        }
        .conditions-ribbon .ribbon-head p {
            font-size: 0.92rem;
            color: rgba(255,255,255,0.55);
            line-height: 1.7;
        }
        .conditions-tags {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            max-width: 1100px;
            margin: 0 auto;
        }
        /* Flat pill wrap (home page) */
        .conditions-pills {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            max-width: 1180px;
            margin: 0 auto;
        }
        .conditions-pills a {
            display: inline-block;
            padding: 12px 24px;
            border: 1px solid rgba(201,169,110,0.35);
            border-radius: 4px;
            font-size: 0.82rem;
            font-weight: 500;
            letter-spacing: 0.02em;
            color: var(--gold-light);
            text-decoration: none;
            background: transparent;
            transition: all 0.25s;
        }
        .conditions-pills a:hover {
            background: var(--gold);
            color: var(--navy);
            border-color: var(--gold);
        }
        .cond-group { display: flex; flex-direction: column; }
        .cond-eyebrow {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1.4rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(201,169,110,0.18);
        }
        .cond-eyebrow .tag-line { width: 22px; height: 1px; background: var(--gold); }
        .cond-eyebrow span {
            font-size: 0.62rem;
            color: var(--gold-light);
            text-transform: uppercase;
            letter-spacing: 0.18em;
            font-weight: 700;
        }
        .cond-group a {
            position: relative;
            display: block;
            padding: 0.55rem 0 0.55rem 1.2rem;
            color: rgba(255,255,255,0.78);
            text-decoration: none;
            font-size: 0.92rem;
            font-weight: 400;
            letter-spacing: 0.005em;
            transition: color 0.25s, padding-left 0.25s;
        }
        .cond-group a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 6px;
            height: 1px;
            background: var(--gold);
            transform: translateY(-50%);
            transition: width 0.25s;
        }
        .cond-group a:hover {
            color: var(--gold-light);
            padding-left: 1.5rem;
        }
        .cond-group a:hover::before {
            width: 12px;
        }

        /* ─── Conditions Ribbon: light variant (homepage) ─── */
        .conditions-ribbon.ribbon-light {
            background: var(--cream);
        }
        .conditions-ribbon.ribbon-light h2 {
            color: var(--navy);
        }
        .conditions-ribbon.ribbon-light .ribbon-head p {
            color: #6b7280;
        }
        .conditions-ribbon.ribbon-light .conditions-pills a {
            color: var(--navy);
            border-color: rgba(167,138,82,0.55);
        }
        .conditions-ribbon.ribbon-light .conditions-pills a:hover {
            background: var(--gold);
            color: var(--navy);
            border-color: var(--gold);
        }
        .conditions-ribbon.ribbon-light .section-tag .tag-line {
            background: var(--gold-dark);
        }

        /* ─── Testimonials ─── */
        .testimonials {
            padding: 5rem 4rem;
            background: var(--cream);
        }
        .testimonials-inner {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        .testimonials-inner .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1.5rem;
            justify-content: center;
        }
        .quote-mark {
            font-family: 'Cormorant Garamond', serif;
            font-size: 5rem;
            color: var(--gold);
            line-height: 1;
            margin-bottom: -1rem;
        }
        .testimonial-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            font-weight: 400;
            font-style: italic;
            color: var(--navy);
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }
        .testimonial-author {
            font-size: 0.75rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.15em;
        }
        .testimonial-stars {
            color: var(--gold);
            font-size: 0.9rem;
            letter-spacing: 4px;
            margin-bottom: 0.5rem;
        }

        /* ─── Testimonials grid (3-up) ─── */
        .testimonials-grid {
            background:
                radial-gradient(ellipse at 30% 0%, rgba(201,169,110,0.06) 0%, transparent 55%),
                linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
            padding: 5rem 4rem;
        }
        .testimonials-grid-inner { max-width: 1240px; margin: 0 auto; text-align: center; }
        .testimonials-grid-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.6rem;
            font-weight: 600;
            color: var(--navy);
            line-height: 1.2;
            margin: 1rem 0 0.4rem;
        }
        .testimonials-grid-title em { color: var(--gold-dark); font-style: italic; font-weight: 600; }
        .testimonials-grid-lede {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.7;
            max-width: 540px;
            margin: 0 auto 2.5rem;
        }
        .testimonial-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            text-align: left;
            margin-top: 2rem;
        }
        .testimonial-card {
            background: var(--white);
            border: 1px solid rgba(201,169,110,0.18);
            border-top: 3px solid var(--gold);
            padding: 1.8rem 1.6rem 1.6rem;
            border-radius: 4px;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            position: relative;
        }
        .testimonial-card::before {
            content: '\201C';
            position: absolute;
            top: 0.8rem; right: 1.2rem;
            font-family: 'Cormorant Garamond', serif;
            font-size: 4rem;
            color: rgba(201,169,110,0.18);
            line-height: 1;
            font-weight: 700;
        }
        .testimonial-card .t-stars {
            color: var(--gold);
            font-size: 0.78rem;
            letter-spacing: 3px;
        }
        .testimonial-card .t-quote {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            line-height: 1.55;
            color: var(--navy);
            margin: 0;
            font-style: italic;
            flex: 1;
        }
        .testimonial-card .t-meta {
            padding-top: 1rem;
            border-top: 1px dashed rgba(201,169,110,0.25);
        }
        .testimonial-card .t-author {
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--navy);
            letter-spacing: 0.04em;
        }
        .testimonial-card .t-context {
            font-size: 0.65rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-weight: 600;
            margin-top: 0.3rem;
        }

        /* ─── Contact options grid ─── */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 1180px;
            margin: 0 auto;
        }
        .contact-card {
            background: var(--cream);
            padding: 2.4rem 2rem;
            border-radius: 6px;
            text-align: left;
            text-decoration: none;
            color: inherit;
            border: 1px solid transparent;
            transition: all 0.35s;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            position: relative;
        }
        .contact-card:hover {
            background: var(--white);
            border-color: var(--gold);
            transform: translateY(-3px);
            box-shadow: 0 18px 38px -22px rgba(12,24,41,0.25);
        }
        .contact-card .contact-icon {
            width: 48px; height: 48px;
            border-radius: 50%;
            background: var(--white);
            border: 1px solid #e8e3db;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.5rem;
            transition: all 0.3s;
        }
        .contact-card .contact-icon svg {
            width: 22px; height: 22px;
            fill: var(--gold-dark);
        }
        .contact-card:hover .contact-icon {
            background: var(--navy);
            border-color: var(--navy);
        }
        .contact-card:hover .contact-icon svg { fill: var(--gold); }
        .contact-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.35rem;
            font-weight: 600;
            color: var(--navy);
            margin: 0;
            line-height: 1.25;
        }
        .contact-card p {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.65;
            margin: 0 0 0.4rem;
            flex: 1;
        }
        .contact-card .contact-link {
            font-size: 0.7rem;
            color: var(--gold-dark);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            border-bottom: 1px solid var(--gold);
            padding-bottom: 4px;
            align-self: flex-start;
        }

        /* ─── Locations ─── */
        .locations {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
        }
        .locations:has(.location-card:nth-child(2):last-child) { grid-template-columns: 1fr 1fr; }
        .location-card {
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-right: 1px solid #eee;
        }
        .location-card:nth-child(odd) { background: var(--white); }
        .location-card:nth-child(even) { background: var(--cream); }
        .location-card:last-child { border-right: none; }
        .location-card .loc-icon {
            width: 40px; height: 40px;
            border-radius: 8px;
            background: var(--navy);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 1rem;
            margin-bottom: 1.2rem;
        }
        .location-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 0.3rem;
        }
        .location-card .loc-address {
            font-size: 0.82rem;
            color: var(--text-light);
            margin-bottom: 1rem;
        }
        .location-card .loc-detail {
            font-size: 0.78rem;
            color: var(--text-body);
            line-height: 1.6;
        }

        /* ─── CTA Banner ─── */
        .cta-banner {
            background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 50%, #060d18 85%, #020509 100%);
            padding: 4rem 4rem 5.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 30% 20%, rgba(201,169,110,0.10) 0%, transparent 55%),
                radial-gradient(ellipse at 75% 80%, rgba(201,169,110,0.06) 0%, transparent 60%);
        }
        .cta-banner h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.2rem;
            font-weight: 400;
            color: var(--white);
            margin-bottom: 0.8rem;
            position: relative;
        }
        .cta-banner p {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.5);
            margin-bottom: 2rem;
            position: relative;
        }
        .cta-banner .btn-gold {
            position: relative;
        }

        /* ─── Site Footer (parent /nima/ pattern) ─── */
        .footer { background: linear-gradient(180deg, #060d18 0%, #020509 8%, #000 24%); padding: 5rem 4rem 0; color: rgba(255,255,255,.6); }
        .footer-inner { display: grid; grid-template-columns: 1.2fr 1.5fr 1.5fr 1.2fr; gap: 3.5rem; max-width: 1400px; margin: 0 auto; }
        .foot-brand .foot-logo { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-bottom: 1.5rem; }
        .foot-mark { width: 46px; height: 46px; border: 1.5px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }
        .foot-name { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 600; color: var(--white); letter-spacing: .03em; line-height: 1.2; }
        .foot-sub { font-size: .5rem; color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-weight: 500; margin-top: .15rem; }
        .foot-brand p { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.75; margin-bottom: 1.6rem; max-width: 300px; }
        .foot-social { display: flex; gap: .55rem; }
        .foot-social a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; transition: all .3s; color: var(--white); text-decoration: none; }
        .foot-social a:hover { background: var(--gold); }
        .foot-social svg { width: 15px; height: 15px; fill: var(--white); }

        .foot-col h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 700; color: var(--white); margin-bottom: 1.6rem; letter-spacing: .01em; }
        .foot-links { display: grid; grid-template-columns: 1fr 1fr; gap: .2rem 1.8rem; }
        .foot-links a { display: block; font-size: .82rem; color: rgba(255,255,255,.55); text-decoration: none; padding: .45rem 0; transition: color .25s; line-height: 1.4; }
        .foot-links a:hover { color: var(--white); }

        .foot-contact .foot-block { margin-bottom: 1.3rem; }
        .foot-blabel { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: .4rem; letter-spacing: .01em; }
        .foot-contact p { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.65; margin: 0; }
        .foot-contact a { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.65; text-decoration: none; transition: color .25s; }
        .foot-contact a:hover { color: var(--white); }
        /* Compact locations list (replaces tall stacked foot-block format) */
        .foot-locs { list-style: none; padding: 0; margin: 0 0 1rem; }
        .foot-locs li { font-size: .8rem; color: rgba(255,255,255,.55); line-height: 1.7; margin: 0; padding: 0; }
        .foot-locs li strong { font-family: 'Cormorant Garamond', serif; font-size: .95rem; font-weight: 600; color: rgba(255,255,255,.85); margin-right: 4px; }
        .foot-contact-line { font-size: .82rem; color: rgba(255,255,255,.55); margin: 0; padding-top: .8rem; border-top: 1px solid rgba(255,255,255,.08); }
        .foot-contact-line a { display: inline; color: rgba(255,255,255,.7); }
        .foot-contact-line a:hover { color: var(--white); }

        .foot-bottom { max-width: 1400px; margin: 2rem auto 0; border-top: 1px solid rgba(255,255,255,.08); padding: 1.4rem 0 1.6rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.6rem 1rem; }
        .foot-bottom span { font-size: .78rem; color: rgba(255,255,255,.4); }
        .foot-bottom .foot-legal-links { font-size: .78rem; color: rgba(255,255,255,.4); }
        .foot-bottom .foot-legal-links a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
        .foot-bottom .foot-legal-links a:hover { color: var(--gold); }

        /* ─── Responsive Nav ─── */
        /* Below full-screen (1500px), the tel number always sits UNDER the
           BOOK CONSULTATION pill — never inline alongside the menu where
           it overlaps UPDATES / LOCATIONS / MEDIA. */
        @media (max-width: 1500px) {
            .site-nav { padding: 0 1.5rem; gap: 1rem; height: 96px; margin-bottom: -96px; }
            .site-links { gap: 1.2rem; flex-shrink: 1; min-width: 0; }
            .site-links a { font-size: 0.72rem; letter-spacing: 0.08em; }
            .nav-right {
                display: flex;
                flex-direction: column;
                align-items: flex-end;
                gap: 0.25rem;
                flex-shrink: 0;
            }
            .nav-right .nav-cta { order: 1; }
            .nav-right .nav-phone {
                order: 2;
                display: inline-flex !important;
                font-size: 0.72rem;
                padding: 0;
                gap: 4px;
                color: rgba(255,255,255,0.85);
                white-space: nowrap;
            }
            .nav-right .nav-phone svg { width: 12px; height: 12px; }
            .nav-cta { padding: 11px 22px !important; font-size: 0.72rem !important; }
            .site-logo .name { font-size: 1.2rem; }
            .site-logo .title { font-size: 0.62rem; }
            .social-icons { display: none; }
        }
        @media (max-width: 1400px) {
            /* Tighten link spacing/size + CTA so all nav links (through to
               Connect) fit beside the logo and CTA without clipping in the
               1100–1400 band, now that the hero eyebrow is hidden here. */
            .site-links { gap: 0.6rem; }
            .site-links a { font-size: 0.7rem; letter-spacing: 0.02em; }
            .nav-cta { padding: 9px 15px !important; font-size: 0.7rem !important; }
            .site-logo .name { font-size: 1.2rem; }
            .site-logo .title { font-size: 0.62rem; }
        }
        /* Tightest desktop band just above the 1100 hamburger cutoff: squeeze a
           little harder so the last link (Connect) clears the CTA. */
        @media (max-width: 1160px) {
            .site-nav { padding: 0 0.9rem; }
            .site-links { gap: 0.32rem; }
            .site-links a { font-size: 0.66rem; letter-spacing: 0; }
            .nav-cta { padding: 8px 12px !important; font-size: 0.64rem !important; }
            .site-logo .name { font-size: 1.12rem; }
        }
        @media (max-width: 1100px) {
            .site-nav { height: 88px; margin-bottom: -88px; padding: 0 1.2rem; }
            .site-links { display: none; }
            /* Reorder so hamburger sits to the right of BOOK CONSULTATION */
            .site-logo { order: 1; }
            .nav-right {
                order: 2;
                display: flex;
                margin-left: auto;
                gap: 0.3rem;
                align-items: flex-end;
                flex-direction: column;   /* phone sits BELOW the Book Consultation pill */
            }
            .nav-toggle { order: 3; display: flex !important; }
            /* Show the tel number on mobile — pinned under BOOK CONSULTATION */
            .nav-right .nav-phone {
                display: inline-flex !important;
                font-size: 0.72rem;
                color: rgba(255,255,255,0.78);
                padding: 0;
                gap: 4px;
                white-space: nowrap;
            }
            .nav-right .nav-phone svg { width: 12px; height: 12px; }
            .nav-right .social-icons { display: none; }
            /* Hide the home-hero clinics eyebrow on mobile (too long, breaks layout) */
            .hero-content .hero-label,
            .hero .hero-label { display: none !important; }
            .nav-right .nav-cta { padding: 10px 16px !important; font-size: 0.68rem !important; letter-spacing: 0.08em !important; white-space: nowrap; }
            .site-nav.open { height: auto; flex-wrap: wrap; padding-bottom: 1.2rem; align-items: flex-start; padding-top: 0; background: rgba(12,24,41,0.95); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
            .site-nav.open .site-logo { padding-top: 1rem; }
            .site-nav.open .nav-toggle { margin-top: 1rem; }
            .site-nav.open .site-links { display: flex; flex-direction: column; order: 3; width: 100%; gap: 0; padding: 1rem 0 0.4rem; margin: 1rem 0 0; list-style: none; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; }
            .site-nav.open .site-links li { width: 100%; list-style: none; text-align: center; }
            .site-nav.open .site-links li.has-sub > a { display: inline-block; width: auto; }
            .site-nav.open .site-links a { display: block; padding: 0.9rem 0.4rem; width: 100%; text-align: center; font-size: 0.85rem; letter-spacing: 0.1em; border-bottom: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.85) !important; }
            .site-nav.open .site-links li.has-sub { border-bottom: 1px solid rgba(255,255,255,0.06); }
            .site-nav.open .site-links li.has-sub > a { border-bottom: 0; }
            .site-nav.open .site-links .submenu { display: flex !important; position: static; opacity: 1; visibility: visible; transform: none; background: transparent; border-top: 0; box-shadow: none; padding: 0 0 0.6rem; flex-direction: column; gap: 0; text-align: center; }
            .site-nav.open .site-links .submenu a { padding: 0.4rem 0.4rem !important; font-size: 0.62rem !important; border-bottom: 0 !important; color: rgba(255,255,255,0.65) !important; }
            .site-nav.open .nav-right { display: flex; order: 4; width: 100%; padding-top: 1rem; gap: 0.8rem; flex-wrap: wrap; justify-content: center; align-items: center; }
            /* Dropdowns flatten on mobile */
            .site-nav.open .nav-sub { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; border-top: 0; box-shadow: none; padding: 0 0 0.5rem 1rem; min-width: 0; flex-direction: column; gap: 0; }
            .site-nav.open .nav-sub.nav-sub-3col, .site-nav.open .nav-sub.nav-sub-1col { min-width: 0; }
            .site-nav.open .nav-sub-col { min-width: 0; }
            .site-nav.open .nav-sub-head { font-size: 0.5rem; margin: 0.6rem 0 0.3rem; padding: 0; border: 0; }
            .site-nav.open .nav-sub a { padding: 0.45rem 0.4rem !important; font-size: 0.75rem !important; border-bottom: 0 !important; }
            .site-nav.open .site-links .caret { display: none; }
            .site-nav.open .social-icons { display: flex; }
            .site-nav.open .nav-cta { padding: 12px 22px !important; font-size: 0.74rem !important; max-width: 100%; white-space: nowrap; }
            .site-nav.open .nav-phone { font-size: 0.78rem; flex-shrink: 1; min-width: 0; }
            .site-logo .name { font-size: 1.15rem; }
        }
        /* Between ~1100–1400px the desktop nav links are still shown, but the
           hero eyebrow ("THE LONDON CLINIC · OS CLINIC · CROMWELL HOSPITAL")
           sits directly under the nav (which overlaps the hero via a negative
           margin) and collides with the links. Hide the eyebrow up to 1400px
           so the menu stays visible AND there's no overlap. (It was already
           hidden ≤1100 inside the hamburger block; this extends that to 1400.) */
        @media (max-width: 1400px) {
            .hero-content .hero-label,
            .hero .hero-label { display: none !important; }
        }
        @media (max-width: 540px) {
            .site-nav { padding: 0 0.9rem; gap: 0.4rem; }
            .site-nav.open .nav-right { flex-direction: column; gap: 0.7rem; }
            .site-nav.open .nav-cta { width: 100%; text-align: center; padding: 11px 18px !important; font-size: 0.7rem !important; letter-spacing: 0.08em !important; }
            .site-nav.open .nav-phone { width: 100%; justify-content: center; }
            .nav-right .nav-cta { padding: 9px 13px !important; font-size: 0.64rem !important; letter-spacing: 0.06em !important; }
            .site-logo .name { font-size: 1.05rem; }
            .site-logo .title { font-size: 0.56rem; letter-spacing: 0.12em; }
            /* Let the logo give way (shrink + ellipsis) so it can never push the
               hamburger toggle off-screen on narrow phones. */
            .site-logo { flex-shrink: 1; min-width: 0; }
            .site-logo-text { min-width: 0; overflow: hidden; }
            .site-logo .name { overflow: hidden; text-overflow: ellipsis; }
        }
        @media (max-width: 414px) {
            .site-nav { padding: 0 0.7rem; gap: 0.3rem; }
            .nav-right .nav-cta { padding: 8px 11px !important; font-size: 0.6rem !important; letter-spacing: 0.05em !important; }
            .site-logo .name { font-size: 0.98rem; }
            .site-logo .title { font-size: 0.5rem; }
            .nav-toggle { width: 36px; height: 36px; }
        }
        @media (max-width: 440px) {
            /* On phones the CTA becomes a compact icon-only chip linking to /book,
               so the logo + phone + hamburger all fit without overflow (≤440px). */
            .nav-right .nav-cta {
                padding: 0 !important;
                width: 36px; height: 36px;
                font-size: 0 !important;
                display: inline-flex; align-items: center; justify-content: center;
                border-radius: 50%;
                background-color: var(--gold) !important;
                background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230c1829' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2' ry='2'/><line x1='16' y1='2' x2='16' y2='6'/><line x1='8' y1='2' x2='8' y2='6'/><line x1='3' y1='10' x2='21' y2='10'/></svg>") !important;
                background-repeat: no-repeat !important;
                background-position: center !important;
                background-size: 16px 16px !important;
            }
            .nav-right .nav-cta:hover {
                background-color: var(--navy) !important;
                background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2' ry='2'/><line x1='16' y1='2' x2='16' y2='6'/><line x1='8' y1='2' x2='8' y2='6'/><line x1='3' y1='10' x2='21' y2='10'/></svg>") !important;
            }
            .site-logo .name { font-size: 0.92rem; }
        }
        @media (max-width: 320px) {
            .site-nav { padding: 0 0.5rem; }
            .nav-right { gap: 0.35rem; }
            .nav-right .nav-cta { width: 32px; height: 32px; background-size: 14px 14px; }
            .nav-toggle { width: 32px; height: 32px; }
            .site-logo .name { font-size: 0.85rem; }
        }

        /* Hamburger toggle (hidden by default, shown <1100px) */
        .nav-toggle {
            display: none;
            width: 42px; height: 42px;
            background: transparent;
            border: 0;
            cursor: pointer;
            padding: 0;
            flex-direction: column;
            gap: 5px;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .nav-toggle span {
            display: block;
            width: 24px; height: 2px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s;
        }
        .site-nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .site-nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
        .site-nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* ─── Tablet intermediate breakpoint (1100px) ─── */
        @media (max-width: 1100px) {
            .spec-grid, .spec-grid.spec-grid-3 { grid-template-columns: repeat(3, 1fr); }
            .testimonial-row { grid-template-columns: repeat(2, 1fr); }
            .testimonial-row > .testimonial-card:nth-child(3) { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
            .contact-grid { grid-template-columns: repeat(2, 1fr); }
        }

        /* ─── Mobile-ish Responsive ─── */
        @media (max-width: 900px) {
            .hero-content { max-width: 100%; padding: 0 2rem; }
            .hero h1 { font-size: 2.4rem; word-wrap: break-word; overflow-wrap: break-word; }
            .hero-desc { word-wrap: break-word; overflow-wrap: break-word; }
            .hero-geometric { display: none; }
            .about-section { grid-template-columns: 1fr; min-height: 0; }
            .about-image { min-height: 380px; height: 60vw; max-height: 520px; }
            .spec-grid, .spec-grid.spec-grid-3 { grid-template-columns: 1fr 1fr; }
            .conditions-ribbon { padding: 3.5rem 1.5rem; }
            .conditions-tags { grid-template-columns: 1fr; gap: 2rem; }
            .conditions-pills { gap: 8px; }
            .conditions-pills a { padding: 10px 16px; font-size: 0.78rem; }
            .credential-bar { gap: 1.4rem; padding: 1.2rem; }
            .credential-mark .mark { width: 48px; height: 48px; }
            .contact-grid { grid-template-columns: 1fr; gap: 1rem; }
            .locations { grid-template-columns: 1fr; }
            .location-card { border-right: none; border-bottom: 1px solid #eee; }
            .location-card:last-child { border-bottom: none; }
            .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 0 1.5rem; }
            .foot-bottom { flex-direction: column; gap: 0.6rem; text-align: center; padding: 1.6rem 1.5rem 1.8rem; }
            .testimonial-row { grid-template-columns: 1fr; }
            .testimonial-row > .testimonial-card:nth-child(3) { grid-column: auto; max-width: none; margin: 0; }
        }
        /* Mobile / tablet: drop the duplicate hero "Book a Consultation"
           gold pill — the nav already carries the persistent BOOK
           CONSULTATION pill at every width ≤1100 (where the desktop
           link bar collapses and the hamburger appears). The hero keeps
           only the ghost "View Specialisms" link as its in-body CTA. */
        @media (max-width: 1100px) {
            .hero-buttons .btn-gold { display: none !important; }
        }
        @media (max-width: 820px) {
            .hero-buttons { flex-direction: column; align-items: stretch; gap: 0.7rem; }
            .hero-buttons .btn-ghost {
                width: 100%;
                justify-content: center;
                text-align: center;
            }
        }
        @media (max-width: 600px) {
            .hero { min-height: 560px; height: auto; padding: 6rem 0 4rem; }
            .hero-content { top: 92px; padding: 0 1.25rem; }
            .hero-label { margin-bottom: 1.4rem; }
            .hero-label .line, .hero-label::after { width: 24px; }
            .hero h1 { font-size: 1.8rem; line-height: 1.18; }
            .hero-desc { font-size: 0.85rem; }
            .footer { padding: 3rem 1rem 0; }
            .foot-col h4 { font-size: 1.2rem; }
            .foot-links { grid-template-columns: 1fr; gap: 0; }
            .testimonials-grid { padding: 3rem 1rem; }
            .testimonials-grid-title { font-size: 1.9rem; }
            .testimonial-card .t-quote { font-size: 1rem; }
            .about-section { grid-template-columns: 1fr; }
            .about-content { padding: 2.5rem 1.5rem; }
            .spec-grid, .spec-grid.spec-grid-3 { grid-template-columns: 1fr; }
            .specialisms { padding: 3rem 1rem; }
            .specialisms-header h2 { font-size: 1.7rem; }
            .conditions-ribbon { padding: 2.8rem 1rem; }
            .conditions-ribbon h2 { font-size: 1.7rem; }
            .testimonials { padding: 3rem 1rem; }
            .testimonial-text { font-size: 1.15rem; }
            .quote-mark { font-size: 3.5rem; }
            .cta-banner { padding: 3rem 1rem 4rem; }
            .cta-banner h2 { font-size: 1.6rem; line-height: 1.2; }
            .cta-banner p { font-size: 0.82rem; }
            .location-card { padding: 2rem 1.25rem; }
            .credential-bar { gap: 1rem; padding: 1rem 0.5rem; }
        }
        /* Trust bar — 4-col by default; collapse on tablet/phone */
        @media (max-width: 900px) {
            .trust-bar { grid-template-columns: repeat(2, 1fr); }
            .trust-item:nth-child(2) { border-right: none; }
            .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid #e8e3db; }
            .trust-item .number { font-size: 1.9rem; }
        }
        /* Connect / social grid (home) — 6-col → 3-col → 2-col */
        @media (max-width: 1100px) {
            .social-grid { grid-template-columns: repeat(3, 1fr) !important; }
        }
        @media (max-width: 600px) {
            .social-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.6rem !important; }
        }
        @media (max-width: 380px) {
            .trust-item { padding: 1.4rem 0.6rem; }
            .trust-item .number { font-size: 1.65rem; }
            .trust-item .label { font-size: 0.55rem; letter-spacing: 0.12em; }
            .hero h1 { font-size: 1.55rem; }
            .hero-content { padding: 0 1rem; }
            .btn-gold, .btn-ghost { padding: 12px 22px; font-size: 0.7rem; letter-spacing: 0.08em; }
        }

        /* ─── Conditions horizontal sub-menu ─── */
        .site-links li.has-sub { position: static; }
        .site-links li.has-sub > a::after {
            content: '\25BC';            /* solid ▼ — clearer than ▾ */
            display: inline-block;
            font-size: 0.65em;
            margin-left: 6px;
            color: var(--gold);
            opacity: 0.95;
            transition: transform 0.25s, opacity 0.25s;
            vertical-align: 0.05em;
        }
        .site-links li.has-sub:hover > a::after,
        .site-links li.has-sub:focus-within > a::after {
            transform: rotate(-180deg);
            opacity: 1;
        }
        .submenu {
            position: absolute;
            left: 0; right: 0;
            top: calc(100% - 35px);
            padding: 0.25rem 2rem 0.5rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 0 1.9rem;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.18s, visibility 0.18s;
            background: transparent;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            border-top: 0;
            box-shadow: none;
            z-index: 200;
        }
        .submenu::before {
            content: '';
            position: absolute;
            top: -10px; left: 0; right: 0; height: 14px;
            background: transparent;
        }
        .site-links li.has-sub:hover .submenu,
        .site-links li.has-sub:focus-within .submenu,
        .site-links li.has-sub.is-pinned .submenu {
            opacity: 1;
            visibility: visible;
        }
        /* Submenu items — quietly smaller than the main nav row */
        .submenu a {
            font-size: 0.62rem !important;
            font-weight: 600 !important;
            color: rgba(255,255,255,0.78) !important;
            text-transform: uppercase !important;
            letter-spacing: 0.10em !important;
            text-decoration: none;
            padding: 0.3rem 0 !important;
            line-height: 1.2;
            white-space: nowrap;
            transition: color 0.2s;
        }
        .submenu a:hover {
            color: var(--gold) !important;
        }
        @media (max-width: 1300px) {
            .submenu a { font-size: 0.56rem !important; letter-spacing: 0.07em !important; }
            .submenu { gap: 0 1rem; }
        }
        @media (max-width: 1100px) {
            .submenu { display: none !important; }
        }

        /* ─── Kill stray separators / focus outlines that show under the nav on dropdown open ─── */
        .site-nav, .site-nav * { border-bottom: 0 !important; }
        .site-nav, .site-links, .nav-sub, .submenu, .site-links li, .site-links a { box-shadow: none !important; }
        .site-links a:focus, .site-links a:focus-visible, .site-links li.has-sub > a:focus { outline: none !important; }
        .site-links li.has-sub > a, .site-links li.has-sub:hover > a { box-shadow: none !important; border: 0 !important; }
        .nav-sub::after, .submenu::after { display: none !important; }
        .page-hero, section.page-hero { border-top: 0 !important; }
