/* ============================================
   ISWARA — SHARED THEME CSS
   Rebased to Jamie's design system (Apr 2026)
   Palette: #14213D navy, Jost body, white glass nav
   ============================================ */

:root {
    /* Brand palette — Jamie's source */
    --navy:       #14213D;
    --navy-mid:   #1a2a47;
    --gold:       #C8A951;
    --gold-light: #d4ba6a;
    --charcoal:   #2E2E2E;
    --offwhite:   #F8F9FA;
    --slate:      #E2E6EA;
    --sage:       #BFD8B8;
    --white:      #FFFFFF;

    /* UI tokens */
    --bg-page:    #F8F9FA;
    --bg-dark:    #14213D;
    --bg-mid:     #1a2a47;
    --text-dark:  #14213D;
    --text-body:  #4a5568;
    --text-muted: #7a8898;
    --border-lt:  #dde2e8;
    --gold-border: rgba(200,169,81,0.3);
    --shadow-sm:  0 2px 12px rgba(20,33,61,0.08);
    --shadow-md:  0 8px 32px rgba(20,33,61,0.12);
    --shadow-lg:  0 16px 48px rgba(20,33,61,0.16);

    /* Extended palette */
    --sage-rich:  #a8cfa0;
    --sage-dark:  #4a7a45;
    --slate-warm: #c8d8e8;
    --gold-warm:  #e8c96a;
    --gold-dark:  #B8952F;
    --gold-glow:  rgba(200,169,81,0.15);
    --green-500:  #6BBF6A;

    /* Typography */
    --font-body:    'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-accent:  'Cormorant Garamond', Georgia, serif;

    /* Type scale */
    --text-hero: clamp(44px, 6vw, 82px);
    --text-5xl:  clamp(2.25rem, 4.5vw, 3.25rem);
    --text-4xl:  clamp(1.875rem, 3.5vw, 2.5rem);
    --text-3xl:  clamp(1.5rem, 2.5vw, 1.875rem);
    --text-2xl:  clamp(1.25rem, 2vw, 1.5rem);
    --text-xl:   1.25rem;
    --text-lg:   1.125rem;
    --text-base: 1rem;
    --text-sm:   0.875rem;
    --text-xs:   0.75rem;

    /* Spacing */
    --space-xs:  0.5rem;
    --space-sm:  1rem;
    --space-md:  1.5rem;
    --space-lg:  2rem;
    --space-xl:  3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;
    --container-max: 1140px;

    /* Radius */
    --radius-sm:   4px;
    --radius-md:   8px;
    --radius-lg:   12px;
    --radius-xl:   16px;
    --radius-full: 9999px;

    /* Motion */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --duration-fast:   0.2s;
    --duration-normal: 0.3s;
    --duration-slow:   0.5s;
}

/* ============================================
   RESET & BASE
   ============================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--white);
    color: var(--text-body);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
}

/* ============================================
   NAV — White glass (Jamie's design)
   ============================================ */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 56px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(20,33,61,0.08);
    box-shadow: 0 1px 16px rgba(20,33,61,0.06);
    transition: padding 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
nav.scrolled {
    padding: 12px 56px;
    box-shadow: 0 4px 24px rgba(20,33,61,0.1);
}

.nav-logo {
    display: flex; align-items: center; gap: 0;
    text-decoration: none;
}
.logo-img-wrap {
    width: 52px; height: 52px; border-radius: 50%;
    background: transparent; border: none;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; flex-shrink: 0;
}
.logo-img-wrap img { width: 46px; height: 46px; object-fit: contain; }
.logo-wordmark {
    font-family: var(--font-heading);
    font-size: 22px; font-weight: 700;
    color: var(--navy); letter-spacing: 0.04em;
    margin-left: 4px;
}

.nav-links {
    display: flex; align-items: center; gap: 36px;
    list-style: none;
}
.nav-links > li > a {
    text-decoration: none;
    color: var(--navy);
    font-size: 14px; font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.25s var(--ease-out);
    padding: 8px 0;
}
.nav-links > li > a:hover {
    color: var(--gold-dark, #a07f2f);
}

/* CTA Button */
.nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: 10px 22px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 10px rgba(200,169,81,0.25);
    transition: all 0.25s var(--ease-out) !important;
}
.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(200,169,81,0.4);
}

