/* =========================================================================
   Ally Himes-Calhoun · v2 site stylesheet
   Hand-rolled, mobile-first. Independent of Filament's Tailwind build.
   ========================================================================= */

:root {
    --v2-bg: #fbfaf7;
    --v2-bg-alt: #f3efe8;
    --v2-ink: #1c1c1c;
    --v2-ink-soft: #4a4a4a;
    --v2-ink-muted: #76736e;
    --v2-line: #e3ddd2;
    --v2-brand: #2e3d2f;          /* deep moss green — local, trustworthy */
    --v2-brand-soft: #4d6650;
    --v2-accent: #b87333;         /* warm copper for CTAs */
    --v2-accent-hover: #9a5e26;
    --v2-white: #ffffff;
    --v2-shadow-sm: 0 1px 2px rgba(28, 28, 28, 0.05);
    --v2-shadow-md: 0 8px 28px rgba(28, 28, 28, 0.08);
    --v2-radius: 6px;
    --v2-max: 1180px;
    --v2-font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --v2-font-serif: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--v2-bg);
    color: var(--v2-ink);
    font-family: var(--v2-font-sans);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--v2-brand); text-decoration: none; }
a:hover { color: var(--v2-accent); }

.v2-wrap { max-width: var(--v2-max); margin: 0 auto; padding: 0 1.25rem; }

.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--v2-ink); color: #fff; padding: 0.5rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--v2-font-serif);
    color: var(--v2-ink);
    line-height: 1.18;
    margin: 0 0 0.6em;
    font-weight: 600;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p { margin: 0 0 1em; color: var(--v2-ink-soft); }
.eyebrow {
    font-family: var(--v2-font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--v2-brand-soft);
    margin: 0 0 0.75rem;
}

/* ---------- Header / Nav ---------- */
.v2-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--v2-line);
    position: sticky; top: 0; z-index: 50;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}
.v2-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1.25rem;
    max-width: var(--v2-max);
    margin: 0 auto;
}
.v2-brand {
    font-family: var(--v2-font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--v2-ink);
    letter-spacing: -0.01em;
}
.v2-brand small {
    display: block;
    font-family: var(--v2-font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--v2-ink-muted);
    margin-top: 2px;
}
.v2-nav { display: none; gap: 1.6rem; }
.v2-nav a {
    color: var(--v2-ink-soft);
    font-weight: 500;
    font-size: 0.95rem;
}
.v2-nav a:hover, .v2-nav a[aria-current="page"] {
    color: var(--v2-brand);
}
.v2-nav-cta {
    display: inline-flex;
    align-items: center;
    background: var(--v2-brand);
    color: var(--v2-white);
    padding: 0.55rem 1.1rem;
    border-radius: var(--v2-radius);
    font-size: 0.92rem;
    font-weight: 600;
}
.v2-nav-cta:hover { background: var(--v2-brand-soft); color: var(--v2-white); }

@media (min-width: 880px) {
    .v2-nav { display: flex; }
}

/* ---------- Buttons ---------- */
.v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.85rem 1.4rem;
    border-radius: var(--v2-radius);
    font-weight: 600;
    font-size: 0.98rem;
    line-height: 1;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.v2-btn-primary {
    background: var(--v2-accent);
    color: var(--v2-white);
}
.v2-btn-primary:hover { background: var(--v2-accent-hover); color: var(--v2-white); }
.v2-btn-secondary {
    background: transparent;
    color: var(--v2-brand);
    border-color: var(--v2-brand);
}
.v2-btn-secondary:hover { background: var(--v2-brand); color: var(--v2-white); }

