:root {
    --v2-bg: #f6f2eb;
    --v2-bg-warm: #efe9dd;
    --v2-surface: #ffffff;
    --v2-surface-soft: #fbf8f2;
    --v2-ink: #1d3038;
    --v2-ink-soft: #5b6d6f;
    --v2-line: rgba(29, 48, 56, 0.12);
    --v2-line-soft: rgba(29, 48, 56, 0.06);
    --v2-accent: #4f7a6f;
    --v2-accent-strong: #2f5a50;
    --v2-accent-soft: #e1ebe6;
    --v2-gold: #b9894d;
    --v2-shadow-sm: 0 2px 12px rgba(29, 48, 56, 0.06);
    --v2-shadow: 0 24px 60px rgba(29, 48, 56, 0.10);
    --v2-radius: 14px;
    --v2-radius-lg: 22px;
    --v2-container: 1200px;
    --v2-container-narrow: 960px;
}

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

html {
    scroll-behavior: smooth;
}

body.idx-v2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--v2-ink);
    background: var(--v2-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.idx-v2 img {
    max-width: 100%;
    display: block;
}

/* Bare-anchor color reset — must NOT win over .v2-btn-* / .v2-cta etc. */
body.idx-v2 a:not([class]) { color: inherit; }

body.idx-v2 .skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    background: var(--v2-ink);
    color: #fff;
    padding: .65rem 1rem;
    border-radius: 999px;
    z-index: 1000;
}
body.idx-v2 .skip-link:focus { top: 1rem; }

.v2-wrap {
    width: min(calc(100% - 2rem), var(--v2-container));
    margin: 0 auto;
}

.v2-wrap-narrow {
    width: min(calc(100% - 2rem), var(--v2-container-narrow));
    margin: 0 auto;
}

/* ── Header ─────────────────────────────────────────────── */
.v2-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246, 242, 235, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--v2-line-soft);
}

.v2-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 76px;
}

.v2-brand {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.1;
    color: var(--v2-ink);
}

.v2-brand small {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--v2-accent);
    margin-bottom: .2rem;
}

.v2-brand strong {
    font-family: "Newsreader", serif;
    font-weight: 600;
    font-size: clamp(1.2rem, 1.6vw, 1.45rem);
    letter-spacing: -.01em;
}

.v2-nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.v2-nav a {
    text-decoration: none;
    font-size: .92rem;
    font-weight: 600;
    color: var(--v2-ink-soft);
    transition: color .2s ease;
}

.v2-nav a:hover { color: var(--v2-ink); }

.v2-nav .v2-cta {
    background: var(--v2-ink);
    color: #fff !important;
    padding: .65rem 1rem;
    border-radius: 999px;
    transition: background .2s ease, transform .2s ease;
}

.v2-nav .v2-cta:hover {
    background: var(--v2-accent-strong);
    transform: translateY(-1px);
}

.v2-menu {
    display: none;
    width: 44px; height: 44px;
    border: 1px solid var(--v2-line);
    background: var(--v2-surface);
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
}
.v2-menu span {
    display: block;
    width: 18px; height: 2px;
    background: var(--v2-ink);
    margin: 4px auto;
    transition: transform .25s ease, opacity .25s ease;
}
.v2-menu[aria-expanded="true"] span:first-child { transform: translateY(6px) rotate(45deg); }
.v2-menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.v2-menu[aria-expanded="true"] span:last-child { transform: translateY(-6px) rotate(-45deg); }

/* ── Buttons & shared bits ──────────────────────────────── */
.v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .9rem 1.35rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    white-space: nowrap;
}

.v2-btn-primary {
    background: var(--v2-ink);
    color: #fff;
}
.v2-btn-primary:hover {
    background: var(--v2-accent-strong);
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(29, 48, 56, 0.18);
}

.v2-btn-ghost {
    background: transparent;
    color: var(--v2-ink);
    border-color: var(--v2-ink);
}
.v2-btn-ghost:hover {
    background: var(--v2-ink);
    color: #fff;
}

.v2-btn-light {
    background: var(--v2-surface);
    color: var(--v2-ink);
    border-color: var(--v2-line);
}
.v2-btn-light:hover {
    border-color: var(--v2-ink);
    transform: translateY(-1px);
}

