/* ==========================================================================
   Glass House PR — Phase 1 redesign (v2)
   Token system adapted to the Glass House PR brand.
   v2: pill actions, hero chips, discipline marquee, expanding expertise
   panels, premium dark recognition, gradient footer CTA.
   ========================================================================== */

/* ---------- Font ---------- */
@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-var.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
    /* Brand */
    --brand: #0077bb;
    --brand-strong: #00639e;
    --brand-deep: #005687;
    --brand-bright: #1593d1;
    --brand-tint: rgba(0, 119, 187, 0.08);

    /* Text (labels) */
    --text-1: rgba(12, 18, 25, 0.92);
    --text-2: rgba(12, 18, 25, 0.64);
    --text-3: rgba(12, 18, 25, 0.46);
    --text-inv-1: rgba(255, 255, 255, 0.94);
    --text-inv-2: rgba(255, 255, 255, 0.68);
    --text-inv-3: rgba(255, 255, 255, 0.46);

    /* Surfaces */
    --bg: #ffffff;
    --bg-soft: #f7f8f7;
    --ink: #0c1219;
    --ink-2: #141d27;

    /* Fills & separators */
    --fill-1: rgba(12, 18, 25, 0.045);
    --fill-2: rgba(12, 18, 25, 0.08);
    --line: rgba(12, 18, 25, 0.11);
    --line-inv: rgba(255, 255, 255, 0.14);

    /* Radius */
    --r-sm: 8px;
    --r-md: 10px;
    --r-lg: 12px;
    --r-xl: 16px;
    --r-pill: 999px;

    /* Elevation */
    --shadow-sm: 0 1px 2px rgba(12, 18, 25, 0.05), 0 4px 16px rgba(12, 18, 25, 0.07);
    --shadow-md: 0 12px 40px rgba(12, 18, 25, 0.16);
    --shadow-brand: 0 8px 24px rgba(0, 119, 187, 0.32);

    /* Type */
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    /* Rhythm */
    --header-h: 90px;
    --section-y: 104px;

    /* Motion */
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.625;
    color: var(--text-1);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p, h1, h2, h3, dl, dd, figure, blockquote { margin: 0; }
a { color: inherit; }
address { font-style: normal; }
cite { font-style: normal; }

::selection { background: rgba(0, 119, 187, 0.18); }

:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ---------- Layout utilities ---------- */
.container {
    max-width: 1184px;
    margin-inline: auto;
    padding-inline: 24px;
}

.section { padding-block: var(--section-y); }
.section-soft { background: var(--bg-soft); }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head .h2 { margin-top: 12px; }
.section-sub {
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-2);
}
.section-sub-light { color: var(--text-inv-2); }

/* ---------- Typography ---------- */
.eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
}
.eyebrow-light { color: rgba(255, 255, 255, 0.78); }

.display {
    font-size: clamp(2.6rem, 1.5rem + 3.8vw, 3.9rem);
    line-height: 1.07;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--text-1);
}

.accent { position: relative; display: inline-block; color: var(--brand); }
.accent-line {
    position: absolute;
    left: -2%;
    bottom: -0.12em;
    width: 104%;
    height: 0.15em;
    color: var(--brand);
    overflow: visible;
}
.accent-line path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: draw-line 720ms var(--ease-out) 560ms forwards;
}
@keyframes draw-line { to { stroke-dashoffset: 0; } }

.h2 {
    font-size: clamp(1.75rem, 1.35rem + 1.5vw, 2.25rem);
    line-height: 1.16;
    font-weight: 600;
    color: var(--text-1);
}
.h2-light { color: var(--text-inv-1); }

.lead {
    font-size: 18px;
    line-height: 1.65;
    color: var(--text-2);
}

.body-lg {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-2);
}

