:root {
    --bg: #f7f5f1;
    --surface: #ffffff;
    --surface-soft: #f7f3fc;
    --navy: #0a2352;
    --navy-2: #122f64;
    --text: #14264a;
    --muted: #5b6880;
    --orange: #ff5535;
    --orange-2: #ff7451;
    --purple: #7519d6;
    --purple-2: #962eea;
    --purple-link: #7519d6;
    --line: rgba(10, 35, 82, 0.12);
    --shadow: 0 12px 34px rgba(15, 34, 72, 0.11);
    --shadow-soft: 0 7px 20px rgba(15, 34, 72, 0.08);
    --radius: 18px;
    --shell: 1320px;
    color-scheme: light;
}

html[data-theme="dark"],
html[data-theme='dark'] {
    --bg: #071321;
    --surface: #0d1d31;
    --surface-soft: #12233a;
    --navy: #f3f6ff;
    --navy-2: #dce5ff;
    --text: #edf2ff;
    --muted: #b7c3da;
    --line: rgba(221, 232, 255, 0.13);
    --shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
    --shadow-soft: 0 8px 22px rgba(0, 0, 0, 0.24);
    color-scheme: dark;
}

@media (prefers-color-scheme: dark) {
    html[data-theme='auto'] {
        --bg: #071321;
        --surface: #0d1d31;
        --surface-soft: #12233a;
        --navy: #f3f6ff;
        --navy-2: #dce5ff;
        --text: #edf2ff;
        --muted: #b7c3da;
        --line: rgba(221, 232, 255, 0.13);
        --shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
        --shadow-soft: 0 8px 22px rgba(0, 0, 0, 0.24);
        color-scheme: dark;
    }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.45;
    text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
a { color: inherit; text-decoration: none; }
button, a { font: inherit; }
button { border: 0; padding: 0; background: none; cursor: pointer; }
:focus-visible { outline: 3px solid rgba(117, 25, 214, .4); outline-offset: 3px; }

h1, h2, h3 { margin: 0; color: var(--navy); font-family: Georgia, "Times New Roman", serif; }
p { margin: 0; }

.skip-link {
    position: fixed;
    top: -100px;
    left: 12px;
    z-index: 999;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--surface);
    box-shadow: var(--shadow);
}
.skip-link:focus { top: 12px; }
.shell { width: min(calc(100% - 24px), var(--shell)); margin-inline: auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: color-mix(in srgb, var(--surface) 91%, transparent);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    min-height: 68px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
}
.brand {
    width: 105px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 13px;
    background: #fff;
}
.brand img { width: 100%; height: auto; }
.primary-nav { display: none; }
.menu-toggle {
    justify-self: end;
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
}
.menu-toggle span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; }
.primary-nav.is-open {
    position: absolute;
    top: 62px;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 4px;
    padding: 10px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
}
.primary-nav.is-open a { padding: 10px 12px; border-radius: 10px; font-weight: 700; }
.header-actions { grid-column: 2; grid-row: 1; display: flex; align-items: center; justify-content: flex-end; gap: 5px; }
.header-actions .button { display: none; }
.menu-toggle { grid-column: 3; grid-row: 1; }

.lang-link {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
}
.theme-toggle {
    width: 64px;
    height: 34px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--navy);
}
.theme-toggle > span:not(.theme-thumb) { font-size: 11px; }
.theme-thumb {
    position: absolute;
    left: 3px;
    top: 3px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 10px;
    background: linear-gradient(135deg, #ffcf3c, var(--orange));
    transition: transform .22s ease;
}
html[data-theme='dark'] .theme-thumb { transform: translateX(32px); }
@media (prefers-color-scheme: dark) { html[data-theme='auto'] .theme-thumb { transform: translateX(32px); } }

.button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #fff;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(255, 85, 53, .2);
    text-align: center;
}
.button-secondary { background: var(--surface); color: var(--purple-link); border-color: var(--purple-link); box-shadow: none; }
.button-small { min-height: 38px; padding: 8px 14px; font-size: 12px; }
.text-link, .section-link { color: var(--purple-link); font-weight: 800; }