.v2-btn-tag {
    display: inline-block;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 700;
    padding: .15rem .5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: inherit;
    margin-right: .15rem;
}
.v2-btn-ghost .v2-btn-tag,
.v2-btn-light .v2-btn-tag {
    background: rgba(29, 48, 56, 0.08);
}

.v2-eyebrow {
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: .72rem;
    font-weight: 800;
    color: var(--v2-accent);
    margin: 0 0 .85rem;
}

.v2-rule {
    height: 1px;
    background: var(--v2-line);
    border: 0;
    margin: 0;
}

h1, h2, h3 {
    font-family: "Newsreader", serif;
    font-weight: 600;
    color: var(--v2-ink);
    letter-spacing: -.015em;
    line-height: 1.12;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin: 0; }
h2 { font-size: clamp(1.85rem, 3vw, 2.6rem); margin: 0; }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.35rem); margin: 0; }

p { margin: 0; }
p + p { margin-top: .75rem; }

/* ── Section rhythm ─────────────────────────────────────── */
.v2-section {
    padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.v2-section-tight { padding: clamp(2.5rem, 4vw, 3.75rem) 0; }

.v2-section-warm { background: var(--v2-bg-warm); }
.v2-section-ink {
    background: var(--v2-ink);
    color: #fff;
}
.v2-section-ink h2,
.v2-section-ink h3 { color: #fff; }
.v2-section-ink .v2-eyebrow { color: var(--v2-gold); }

/* ── Reveal animation ───────────────────────────────────── */
.v2-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s ease;
}
.v2-reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ── Hero ───────────────────────────────────────────────── */
.v2-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
    background:
        linear-gradient(180deg, rgba(246, 242, 235, 0) 0%, var(--v2-bg) 92%),
        radial-gradient(60% 60% at 80% 10%, rgba(79, 122, 111, 0.18) 0%, rgba(79, 122, 111, 0) 70%),
        var(--v2-bg);
}

.v2-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
}

/* ── Hero (full-bleed background image variant) ─────────── */
.v2-hero-bleed {
    color: #fff;
    background: var(--v2-ink);
    padding: clamp(8.5rem, 16vw, 12rem) 0 clamp(4.5rem, 8vw, 7rem);
    min-height: 88vh;
    display: flex;
    align-items: center;
    margin-top: -76px; /* pull up so image extends behind sticky header */
}

.v2-hero-bleed .v2-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.v2-hero-bleed .v2-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .9;
}
.v2-hero-bleed .v2-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg,
            rgba(15, 28, 32, 0.82) 0%,
            rgba(15, 28, 32, 0.55) 45%,
            rgba(15, 28, 32, 0.18) 100%),
        linear-gradient(180deg,
            rgba(15, 28, 32, 0.35) 0%,
            rgba(15, 28, 32, 0) 30%,
            rgba(15, 28, 32, 0.55) 100%);
}

.v2-hero-bleed > .v2-wrap {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 2rem), var(--v2-container));
}

.v2-hero-bleed .v2-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    max-width: 760px;
}

.v2-hero-bleed .v2-eyebrow,
.v2-hero-bleed h1 em {
    color: #e3c07a;
}

.v2-hero-bleed h1 {
    color: #fff;
}

.v2-hero-bleed .v2-hero-lead {
    color: rgba(255, 255, 255, 0.88);
}

.v2-hero-bleed .v2-hero-meta {
    border-top-color: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.78);
}
.v2-hero-bleed .v2-hero-meta strong {
    color: #fff;
}

.v2-hero-bleed .v2-btn-primary {
    background: #fff;
    color: var(--v2-ink);
}
.v2-hero-bleed .v2-btn-primary:hover {
    background: var(--v2-bg);
    color: var(--v2-ink);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.v2-hero-bleed .v2-btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
}
.v2-hero-bleed .v2-btn-ghost:hover {
    background: #fff;
    color: var(--v2-ink);
    border-color: #fff;
}