.text-brand { color: var(--brand); }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
    color: var(--brand);
    text-decoration: none;
    transition: color 150ms ease;
}
.text-link:hover { color: var(--brand-strong); }
.text-link svg { transition: transform 200ms var(--ease-out); }
.text-link:hover svg { transform: translateX(3px); }
.text-link-light { color: rgba(255, 255, 255, 0.85); }
.text-link-light:hover { color: #ffffff; }

/* ---------- Buttons (pill, per inspiration direction) ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    border: 0;
    transition: background-color 160ms ease, color 160ms ease,
                box-shadow 220ms ease, transform 110ms ease;
}
.btn:active { transform: scale(0.97); }
.btn svg { transition: transform 200ms var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }

.btn-44 {
    height: 48px;
    padding-inline: 22px;
    font-size: 16px;
    line-height: 1;
    border-radius: var(--r-pill);
}
.btn-32 {
    height: 34px;
    padding-inline: 16px;
    font-size: 14px;
    line-height: 1;
    border-radius: var(--r-pill);
}

.btn-primary { background: var(--brand); color: #ffffff; }
.btn-primary:hover { background: var(--brand-strong); box-shadow: var(--shadow-brand); }
.btn-primary:active { background: var(--brand-deep); box-shadow: none; }

.btn-outline {
    background: transparent;
    color: var(--text-1);
    box-shadow: inset 0 0 0 1px rgba(12, 18, 25, 0.22);
}
.btn-outline:hover { background: var(--fill-1); box-shadow: inset 0 0 0 1px rgba(12, 18, 25, 0.34); }

.btn-white { background: #ffffff; color: var(--brand-strong); }
.btn-white:hover { background: rgba(255, 255, 255, 0.9); box-shadow: 0 8px 24px rgba(0, 40, 66, 0.28); }

/* ---------- Skip link ---------- */
.skip-link {
    position: absolute;
    top: -48px;
    left: 16px;
    z-index: 1000;
    padding: 10px 16px;
    background: var(--ink);
    color: #fff;
    border-radius: var(--r-sm);
    text-decoration: none;
    font-size: 14px;
    transition: top 150ms ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Reveal on scroll ---------- */
.js .reveal {
    opacity: 0;
    transform: translateY(24px) scale(0.995);
}
.js .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: opacity 640ms var(--ease-out), transform 640ms var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
}

/* ---------- Header: floating capsule ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 500;
    padding-top: 14px;
    pointer-events: none;
}
.header-capsule {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 60px;
    padding: 5px 5px 5px 20px;
    background: rgba(255, 255, 255, 0.74);
    -webkit-backdrop-filter: blur(14px) saturate(1.5);
    backdrop-filter: blur(14px) saturate(1.5);
    border: 1px solid rgba(12, 18, 25, 0.09);
    border-radius: var(--r-pill);
    box-shadow: 0 1px 2px rgba(12, 18, 25, 0.04), 0 12px 32px rgba(12, 18, 25, 0.08);
    transition: box-shadow 240ms ease, background-color 240ms ease, border-color 240ms ease;
}
.site-header.is-scrolled .header-capsule {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(12, 18, 25, 0.12);
    box-shadow: 0 2px 4px rgba(12, 18, 25, 0.05), 0 16px 44px rgba(12, 18, 25, 0.14);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border-radius: var(--r-pill);
}
.brand-mark { width: 30px; height: 30px; transition: transform 320ms var(--ease-out); }
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.06); }
.brand-name {
    font-size: 15.5px;
    font-weight: 650;
    color: var(--text-1);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

/* Nav links as a segmented group with a sliding pill */
.site-nav {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 4px;
    background: rgba(12, 18, 25, 0.05);
    border-radius: var(--r-pill);
}
.nav-pill {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 0;
    width: 0;
    background: #ffffff;
    border-radius: var(--r-pill);
    box-shadow: 0 1px 3px rgba(12, 18, 25, 0.12), 0 4px 12px rgba(12, 18, 25, 0.08);
    opacity: 0;
    transition: transform 260ms var(--ease-out), width 260ms var(--ease-out), opacity 160ms ease;
    will-change: transform;
}
.nav-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 7px 14px;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 20px;
    color: var(--text-2);
    text-decoration: none;
    border-radius: var(--r-pill);
    white-space: nowrap;
    transition: color 160ms ease;
}
.nav-link:hover { color: var(--text-1); }
.nav-link-external svg {
    color: var(--text-3);
    transition: color 160ms ease, transform 200ms var(--ease-out);
}
.nav-link-external:hover svg { color: var(--brand); transform: translate(1px, -1px); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-cta { will-change: transform; }

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 6px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    color: var(--text-1);
    text-decoration: none;
    transition: color 160ms ease;
}
.header-phone svg { color: var(--brand); }
.header-phone:hover { color: var(--brand); }
@media (max-width: 1150px) {
    .header-phone { display: none; }
}