/* ---------- Hero ---------- */
.v2-hero {
    background: linear-gradient(180deg, #f7f3eb 0%, var(--v2-bg) 100%);
    padding: 4rem 0 4.5rem;
    border-bottom: 1px solid var(--v2-line);
}
.v2-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
.v2-hero h1 { margin-top: 0.5rem; }
.v2-hero-lead {
    font-size: 1.15rem;
    color: var(--v2-ink-soft);
    max-width: 36rem;
}
.v2-hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.v2-hero-card {
    background: var(--v2-white);
    border: 1px solid var(--v2-line);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--v2-shadow-md);
}
.v2-hero-card h3 { margin: 0 0 0.5rem; font-size: 1.15rem; }
.v2-hero-card .v2-stat {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--v2-line);
}
.v2-hero-card .v2-stat:last-child { border-bottom: none; }
.v2-hero-card .v2-stat-label { color: var(--v2-ink-muted); font-size: 0.92rem; }
.v2-hero-card .v2-stat-value { font-family: var(--v2-font-serif); font-size: 1.2rem; color: var(--v2-ink); }

@media (min-width: 880px) {
    .v2-hero-grid { grid-template-columns: 1.4fr 1fr; gap: 4rem; }
}

/* ---------- Sections ---------- */
.v2-section { padding: 4rem 0; }
.v2-section-alt { background: var(--v2-bg-alt); }
.v2-section-head { max-width: 42rem; margin: 0 auto 2.5rem; text-align: center; }
.v2-section-head p { color: var(--v2-ink-muted); font-size: 1.05rem; }

/* ---------- Cards / Grids ---------- */
.v2-grid { display: grid; gap: 1.5rem; }
.v2-grid-2 { grid-template-columns: 1fr; }
.v2-grid-3 { grid-template-columns: 1fr; }
.v2-grid-4 { grid-template-columns: 1fr; }
@media (min-width: 700px) {
    .v2-grid-2 { grid-template-columns: repeat(2, 1fr); }
    .v2-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .v2-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
    .v2-grid-3 { grid-template-columns: repeat(3, 1fr); }
    .v2-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.v2-card {
    background: var(--v2-white);
    border: 1px solid var(--v2-line);
    border-radius: 10px;
    padding: 1.6rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.v2-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--v2-shadow-md);
}
.v2-card h3 { margin-top: 0; }
.v2-card-link {
    display: inline-flex; align-items: center; gap: 0.3rem;
    font-weight: 600; font-size: 0.93rem;
    color: var(--v2-brand);
}
.v2-card-link::after { content: "→"; transition: transform 0.18s ease; }
.v2-card:hover .v2-card-link::after { transform: translateX(3px); }

/* Pathway (buyer/seller) */
.v2-pathway {
    background: var(--v2-white);
    border: 1px solid var(--v2-line);
    border-radius: 12px;
    padding: 2rem;
}
.v2-pathway h3 { font-size: 1.5rem; }
.v2-pathway ul {
    list-style: none; padding: 0; margin: 1rem 0;
    display: grid; gap: 0.5rem;
}
.v2-pathway li {
    padding-left: 1.5rem; position: relative;
    color: var(--v2-ink-soft); font-size: 0.97rem;
}
.v2-pathway li::before {
    content: "✓"; position: absolute; left: 0;
    color: var(--v2-brand); font-weight: 700;
}

/* Testimonials */
.v2-quote {
    background: var(--v2-white);
    border: 1px solid var(--v2-line);
    border-left: 4px solid var(--v2-accent);
    border-radius: 8px;
    padding: 1.6rem;
}
.v2-quote p { font-family: var(--v2-font-serif); font-size: 1.1rem; color: var(--v2-ink); margin: 0 0 0.75rem; }
.v2-quote cite { font-style: normal; font-size: 0.9rem; color: var(--v2-ink-muted); }