/* Floating portrait card */
.v2-hero-stamp {
    position: absolute;
    bottom: clamp(1.5rem, 4vw, 3rem);
    right: clamp(1.5rem, 4vw, 3rem);
    z-index: 2;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--v2-radius);
    padding: 1rem 1.15rem;
    display: flex;
    align-items: center;
    gap: .9rem;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
    color: var(--v2-ink);
    max-width: 320px;
}
.v2-hero-stamp-portrait {
    width: 52px; height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.v2-hero-stamp-portrait img { width: 100%; height: 100%; object-fit: cover; }
.v2-hero-stamp-text { line-height: 1.25; }
.v2-hero-stamp-text small {
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .68rem;
    color: var(--v2-accent);
    font-weight: 700;
}
.v2-hero-stamp-text strong {
    display: block;
    font-family: "Newsreader", serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: .15rem;
    color: var(--v2-ink);
}

/* Header transparent over a DARK bleed hero; flips to opaque on scroll.
   Scoped via :has() so the cream variant doesn't trigger white-text rules. */
body.idx-v2:has(.v2-hero-bleed:not(.v2-hero-bleed-cream)) .v2-header {
    background: transparent;
    border-bottom-color: transparent;
    transition: background .25s ease, border-color .25s ease;
}
body.idx-v2:has(.v2-hero-bleed:not(.v2-hero-bleed-cream)) .v2-header.is-scrolled {
    background: rgba(246, 242, 235, 0.92);
    border-bottom-color: var(--v2-line-soft);
}
body.idx-v2:has(.v2-hero-bleed:not(.v2-hero-bleed-cream)) .v2-header:not(.is-scrolled) .v2-brand,
body.idx-v2:has(.v2-hero-bleed:not(.v2-hero-bleed-cream)) .v2-header:not(.is-scrolled) .v2-brand strong {
    color: #fff;
}
body.idx-v2:has(.v2-hero-bleed:not(.v2-hero-bleed-cream)) .v2-header:not(.is-scrolled) .v2-brand small {
    color: #e3c07a;
}
body.idx-v2:has(.v2-hero-bleed:not(.v2-hero-bleed-cream)) .v2-header:not(.is-scrolled) .v2-nav a {
    color: rgba(255, 255, 255, 0.85);
}
body.idx-v2:has(.v2-hero-bleed:not(.v2-hero-bleed-cream)) .v2-header:not(.is-scrolled) .v2-nav a:hover {
    color: #fff;
}
body.idx-v2:has(.v2-hero-bleed:not(.v2-hero-bleed-cream)) .v2-header:not(.is-scrolled) .v2-nav .v2-cta {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
body.idx-v2:has(.v2-hero-bleed:not(.v2-hero-bleed-cream)) .v2-header:not(.is-scrolled) .v2-nav .v2-cta:hover {
    background: rgba(255, 255, 255, 0.32);
}
body.idx-v2:has(.v2-hero-bleed:not(.v2-hero-bleed-cream)) .v2-header:not(.is-scrolled) .v2-menu {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.4);
}
body.idx-v2:has(.v2-hero-bleed:not(.v2-hero-bleed-cream)) .v2-header:not(.is-scrolled) .v2-menu span {
    background: #fff;
}

/* ── Hero (cream-wash variant) ──────────────────────────── */
.v2-hero-bleed.v2-hero-bleed-cream {
    color: var(--v2-ink);
    background: var(--v2-bg);
}

.v2-hero-bleed.v2-hero-bleed-cream .v2-hero-bg img {
    opacity: .92;
}

.v2-hero-bleed.v2-hero-bleed-cream .v2-hero-bg::after {
    background:
        linear-gradient(105deg,
            rgba(246, 242, 235, 0.78) 0%,
            rgba(246, 242, 235, 0.50) 45%,
            rgba(246, 242, 235, 0.18) 100%),
        linear-gradient(180deg,
            rgba(246, 242, 235, 0.55) 0%,
            rgba(246, 242, 235, 0) 35%,
            rgba(246, 242, 235, 0.65) 100%);
}

.v2-hero-bleed.v2-hero-bleed-cream h1 {
    color: var(--v2-ink);
}
.v2-hero-bleed.v2-hero-bleed-cream h1 em {
    color: var(--v2-accent);
}
.v2-hero-bleed.v2-hero-bleed-cream .v2-eyebrow {
    color: var(--v2-accent);
}
.v2-hero-bleed.v2-hero-bleed-cream .v2-hero-lead {
    color: var(--v2-ink-soft);
}
.v2-hero-bleed.v2-hero-bleed-cream .v2-hero-meta {
    border-top-color: rgba(29, 48, 56, 0.22);
    color: var(--v2-ink-soft);
}
.v2-hero-bleed.v2-hero-bleed-cream .v2-hero-meta strong {
    color: var(--v2-ink);
}

/* Buttons revert to defaults (dark primary on cream reads fine) */
.v2-hero-bleed.v2-hero-bleed-cream .v2-btn-primary {
    background: var(--v2-ink);
    color: #fff;
}
.v2-hero-bleed.v2-hero-bleed-cream .v2-btn-primary:hover {
    background: var(--v2-accent-strong);
    color: #fff;
    box-shadow: 0 14px 28px rgba(29, 48, 56, 0.18);
}
.v2-hero-bleed.v2-hero-bleed-cream .v2-btn-ghost {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--v2-ink);
    border-color: var(--v2-ink);
}
.v2-hero-bleed.v2-hero-bleed-cream .v2-btn-ghost:hover {
    background: var(--v2-ink);
    color: #fff;
}