/* ============================================
   DROPDOWNS — Glass cards (dark)
   ============================================ */
.nav-dropdown { position: relative; }
.nav-dropdown > a { cursor: pointer; }
.nav-dropdown > a::after {
    content: ' \25BE'; font-size: 9px; opacity: 0.5;
    transition: transform 0.2s var(--ease-out);
    display: inline-block;
}
.nav-dropdown:hover > a::after { transform: rotate(180deg); opacity: 0.8; }
.nav-dropdown:hover > a { color: var(--gold-dark, #a07f2f); }

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px); left: 50%;
    transform: translateX(-50%) translateY(4px);
    min-width: 220px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(20,33,61,0.08);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(20,33,61,0.12), 0 0 0 1px rgba(20,33,61,0.03);
    padding: 8px 0;
    z-index: 2000;
    opacity: 0; visibility: hidden;
    transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), visibility 0.25s;
}
.nav-dropdown-menu::before {
    content: ''; position: absolute;
    top: -6px; left: 50%;
    width: 12px; height: 12px;
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid rgba(20,33,61,0.08);
    border-top: 1px solid rgba(20,33,61,0.08);
    transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
    display: block; padding: 10px 24px;
    font-size: 13px; font-weight: 500;
    color: var(--navy);
    text-decoration: none; white-space: nowrap;
    transition: all 0.2s var(--ease-out);
}
.nav-dropdown-menu a:hover {
    color: var(--gold-dark, #a07f2f);
    background: rgba(200,169,81,0.08);
    padding-left: 28px;
}
.nav-dropdown-menu a:not(:last-child) {
    border-bottom: 1px solid rgba(20,33,61,0.05);
}

/* ============================================
   SHARED TYPOGRAPHY
   ============================================ */
.section-eyebrow {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 16px;
}
.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(32px, 3.5vw, 48px); font-weight: 800;
    color: var(--text-dark); line-height: 1.1; margin-bottom: 16px;
}
.gold-rule { width: 40px; height: 2px; background: var(--gold); margin-bottom: 26px; }
.navy-rule { width: 40px; height: 2px; background: var(--navy); margin-bottom: 26px; }
.section-body {
    font-size: 16px; font-weight: 300;
    line-height: 1.8; color: var(--text-body); margin-bottom: 14px;
}
.body-text {
    font-size: 16px; font-weight: 300;
    line-height: 1.9; color: var(--text-body); margin-bottom: 20px;
}
.body-text:last-child { margin-bottom: 0; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background: var(--gold); color: var(--navy);
    padding: 15px 34px; border-radius: 50px;
    font-family: var(--font-body);
    font-size: 15px; font-weight: 600;
    text-decoration: none; display: inline-block;
    transition: all 0.25s var(--ease-out);
    box-shadow: 0 4px 20px rgba(200,169,81,0.3);
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200,169,81,0.4);
}
.btn-secondary {
    color: rgba(255,255,255,0.75);
    padding: 15px 34px; border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.25);
    font-family: var(--font-body);
    font-size: 15px; font-weight: 400;
    text-decoration: none; display: inline-block;
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-secondary:hover {
    border-color: rgba(255,255,255,0.55);
    color: var(--white); transform: translateY(-2px);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--navy);
    padding: 130px 56px; text-align: center;
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,169,81,0.08) 0%, transparent 70%);
}
.cta-section > * { position: relative; }
.cta-eyebrow {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
}
.cta-heading {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4.5vw, 58px); font-weight: 800;
    color: var(--white); line-height: 1.1;
    max-width: 800px; margin: 0 auto 16px;
}
.cta-heading em { font-style: italic; color: var(--gold); }
.cta-sub {
    font-size: 17px; font-weight: 300;
    color: rgba(255,255,255,0.55);
    max-width: 440px; margin: 0 auto 46px; line-height: 1.75;
}