/* Listings */
.v2-listing {
    background: var(--v2-white);
    border: 1px solid var(--v2-line);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.v2-listing:hover { transform: translateY(-3px); box-shadow: var(--v2-shadow-md); }
.v2-listing-image {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #d9d4c9, #b8b09f);
    display: flex; align-items: center; justify-content: center;
    color: var(--v2-white); font-family: var(--v2-font-serif); font-size: 1rem;
}
.v2-listing-body { padding: 1.1rem 1.25rem 1.4rem; }
.v2-listing-price { font-family: var(--v2-font-serif); font-size: 1.4rem; color: var(--v2-ink); margin: 0; }
.v2-listing-meta { font-size: 0.88rem; color: var(--v2-ink-muted); margin: 0.25rem 0 0.5rem; }
.v2-listing-address { font-size: 0.95rem; color: var(--v2-ink-soft); margin: 0; }

/* Quick-link tiles for location pages */
.v2-cities {
    display: grid; gap: 0.6rem;
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) { .v2-cities { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .v2-cities { grid-template-columns: repeat(4, 1fr); } }
.v2-city-tile {
    display: block;
    background: var(--v2-white);
    border: 1px solid var(--v2-line);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    text-align: left;
    color: var(--v2-ink);
    font-weight: 500;
    transition: border-color 0.18s ease, color 0.18s ease;
}
.v2-city-tile:hover {
    border-color: var(--v2-brand);
    color: var(--v2-brand);
}
.v2-city-tile small {
    display: block; font-size: 0.8rem; color: var(--v2-ink-muted); font-weight: 400; margin-top: 2px;
}

/* CTA band */
.v2-cta-band {
    background: var(--v2-brand);
    color: var(--v2-white);
    padding: 3.5rem 0;
    text-align: center;
}
.v2-cta-band h2 { color: var(--v2-white); }
.v2-cta-band p { color: rgba(255,255,255,0.85); max-width: 36rem; margin: 0 auto 1.5rem; }
.v2-cta-band .v2-btn-primary { background: var(--v2-accent); }
.v2-cta-band .v2-btn-secondary { color: var(--v2-white); border-color: rgba(255,255,255,0.4); }
.v2-cta-band .v2-btn-secondary:hover { background: var(--v2-white); color: var(--v2-brand); border-color: var(--v2-white); }

/* ---------- Footer ---------- */
.v2-footer {
    background: var(--v2-ink);
    color: rgba(255,255,255,0.75);
    padding: 3rem 0 1.5rem;
    font-size: 0.92rem;
}
.v2-footer a { color: rgba(255,255,255,0.85); }
.v2-footer a:hover { color: var(--v2-white); }
.v2-footer-grid {
    display: grid; gap: 2rem;
    grid-template-columns: 1fr;
}
@media (min-width: 700px) { .v2-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.v2-footer h4 {
    color: var(--v2-white);
    font-family: var(--v2-font-sans);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    margin: 0 0 0.85rem;
}
.v2-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.4rem; }
.v2-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 2.5rem;
    padding-top: 1.2rem;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem;
}

/* ---------- Page header (interior pages) ---------- */
.v2-page-header {
    padding: 3.5rem 0 2rem;
    background: linear-gradient(180deg, #f7f3eb 0%, var(--v2-bg) 100%);
    border-bottom: 1px solid var(--v2-line);
}
.v2-page-header .eyebrow { margin-bottom: 1rem; }
.v2-page-header p { max-width: 38rem; font-size: 1.08rem; }

/* ---------- "Coming soon" stub block ---------- */
.v2-stub {
    background: var(--v2-white);
    border: 1px dashed var(--v2-line);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    color: var(--v2-ink-muted);
    font-size: 0.95rem;
}
.v2-stub strong { color: var(--v2-ink); display: block; margin-bottom: 0.4rem; font-size: 1.05rem; }

/* ---------- Prose (content pages) ---------- */
.v2-prose {
    max-width: 42rem;
    margin: 0 auto;
}
.v2-prose h2 { margin-top: 2.5rem; }
.v2-prose h3 { margin-top: 2rem; }
.v2-prose ul, .v2-prose ol { padding-left: 1.25rem; color: var(--v2-ink-soft); }
.v2-prose li { margin-bottom: 0.4rem; }

/* ---------- Utility ---------- */
.v2-text-center { text-align: center; }
.v2-mt-2 { margin-top: 2rem; }

/* =========================================================================
   Bleed hero (full-bg image with transparent header treatment)
   ========================================================================= */

/* When a bleed hero is present, the header overlays it transparently
   until scrolled. Uses :has() — supported in all current evergreen browsers. */
html:has(.v2-hero-bleed),
html:has(.v2-page-header-bleed) {
    background-color: var(--v2-ink);
}
body:has(.v2-hero-bleed) .v2-header,
body:has(.v2-page-header-bleed) .v2-header {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
}
body:has(.v2-hero-bleed) .v2-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--v2-line);
}
body:has(.v2-hero-bleed) .v2-header:not(.is-scrolled) .v2-brand,
body:has(.v2-hero-bleed) .v2-header:not(.is-scrolled) .v2-brand small {
    color: #fff;
}
body:has(.v2-hero-bleed) .v2-header:not(.is-scrolled) .v2-brand small {
    color: rgba(255, 255, 255, 0.78);
}
body:has(.v2-hero-bleed) .v2-header:not(.is-scrolled) .v2-nav a {
    color: rgba(255, 255, 255, 0.88);
}
body:has(.v2-hero-bleed) .v2-header:not(.is-scrolled) .v2-nav a:hover {
    color: #fff;
}
body:has(.v2-hero-bleed) .v2-header:not(.is-scrolled) .v2-nav-cta {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
body:has(.v2-hero-bleed) .v2-header:not(.is-scrolled) .v2-nav-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* Hero shell */
.v2-hero-bleed {
    position: relative;
    color: #fff;
    background: var(--v2-ink);
    padding: clamp(8rem, 16vw, 12rem) 0 clamp(4.5rem, 8vw, 7rem);
    min-height: 86vh;
    display: flex;
    align-items: center;
    margin-top: -88px; /* pull image up under sticky header */
    overflow: hidden;
}
.v2-hero-bleed-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.v2-hero-bleed-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.92;
}
.v2-hero-bleed-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg,
            rgba(15, 28, 32, 0.78) 0%,
            rgba(15, 28, 32, 0.5) 45%,
            rgba(15, 28, 32, 0.18) 100%),
        linear-gradient(180deg,
            rgba(15, 28, 32, 0.3) 0%,
            rgba(15, 28, 32, 0) 30%,
            rgba(15, 28, 32, 0.55) 100%);
}
.v2-hero-bleed > .v2-wrap {
    position: relative;
    z-index: 1;
}
.v2-hero-bleed .v2-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 760px;
    align-items: start;
}
.v2-hero-bleed h1 { color: #fff; }
.v2-hero-bleed .eyebrow { color: #e3c07a; }
.v2-hero-bleed .v2-hero-lead { color: rgba(255, 255, 255, 0.9); }

.v2-hero-bleed .v2-btn-primary {
    background: var(--v2-accent);
    color: #fff;
}
.v2-hero-bleed .v2-btn-primary:hover {
    background: var(--v2-accent-hover);
    color: #fff;
}
.v2-hero-bleed .v2-btn-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.v2-hero-bleed .v2-btn-secondary:hover {
    background: #fff;
    color: var(--v2-brand);
    border-color: #fff;
}

/* Stats strip on bleed hero */
.v2-hero-meta {
    display: grid;
    gap: 1.25rem 2rem;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}
.v2-hero-meta strong {
    display: block;
    font-family: var(--v2-font-serif);
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

/* Floating portrait stamp */
.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: 0.9rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    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: 0.16em;
    font-size: 0.66rem;
    color: var(--v2-accent);
    font-weight: 700;
}
.v2-hero-stamp-text strong {
    display: block;
    font-family: var(--v2-font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 0.15rem;
    color: var(--v2-ink);
}

/* Listing image variant: real photo (overrides gradient placeholder) */
.v2-listing-image-photo {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--v2-bg-alt);
}
.v2-listing-image-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.v2-listing:hover .v2-listing-image-photo img { transform: scale(1.04); }

/* Page header bleed (interior pages over a photo) */
.v2-page-header-bleed {
    position: relative;
    color: #fff;
    background: var(--v2-ink);
    padding: clamp(7rem, 14vw, 10rem) 0 clamp(3rem, 6vw, 5rem);
    margin-top: -68px;
    overflow: hidden;
}
.v2-page-header-bleed-bg { position: absolute; inset: 0; z-index: 0; }
.v2-page-header-bleed-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.88; }
.v2-page-header-bleed-bg::after {
    content: ""; position: absolute; inset: 0;
    background:
        linear-gradient(105deg,
            rgba(15, 28, 32, 0.72) 0%,
            rgba(15, 28, 32, 0.45) 50%,
            rgba(15, 28, 32, 0.2) 100%),
        linear-gradient(180deg,
            rgba(15, 28, 32, 0.25) 0%,
            rgba(15, 28, 32, 0) 40%,
            rgba(15, 28, 32, 0.45) 100%);
}
.v2-page-header-bleed > .v2-wrap { position: relative; z-index: 1; }
.v2-page-header-bleed h1 { color: #fff; }
.v2-page-header-bleed .eyebrow { color: #e3c07a; }
.v2-page-header-bleed p { color: rgba(255, 255, 255, 0.88); max-width: 38rem; }

/* About / portrait pairing */
.v2-portrait-figure {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--v2-shadow-md);
}
.v2-portrait-figure img { width: 100%; height: auto; display: block; }

/* =========================================================================
   Content blocks — process steps, FAQs, intent cards, callouts
   ========================================================================= */

/* Numbered process steps */
.v2-steps {
    list-style: none;
    counter-reset: step;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 1.25rem;
}
.v2-steps li {
    counter-increment: step;
    background: var(--v2-white);
    border: 1px solid var(--v2-line);
    border-radius: 10px;
    padding: 1.4rem 1.5rem 1.4rem 4.5rem;
    position: relative;
    color: var(--v2-ink-soft);
}
.v2-steps li::before {
    content: counter(step);
    position: absolute;
    left: 1.25rem;
    top: 1.25rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--v2-brand);
    color: var(--v2-white);
    font-family: var(--v2-font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}
.v2-steps li strong {
    display: block;
    font-family: var(--v2-font-serif);
    font-size: 1.1rem;
    color: var(--v2-ink);
    margin-bottom: 0.3rem;
}

/* FAQ accordion (uses native <details>) */
.v2-faq {
    display: grid;
    gap: 0.6rem;
    margin: 1.5rem 0 0;
}
.v2-faq details {
    background: var(--v2-white);
    border: 1px solid var(--v2-line);
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
}
.v2-faq summary {
    cursor: pointer;
    list-style: none;
    padding: 1.1rem 1.25rem;
    font-weight: 600;
    color: var(--v2-ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.v2-faq summary::-webkit-details-marker { display: none; }
.v2-faq summary::after {
    content: "+";
    color: var(--v2-brand);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.18s ease;
}
.v2-faq details[open] summary::after { transform: rotate(45deg); }
.v2-faq details > p,
.v2-faq details > ul {
    padding: 0 1.25rem 1.25rem;
    margin: 0;
    color: var(--v2-ink-soft);
}
.v2-faq details > ul { padding-left: 2.5rem; }

/* Intent cards (3-up "what's your situation" picker) */
.v2-intent-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    margin-top: 2rem;
}
@media (min-width: 700px) {
    .v2-intent-grid { grid-template-columns: repeat(3, 1fr); }
}
.v2-intent-card {
    display: block;
    background: var(--v2-white);
    border: 1px solid var(--v2-line);
    border-radius: 10px;
    padding: 1.5rem;
    color: var(--v2-ink);
    transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.v2-intent-card:hover {
    border-color: var(--v2-brand);
    transform: translateY(-2px);
    box-shadow: var(--v2-shadow-md);
    color: var(--v2-ink);
}
.v2-intent-card h3 { font-size: 1.15rem; margin: 0 0 0.4rem; }
.v2-intent-card p { font-size: 0.95rem; margin: 0 0 0.6rem; }
.v2-intent-card span {
    color: var(--v2-brand);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Inline callout / aside */
.v2-callout {
    background: var(--v2-bg-alt);
    border-left: 4px solid var(--v2-brand);
    border-radius: 6px;
    padding: 1.1rem 1.25rem;
    margin: 1.5rem 0;
    font-size: 0.97rem;
    color: var(--v2-ink-soft);
}
.v2-callout strong { color: var(--v2-ink); display: block; margin-bottom: 0.2rem; }

/* Editor placeholder marker */
.v2-editor-note {
    background: #fff8e6;
    border: 1px dashed #d6b656;
    border-radius: 6px;
    padding: 0.7rem 1rem;
    margin: 1rem 0;
    font-size: 0.86rem;
    color: #6b5a1a;
    font-family: var(--v2-font-sans);
}
.v2-editor-note strong { color: #4a3e0d; display: inline; margin-right: 0.4rem; }

/* IDX search frame (mimics live-site browser-chrome treatment) */
.v2-search-frame {
    background: var(--v2-white);
    border: 1px solid var(--v2-line);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--v2-shadow-md);
    margin-top: 1.75rem;
}
.v2-search-frame-bar {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 1rem;
    background: var(--v2-bg-alt);
    border-bottom: 1px solid var(--v2-line);
}
.v2-search-frame-bar i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d9d4c9;
    display: inline-block;
}
.v2-search-frame-bar i:nth-child(1) { background: #e87765; }
.v2-search-frame-bar i:nth-child(2) { background: #e3c07a; }
.v2-search-frame-bar i:nth-child(3) { background: #8aa389; }
.v2-search-frame-bar small {
    margin-left: auto;
    font-size: 0.78rem;
    color: var(--v2-ink-muted);
    letter-spacing: 0.04em;
}
.v2-search-iframe {
    position: relative;
    width: 100%;
    height: 720px;
    background: var(--v2-bg);
}
.v2-search-iframe iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
@media (max-width: 700px) {
    .v2-search-iframe { height: 80vh; min-height: 560px; }
}

/* Contact form */
.v2-form {
    background: var(--v2-white);
    border: 1px solid var(--v2-line);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: var(--v2-shadow-sm);
    display: grid;
    gap: 1rem;
}
.v2-form-row { display: grid; gap: 1rem; }
@media (min-width: 700px) { .v2-form-row.v2-form-row-2 { grid-template-columns: 1fr 1fr; } }

.v2-field { display: grid; gap: 0.35rem; }
.v2-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--v2-ink);
    letter-spacing: 0.01em;
}
.v2-field label .v2-req { color: #b87333; margin-left: 0.15rem; }
.v2-field input[type="text"],
.v2-field input[type="email"],
.v2-field input[type="tel"],
.v2-field select,
.v2-field textarea {
    font-family: var(--v2-font-sans);
    font-size: 1rem;
    line-height: 1.4;
    color: var(--v2-ink);
    background: var(--v2-white);
    border: 1px solid var(--v2-line);
    border-radius: 6px;
    padding: 0.7rem 0.85rem;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.v2-field input:focus,
.v2-field select:focus,
.v2-field textarea:focus {
    outline: none;
    border-color: var(--v2-brand);
    box-shadow: 0 0 0 3px rgba(46, 61, 47, 0.12);
}
.v2-field textarea { resize: vertical; min-height: 8rem; }
.v2-field-help { font-size: 0.82rem; color: var(--v2-ink-muted); margin: 0.1rem 0 0; }
.v2-field-error { color: #b04040; font-size: 0.82rem; margin: 0.15rem 0 0; }
.v2-form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.v2-form-success {
    background: #e8f1e9;
    border: 1px solid #b9d2bb;
    color: #1f3a23;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Two-column "what to expect" block */
.v2-twocol {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
    margin: 1.5rem 0;
}
@media (min-width: 700px) {
    .v2-twocol { grid-template-columns: 1fr 1fr; }
}
.v2-twocol-block {
    background: var(--v2-white);
    border: 1px solid var(--v2-line);
    border-radius: 10px;
    padding: 1.4rem;
}
.v2-twocol-block h4 {
    font-family: var(--v2-font-serif);
    font-size: 1.1rem;
    margin: 0 0 0.6rem;
    color: var(--v2-ink);
}
.v2-twocol-block ul { padding-left: 1.1rem; margin: 0; color: var(--v2-ink-soft); }
.v2-twocol-block li { margin-bottom: 0.35rem; }