.v2-hero h1 {
    margin-top: .75rem;
}
.v2-hero h1 em {
    font-style: italic;
    color: var(--v2-accent);
    font-weight: 500;
}

.v2-hero-lead {
    font-size: 1.075rem;
    color: var(--v2-ink-soft);
    max-width: 38ch;
    margin-top: 1.4rem;
}

.v2-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 2rem;
}

.v2-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem 1.75rem;
    margin-top: 2.4rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--v2-line);
    color: var(--v2-ink-soft);
    font-size: .92rem;
}
.v2-hero-meta strong {
    display: block;
    font-family: "Newsreader", serif;
    font-size: 1.55rem;
    color: var(--v2-ink);
    line-height: 1;
}
.v2-hero-meta span { display: inline-block; }

.v2-hero-art {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--v2-radius-lg);
    overflow: hidden;
    box-shadow: var(--v2-shadow);
    background: var(--v2-surface);
}
.v2-hero-art img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.v2-hero-tag {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    right: 1.2rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-radius: var(--v2-radius);
    padding: 1rem 1.15rem;
    display: flex;
    align-items: center;
    gap: .9rem;
    box-shadow: var(--v2-shadow-sm);
}
.v2-hero-tag-portrait {
    width: 48px; height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.v2-hero-tag-portrait img { width: 100%; height: 100%; object-fit: cover; }
.v2-hero-tag-text {
    line-height: 1.25;
}
.v2-hero-tag-text small {
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .68rem;
    color: var(--v2-accent);
    font-weight: 700;
}
.v2-hero-tag-text strong {
    display: block;
    font-family: "Newsreader", serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: .15rem;
}

/* ── Stats ribbon ───────────────────────────────────────── */
.v2-ribbon {
    border-top: 1px solid var(--v2-line);
    border-bottom: 1px solid var(--v2-line);
    background: var(--v2-surface-soft);
}
.v2-ribbon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.v2-ribbon-grid > * {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: baseline;
    gap: .75rem;
    border-left: 1px solid var(--v2-line-soft);
}
.v2-ribbon-grid > *:first-child { border-left: 0; }
.v2-ribbon-grid strong {
    font-family: "Newsreader", serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
}
.v2-ribbon-grid span {
    color: var(--v2-ink-soft);
    font-size: .9rem;
}

/* ── Search / IDX ──────────────────────────────────────── */
.v2-search-head {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 2rem;
    align-items: end;
    margin-bottom: 2.2rem;
}
.v2-search-head p {
    color: var(--v2-ink-soft);
    max-width: 50ch;
}

.v2-search-frame {
    background: var(--v2-surface);
    border: 1px solid var(--v2-line);
    border-radius: var(--v2-radius-lg);
    padding: .6rem;
    box-shadow: var(--v2-shadow);
    overflow: hidden;
}

.v2-search-frame-bar {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem .75rem .75rem;
}
.v2-search-frame-bar i {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--v2-line);
    display: inline-block;
}
.v2-search-frame-bar i:first-child { background: #e2716a; }
.v2-search-frame-bar i:nth-child(2) { background: #e3b04a; }
.v2-search-frame-bar i:nth-child(3) { background: #6fae8e; }
.v2-search-frame-bar small {
    margin-left: auto;
    font-size: .78rem;
    color: var(--v2-ink-soft);
    font-weight: 600;
}

.v2-search-iframe {
    border-radius: calc(var(--v2-radius-lg) - 6px);
    overflow: hidden;
    background: var(--v2-bg);
}
.v2-search-iframe iframe {
    width: 100%;
    height: 720px;
    border: 0;
    display: block;
}

.v2-search-aside {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    color: var(--v2-ink-soft);
    font-size: .95rem;
}

/* ── Meet Ally ──────────────────────────────────────────── */
.v2-meet {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.v2-meet-photo {
    position: relative;
    border-radius: var(--v2-radius-lg);
    overflow: hidden;
    aspect-ratio: 5 / 6;
    box-shadow: var(--v2-shadow);
}
.v2-meet-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.v2-meet-photo-stamp {
    position: absolute;
    left: 1rem; bottom: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--v2-radius);
    padding: .85rem 1rem;
    display: flex;
    align-items: center;
    gap: .85rem;
    box-shadow: var(--v2-shadow-sm);
    max-width: calc(100% - 2rem);
}
.v2-meet-photo-stamp img {
    width: 92px; height: auto;
    flex-shrink: 0;
}
.v2-meet-photo-stamp p {
    font-size: .82rem;
    color: var(--v2-ink-soft);
    line-height: 1.35;
}

.v2-meet-body p {
    color: var(--v2-ink-soft);
    margin-top: 1.1rem;
    max-width: 56ch;
}

.v2-meet-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-top: 1.5rem;
}
.v2-meet-tags span {
    background: var(--v2-accent-soft);
    color: var(--v2-accent-strong);
    padding: .4rem .75rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .02em;
}

.v2-meet-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 2rem;
}

/* ── Audience rows ──────────────────────────────────────── */
.v2-audience-intro {
    max-width: 56ch;
    margin: 0 auto 3rem;
    text-align: center;
}
.v2-audience-intro p {
    color: var(--v2-ink-soft);
    margin-top: 1rem;
}

.v2-audience-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
    padding: clamp(2rem, 4vw, 3rem) 0;
    border-top: 1px solid var(--v2-line);
}
.v2-audience-row:last-child { border-bottom: 1px solid var(--v2-line); }