/* ============================================
   FOOTER — Charcoal (Jamie: #2E2E2E)
   ============================================ */
footer {
    background: var(--charcoal);
    padding: 68px 56px 40px;
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 52px; max-width: 1100px; margin: 0 auto 52px;
}
.footer-brand-text {
    font-size: 13px; font-weight: 300; line-height: 1.75;
    color: rgba(255,255,255,0.4); margin: 14px 0 22px; max-width: 210px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 34px; height: 34px; 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.4); text-decoration: none;
    font-size: 12px; transition: all 0.2s var(--ease-out);
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a {
    font-size: 13px; font-weight: 300;
    color: rgba(255,255,255,0.45); text-decoration: none;
    transition: color 0.2s var(--ease-out);
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
    max-width: 1100px; margin: 0 auto; padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a {
    font-size: 12px; font-weight: 300;
    color: rgba(255,255,255,0.3); text-decoration: none;
    transition: color 0.2s var(--ease-out);
}
.footer-bottom-links a:hover { color: var(--white); }

/* ============================================
   ANIMATIONS — Scroll reveal
   ============================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }

.reveal { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }
.js-loaded .reveal { opacity: 0; transform: translateY(26px); }
.js-loaded .reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE — Mobile breakpoints
   ============================================ */
@media (max-width: 1024px) {
    nav { padding: 14px 28px; }
    nav.scrolled { padding: 10px 28px; }
    .nav-links { gap: 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
    nav { padding: 12px 20px; }
    .logo-img-wrap { width: 42px; height: 42px; }
    .logo-img-wrap img { width: 36px; height: 36px; }
    .logo-wordmark { font-size: 18px; }
    /* .nav-links handled by hamburger block below */

    .section-heading { font-size: clamp(26px, 5vw, 36px); }
    .cta-section { padding: 80px 24px; }
    .cta-heading { font-size: clamp(26px, 5vw, 38px); }

    footer { padding: 48px 24px 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .footer-bottom-links { justify-content: center; }
}

@media (max-width: 480px) {
    nav { padding: 10px 16px; }
    .logo-wordmark { display: none; }
    footer { padding: 36px 16px 24px; }
}

/* ── INLINE STYLE OVERRIDES FOR MOBILE ── */
@media (max-width: 768px) {
  /* Override inline grid styles from WP content */
  div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  section[style*="padding"][style*="56px"] { padding-left: 24px !important; padding-right: 24px !important; }
  /* Fix inline padding on sections */
  section[style*="padding: 100px 56px"], section[style*="padding: 90px 56px"],
  section[style*="padding: 120px 56px"], section[style*="padding: 130px 56px"] {
    padding: 60px 24px !important;
  }
  div[style*="padding: 100px 56px"], div[style*="padding: 90px 56px"],
  div[style*="padding: 120px 56px"], div[style*="padding: 72px 56px"] {
    padding: 60px 24px !important;
  }
  /* Force inline grids to stack */
  div[style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns: 1fr 480px"],
  div[style*="grid-template-columns: 1fr 400px"],
  div[style*="grid-template-columns: 1fr 520px"],
  div[style*="grid-template-columns: 320px 1fr"],
  div[style*="grid-template-columns: 260px 1fr"],
  div[style*="grid-template-columns: 340px 1fr"] { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns: repeat(4"] { grid-template-columns: 1fr 1fr !important; }
  div[style*="grid-template-columns: repeat(3"] { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns: 1fr 48px 1fr 48px 1fr"] { grid-template-columns: 1fr !important; gap: 24px !important; }
  /* Tame oversized inline padding */
  div[style*="padding: 80px 64px"], div[style*="padding: 60px 40px"] { padding: 40px 20px !important; }
}
@media (max-width: 480px) {
  div[style*="grid-template-columns: repeat(4"] { grid-template-columns: 1fr !important; }
}

/* ── MOBILE HAMBURGER MENU ── */
.nav-burger {
    display: none; background: none; border: none; cursor: pointer;
    padding: 12px; flex-direction: column; gap: 5px;
    position: relative; z-index: 9999;
    -webkit-tap-highlight-color: rgba(200,169,81,0.3);
    touch-action: manipulation;
}
.nav-burger span {
    display: block; width: 24px; height: 2px; background: var(--navy);
    border-radius: 2px; transition: all 0.3s var(--ease-out);
}
.nav-burger.active span { background: var(--gold); }
.nav-burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
    .nav-burger { display: flex; }

    /* Strip backdrop-filter/transform/filter on nav so position:fixed children escape to viewport */
    nav {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        transform: none !important;
        filter: none !important;
        z-index: 1100 !important;
    }

    .nav-links {
        position: fixed !important;
        top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
        width: 100% !important; max-width: 100% !important;
        background: #0a1223 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 80px 24px 40px !important;
        gap: 0 !important;
        z-index: 1050 !important;
        transform: translateY(-100%) !important;
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
        overflow-y: auto !important;
        list-style: none !important;
        pointer-events: none !important;
        visibility: hidden !important;
    }
    .nav-links.mobile-open {
        transform: translateY(0) !important;
        pointer-events: auto !important;
        visibility: visible !important;
    }

    .nav-links > li {
        width: 100%; max-width: 320px;
        border-bottom: 1px solid rgba(200,169,81,0.1);
        text-align: center;
    }
    .nav-links > li:first-child { border-top: 1px solid rgba(200,169,81,0.1); }
    .nav-links > li > a {
        display: block !important; padding: 18px 0 !important;
        font-size: 18px !important; font-weight: 400 !important;
        color: rgba(255,255,255,0.85) !important;
        letter-spacing: 0.02em !important;
    }
    .nav-links > li > a:hover,
    .nav-links > li > a:active { color: var(--gold) !important; }

    .nav-cta {
        margin-top: 24px !important; text-align: center !important;
        display: inline-block !important; padding: 14px 32px !important;
        background: var(--gold) !important; color: #14213D !important;
        border-radius: 50px !important; font-weight: 600 !important;
    }

    /* Flatten dropdowns */
    .nav-dropdown-menu {
        position: static !important; transform: none !important;
        opacity: 1 !important; visibility: visible !important;
        background: transparent !important; border: none !important;
        box-shadow: none !important; padding: 0 0 12px 0 !important;
        min-width: auto !important; border-radius: 0 !important;
        display: flex !important; flex-direction: column !important;
        align-items: center !important;
    }
    .nav-dropdown-menu::before { display: none !important; }
    .nav-dropdown-menu a {
        padding: 10px 0 !important; font-size: 15px !important;
        color: rgba(255,255,255,0.45) !important;
        text-align: center !important; display: block !important;
    }
    .nav-dropdown-menu a:hover { color: var(--gold) !important; }
    .nav-dropdown-menu a:not(:last-child) { border-bottom: none !important; }
    .nav-dropdown > a::after { display: none !important; }

}

/* ─── COMPREHENSIVE MOBILE GRID STACKING (added 2026-04-10) ─── */
@media (max-width: 768px) {
    /* Force all grid layouts to single column */
    .stats-row,
    .stat-band-grid,
    .stat-band-top,
    .ethos-cards,
    .ethos-grid,
    .distinction-grid,
    .programme-grid,
    .service-panel,
    .svc-card,
    .testi-grid,
    .testi-section .testi-grid,
    .services-grid-inner,
    .form-row,
    .tier-row,
    .how-steps,
    .main-inner,
    .trust-inner,
    .contact-grid,
    .two-col,
    .split-grid {
        grid-template-columns: 1fr !important;
        display: grid !important;
        gap: 20px !important;
    }

    /* Stat items — remove right border, add bottom border instead */
    .stat-item {
        padding: 24px 0 !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
        text-align: center;
    }
    .stat-item:last-child { border-bottom: none !important; }
    .stat-item-num { font-size: 42px !important; }

    /* Stat band big number */
    .stat-band-top {
        text-align: center !important;
        gap: 24px !important;
    }
    .stat-big-num { font-size: clamp(56px, 16vw, 88px) !important; }

    /* Service split panels — visual on top, content below */
    .service-panel {
        min-height: auto !important;
    }
    .service-visual { min-height: 240px !important; order: 1 !important; }
    .service-content { padding: 48px 28px !important; order: 2 !important; }
    .service-icon-ring { width: 110px !important; height: 110px !important; }
    .service-heading { font-size: clamp(38px, 11vw, 54px) !important; }

    /* svc-card colour panel above text */
    .svc-card {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
    }
    .svc-colour-panel { min-height: 180px !important; padding: 32px 28px !important; }
    .svc-text-panel { padding: 36px 28px !important; border-radius: 0 0 24px 24px !important; }
    .tp-white { border-left: 1px solid var(--border-lt) !important; border-top: none !important; border-radius: 0 0 24px 24px !important; }
    .svc-big-num { font-size: 90px !important; }

    /* How steps — stack with arrows hidden or rotated */
    .how-arrow { display: none !important; }
    .how-steps { gap: 20px !important; }

    /* Section padding reductions */
    .approach-outer,
    .testi-section,
    .cta-section,
    .services-grid-section,
    .start-section,
    .how-section,
    .services-intro {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
    .cta-section { padding-top: 80px !important; padding-bottom: 80px !important; }
    .testi-section { padding-top: 70px !important; padding-bottom: 70px !important; }
    .approach-outer { padding-top: 60px !important; padding-bottom: 60px !important; }
    .services-grid-section { padding-top: 70px !important; padding-bottom: 70px !important; }

    /* Hero padding reduction */
    .hero {
        padding-left: 24px !important;
        padding-right: 24px !important;
        padding-top: 110px !important;
        padding-bottom: 60px !important;
        min-height: auto !important;
    }
    .hero-headline { font-size: clamp(30px, 8vw, 44px) !important; }
    .hero-sub { font-size: 15px !important; }

    /* Section heading sizes */
    .section-heading { font-size: clamp(26px, 7vw, 36px) !important; }
    .cta-heading { font-size: clamp(26px, 7vw, 38px) !important; }

    /* Stat band */
    .stat-band {
        padding-left: 24px !important;
        padding-right: 24px !important;
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    /* Team photos stack */
    .team-photo-panel { width: 100% !important; max-width: 320px !important; margin: 0 auto !important; }

    /* Hero CTA row stacks */
    .scroll-hint { display: none !important; }

    .hero-cta-row,
    .hero-actions {
        flex-direction: column !important;
        gap: 16px !important;
        align-items: center !important;
    }
    .hero-cta-row > *,
    .hero-actions > * { width: auto !important; }

    /* Bridge tier arrows centred */
    .bridge-tier-arrow { transform: rotate(90deg) !important; margin: 16px auto !important; }

    /* Generic inline-style grid stacker */
    [style*="grid-template-columns"]:not(.nav-links):not(.footer-bottom) {
        grid-template-columns: 1fr !important;
    }
    [style*="display: flex"][style*="gap:"]:not(nav):not(.nav-links):not(.footer-bottom) {
        flex-wrap: wrap !important;
    }
}

@media (max-width: 480px) {
    .service-content { padding: 36px 20px !important; }
    .svc-text-panel { padding: 28px 20px !important; }
    .stat-band, .approach-outer, .testi-section, .cta-section, .services-grid-section, .hero, .start-section {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }
}

/* ── Eyebrow legibility bump (Jamie feedback 2026-04-10) ── */
.section-eyebrow { font-size: 13px !important; letter-spacing: 0.16em !important; margin-bottom: 18px !important; }
.hero-eyebrow    { font-size: 13px !important; letter-spacing: 0.18em !important; }
.cta-eyebrow     { font-size: 13px !important; letter-spacing: 0.16em !important; }
@media (max-width: 768px) {
  .section-eyebrow { font-size: 12px !important; letter-spacing: 0.14em !important; }
  .hero-eyebrow    { font-size: 12px !important; letter-spacing: 0.16em !important; }
  .cta-eyebrow     { font-size: 12px !important; letter-spacing: 0.14em !important; }
}