/* Hamburger that morphs into a close mark */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: rgba(12, 18, 25, 0.05);
    border: 0;
    border-radius: var(--r-pill);
    color: var(--text-1);
    cursor: pointer;
    transition: background-color 160ms ease;
}
.nav-toggle:hover { background: rgba(12, 18, 25, 0.1); }
.nav-toggle-bars {
    position: relative;
    width: 20px;
    height: 12px;
}
.nav-toggle-bars span {
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: top 260ms var(--ease-out), transform 260ms var(--ease-out);
}
.nav-toggle-bars span:first-child { top: 0; }
.nav-toggle-bars span:last-child { top: 10px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:first-child { top: 5px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:last-child { top: 5px; transform: rotate(-45deg); }

/* ---------- Full screen menu ---------- */
.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 490;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 110px 32px 44px;
    background:
        radial-gradient(90% 60% at 85% 108%, rgba(0, 119, 187, 0.5) 0%, rgba(0, 119, 187, 0) 62%),
        var(--ink);
    color: var(--text-inv-1);
    opacity: 0;
    transform: scale(0.985);
    transition: opacity 320ms var(--ease-out), transform 320ms var(--ease-out);
}
.menu-overlay.is-open { opacity: 1; transform: none; }
.menu-overlay[hidden] { display: none; }

.menu-nav { display: flex; flex-direction: column; }
.menu-link {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding: 14px 0;
    text-decoration: none;
    color: var(--text-inv-1);
    border-bottom: 1px solid var(--line-inv);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 300ms var(--ease-out), transform 300ms var(--ease-out);
}
.menu-overlay.is-open .menu-link {
    opacity: 1;
    transform: none;
    transition-delay: calc(90ms + var(--i) * 55ms);
}
.menu-index {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-inv-3);
}
.menu-label {
    font-size: clamp(2rem, 6.4vw, 3.2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
    transition: color 160ms ease, transform 200ms var(--ease-out);
}
.menu-arrow {
    margin-left: auto;
    align-self: center;
    color: var(--text-inv-3);
    opacity: 0;
    transform: translate(-6px, 6px);
    transition: opacity 200ms ease, transform 240ms var(--ease-out), color 160ms ease;
}
.menu-link:hover .menu-label { color: var(--brand-bright); transform: translateX(6px); }
.menu-link:hover .menu-arrow { opacity: 1; transform: none; color: var(--brand-bright); }

.menu-meta {
    margin-top: 44px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 20px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 300ms var(--ease-out), transform 300ms var(--ease-out);
}
.menu-overlay.is-open .menu-meta {
    opacity: 1;
    transform: none;
    transition-delay: calc(90ms + var(--i) * 55ms);
}
.menu-mail {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-inv-1);
    text-decoration: none;
    transition: color 160ms ease;
}
.menu-mail:hover { color: var(--brand-bright); }
.menu-tag { font-size: 13.5px; color: var(--text-inv-3); }

body.menu-locked { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
    padding-top: 96px;
    padding-bottom: 96px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 64px;
}
.hero-copy .display { margin-top: 22px; }
.hero-copy .lead {
    margin-top: 24px;
    max-width: 46ch;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 38px;
}

/* Direct contact links, visible at first glance */
.hero-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 18px;
    margin-top: 28px;
}
.hero-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-1);
    text-decoration: none;
    transition: color 160ms ease;
}
.hero-contact-link svg { flex: none; color: var(--brand); }
.hero-contact-link:hover { color: var(--brand); }
.hero-contact-divider {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brand);
    opacity: 0.7;
}

.hero-stage { position: relative; }
.hero-media {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.hero-media img {
    width: 100%;
    aspect-ratio: 12 / 8.4;
    object-fit: cover;
}

.hero-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 10px 12px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    animation: chip-float 7s ease-in-out infinite alternate;
}
a.hero-chip:hover strong { color: var(--brand); }
.hero-chip img, .hero-chip svg { flex: none; color: var(--brand); }
.hero-chip strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-1);
}
.hero-chip small {
    display: block;
    font-size: 12px;
    line-height: 1.3;
    color: var(--text-3);
}
.hero-chip-one { top: 22px; right: -18px; }
.hero-chip-two { bottom: 30px; left: -26px; animation-delay: 1.4s; }
@keyframes chip-float {
    from { transform: translateY(-6px); }
    to { transform: translateY(6px); }
}