.hero { padding-top: 10px; }
.hero-stage {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--surface);
    box-shadow: var(--shadow);
}
.hero-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.93) 0%, rgba(255,255,255,.82) 43%, rgba(255,255,255,.14) 76%, rgba(255,255,255,.04) 100%);
    pointer-events: none;
}
html[data-theme='dark'] .hero-stage::after { background: linear-gradient(90deg, rgba(7,19,33,.95) 0%, rgba(7,19,33,.82) 43%, rgba(7,19,33,.25) 76%, rgba(7,19,33,.08) 100%); }
.hero-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .82; }
.hero-copy, .hero-person, .hero-note { position: relative; z-index: 2; }
.eyebrow {
    margin-bottom: 8px;
    color: var(--orange);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.hero-copy h1 { max-width: 13ch; font-size: clamp(34px, 9vw, 64px); line-height: .98; }
.hero-lead { max-width: 52ch; margin-top: 10px; color: var(--muted); font-size: 14px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.proof-points {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 7px;
    padding: 0;
    margin: 12px 0 0;
}
.proof-points li {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 9px;
    border-radius: 11px;
    background: color-mix(in srgb, var(--surface) 88%, transparent);
    border: 1px solid var(--line);
    font-size: 12px;
    font-weight: 700;
}
.proof-points li::before { content: "●"; color: var(--purple); font-size: 10px; }
.hero-person { order: -1; width: 100%; max-width: 520px; margin-inline: auto; }
.hero-photo-card img { width: 100%; height: 250px; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow); }
.hero-note { justify-self: end; max-width: 240px; text-align: right; color: var(--navy); }
.hero-note strong { display: block; font-family: Georgia, serif; font-style: italic; color: var(--purple-link); font-size: 22px; }
.hero-note span { font-family: Georgia, serif; font-style: italic; font-size: 15px; }

.trust-strip { padding: 9px 0 2px; }
.trust-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 7px; }
.trust-card {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 9px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}
.trust-logo { width: 54px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; }
.trust-logo img { max-height: 36px; width: auto; object-fit: contain; }
.trust-mark { width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 10px; background: #f4eaff; color: var(--purple); font-weight: 900; }
.google-mark { color: #4285f4; background: #eef5ff; }
.trust-copy { min-width: 0; display: grid; gap: 1px; }
.trust-copy strong { font-size: 12px; color: var(--navy); }
.trust-copy small { font-size: 10px; color: var(--muted); }

.section { padding-top: 18px; }
.compact-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 9px;
}
.compact-heading > div { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 10px; }
.compact-heading h2 { font-size: clamp(24px, 5vw, 33px); line-height: 1; }
.compact-heading p { color: var(--muted); font-size: 12px; }
.compact-heading.single { justify-content: flex-start; }
.accent-line { width: 22px; height: 3px; display: inline-block; background: var(--orange); border-radius: 999px; vertical-align: middle; }
.section-link { white-space: nowrap; font-size: 12px; }

.services-grid, .issues-grid {
    display: grid;
    grid-auto-flow: column;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: rgba(117,25,214,.3) transparent;
    padding-bottom: 4px;
}
.service-strip { grid-auto-columns: minmax(185px, 72%); gap: 8px; }
.service-card {
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}
.service-card > img { width: 100%; height: 112px; object-fit: cover; }
.service-card-copy { position: relative; min-height: 138px; padding: 9px 10px 11px; }
.service-card h3 { font-family: Arial, sans-serif; font-size: 14px; line-height: 1.08; }
.service-card p { margin-top: 5px; color: var(--muted); font-size: 11px; line-height: 1.28; }
.service-card-copy > span { position: absolute; right: 9px; bottom: 7px; color: var(--orange); font-size: 18px; }

.issues-section { padding-bottom: 4px; }
.issues-mini-grid { grid-auto-columns: minmax(128px, 43%); gap: 7px; }
.issue-card {
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}
.issue-card img { width: 100%; height: 82px; object-fit: cover; }
.issue-card h3 { min-height: 42px; padding: 7px 7px 8px; font-family: Arial, sans-serif; font-size: 11px; line-height: 1.1; }

.method-section { padding-top: 16px; }
.method-band .method-inner {
    position: relative;
    overflow: hidden;
    padding: 14px;
    border: 1px solid rgba(117,25,214,.14);
    border-radius: 16px;
    background: linear-gradient(100deg, rgba(248,243,255,.98), rgba(239,229,255,.88));
    box-shadow: var(--shadow-soft);
}
html[data-theme='dark'] .method-band .method-inner { background: linear-gradient(100deg, #12233a, #211b45); }
.method-band .method-inner::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 50%;
    background: linear-gradient(180deg, transparent, rgba(117,25,214,.06));
    pointer-events: none;
}
.method-title, .method-grid, .method-quote { position: relative; z-index: 1; }
.method-title { display: flex; align-items: center; gap: 7px; }
.method-title h2 { font-size: clamp(22px, 5vw, 31px); }
.method-grid {
    list-style: none;
    display: grid;
    gap: 7px;
    padding: 0;
    margin: 10px 0 0;
}
.method-grid li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 8px;
    align-items: start;
    padding: 8px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--surface) 88%, transparent);
    border: 1px solid var(--line);
}
.method-grid li > span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--purple); font-weight: 900; }
.method-grid h3 { font-family: Arial, sans-serif; font-size: 12px; }
.method-grid p { color: var(--muted); font-size: 10px; line-height: 1.25; }
.method-quote { margin: 8px 0 0; text-align: right; color: var(--purple-link); font: italic 16px/1.2 Georgia, serif; }

.profile-cert-section { padding-top: 16px; }
.profile-cert-grid { display: grid; gap: 10px; }
.about-card {
    display: grid;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}
.profile-photo img { width: 100%; height: 210px; object-fit: cover; border-radius: 12px; }
.profile-copy h2, .credentials-panel h2 { margin-top: 3px; font-size: clamp(24px, 5vw, 31px); }
.profile-copy p { margin-top: 6px; color: var(--muted); font-size: 11px; }
.profile-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 7px; font-size: 12px; }
.credentials-panel { min-width: 0; }
.credentials-grid { display: grid; gap: 8px; }
.credential-card {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 9px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}
.credential-logo { display: grid; place-items: center; }
.credential-logo img { max-height: 60px; width: auto; object-fit: contain; }
.credential-card h3 { font-family: Arial, sans-serif; font-size: 13px; }
.credential-card p { margin-top: 4px; color: var(--muted); font-size: 10px; line-height: 1.3; }
.credential-card .text-link { display: inline-block; margin-top: 5px; font-size: 11px; }