.v2-audience-row.v2-flip .v2-audience-photo { order: 2; }

.v2-audience-photo {
    aspect-ratio: 4 / 3;
    border-radius: var(--v2-radius-lg);
    overflow: hidden;
    box-shadow: var(--v2-shadow);
}
.v2-audience-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.v2-audience-num {
    font-family: "Newsreader", serif;
    color: var(--v2-accent);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: .04em;
}

.v2-audience-body h3 {
    margin-top: .5rem;
    font-size: clamp(1.5rem, 2.4vw, 1.95rem);
}

.v2-audience-body p {
    color: var(--v2-ink-soft);
    margin-top: 1rem;
    max-width: 50ch;
}

.v2-audience-list {
    list-style: none;
    margin: 1.4rem 0 0;
    padding: 0;
    display: grid;
    gap: .55rem;
}
.v2-audience-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--v2-ink);
}
.v2-audience-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 8px; height: 8px;
    background: var(--v2-accent);
    border-radius: 50%;
}

.v2-audience-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: 1.5rem;
    text-decoration: none;
    color: var(--v2-ink);
    font-weight: 700;
    border-bottom: 1px solid var(--v2-ink);
    padding-bottom: .15rem;
    transition: color .2s ease, border-color .2s ease, gap .2s ease;
}
.v2-audience-link:hover {
    color: var(--v2-accent);
    border-color: var(--v2-accent);
    gap: .65rem;
}