/* Proof strip */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 88px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}
.stat dt {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-3);
    margin-bottom: 6px;
}
.stat dd {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-1);
}

/* ---------- Discipline marquee ---------- */
.marquee {
    overflow: hidden;
    padding-block: 18px;
    border-block: 1px solid var(--line);
}
.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee-scroll 42s linear infinite;
}
.marquee-track > * { margin-right: 40px; }
.marquee-track span {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--text-2);
    white-space: nowrap;
}
.marquee-track i {
    width: 5px;
    height: 5px;
    flex: none;
    border-radius: 50%;
    background: var(--brand);
    opacity: 0.7;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll { to { transform: translateX(-50%); } }

/* ---------- Split (about teaser) ---------- */
.split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 72px;
}
.split-media {
    border-radius: 20px;
    overflow: hidden;
}
.split-media img {
    width: 100%;
    aspect-ratio: 7 / 7.67;
    object-fit: cover;
}
.split-copy .h2 { margin-top: 12px; }
.split-copy .body-lg { margin-top: 20px; max-width: 52ch; }

.value-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}
.value-chips li {
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--brand-strong);
    background: var(--brand-tint);
    border-radius: var(--r-pill);
}
.split-copy p:last-child { margin-top: 28px; }

/* ---------- Expertise: expanding panels ---------- */
.exp-panels {
    display: flex;
    gap: 12px;
    height: 480px;
}
.exp-panel {
    position: relative;
    flex: 1 1 0%;
    min-width: 0;
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: flex 520ms var(--ease-out);
}
.exp-panel.is-active,
.exp-panel:focus-within {
    flex: 3.4 1 0%;
}
.exp-link {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 22px;
    text-decoration: none;
    color: #ffffff;
}
.exp-link:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: -4px;
    border-radius: var(--r-xl);
}
.exp-link img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 640ms var(--ease-out);
}
.exp-panel.is-active .exp-link img,
.exp-panel:focus-within .exp-link img { transform: scale(1.05); }

.exp-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 14, 20, 0.18) 0%, rgba(8, 14, 20, 0.68) 100%);
    transition: background 400ms ease;
}
.exp-panel.is-active .exp-shade,
.exp-panel:focus-within .exp-shade {
    background: linear-gradient(180deg, rgba(8, 14, 20, 0) 26%, rgba(8, 14, 20, 0.84) 100%);
}

.exp-index {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    padding: 4px 10px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.16);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border-radius: var(--r-pill);
}

.exp-title {
    position: relative;
    z-index: 2;
    order: 1;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}
.exp-panel.is-active .exp-title,
.exp-panel:focus-within .exp-title {
    align-self: flex-start;
    font-size: 22px;
    writing-mode: horizontal-tb;
    transform: none;
}
.exp-panel:not(.is-active):not(:focus-within) .exp-title {
    align-self: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.92);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.exp-body {
    position: relative;
    z-index: 2;
    order: 2;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 320ms ease 140ms, transform 320ms var(--ease-out) 140ms;
}
.exp-panel.is-active .exp-body,
.exp-panel:focus-within .exp-body {
    opacity: 1;
    transform: none;
}
.exp-desc {
    display: block;
    font-size: 14.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.86);
    max-width: 34ch;
}
.exp-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 13.5px;
    font-weight: 600;
    color: #ffffff;
}
.exp-more svg { transition: transform 200ms var(--ease-out); }
.exp-link:hover .exp-more svg { transform: translateX(3px); }

/* ---------- Report feature ---------- */
.report-section {
    background: var(--brand);
    color: var(--text-inv-1);
}
.report-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 72px;
}
.report-media { max-width: 360px; }
.report-media img {
    border-radius: var(--r-md);
    box-shadow: 0 24px 64px rgba(0, 31, 51, 0.4);
    transition: transform 400ms var(--ease-out);
}
.report-media:hover img { transform: rotate(-1.5deg) scale(1.02); }
.report-copy .h2 { margin-top: 12px; color: var(--text-inv-1); }
.report-lead {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-inv-2);
    max-width: 48ch;
}
.report-lead em { font-style: normal; color: #ffffff; font-weight: 600; }

.report-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}
.report-facts li {
    padding: 8px 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--r-pill);
}
.report-facts strong { color: #ffffff; font-weight: 600; margin-right: 4px; }

.report-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 36px;
}
.report-secondary { display: flex; gap: 20px; }