.reviews-section { padding-top: 12px; }
.google-review-bar {
    display: grid;
    gap: 10px;
    align-items: center;
    padding: 13px 14px;
    border-radius: 16px;
    background: linear-gradient(105deg, #111f58, #5d1ac7);
    color: #fff;
    box-shadow: var(--shadow);
}
.google-review-bar h2 { color: #fff; font-size: clamp(23px, 5vw, 31px); }
.google-score { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; }
.google-g { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 9px; background: #fff; color: #4285f4; font-weight: 900; font-size: 20px; }
.google-score strong { font: 700 26px/1 Georgia, serif; }
.stars { color: #ffcf3c; letter-spacing: 1px; font-size: 13px; }
.google-score small { font-size: 10px; color: rgba(255,255,255,.82); }
.review-pill-row { display: flex; flex-wrap: wrap; gap: 6px; }
.review-pill-row span { padding: 7px 9px; border-radius: 999px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); font-size: 10px; }
.review-cta { justify-self: start; min-height: 40px; font-size: 11px; }

.contact-section { padding: 12px 0 0; }
.compact-contact {
    display: grid;
    gap: 10px;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}
.contact-copy h2 { margin-top: 3px; font-size: clamp(22px, 5vw, 30px); }
.contact-copy p { margin-top: 4px; color: var(--muted); font-size: 11px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 6px; }
.contact-actions .button { min-height: 38px; padding: 8px 12px; font-size: 11px; }
.contact-actions .text-link { align-self: center; font-size: 11px; }
.contact-location { display: grid; gap: 1px; color: var(--navy); font-size: 10px; }
.contact-location span { color: var(--muted); }

.site-footer { padding: 12px 0 20px; }
.footer-grid {
    display: grid;
    gap: 10px;
    padding: 11px 12px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.footer-brand img { width: 80px; }
.footer-brand p { margin-top: 5px; color: var(--muted); font-size: 10px; }
.footer-links, .footer-contact { display: grid; gap: 3px; font-size: 10px; font-weight: 700; }
.footer-credit { padding-top: 8px; text-align: center; color: var(--muted); font-size: 9px; }
.footer-credit a { color: var(--purple-link); font-weight: 800; }

@media (min-width: 761px) {
    .shell { width: min(calc(100% - 48px), var(--shell)); }
    .header-inner { min-height: 78px; }
    .brand { width: 124px; }
    .menu-toggle { display: none; }
    .primary-nav { display: flex; align-items: center; justify-content: center; gap: 20px; }
    .primary-nav a { font-size: 12px; font-weight: 800; }
    .header-actions { grid-column: auto; grid-row: auto; display: flex; align-items: center; gap: 7px; }
    .header-actions .button { display: inline-flex; }

    .hero-stage { min-height: 430px; grid-template-columns: minmax(0,1.15fr) minmax(390px,.85fr); align-items: center; padding: 22px 26px; }
    .hero-copy { grid-column: 1; grid-row: 1 / span 2; }
    .hero-person { order: 0; grid-column: 2; grid-row: 1 / span 2; justify-self: end; width: min(100%, 540px); }
    .hero-photo-card img { height: 340px; }
    .hero-note { grid-column: 2; grid-row: 1; align-self: start; margin-top: -4px; margin-right: 4px; }
    .hero-copy h1 { font-size: clamp(45px, 4.7vw, 66px); }
    .proof-points { grid-template-columns: repeat(4,minmax(0,1fr)); max-width: 720px; }
    .proof-points li { font-size: 10px; }

    .trust-grid { grid-template-columns: repeat(5,minmax(0,1fr)); gap: 8px; }
    .service-strip { grid-auto-flow: initial; overflow: visible; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 8px; }
    .service-card-copy { min-height: 142px; }
    .service-card h3 { font-size: 12px; }
    .service-card p { font-size: 10px; }
    .issues-mini-grid { grid-auto-flow: initial; overflow: visible; grid-template-columns: repeat(8,minmax(0,1fr)); gap: 7px; }
    .issue-card h3 { min-height: 36px; font-size: 9px; }

    .method-band .method-inner { display: grid; grid-template-columns: minmax(250px,.8fr) minmax(0,2.2fr); align-items: center; gap: 12px; padding: 14px 18px; }
    .method-grid { grid-column: 2; grid-row: 1 / span 2; grid-template-columns: repeat(4,minmax(0,1fr)); margin: 0; }
    .method-quote { grid-column: 2; }
    .method-grid li { grid-template-columns: 32px 1fr; }

    .profile-cert-grid { grid-template-columns: 1.05fr 1.15fr; align-items: stretch; }
    .about-compact { grid-template-columns: 190px 1fr; align-items: center; }
    .profile-photo img { height: 245px; }
    .credentials-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .credential-card { grid-template-columns: 1fr; text-align: center; }

    .google-review-bar { grid-template-columns: 1.1fr auto 1.1fr auto; gap: 14px; }
    .review-cta { justify-self: end; }
    .compact-contact { grid-template-columns: 1.05fr 1.3fr .75fr; }
    .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; align-items: start; }
}

@media (min-width: 1180px) {
    .hero-stage { min-height: 455px; }
    .section { padding-top: 14px; }
    .service-card > img { height: 122px; }
    .service-card-copy { min-height: 124px; }
    .profile-cert-section { padding-top: 12px; }
}

@media (max-width: 760px) {
    .shell { width: min(calc(100% - 16px), var(--shell)); }
    .site-header .brand { width: 92px; }
    .hero { padding-top: 7px; }
    .hero-stage { padding: 10px; border-radius: 18px; }
    .hero-stage::after { background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.94) 38%, rgba(255,255,255,.98)); }
    html[data-theme='dark'] .hero-stage::after { background: linear-gradient(180deg, rgba(7,19,33,.08), rgba(7,19,33,.91) 38%, rgba(7,19,33,.98)); }
    .hero-person { margin-bottom: -4px; }
    .hero-photo-card img { height: 220px; }
    .service-card > img { height: 102px; }
    .issue-card img { height: 78px; }
    .profile-photo img { height: 190px; }
    .hero-copy h1 { max-width: 13ch; }
    .hero-note { position: absolute; top: 16px; right: 16px; max-width: 155px; color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
    .hero-note strong, .hero-note span { color: #fff; font-size: 15px; }
    .hero-actions .button { width: 100%; }
    .compact-heading { align-items: center; }
    .compact-heading p { display: none; }
    .service-strip { grid-auto-columns: minmax(150px, 48%); }
    .service-card-copy { min-height: 116px; }
    .service-card p { display: none; }
    .issues-mini-grid { grid-auto-columns: minmax(110px, 34%); }
    .method-title h2 { font-size: 21px; }
    .profile-copy p:nth-of-type(n+2) { display: none; }
    .google-review-bar { border-radius: 13px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-contact { grid-column: 1 / -1; grid-template-columns: repeat(3,1fr); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* V1.5 refinement pass */
html[data-theme='dark'] {
    --bg: #05050b;
    --surface: #0d0b16;
    --surface-soft: #141020;
    --navy: #f7f4ff;
    --navy-2: #e8e0ff;
    --text: #f3efff;
    --muted: #beb5cf;
    --purple-link: #d8adff;
    --line: rgba(216, 197, 255, 0.16);
    --shadow: 0 18px 42px rgba(0, 0, 0, 0.46);
    --shadow-soft: 0 8px 22px rgba(0, 0, 0, 0.32);
}
html[data-theme='dark'] body {
    background:
        radial-gradient(circle at 78% 0%, rgba(108, 36, 190, .20), transparent 30%),
        radial-gradient(circle at 5% 55%, rgba(31, 50, 112, .16), transparent 28%),
        var(--bg);
}
@media (prefers-color-scheme: dark) {
    html[data-theme='auto'] {
        --bg: #05050b;
        --surface: #0d0b16;
        --surface-soft: #141020;
        --navy: #f7f4ff;
        --navy-2: #e8e0ff;
        --text: #f3efff;
        --muted: #beb5cf;
        --purple-link: #d8adff;
        --line: rgba(216, 197, 255, 0.16);
        --shadow: 0 18px 42px rgba(0, 0, 0, 0.46);
        --shadow-soft: 0 8px 22px rgba(0, 0, 0, 0.32);
    }
    html[data-theme='auto'] body {
        background:
            radial-gradient(circle at 78% 0%, rgba(108, 36, 190, .20), transparent 30%),
            radial-gradient(circle at 5% 55%, rgba(31, 50, 112, .16), transparent 28%),
            var(--bg);
    }
}

/* Horizontal brand lockup */
.brand-v15 {
    width: 178px;
    min-height: 46px;
    padding: 2px 0;
    border-radius: 0;
    background: transparent;
}
.brand-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.brand-logo-dark { display: none; }
html[data-theme='dark'] .brand-logo-light { display: none; }
html[data-theme='dark'] .brand-logo-dark { display: block; }
@media (prefers-color-scheme: dark) {
    html[data-theme='auto'] .brand-logo-light { display: none; }
    html[data-theme='auto'] .brand-logo-dark { display: block; }
}
.site-header .header-inner { min-height: 58px; }

/* Brand-safe cards keep dark/black certification logos readable */
html[data-theme='dark'] .trust-card-logo,
html[data-theme='dark'] .credential-card {
    background: #fbfafc;
    color: #0a2352;
    border-color: rgba(255,255,255,.12);
}
html[data-theme='dark'] .trust-card-logo .trust-copy small,
html[data-theme='dark'] .credential-card p { color: #5b6880; }
html[data-theme='dark'] .credential-card h3 { color: #0a2352; }
html[data-theme='dark'] .trust-card-logo .trust-copy strong { color: #0a2352; }
html[data-theme='dark'] .brand-logo-dark {
    filter: drop-shadow(0 0 1px rgba(255,255,255,.78)) drop-shadow(0 0 9px rgba(137,72,255,.28));
}
@media (prefers-color-scheme: dark) {
    html[data-theme='auto'] .trust-card-logo,
    html[data-theme='auto'] .credential-card { background: #fbfafc; color: #0a2352; }
    html[data-theme='auto'] .trust-card-logo .trust-copy small,
    html[data-theme='auto'] .credential-card p { color: #5b6880; }
    html[data-theme='auto'] .credential-card h3 { color: #0a2352; }
    html[data-theme='auto'] .trust-card-logo .trust-copy strong { color: #0a2352; }
    html[data-theme='auto'] .brand-logo-dark {
        filter: drop-shadow(0 0 1px rgba(255,255,255,.78)) drop-shadow(0 0 9px rgba(137,72,255,.28));
    }
}

/* Per-image focal-point tuning: keep eyes, heads and small dogs visible */
.service-card > img {
    height: 138px;
    object-fit: cover;
    object-position: 50% 34%;
}
.service-card:nth-child(1) > img { object-position: 50% 26%; }
.service-card:nth-child(2) > img { object-position: 50% 28%; }
.service-card:nth-child(3) > img { object-position: 50% 22%; }
.service-card:nth-child(4) > img { object-position: 50% 42%; }
.service-card:nth-child(5) > img { object-position: 50% 48%; }
.service-card:nth-child(6) > img { object-position: 58% 30%; }
.issue-card img {
    height: 92px;
    object-fit: cover;
    object-position: 50% 32%;
}
.issue-card:nth-child(1) img { object-position: 50% 24%; }
.issue-card:nth-child(2) img { object-position: 50% 35%; }
.issue-card:nth-child(3) img { object-position: 50% 24%; }
.issue-card:nth-child(4) img { object-position: 50% 42%; }
.issue-card:nth-child(5) img { object-position: 58% 44%; }
.issue-card:nth-child(6) img { object-position: 50% 47%; }
.issue-card:nth-child(7) img { object-position: 50% 43%; }
.issue-card:nth-child(8) img { object-position: 50% 32%; }

/* Method: less boxed, more readable */
.method-flow-v15 { padding-top: 16px; }
.method-v15 {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 14px;
    padding: 20px;
    border: 1px solid rgba(117, 25, 214, .18);
    border-radius: 18px;
    background:
        linear-gradient(110deg, rgba(252,249,255,.98), rgba(240,229,255,.82)),
        var(--surface);
    box-shadow: var(--shadow-soft);
}
.method-v15::after {
    content: "";
    position: absolute;
    inset: auto -5% -55px auto;
    width: 330px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(117,25,214,.16), transparent 68%);
    pointer-events: none;
}
.method-heading-v15,
.method-steps-v15,
.method-quote-v15 { position: relative; z-index: 1; }
.method-heading-v15 h2 { font-size: clamp(26px, 4.5vw, 38px); line-height: 1.02; }
.method-heading-v15 > p:last-child { margin-top: 7px; color: var(--muted); font-size: 12px; max-width: 48ch; }
.method-steps-v15 {
    list-style: none;
    display: grid;
    gap: 0;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(117,25,214,.18);
}
.method-steps-v15 li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 10px;
    padding: 13px 6px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(117,25,214,.14);
    border-radius: 0;
}
.method-steps-v15 li > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #6f19d5, #9d35ef);
    color: #fff;
    font-weight: 900;
}
.method-steps-v15 h3 { font-family: Arial, sans-serif; font-size: 13px; }
.method-steps-v15 p { margin-top: 3px; color: var(--muted); font-size: 11px; line-height: 1.35; }
.method-quote-v15 { margin: 0; text-align: right; color: var(--purple-link); font: italic 16px/1.2 Georgia, serif; }
html[data-theme='dark'] .method-v15 {
    background: linear-gradient(115deg, rgba(19,14,31,.98), rgba(48,19,80,.76));
    border-color: rgba(153, 72, 238, .38);
}
@media (prefers-color-scheme: dark) {
    html[data-theme='auto'] .method-v15 { background: linear-gradient(115deg, rgba(19,14,31,.98), rgba(48,19,80,.76)); border-color: rgba(153,72,238,.38); }
}

/* Multicolor Google mark, fully local */
.google-g-logo {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 16px rgba(0,0,0,.14);
    font: 900 29px/1 Arial, Helvetica, sans-serif;
    letter-spacing: -0.08em;
    color: transparent;
    background-image: conic-gradient(from -38deg, #4285f4 0 28%, #34a853 28% 47%, #fbbc05 47% 66%, #ea4335 66% 83%, #4285f4 83% 100%);
    background-origin: border-box;
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
}
.google-g-logo::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: #fff;
    z-index: -1;
    box-shadow: 0 5px 16px rgba(0,0,0,.14);
}
.google-g-logo-small { width: 40px; height: 40px; font-size: 24px; }

.google-review-v15 {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
    background:
        radial-gradient(circle at 85% 40%, rgba(147,55,255,.34), transparent 30%),
        linear-gradient(105deg, #101c56, #4f19b7 65%, #6c1ad6);
}
.reviews-heading-v15 p { margin-top: 5px; max-width: 58ch; color: rgba(255,255,255,.78); font-size: 11px; }
.google-score-v15 { display: flex; align-items: center; gap: 12px; }
.google-score-v15 > div { display: grid; grid-template-columns: auto auto; align-items: center; gap: 3px 8px; }
.google-score-v15 strong { font: 700 31px/1 Georgia, serif; color: #fff; }
.google-score-v15 .stars { align-self: center; }
.google-score-v15 small { grid-column: 1 / -1; color: rgba(255,255,255,.78); font-size: 10px; }
.review-pill-row-v15 span { backdrop-filter: blur(6px); }

/* Contact: phone, email, MyProID and map as distinct actions */
.contact-v15 {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}
.contact-actions-v15 { display: grid; gap: 8px; }
.contact-action-card,
.contact-location-v15 {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 58px;
    padding: 9px 11px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: color-mix(in srgb, var(--surface) 93%, var(--purple) 7%);
}
.contact-action-card:hover,
.contact-location-v15:hover { border-color: rgba(117,25,214,.42); }
.contact-action-card > span:last-child,
.contact-location-v15 > span:last-child { display: grid; gap: 1px; }
.contact-action-card small,
.contact-location-v15 small { color: var(--muted); font-size: 9px; }
.contact-action-card strong,
.contact-location-v15 strong { color: var(--navy); font-size: 11px; }
.contact-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--purple));
}
.myproid-contact img { width: 38px; height: 40px; object-fit: contain; border-radius: 9px; }
.myproid-contact { border-color: rgba(117,25,214,.35); }
.myproid-contact strong { color: var(--purple-link); }
.contact-location-v15 b { color: var(--purple-link); font-size: 10px; }

/* Expanded footer */
.footer-v15 { padding: 16px 0 20px; }
.footer-v15-grid {
    display: grid;
    gap: 18px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}
.footer-logo-link { display: block; width: min(100%, 270px); }
.footer-tagline-v15 { margin-top: 8px; color: var(--navy); font: 700 15px/1.25 Georgia, serif; }
.footer-trust-v15 { margin-top: 6px; color: var(--muted); font-size: 10px; }
.footer-about-v15 h2 { font-size: 19px; }
.footer-about-v15 p { margin-top: 7px; color: var(--muted); font-size: 11px; line-height: 1.5; max-width: 62ch; }
.footer-nav-v15,
.footer-contact-v15 { display: grid; align-content: start; gap: 6px; font-size: 11px; }
.footer-nav-v15 > strong,
.footer-contact-v15 > strong { margin-bottom: 2px; color: var(--navy); font-size: 12px; }
.footer-nav-v15 a,
.footer-contact-v15 a { color: var(--muted); font-weight: 700; }
.footer-nav-v15 a:hover,
.footer-contact-v15 a:hover { color: var(--purple-link); }
.footer-myproid { display: flex; align-items: center; gap: 7px; }
.footer-myproid img { width: 30px; height: 31px; object-fit: contain; border-radius: 7px; }
.footer-credit { padding-top: 10px; }

@media (min-width: 761px) {
    .site-header .header-inner { min-height: 62px; }
    .brand-v15 { width: 205px; }
    .service-card > img { height: 142px; }
    .issue-card img { height: 96px; }
    .method-v15 { grid-template-columns: minmax(235px,.75fr) minmax(0,2.25fr); align-items: start; gap: 20px 26px; padding: 22px 24px; }
    .method-heading-v15 { grid-column: 1; grid-row: 1 / span 2; }
    .method-steps-v15 { grid-column: 2; grid-template-columns: repeat(4,minmax(0,1fr)); border-top: 0; }
    .method-steps-v15 li { grid-template-columns: 1fr; padding: 0 14px; border-bottom: 0; border-left: 1px solid rgba(117,25,214,.18); }
    .method-steps-v15 li:first-child { border-left: 0; }
    .method-quote-v15 { grid-column: 2; }
    .google-review-v15 { grid-template-columns: minmax(260px,1.15fr) auto minmax(240px,.9fr) auto; align-items: center; }
    .review-cta { justify-self: end; }
    .contact-v15 { grid-template-columns: minmax(240px,.85fr) minmax(0,1.7fr) minmax(260px,.8fr); align-items: center; }
    .contact-actions-v15 { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .footer-v15-grid { grid-template-columns: 1fr 1.5fr .6fr .8fr; align-items: start; gap: 26px; }
}

@media (min-width: 1180px) {
    .service-card > img { height: 148px; }
    .issue-card img { height: 100px; }
}

@media (max-width: 760px) {
    .site-header .brand-v15 { width: 155px; min-height: 42px; }
    .site-header .header-inner { min-height: 54px; }
    .service-card > img { height: 112px; }
    .issue-card img { height: 88px; }
    .method-v15 { padding: 16px; }
    .method-heading-v15 h2 { font-size: 25px; }
    .contact-actions-v15 { grid-template-columns: 1fr; }
    .footer-v15-grid { padding: 16px; }
    .footer-logo-link { width: 230px; }
}
.google-g-logo {
    background-image: none;
    color: inherit;
    z-index: 0;
}
.google-g-logo::before,
.google-g-logo::after { content: none; }
.google-g-logo img { width: 66%; height: 66%; object-fit: contain; }

/* V1.6 SEO/GEO + finishing pass */
.hero-note {
    padding: 8px 12px;
    border: 1px solid color-mix(in srgb, var(--purple) 28%, transparent);
    border-radius: 999px 999px 999px 24px;
    background: color-mix(in srgb, var(--surface) 72%, transparent);
    box-shadow: 0 12px 28px rgba(60, 22, 120, .10);
    transform: rotate(-3deg);
    backdrop-filter: blur(7px);
}
.hero-note strong { font-size: 20px; line-height: 1.05; }
.hero-note span { display: block; margin-top: 2px; font-size: 13px; }
html[data-theme='dark'] .hero-note {
    color: #f3efff;
    background: rgba(13, 9, 28, .76);
    border-color: rgba(155, 77, 235, .42);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .24);
}

/* A continuous 4-step path rather than four unrelated cards */
@media (min-width: 761px) {
    .method-steps-v15 { position: relative; }
    .method-steps-v15::before {
        content: "";
        position: absolute;
        top: 17px;
        left: 8%;
        right: 8%;
        height: 2px;
        background: linear-gradient(90deg, rgba(111,25,213,.2), rgba(157,53,239,.48), rgba(111,25,213,.2));
        z-index: 0;
    }
    .method-steps-v15 li { position: relative; z-index: 1; }
    .method-steps-v15 li > span { box-shadow: 0 0 0 5px color-mix(in srgb, var(--surface) 88%, transparent); }
}

/* Legal pages */
.legal-main-v16 { padding: 28px 0 14px; }
.legal-hero-v16 {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--surface) 96%, var(--purple) 4%), var(--surface));
    box-shadow: var(--shadow-soft);
}
.legal-hero-v16 h1 { margin: 0 0 10px; font-size: clamp(34px, 5vw, 58px); line-height: 1; }
.legal-hero-v16 > p:last-child { max-width: 70ch; color: var(--muted); }
.legal-sections-v16 { display: grid; gap: 12px; padding-top: 16px; }
.legal-card-v16 {
    padding: 20px 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}
.legal-card-v16 h2 { margin-bottom: 8px; font-size: clamp(20px, 3vw, 27px); }
.legal-card-v16 p { margin: 8px 0 0; max-width: 88ch; color: var(--muted); }
.legal-updated-v16 { padding: 4px 2px 12px; color: var(--muted); font-size: 12px; }

/* Footer legal/social layer */
.footer-meta-v16 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px 18px;
    padding: 12px 4px 0;
}
.footer-legal-v16,
.footer-social-v16 { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; }
.footer-legal-v16 a,
.footer-social-v16 a { color: var(--muted); font-size: 10px; font-weight: 800; }
.footer-legal-v16 a:hover,
.footer-social-v16 a:hover { color: var(--purple-link); }
.footer-social-v16 a { display: inline-flex; align-items: center; gap: 6px; }
.footer-social-v16 img { width: 22px; height: 22px; border-radius: 7px; }

/* Keep Google brand mark clearly visible on both themes */
.google-g-logo {
    background: #fff;
    border: 1px solid rgba(15, 30, 70, .08);
    box-shadow: 0 5px 16px rgba(0,0,0,.13);
}
.google-g-logo img { width: 72%; height: 72%; }
html[data-theme='dark'] .google-g-logo { background: #fff; border-color: rgba(255,255,255,.16); }

@media (prefers-color-scheme: dark) {
    html[data-theme='auto'] .hero-note { color: #f3efff; background: rgba(13, 9, 28, .76); border-color: rgba(155,77,235,.42); }
    html[data-theme='auto'] .google-g-logo { background: #fff; border-color: rgba(255,255,255,.16); }
}

@media (max-width: 760px) {
    .hero-note {
        top: 12px;
        right: 12px;
        max-width: 165px;
        padding: 6px 9px;
        transform: rotate(-2deg);
    }
    .hero-note strong,
    .hero-note span { font-size: 12px; }
    .legal-main-v16 { padding-top: 14px; }
    .legal-hero-v16,
    .legal-card-v16 { padding: 16px; border-radius: 16px; }
    .footer-meta-v16 { align-items: flex-start; flex-direction: column; }
}

/* V1.6.1 contrast patch: explicit foregrounds on light brand-safe cards */
html[data-theme='dark'] .trust-card-logo,
html[data-theme='dark'] .credential-card { color-scheme: light; }
html[data-theme='dark'] .trust-card-logo .trust-copy strong,
html[data-theme='dark'] .credential-card h3 { color: #0a2352; }
html[data-theme='dark'] .trust-card-logo .trust-copy small,
html[data-theme='dark'] .credential-card p { color: #44516a; }
html[data-theme='dark'] .credential-card .text-link { color: #6814c8; }
html[data-theme='dark'] .section-link,
html[data-theme='dark'] .text-link:not(.credential-card .text-link),
html[data-theme='dark'] .footer-credit a,
html[data-theme='dark'] .footer-social-v16 a:hover,
html[data-theme='dark'] .footer-contact-v15 a:hover { color: var(--purple-link); }

@media (prefers-color-scheme: dark) {
    html[data-theme='auto'] .trust-card-logo,
    html[data-theme='auto'] .credential-card { color-scheme: light; }
    html[data-theme='auto'] .trust-card-logo .trust-copy strong,
    html[data-theme='auto'] .credential-card h3 { color: #0a2352; }
    html[data-theme='auto'] .trust-card-logo .trust-copy small,
    html[data-theme='auto'] .credential-card p { color: #44516a; }
    html[data-theme='auto'] .credential-card .text-link { color: #6814c8; }
    html[data-theme='auto'] .section-link,
    html[data-theme='auto'] .text-link:not(.credential-card .text-link),
    html[data-theme='auto'] .footer-credit a,
    html[data-theme='auto'] .footer-social-v16 a:hover,
    html[data-theme='auto'] .footer-contact-v15 a:hover { color: var(--purple-link); }
}

/* V1.6.2 — new Alpha Training 64 identity and integrated portraits */
:root {
    --brand-gold: #f5a623;
    --brand-gold-2: #ffbd4a;
    --purple: var(--brand-gold);
    --purple-2: var(--brand-gold-2);
    --purple-link: #a95700;
}
html[data-theme='dark'] { --purple-link: #ffc45c; }
@media (prefers-color-scheme: dark) {
    html[data-theme='auto'] { --purple-link: #ffc45c; }
}
:focus-visible { outline-color: rgba(245,166,35,.55); }

/* New horizontal logo stays faithful to navy + gold and remains legible in dark mode. */
.brand-v15 { width: 218px; min-height: 46px; padding: 2px 4px; }
.footer-logo-link { width: min(100%, 320px); }
html[data-theme='dark'] .brand-v15,
html[data-theme='dark'] .footer-logo-link {
    background: rgba(255,255,255,.97);
    border-radius: 12px;
    padding: 5px 9px;
}
html[data-theme='dark'] .brand-logo-dark { filter: none; }
@media (prefers-color-scheme: dark) {
    html[data-theme='auto'] .brand-v15,
    html[data-theme='auto'] .footer-logo-link {
        background: rgba(255,255,255,.97);
        border-radius: 12px;
        padding: 5px 9px;
    }
    html[data-theme='auto'] .brand-logo-dark { filter: none; }
}

/* Hero and about portraits use different focal compositions. */
.hero-photo-card img { object-position: 50% 48%; }
.profile-photo img { object-position: 50% 42%; }

/* Replace the previous purple visual accent with the logo's warm gold/orange. */
.hero-note {
    border-color: rgba(245,166,35,.38);
    box-shadow: 0 12px 28px rgba(120,74,0,.10);
}
.hero-note strong { color: #b76000; }
.trust-mark { background: #fff2d8; color: #b76000; }
.method-v15 {
    background: linear-gradient(120deg, #fffaf1, #fff2d7 72%, #fff8ea);
    border-color: rgba(245,166,35,.26);
}
.method-v15::after { background: radial-gradient(circle, rgba(245,166,35,.15), transparent 68%); }
.method-steps-v15 { border-color: rgba(245,166,35,.22); }
.method-steps-v15 li { border-color: rgba(245,166,35,.18); }
.method-steps-v15 li > span { background: linear-gradient(135deg, #e88a00, #ffbd4a); color: #0a2352; }
@media (min-width: 761px) {
    .method-steps-v15 li { border-left-color: rgba(245,166,35,.22); }
    .method-steps-v15::before { background: linear-gradient(90deg, rgba(245,166,35,.18), rgba(255,189,74,.72), rgba(245,166,35,.18)); }
}
html[data-theme='dark'] .method-v15 {
    background: linear-gradient(115deg, rgba(7,19,33,.98), rgba(36,29,18,.94));
    border-color: rgba(245,166,35,.34);
}
@media (prefers-color-scheme: dark) {
    html[data-theme='auto'] .method-v15 {
        background: linear-gradient(115deg, rgba(7,19,33,.98), rgba(36,29,18,.94));
        border-color: rgba(245,166,35,.34);
    }
}
.google-review-v15 {
    background:
        radial-gradient(circle at 85% 40%, rgba(255,189,74,.30), transparent 30%),
        linear-gradient(105deg, #0a2352, #143966 64%, #8a5100);
}
.contact-action-card,
.contact-location-v15 { background: color-mix(in srgb, var(--surface) 94%, var(--brand-gold) 6%); }
.contact-action-card:hover,
.contact-location-v15:hover { border-color: rgba(245,166,35,.46); }
.contact-icon { background: linear-gradient(135deg, #ff7a3d, #f5a623); }
.myproid-contact { border-color: rgba(245,166,35,.34); }

@media (max-width: 760px) {
    .site-header .brand-v15 { width: 170px; min-height: 42px; }
    .footer-logo-link { width: min(100%, 270px); }
}

/* V1.6.4 — mobile-first profile image: never crop Julien or the dogs */
.profile-photo {
    margin: 0;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: color-mix(in srgb, var(--surface) 94%, var(--brand-gold) 6%);
}
.profile-photo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
}
@media (max-width: 760px) {
    .about-card.about-compact {
        grid-template-columns: 1fr;
        align-items: start;
    }
    .profile-photo {
        width: 100%;
        aspect-ratio: auto;
    }
    .profile-photo img {
        width: 100%;
        height: auto;
        aspect-ratio: auto;
        object-fit: contain;
        object-position: center;
    }
    .profile-copy {
        padding-top: 2px;
    }
}
@media (min-width: 761px) {
    .about-compact {
        grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);
        align-items: center;
    }
    .profile-photo img {
        height: auto;
        aspect-ratio: auto;
        object-fit: contain;
    }
}