/* ── Areas (regions + city chips) ───────────────────────── */
.v2-areas-head {
    text-align: center;
    max-width: 60ch;
    margin: 0 auto 3rem;
}
.v2-areas-head p {
    color: var(--v2-ink-soft);
    margin-top: 1rem;
}

.v2-regions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.v2-region {
    background: var(--v2-surface);
    border: 1px solid var(--v2-line);
    border-radius: var(--v2-radius-lg);
    padding: 1.75rem;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.v2-region:hover {
    border-color: var(--v2-accent);
    transform: translateY(-3px);
    box-shadow: var(--v2-shadow);
}
.v2-region-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--v2-accent);
    font-weight: 700;
}
.v2-region h3 {
    margin: .5rem 0 1rem;
    font-size: 1.3rem;
}
.v2-region-cities {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}
.v2-region-cities span {
    border: 1px solid var(--v2-line);
    color: var(--v2-ink);
    background: var(--v2-surface-soft);
    border-radius: 999px;
    padding: .35rem .75rem;
    font-size: .82rem;
    font-weight: 600;
}

/* ── Process ────────────────────────────────────────────── */
.v2-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    counter-reset: step;
    margin-top: 3rem;
}
.v2-process-step {
    position: relative;
    padding: 1.75rem 1.4rem 1.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--v2-radius-lg);
}
.v2-process-step::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    font-family: "Newsreader", serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--v2-gold);
    line-height: 1;
}
.v2-process-step h3 {
    color: #fff;
    margin: 1rem 0 .65rem;
    font-size: 1.18rem;
}
.v2-process-step p {
    color: rgba(255, 255, 255, 0.75);
    font-size: .95rem;
}

/* ── Proof / reviews ────────────────────────────────────── */
.v2-proof {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.v2-proof-rating {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.v2-proof-rating-num {
    font-family: "Newsreader", serif;
    font-size: 4rem;
    font-weight: 600;
    color: var(--v2-ink);
    line-height: 1;
}
.v2-proof-rating-stars {
    color: var(--v2-gold);
    font-size: 1.1rem;
    letter-spacing: .15em;
}
.v2-proof-rating-stars span {
    display: block;
    color: var(--v2-ink-soft);
    font-size: .85rem;
    letter-spacing: 0;
    margin-top: .25rem;
}

.v2-proof-body p {
    color: var(--v2-ink-soft);
    max-width: 56ch;
    margin-top: 1rem;
}

.v2-proof-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.v2-proof-quotes {
    display: grid;
    gap: 1rem;
}

.v2-quote {
    background: var(--v2-surface);
    border: 1px solid var(--v2-line);
    border-radius: var(--v2-radius);
    padding: 1.5rem 1.6rem;
    position: relative;
}
.v2-quote::before {
    content: "\201C";
    position: absolute;
    top: -.6rem;
    left: 1rem;
    font-family: "Newsreader", serif;
    font-size: 3.2rem;
    color: var(--v2-accent);
    line-height: 1;
}
.v2-quote h3 {
    font-size: 1.05rem;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    margin-bottom: .35rem;
}
.v2-quote p {
    color: var(--v2-ink-soft);
    font-size: .95rem;
}

/* ── Home value strip ───────────────────────────────────── */
.v2-value {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.75rem, 3vw, 3rem);
    background: var(--v2-surface);
    border: 1px solid var(--v2-line);
    border-radius: var(--v2-radius-lg);
    box-shadow: var(--v2-shadow);
}
.v2-value h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
.v2-value p {
    color: var(--v2-ink-soft);
    margin-top: .65rem;
    max-width: 50ch;
}
.v2-value-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

/* ── FAQ ────────────────────────────────────────────────── */
.v2-faq {
    max-width: 760px;
    margin: 2.5rem auto 0;
}

.v2-faq details {
    border-top: 1px solid var(--v2-line);
    padding: 1.25rem .25rem;
    transition: padding .2s ease;
}
.v2-faq details:last-of-type { border-bottom: 1px solid var(--v2-line); }

.v2-faq summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: "Newsreader", serif;
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--v2-ink);
}
.v2-faq summary::-webkit-details-marker { display: none; }