/* ---------- Client logo marquee: two auto-scrolling rows ---------- */
.logo-marquee {
    position: relative;
    display: grid;
    gap: 18px;
    margin-top: 8px;
}
/* Edge fades: cheap gradient overlays instead of masking the animated layer */
.logo-marquee::before,
.logo-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 1;
    pointer-events: none;
}
.logo-marquee::before { left: 0; background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0)); }
.logo-marquee::after { right: 0; background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0)); }
.logo-row {
    overflow: hidden;
}
.logo-row-track {
    display: flex;
    width: max-content;
    will-change: transform;
}
.js .logo-row-track { animation: logo-scroll 75s linear infinite; }
.logo-row-reverse .logo-row-track { animation-direction: reverse; }
.logo-row:hover .logo-row-track { animation-play-state: paused; }
@keyframes logo-scroll { to { transform: translateX(-50%); } }

.logo-set {
    display: flex;
    align-items: stretch;
}
.logo-set li {
    flex: none;
    display: grid;
    place-items: center;
    margin-right: 14px;
    padding: 12px 30px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    transition: border-color 160ms ease, box-shadow 200ms ease;
}
.logo-set li:hover {
    border-color: rgba(12, 18, 25, 0.24);
    box-shadow: var(--shadow-sm);
}
.logo-set img {
    height: 68px;
    width: auto;
    display: block;
    object-fit: contain;
}
@media (max-width: 700px) {
    .logo-set img { height: 52px; }
    .logo-set li { padding: 10px 20px; }
}

.logo-note {
    margin-top: 28px;
    font-size: 14px;
    color: var(--text-3);
    text-align: center;
}

/* ---------- Testimonials: featured slider ---------- */
.quote-mark { color: var(--brand); flex: none; }

.quote-slider {
    max-width: 860px;
    margin-inline: auto;
}
.quote-viewport {
    overflow: hidden;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-sm);
}
.quote-slides {
    display: flex;
    align-items: stretch;
    transition: transform 480ms var(--ease-out);
}
.quote-slide {
    flex: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 44px 52px 40px;
}
.quote-slide blockquote {
    flex: 1;
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-1);
}
.quote-slide footer {
    display: flex;
    align-items: center;
    gap: 14px;
}
.quote-slide footer img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: var(--shadow-sm);
}
.quote-slide footer cite {
    display: block;
    font-size: 15px;
    font-weight: 600;
    font-style: normal;
    color: var(--text-1);
}
.quote-slide footer span {
    display: block;
    margin-top: 2px;
    font-size: 13.5px;
    color: var(--text-3);
}

.quote-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 26px;
}
.quote-arrow {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--bg);
    color: var(--text-1);
    cursor: pointer;
    transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}
.quote-arrow:hover {
    color: #ffffff;
    background: var(--brand);
    border-color: var(--brand);
}
.quote-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}
.quote-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(12, 18, 25, 0.18);
    cursor: pointer;
    transition: background 160ms ease, transform 160ms ease;
}
.quote-dot:hover { background: rgba(12, 18, 25, 0.38); }
.quote-dot[aria-current="true"] {
    background: var(--brand);
    transform: scale(1.25);
}
@media (max-width: 700px) {
    .quote-slide { padding: 28px 24px 26px; }
    .quote-slide blockquote { font-size: 16.5px; }
}

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 4px;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-1);
    cursor: pointer;
    list-style: none;
    transition: color 160ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--brand-strong); }
.faq-icon {
    position: relative;
    flex: none;
    width: 14px;
    height: 14px;
}
.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    border-radius: 2px;
    background: var(--text-2);
    transition: transform 240ms var(--ease-out), background-color 160ms ease;
}
.faq-icon::before { left: 0; top: 6px; width: 14px; height: 2px; }
.faq-icon::after { left: 6px; top: 0; width: 2px; height: 14px; }
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after { background: var(--brand); }
.faq-item[open] .faq-icon::after { transform: scaleY(0); }
.faq-answer {
    padding: 0 4px 24px;
    max-width: 64ch;
}
.faq-answer p {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--text-2);
}

/* ---------- Recognition (premium dark) ---------- */
.section-dark {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: var(--text-inv-1);
}
.section-dark::before {
    content: "";
    position: absolute;
    top: -220px;
    left: 50%;
    width: 900px;
    height: 440px;
    transform: translateX(-50%);
    background: radial-gradient(closest-side, rgba(0, 119, 187, 0.22), transparent 72%);
    pointer-events: none;
}
.section-dark .container { position: relative; }

.award-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.award-card {
    position: relative;
    overflow: hidden;
    padding: 32px 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r-xl);
    transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms var(--ease-out);
}
.award-card:hover {
    border-color: rgba(21, 147, 209, 0.55);
    box-shadow: 0 12px 40px rgba(0, 119, 187, 0.22);
    transform: translateY(-3px);
}
.award-glow {
    position: absolute;
    top: -70px;
    right: -70px;
    width: 170px;
    height: 170px;
    background: radial-gradient(closest-side, rgba(0, 119, 187, 0.38), transparent 70%);
    opacity: 0.65;
    pointer-events: none;
}
.award-badge {
    position: relative;
    display: flex;
    align-items: center;
    height: 64px;
}
.award-badge img {
    max-height: 64px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}
.award-card h3 {
    position: relative;
    margin-top: 24px;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
}
.award-card p {
    position: relative;
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-inv-2);
}