.v2-faq summary::after {
    content: "+";
    font-size: 1.6rem;
    color: var(--v2-accent);
    line-height: 1;
    transition: transform .2s ease;
}
.v2-faq details[open] summary::after { content: "−"; }

.v2-faq details > p {
    color: var(--v2-ink-soft);
    margin-top: .9rem;
    max-width: 64ch;
}

/* ── Contact ────────────────────────────────────────────── */
.v2-contact {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: stretch;
}

.v2-contact-card {
    background: var(--v2-surface);
    border-radius: var(--v2-radius-lg);
    padding: clamp(2rem, 4vw, 2.75rem);
    border: 1px solid var(--v2-line);
    box-shadow: var(--v2-shadow);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.v2-contact-card img.v2-hs-logo {
    height: 44px;
    width: auto;
}
.v2-contact-card a { color: var(--v2-ink); }

.v2-contact-row {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    padding-top: 1rem;
    border-top: 1px solid var(--v2-line-soft);
}
.v2-contact-row:first-of-type { border-top: 0; padding-top: 0; }
.v2-contact-row-label {
    width: 96px;
    flex-shrink: 0;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--v2-accent);
    font-weight: 700;
    padding-top: .15rem;
}
.v2-contact-row-value {
    flex: 1;
    font-weight: 600;
}
.v2-contact-row-value a { text-decoration: none; }
.v2-contact-row-value a:hover { color: var(--v2-accent); }

.v2-contact-body p {
    color: var(--v2-ink-soft);
    margin-top: 1rem;
    max-width: 50ch;
}

.v2-contact-actions {
    margin-top: 1.75rem;
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

/* ── Footer ─────────────────────────────────────────────── */
.v2-footer {
    background: var(--v2-ink);
    color: rgba(255, 255, 255, 0.78);
    padding: 2rem 0;
    font-size: .9rem;
}
.v2-footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.v2-footer a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 1px;
}
.v2-footer a:hover { border-color: #fff; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 980px) {
    .v2-hero-grid,
    .v2-meet,
    .v2-search-head,
    .v2-proof,
    .v2-contact {
        grid-template-columns: 1fr;
    }
    .v2-hero-art { aspect-ratio: 16 / 11; max-height: 520px; }
    .v2-hero-bleed { min-height: auto; padding-bottom: clamp(8rem, 20vw, 11rem); }
    .v2-hero-stamp {
        right: clamp(1rem, 4vw, 1.5rem);
        bottom: clamp(1rem, 4vw, 1.5rem);
        max-width: calc(100% - 2rem);
    }
    .v2-meet-photo { aspect-ratio: 4 / 3; }
    .v2-regions { grid-template-columns: 1fr; }
    .v2-process-grid { grid-template-columns: repeat(2, 1fr); }
    .v2-audience-row { grid-template-columns: 1fr; }
    .v2-audience-row.v2-flip .v2-audience-photo { order: 0; }
    .v2-value { grid-template-columns: 1fr; }
    .v2-search-iframe iframe { height: 600px; }
}

@media (max-width: 720px) {
    .v2-menu { display: inline-flex; align-items: center; justify-content: center; flex-direction: column; }
    .v2-nav {
        position: fixed;
        inset: 76px 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        gap: .25rem;
        padding: 1rem 1.5rem 1.5rem;
        background: var(--v2-bg);
        border-bottom: 1px solid var(--v2-line);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: transform .25s ease, opacity .25s ease;
    }
    .v2-nav.is-open {
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }
    .v2-nav a {
        padding: .85rem .5rem;
        border-bottom: 1px solid var(--v2-line-soft);
    }
    .v2-nav .v2-cta {
        margin-top: .75rem;
        text-align: center;
        border-bottom: 0;
    }

    .v2-ribbon-grid { grid-template-columns: 1fr; }
    .v2-ribbon-grid > * { border-left: 0; border-top: 1px solid var(--v2-line-soft); }
    .v2-ribbon-grid > *:first-child { border-top: 0; }

    .v2-process-grid { grid-template-columns: 1fr; }

    .v2-search-iframe iframe { height: 520px; }

    .v2-hero-meta { gap: 1rem 1.25rem; }
    .v2-hero-meta strong { font-size: 1.3rem; }
}