/* ---------- Footer ---------- */
.site-footer {
    position: relative;
    overflow: hidden;
    padding-top: 88px;
    background: linear-gradient(180deg, #0c1219 0%, #0b1721 52%, #0a2436 100%);
    color: var(--text-inv-2);
}

.footer-cta {
    position: relative;
    overflow: hidden;
    padding: 64px 48px;
    border-radius: 24px;
    text-align: center;
    background: linear-gradient(135deg, var(--brand-bright) 0%, var(--brand) 46%, var(--brand-deep) 100%);
    box-shadow: 0 24px 64px rgba(0, 40, 66, 0.45);
}
.footer-cta-shine {
    position: absolute;
    top: -45%;
    left: -12%;
    width: 72%;
    height: 190%;
    background: radial-gradient(closest-side, rgba(255, 255, 255, 0.22), transparent 70%);
    pointer-events: none;
}
.footer-cta .eyebrow { position: relative; }
.footer-cta-title {
    position: relative;
    margin-top: 14px;
    font-size: clamp(1.9rem, 1.4rem + 2vw, 2.6rem);
    line-height: 1.15;
    font-weight: 600;
    color: #ffffff;
}
.footer-cta-sub {
    position: relative;
    margin-top: 14px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.88);
}
.footer-cta .btn { position: relative; margin-top: 32px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-block: 72px 56px;
}
.footer-brand img { width: 150px; }
.footer-brand p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.65;
    max-width: 34ch;
}
.social-list {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}
.social-list a {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--text-inv-2);
    background: rgba(255, 255, 255, 0.08);
    transition: background-color 160ms ease, color 160ms ease, transform 200ms var(--ease-out);
}
.social-list a:hover {
    background: rgba(255, 255, 255, 0.17);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-col h3 {
    margin: 0 0 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-inv-3);
}
.footer-col a {
    display: block;
    padding-block: 5px;
    font-size: 14px;
    color: var(--text-inv-2);
    text-decoration: none;
    transition: color 160ms ease, transform 200ms var(--ease-out);
}
.footer-col a:hover { color: #ffffff; transform: translateX(3px); }
.footer-contact address {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 12px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 24px;
    padding-block: 24px;
    border-top: 1px solid var(--line-inv);
    font-size: 13px;
    color: var(--text-inv-3);
}

.footer-ghost {
    margin-top: 8px;
    margin-bottom: -0.16em;
    font-size: clamp(4.5rem, 13.5vw, 12rem);
    line-height: 0.9;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-align: center;
    color: rgba(255, 255, 255, 0.045);
    user-select: none;
    pointer-events: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1150px) {
    .hero-chip { display: none; }
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
    :root { --section-y: 72px; }
    .site-nav { display: none; }
    .nav-toggle { display: inline-flex; }
    .header-actions .btn { display: none; }

    .site-header { padding-top: 10px; }
    .header-capsule { height: 56px; padding-left: 16px; }
    .menu-overlay { padding: 96px 24px 36px; }

    .hero { padding-top: 56px; padding-bottom: 72px; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-stage { order: 2; }
    .stats { grid-template-columns: repeat(2, 1fr); margin-top: 64px; }

    .split { grid-template-columns: 1fr; gap: 40px; }
    .split-media { max-width: 480px; }

    /* Expertise panels become stacked cards */
    .exp-panels { flex-direction: column; height: auto; }
    .exp-panel,
    .exp-panel.is-active,
    .exp-panel:focus-within { flex: none; height: 250px; }
    .exp-panel.is-active .exp-title,
    .exp-panel:focus-within .exp-title,
    .exp-panel:not(.is-active):not(:focus-within) .exp-title {
        align-self: flex-start;
        font-size: 19px;
        color: #ffffff;
        writing-mode: horizontal-tb;
        transform: none;
    }
    .exp-panel .exp-body {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .exp-panel .exp-shade {
        background: linear-gradient(180deg, rgba(8, 14, 20, 0) 20%, rgba(8, 14, 20, 0.86) 100%);
    }
    .exp-desc {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .report-grid { grid-template-columns: 1fr; gap: 48px; }
    .report-media { max-width: 300px; margin-inline: auto; }

    .award-grid { grid-template-columns: 1fr; }
    .footer-cta { padding: 48px 24px; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-actions .btn { width: 100%; }
    .report-actions .btn { width: 100%; }
    .report-secondary { justify-content: center; width: 100%; }
    .footer-cta-title { font-size: 1.7rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .js .reveal { opacity: 1; transform: none; }
    .accent-line path { stroke-dashoffset: 0; animation: none; }
    .marquee-track { animation: none; }
    .hero-chip { animation: none; }
    .js .logo-row-track { animation: none; }
    .logo-row { overflow-x: auto; }
    .quote-slides { transition: none; }
}

/* ==========================================================================
   Inner pages (Phase 2): page hero, offerings, pillars, founder, steps,
   service tiles, downloads, contact form, initiatives.
   ========================================================================== */

/* ---------- Page hero ---------- */
.page-hero {
    padding-top: 84px;
    padding-bottom: 72px;
}
.page-hero .display { max-width: 16ch; margin-top: 22px; }
.page-hero .lead { margin-top: 24px; max-width: 56ch; }
.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.frame img {
    border-radius: var(--r-xl);
    object-fit: cover;
    width: 100%;
}
.frame-43 img { aspect-ratio: 4 / 3; }
.frame-34 img { aspect-ratio: 3 / 4; }
.frame-169 img { aspect-ratio: 16 / 9; }

.stats-flush { margin-top: 56px; }

/* ---------- Offerings checklist ---------- */
.offer-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
}
.offer-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px 18px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-1);
    background: var(--fill-1);
    border-radius: var(--r-lg);
    transition: background-color 160ms ease, transform 200ms var(--ease-out);
}
.offer-list li:hover { background: var(--brand-tint); transform: translateY(-2px); }
.offer-list svg { flex: none; margin-top: 2px; color: var(--brand); }

/* ---------- Pillars (editorial, numbered) ---------- */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.pillar { border-top: 2px solid var(--ink); padding-top: 22px; }
.pillar-index {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-3);
}
.pillar h3 {
    margin: 10px 0 0;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.pillar ul { margin-top: 18px; }
.pillar ul li {
    padding: 10px 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-2);
    border-bottom: 1px solid var(--line);
}
.pillar ul li:last-child { border-bottom: 0; }

/* ---------- Vision & mission ---------- */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.vm-card {
    padding: 30px 32px;
    background: var(--bg-soft);
    border-radius: var(--r-xl);
}
.vm-card h3 { margin: 10px 0 0; font-size: 19px; font-weight: 600; }
.vm-card p { margin-top: 12px; font-size: 16px; line-height: 1.65; color: var(--text-2); }

/* ---------- Founder timeline ---------- */
.timeline { margin-top: 28px; }
.timeline li {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-2);
}
.timeline li:last-child { border-bottom: 0; }
.timeline b {
    font-weight: 600;
    color: var(--brand-strong);
    font-size: 14px;
}

/* ---------- Steps ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    counter-reset: step;
}
.step { border-top: 1px solid var(--line); padding-top: 20px; }
.step-index {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-3);
}
.step h3 { margin: 10px 0 0; font-size: 18px; font-weight: 600; }
.step p { margin-top: 10px; font-size: 15px; line-height: 1.6; color: var(--text-2); }

/* ---------- Service tiles (other expertise) ---------- */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.svc-tile {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    border-radius: var(--r-lg);
    overflow: hidden;
    text-decoration: none;
    transition: transform 240ms var(--ease-out), box-shadow 240ms ease;
}
.svc-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.svc-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 520ms var(--ease-out);
}
.svc-tile:hover img { transform: scale(1.06); }
.svc-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 14, 20, 0) 34%, rgba(8, 14, 20, 0.78) 100%);
}
.svc-tile-label {
    position: absolute;
    left: 18px;
    right: 52px;
    bottom: 16px;
    z-index: 1;
    font-size: 16.5px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.01em;
}
.svc-tile-arrow {
    position: absolute;
    right: 16px;
    bottom: 14px;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border-radius: var(--r-pill);
    transition: background-color 200ms ease, transform 200ms var(--ease-out);
}
.svc-tile:hover .svc-tile-arrow { background: var(--brand); transform: translate(2px, -2px); }

/* ---------- Download row ---------- */
.doc-download {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
    padding: 18px 22px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    transition: border-color 160ms ease, box-shadow 200ms ease;
}
.doc-download:hover { border-color: rgba(12, 18, 25, 0.26); box-shadow: var(--shadow-sm); }
.doc-download > svg { flex: none; color: var(--brand); }
.doc-download b { display: block; font-size: 15.5px; font-weight: 600; }
.doc-download span { display: block; font-size: 13.5px; color: var(--text-3); margin-top: 2px; }
.doc-download .btn { margin-left: auto; flex: none; }

/* ---------- Contact page ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 56px;
    align-items: start;
}
.form-card {
    padding: 36px 36px 32px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label {
    display: block;
    margin-bottom: 7px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-2);
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    font: inherit;
    font-size: 15.5px;
    color: var(--text-1);
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    transition: border-color 160ms ease, box-shadow 160ms ease;
}
.form-field textarea { min-height: 128px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(0, 119, 187, 0.16);
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: #c23934; }
.field-error {
    display: none;
    margin-top: 6px;
    font-size: 13px;
    color: #c23934;
}
.form-field.has-error .field-error { display: block; }
.form-note { margin-top: 14px; font-size: 13.5px; line-height: 1.55; color: var(--text-3); }
.form-status {
    margin-top: 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--brand-strong);
}

.info-list { display: grid; gap: 26px; }
.info-card { border-top: 2px solid var(--ink); padding-top: 18px; }
.info-card h3 { font-size: 15px; font-weight: 600; letter-spacing: 0.01em; }
.info-card p,
.info-card a.info-line {
    margin-top: 8px;
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--text-2);
}
.info-card a.info-line { display: block; text-decoration: none; }
.info-card a.info-line:hover { color: var(--brand-strong); }

.map-frame {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: var(--r-xl);
    margin-top: 48px;
    display: block;
}

/* ---------- Initiatives ---------- */
.init-stat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}
.init-stat-chips li {
    padding: 8px 16px;
    font-size: 14px;
    color: var(--brand-strong);
    background: var(--brand-tint);
    border-radius: var(--r-pill);
}
.init-stat-chips strong { font-weight: 600; margin-right: 4px; }
.init-cover {
    max-width: 300px;
    margin-inline: auto;
}
.init-cover img { border-radius: var(--r-md); box-shadow: 0 24px 64px rgba(0, 31, 51, 0.28); }

/* ---------- Inner pages responsive ---------- */
.split-rev .split-media { order: 2; }

@media (max-width: 960px) {
    .split-rev .split-media { order: 0; }
    .page-hero { padding-top: 56px; padding-bottom: 56px; }
    .offer-list { grid-template-columns: 1fr; }
    .pillar-grid { grid-template-columns: 1fr; gap: 28px; }
    .vm-grid { grid-template-columns: 1fr; gap: 16px; }
    .steps { grid-template-columns: 1fr; gap: 20px; }
    .svc-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 44px; }
    .form-card { padding: 28px 22px; }
    .init-cover { max-width: 240px; }
}
@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    .svc-grid { grid-template-columns: 1fr; }
    .doc-download { flex-wrap: wrap; }
    .doc-download .btn { margin-left: 0; width: 100%; }
    .map-frame { height: 300px; }
}
