/* ================================================================
   BUYERS PAGE — PAGE-SPECIFIC STYLES
   Location: /home/kitchenbrand/public_html/T-Belle/styles/buyers.css

   Requires global.css to be loaded first.
   Global provides: reset, body, header/nav, buttons (.btn base),
                    shared section helpers, footer, --main, --secondary,
                    --accent, --charcoal, --sans, --serif, etc.

   This file adds:
     · Page-specific color tokens (dark section palette)
     · All layout sections unique to the buyers page
     · Page-level responsive overrides

   Variable map (old → new):
     --nv-sky / --tahoe-blue → var(--secondary)
     --nv-sky-lt             → var(--secondary-light)
     --gold                  → var(--accent)
     --gold-lt               → var(--accent-light)
     --tiffany*              → var(--main*)
     --char                  → var(--charcoal)   [from global]
     --snow                  → var(--warm-white)  [from global]
     --r-md / --r-xl         → var(--radius-md/xl) [from global]
     DM Sans                 → var(--sans) = Jost   [from global]
================================================================ */


/* ================================================================
   PAGE-SPECIFIC TOKENS
   Dark section palette used throughout this editorial page.
   These extend global :root — they do NOT override global vars.
================================================================ */
:root {
    --ink:      #0D1219;   /* deep dark bg — used by dark sections */
    --ink-lt:   #182030;   /* slightly lighter dark for alternating sections */
    --sage:     #3D5C3A;   /* high-desert sage green — insider ribbon only */
    --cream:    #FAF7F2;   /* warm cream — editorial & FAQ sections */
    --stone:    #D6D0C4;   /* light warm neutral — borders, inputs */
    --stone-dk: #9A9488;   /* medium warm neutral — muted text, icons */
}

/* ================================================================
   BODY OVERRIDE
================================================================ */
body { overflow-x: hidden; }


/* ================================================================
   READING PROGRESS BAR
================================================================ */
#read-progress {
    position:       fixed;
    top:            0;
    left:           0;
    z-index:        2000;
    height:         3px;
    width:          0%;
    background:     linear-gradient(90deg, var(--secondary), var(--accent));
    transition:     width 0.1s linear;
    pointer-events: none;
}


/* ================================================================
   SCROLL REVEAL — disabled, all content immediately visible
================================================================ */
.reveal,
.reveal.visible       { opacity: 1; transform: none; transition: none; }
.reveal-delay-1,
.reveal-delay-2,
.reveal-delay-3,
.reveal-delay-4       { transition-delay: 0s; }


/* ================================================================
   HERO
================================================================ */
.hero {
    margin-top:  0px;
    position:    relative;
    height:      90vh;
    min-height:  700px;
    display:     flex;
    align-items: flex-end;
    overflow:    hidden;
}
.hero-bg {
    position:   absolute;
    inset:      0;
    background: url('https://www.teresabelle.com/graphics/Carson-Valley-Winter.jpg') center/cover no-repeat;
}
.hero-bg::before {
    content:    '';
    position:   absolute;
    inset:      0;
    background: radial-gradient(ellipse 80% 60% at 40% 40%, rgba(30,77,122,.25) 0%, transparent 70%);
    animation:  shimmer 8s ease-in-out infinite alternate;
}
@keyframes shimmer {
    from { opacity: .6; transform: scale(1); }
    to   { opacity: 1; transform: scale(1.04); }
}
.hero-bg::after {
    content:    '';
    position:   absolute;
    inset:      0;
    background: linear-gradient(to top, rgba(13,18,25,.90) 0%, rgba(13,18,25,.35) 50%, rgba(13,18,25,.10) 100%);
}
.hero-content {
    position:   relative;
    z-index:    1;
    padding:    0 80px 100px;
    max-width:  860px;
}
.hero-eyebrow {
    display:        flex;
    align-items:    center;
    gap:            14px;
    font-size:      11px;
    font-weight:    500;
    letter-spacing: .24em;
    text-transform: uppercase;
    color:          var(--accent);
    margin-bottom:  22px;
    animation:      fadeUp .9s ease both;
}
.hero-eyebrow::before {
    content:    '';
    display:    block;
    width:      40px;
    height:     1px;
    background: var(--accent);
}
.hero-title {
    font-family:    var(--serif);
    font-size:      clamp(52px, 7.5vw, 96px);
    font-weight:    300;
    color:          var(--white);
    line-height:    .98;
    letter-spacing: -.01em;
    margin-bottom:  28px;
    animation:      fadeUp .9s .15s ease both;
}
.hero-title em {
    font-style:  italic;
    font-weight: 300;
    color:       var(--accent-light);
    display:     block;
}
.hero-body {
    font-size:     16px;
    color:         rgba(255,255,255,.68);
    max-width:     480px;
    line-height:   1.78;
    margin-bottom: 40px;
    animation:     fadeUp .9s .25s ease both;
}
.hero-actions {
    display:   flex;
    gap:       14px;
    flex-wrap: wrap;
    animation: fadeUp .9s .35s ease both;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.scroll-cue {
    position:       absolute;
    bottom:         32px;
    right:          60px;
    z-index:        1;
    display:        flex;
    flex-direction: column;
    align-items:    center;
    gap:            8px;
    animation:      fadeUp .9s .6s ease both;
}
.scroll-cue-label {
    font-size:      9px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color:          rgba(255,255,255,.38);
    writing-mode:   vertical-rl;
}
.scroll-cue-line {
    width:      1px;
    height:     60px;
    background: rgba(255,255,255,.15);
    position:   relative;
    overflow:   hidden;
}
.scroll-cue-line::after {
    content:    '';
    position:   absolute;
    top:        -100%;
    width:      100%;
    height:     40%;
    background: rgba(255,255,255,.65);
    animation:  scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0%   { top: -60%; }
    100% { top: 160%; }
}
.hero-stats {
    position: absolute;
    bottom:   0;
    right:    0;
    z-index:  2;
    display:  flex;
}
.hero-stat {
    padding:    22px 28px;
    text-align: center;
    background: rgba(13,18,25,.75);
    backdrop-filter: blur(10px);
    border-top:  1px solid rgba(255,255,255,.08);
    border-left: 1px solid rgba(255,255,255,.06);
}
.hero-stat-num {
    font-family:   var(--serif);
    font-size:     34px;
    font-weight:   300;
    color:         var(--white);
    line-height:   1;
}
.hero-stat-num sup { font-size: 16px; color: var(--accent); }
.hero-stat-lbl {
    font-size:      10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color:          rgba(255,255,255,.42);
    margin-top:     4px;
}


/* ================================================================
   PAGE BUTTONS (extend global .btn base)
   NOTE: .btn-gold is defined in global.css (accent-filled CTA).
         These are additional page-specific button variants.
================================================================ */
/* Ghost white — on hero/dark section */
.btn-outline-white {
    background:   transparent;
    color:        var(--white);
    border-color: rgba(255,255,255,.36);
}
.btn-outline-white:hover {
    background:   rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.70);
}

/* Secondary-filled — Nevada sky blue */
.btn-secondary {
    background: var(--secondary);
    color:      var(--white);
}
.btn-secondary:hover {
    background: var(--secondary-light);
    transform:  translateY(-1px);
}

/* Outline dark — on light section backgrounds */
.btn-outline-dark {
    background:   transparent;
    color:        var(--charcoal);
    border-color: var(--stone);
}
.btn-outline-dark:hover {
    border-color: var(--secondary);
    color:        var(--secondary);
}


/* ================================================================
   SECTION WRAPPER
================================================================ */
.section       { padding: 100px 80px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-eyebrow {
    display:        inline-flex;
    align-items:    center;
    gap:            12px;
    font-size:      11px;
    font-weight:    500;
    letter-spacing: .20em;
    text-transform: uppercase;
    margin-bottom:  16px;
}
.section-eyebrow::before {
    content: '';
    display: block;
    width:   28px;
    height:  1px;
}

/* Named color variants */
.eyebrow-accent          { color: var(--accent); }
.eyebrow-accent::before  { background: var(--accent); }
.eyebrow-secondary       { color: var(--secondary); }
.eyebrow-secondary::before { background: var(--secondary); }
.eyebrow-sage            { color: var(--sage); }
.eyebrow-sage::before    { background: var(--sage); }

/* Aliases used in buyers.php HTML — map to canonical names above */
.eyebrow-gold             { color: var(--accent); }
.eyebrow-gold::before     { background: var(--accent); }
.eyebrow-blue             { color: var(--secondary); }
.eyebrow-blue::before     { background: var(--secondary); }

.section-title    { font-family: var(--serif); line-height: 1.05; letter-spacing: -.01em; }
.section-title-xl { font-size: clamp(40px, 5vw, 64px); font-weight: 300; }
.section-title-lg { font-size: clamp(32px, 4vw, 52px); font-weight: 300; }
.section-title-md { font-size: clamp(26px, 3vw, 38px); font-weight: 400; }
em.italic         { font-style: italic; }


/* ================================================================
   INSIDER TICKER TAPE
================================================================ */
.insider-ribbon {
    background:  var(--sage);
    overflow:    hidden;
    position:    relative;
    height:      52px;
    display:     flex;
    align-items: center;
}
.insider-ribbon::before,
.insider-ribbon::after {
    content:        '';
    position:       absolute;
    top: 0; bottom: 0;
    z-index:        2;
    width:          160px;
    pointer-events: none;
}
.insider-ribbon::before { left: 0;  background: linear-gradient(to right, var(--sage) 30%, transparent 100%); }
.insider-ribbon::after  { right: 0; background: linear-gradient(to left,  var(--sage) 0%,  transparent 100%); }
.insider-tag {
    position:       absolute;
    left:           20px;
    z-index:        3;
    display:        inline-flex;
    align-items:    center;
    gap:            8px;
    background:     var(--white);
    color:          var(--ink);
    font-size:      10px;
    font-weight:    600;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding:        6px 14px;
    border-radius:  20px;
    white-space:    nowrap;
}
.ticker-track {
    display:     inline-flex;
    align-items: center;
    white-space: nowrap;
    animation:   ticker-scroll 40s linear infinite;
    will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.insider-tip {
    display:      inline-flex;
    align-items:  center;
    gap:          10px;
    padding:      0 32px;
    border-right: 1px solid rgba(255,255,255,.15);
    flex-shrink:  0;
    white-space:  nowrap;
}
.insider-tip-icon        { font-size: 16px; line-height: 1; }
.insider-tip-text        { font-size: 13px; color: rgba(255,255,255,.80); line-height: 1.3; }
.insider-tip-text strong { color: var(--white); font-weight: 500; }
.ticker-sep {
    display:       inline-block;
    width:         5px;
    height:        5px;
    border-radius: 50%;
    background:    var(--accent);
    opacity:       .55;
    margin:        0 32px;
    flex-shrink:   0;
}


/* ================================================================
   LIFESTYLE INTRO
================================================================ */
.intro-section { background: var(--ink); padding: 120px 80px; }
.intro-grid {
    max-width:             1200px;
    margin:                0 auto;
    display:               grid;
    grid-template-columns: 1fr 1fr;
    gap:                   80px;
    align-items:           center;
}
.intro-text .section-title { color: var(--white); margin-bottom: 28px; }
.intro-text p              { font-size: 15px; line-height: 1.85; color: rgba(255,255,255,.62); margin-bottom: 20px; }
.intro-text p.lead         { font-size: 17px; color: rgba(255,255,255,.80); font-family: var(--serif); font-style: italic; line-height: 1.65; }
.intro-visual              { position: relative; }
.intro-img-main            { aspect-ratio: 3/4; border-radius: var(--radius-xl); overflow: hidden; }
.intro-img-main img        { width: 100%; height: 100%; object-fit: cover; }
.intro-img-float {
    position:      absolute;
    bottom:        -32px;
    left:          -40px;
    width:         58%;
    aspect-ratio:  4/3;
    border-radius: var(--radius-lg);
    overflow:      hidden;
    border:        4px solid var(--ink);
    box-shadow:    var(--shadow-lift);
}
.intro-img-float img { width: 100%; height: 100%; object-fit: cover; }
.intro-badge {
    position:      absolute;
    top:           32px;
    right:         -24px;
    background:    var(--accent);
    color:         var(--white);
    border-radius: var(--radius-xl);
    padding:       20px 24px;
    text-align:    center;
    box-shadow:    0 8px 32px rgba(200,146,58,.40);
}
.intro-badge-num {
    font-family:  var(--serif);
    font-size:    40px;
    font-weight:  300;
    line-height:  1;
    display:      block;
}
.intro-badge-lbl {
    font-size:      10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-top:     4px;
    opacity:        .85;
    line-height:    1.4;
}


/* ================================================================
   RECREATION — horizontal scroll cards
================================================================ */
.recreation-section {
    background: var(--ink-lt);
    padding:    100px 0 100px 80px;
    overflow:   hidden;
}
.rec-header {
    max-width:       1200px;
    padding-right:   80px;
    display:         flex;
    align-items:     flex-end;
    justify-content: space-between;
    gap:             32px;
    margin-bottom:   52px;
    flex-wrap:       wrap;
}
.rec-header .section-title { color: var(--white); }
.rec-scroll-wrap {
    display:         flex;
    gap:             20px;
    overflow-x:      auto;
    padding-right:   80px;
    padding-bottom:  20px;
    scrollbar-width: none;
    cursor:          grab;
}
.rec-scroll-wrap::-webkit-scrollbar { display: none; }
.rec-scroll-wrap:active             { cursor: grabbing; }
.rec-card {
    flex-shrink:   0;
    width:         320px;
    border-radius: var(--radius-xl);
    overflow:      hidden;
    position:      relative;
    transition:    transform var(--trans);
}
.rec-card:hover                    { transform: translateY(-6px); }
.rec-card-img                      { height: 400px; position: relative; }
.rec-card-img .rc-bg               { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.rec-card:hover .rc-bg             { transform: scale(1.05); }
.rc-bg-ohv  { background-image: url("../RecSpread-FourWheeling.jpg"); }
.rc-bg-golf { background-image: url('../RecSpread-Golfing.jpeg'); }
.rc-bg-hike { background-image: url('../RecSpread-Hiking.jpg'); }
.rc-bg-ski  { background-image: url('../RecSpread-Skiing.png'); }
.rc-bg-fish { background-image: url('../RecSpread-Fishing.jpg'); }
.rc-bg-hist { background-image: url('../RecSpread-Art.jpeg'); }
.rec-card-img::after {
    content:    '';
    position:   absolute;
    inset:      0;
    background: linear-gradient(to top, rgba(13,18,25,.88) 0%, rgba(13,18,25,.20) 60%);
}
.rec-card-icon {
    position:        absolute;
    top:             24px;
    left:            24px;
    z-index:         2;
    width:           44px;
    height:          44px;
    border-radius:   50%;
    background:      rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    display:         flex;
    align-items:     center;
    justify-content: center;
    font-size:       18px;
}
.rec-card-body  { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 28px 24px 24px; }
.rec-card-cat   { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.rec-card-title { font-family: var(--serif); font-size: 26px; font-weight: 300; color: var(--white); margin-bottom: 8px; line-height: 1.1; }
.rec-card-desc  { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.6; }


/* ================================================================
   LIFESTYLE EDITORIAL
================================================================ */
.editorial-section { background: var(--cream); padding: 120px 80px; }
.editorial-grid {
    max-width:             1200px;
    margin:                0 auto;
    display:               grid;
    grid-template-columns: 1fr 1fr;
    gap:                   80px;
    align-items:           center;
}
.editorial-grid.reverse     { direction: rtl; }
.editorial-grid.reverse > * { direction: ltr; }
.editorial-img              { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lift); }
.editorial-img-tall         { aspect-ratio: 3/4; }
.editorial-img-wide         { aspect-ratio: 4/3; }
.editorial-img img          { width: 100%; height: 100%; object-fit: cover; }
.editorial-text .section-title { color: var(--charcoal); margin-bottom: 20px; }
.editorial-text p           { font-size: 15px; color: #555550; line-height: 1.82; margin-bottom: 18px; }
.editorial-text p.lead-dark { font-family: var(--serif); font-size: 21px; font-style: italic; color: var(--charcoal); line-height: 1.5; margin-bottom: 24px; }
.pull-quote {
    border-left:  3px solid var(--accent);
    padding-left: 20px;
    margin:       28px 0;
    font-family:  var(--serif);
    font-size:    22px;
    font-style:   italic;
    font-weight:  400;
    color:        var(--charcoal);
    line-height:  1.45;
}


/* ================================================================
   NEIGHBORHOODS / FEATURED AREAS
================================================================ */
.neighborhoods-section { background: var(--ink); padding: 100px 80px; }
.nbhd-grid {
    display:               grid;
    grid-template-columns: repeat(3, 1fr);
    gap:                   16px;
}
.nbhd-card {
    border-radius: var(--radius-xl);
    overflow:      hidden;
    position:      relative;
    cursor:        pointer;
    display:       block;
    color:         inherit;
}
.nbhd-card-img                   { aspect-ratio: 3/4; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.nbhd-card:hover .nbhd-card-img  { transform: scale(1.06); }
.nb-1 { background-image: url('../SilverOak.jpg'); }
.nb-2 { background-image: url('../Lake-Tahoe.jpg'); }
.nb-3 { background-image: url('../GenoaBar.jpg'); }
.nb-4 { background-image: url('../Gardnerville.jpg'); }
.nb-5 { background-image: url('../HistoricMinden.jpg'); }
.nb-6 { background-image: url('../EastCarsonCity.jpg.avif'); }
.nbhd-card-overlay {
    position:   absolute;
    inset:      0;
    background: linear-gradient(to top, rgba(13,18,25,.85) 0%, rgba(13,18,25,.10) 55%);
    transition: background var(--trans);
}
.nbhd-card:hover .nbhd-card-overlay { background: linear-gradient(to top, rgba(13,18,25,.92) 0%, rgba(13,18,25,.25) 55%); }
.nbhd-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 22px; }
.nbhd-name      { font-family: var(--serif); font-size: 22px; font-weight: 300; color: var(--white); margin-bottom: 4px; }
.nbhd-vibe      { font-size: 11px; letter-spacing: .10em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.nbhd-desc      { font-size: 12px; color: rgba(255,255,255,.60); line-height: 1.55; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, opacity 0.4s ease; opacity: 0; }
.nbhd-card:hover .nbhd-desc    { max-height: 80px; opacity: 1; }
.nbhd-explore   { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--accent); margin-top: 10px; opacity: 0; transform: translateY(6px); transition: opacity 0.3s ease, transform 0.3s ease; }
.nbhd-card:hover .nbhd-explore { opacity: 1; transform: translateY(0); }


/* ================================================================
   INVESTMENT INSIGHT
================================================================ */
.invest-section { background: var(--ink-lt); padding: 100px 80px; position: relative; overflow: hidden; }
.invest-section::before {
    content:        '';
    position:       absolute;
    inset:          0;
    pointer-events: none;
    background:     radial-gradient(ellipse 60% 50% at 80% 50%, rgba(30,77,122,.18) 0%, transparent 65%);
}
.invest-inner          { max-width: 1200px; margin: 0 auto; }
.invest-header         { margin-bottom: 64px; }
.invest-header .section-title { color: var(--white); margin-top: 12px; }
.invest-grid {
    display:               grid;
    grid-template-columns: repeat(4, 1fr);
    gap:                   2px;
    border-radius:         var(--radius-lg);
    overflow:              hidden;
    margin-bottom:         28px;
}
.invest-card        { background: rgba(255,255,255,.04); padding: 40px 32px; border: 1px solid rgba(255,255,255,.07); transition: background var(--trans); }
.invest-card:hover  { background: rgba(255,255,255,.07); }
.invest-icon        { font-size: 28px; margin-bottom: 20px; }
.invest-num         { font-family: var(--serif); font-size: 52px; font-weight: 300; color: var(--white); line-height: 1; margin-bottom: 8px; }
.invest-num span    { font-size: 28px; color: var(--accent); }
.invest-label       { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.10); }
.invest-body        { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.75; }
.invest-footnote    { display: flex; align-items: flex-start; gap: 10px; font-size: 11px; color: rgba(255,255,255,.28); line-height: 1.65; max-width: 780px; }


/* ================================================================
   WHY AGENT
================================================================ */
.why-section {
    background: linear-gradient(160deg, var(--ink) 0%, var(--ink-lt) 100%);
    padding:    120px 80px;
    position:   relative;
    overflow:   hidden;
}
.why-section::before {
    content:        '';
    position:       absolute;
    top:            -200px;
    right:          -200px;
    width:          600px;
    height:         600px;
    border-radius:  50%;
    background:     radial-gradient(circle, rgba(30,77,122,.15) 0%, transparent 70%);
    pointer-events: none;
}
.why-header                { max-width: 1200px; margin: 0 auto 64px; }
.why-header .section-title { color: var(--white); }
.why-header p              { font-size: 16px; color: rgba(255,255,255,.58); max-width: 540px; margin-top: 16px; line-height: 1.75; }
.why-grid {
    max-width:             1200px;
    margin:                0 auto;
    display:               grid;
    grid-template-columns: repeat(3, 1fr);
    gap:                   2px;
}
.why-card {
    padding:    40px 36px;
    border:     1px solid rgba(255,255,255,.06);
    position:   relative;
    overflow:   hidden;
    transition: background var(--trans);
}
.why-card::before {
    content:    '';
    position:   absolute;
    top: 0; left: 0; right: 0;
    height:     2px;
    background: transparent;
    transition: background var(--trans);
}
.why-card:hover          { background: rgba(255,255,255,.03); }
.why-card:hover::before  { background: var(--accent); }
.why-num  { font-family: var(--serif); font-size: 72px; font-weight: 300; color: rgba(255,255,255,.05); line-height: 1; position: absolute; top: 16px; right: 24px; user-select: none; }
.why-icon { width: 48px; height: 48px; border-radius: var(--radius-lg); background: rgba(200,146,58,.12); border: 1px solid rgba(200,146,58,.20); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 20px; }
.why-title { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--white); margin-bottom: 12px; line-height: 1.2; }
.why-desc  { font-size: 14px; color: rgba(255,255,255,.52); line-height: 1.75; }


/* ================================================================
   PROCESS
================================================================ */
.process-section { background: var(--warm-white); padding: 100px 80px; }
.process-header  { max-width: 1200px; margin: 0 auto 60px; }
.process-header .section-title { color: var(--charcoal); }
.process-header p              { font-size: 15px; color: var(--stone-dk); margin-top: 14px; max-width: 480px; }
.process-steps {
    max-width: 1200px;
    margin:    0 auto;
    display:   grid;
    grid-template-columns: repeat(5, 1fr);
    gap:       0;
    position:  relative;
}
.process-steps::before {
    content:    '';
    position:   absolute;
    top:        36px;
    left:       10%;
    right:      10%;
    height:     1px;
    background: var(--stone);
    z-index:    0;
}
.process-step  { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-circle {
    width:           72px;
    height:          72px;
    border-radius:   50%;
    background:      var(--white);
    border:          1px solid var(--stone);
    display:         flex;
    align-items:     center;
    justify-content: center;
    margin:          0 auto 20px;
    font-family:     var(--serif);
    font-size:       28px;
    font-weight:     300;
    color:           var(--secondary);
    box-shadow:      var(--shadow-card);
    transition:      all var(--trans);
}
.process-step:hover .step-circle {
    background:   var(--secondary);
    color:        var(--white);
    border-color: var(--secondary);
    box-shadow:   0 8px 24px rgba(30,77,122,.30);
}
.step-title { font-size: 14px; font-weight: 500; color: var(--charcoal); margin-bottom: 8px; }
.step-desc  { font-size: 12px; color: var(--stone-dk); line-height: 1.6; }


/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials-section {
    background: var(--secondary);
    padding:    100px 80px;
    position:   relative;
    overflow:   hidden;
}
.testimonials-section::before {
    content:        '"';
    position:       absolute;
    top:            -30px;
    left:           40px;
    font-family:    var(--serif);
    font-size:      300px;
    font-weight:    300;
    color:          rgba(255,255,255,.04);
    line-height:    1;
    pointer-events: none;
}
.testimonials-inner            { max-width: 1200px; margin: 0 auto; }
.testimonials-header           { margin-bottom: 56px; }
.testimonials-header .section-title { color: var(--white); }
.testimonials-grid             { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.testimonial-card {
    background:    rgba(255,255,255,.06);
    border:        1px solid rgba(255,255,255,.10);
    border-radius: var(--radius-xl);
    padding:       32px 28px;
    transition:    background var(--trans), transform var(--trans);
}
.testimonial-card:hover      { background: rgba(255,255,255,.10); transform: translateY(-3px); }
.testimonial-stars           { color: var(--accent); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text            { font-family: var(--serif); font-size: 19px; font-style: italic; font-weight: 300; color: rgba(255,255,255,.88); line-height: 1.55; margin-bottom: 24px; }
.testimonial-author          { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar          { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 16px; font-weight: 400; color: var(--white); flex-shrink: 0; }
.av-1 { background: rgba(200,146,58,.30); }
.av-2 { background: rgba(61,92,58,.60); }
.av-3 { background: rgba(30,77,122,.50); }
.av-4 { background: rgba(200,146,58,.40); }
.testimonial-name   { font-size: 14px; font-weight: 500; color: var(--white); }
.testimonial-detail { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 1px; }
.testimonial-featured {
    background:    rgba(255,255,255,.04);
    border:        1px solid rgba(255,255,255,.10);
    border-radius: var(--radius-xl);
    padding:       48px 52px;
    grid-column:   1 / -1;
    display:       grid;
    grid-template-columns: 1fr auto;
    align-items:   center;
    gap:           48px;
    margin-top:    8px;
}
.testimonial-featured .testimonial-text   { font-size: 24px; }
.testimonial-featured .testimonial-author { flex-direction: column; align-items: center; text-align: center; gap: 10px; flex-shrink: 0; }
.testimonial-featured .testimonial-avatar { width: 64px; height: 64px; font-size: 20px; }


/* ================================================================
   MARKET SNAPSHOT
================================================================ */
.market-strip       { background: var(--cream); border-top: 1px solid var(--stone); padding: 56px 80px 32px; }
.market-strip-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 0; align-items: stretch; }
.market-stat        { flex: 1; text-align: center; padding: 20px 28px; border-right: 1px solid var(--stone); }
.market-stat:last-child { border-right: none; }
.market-stat-num    { font-family: var(--serif); font-size: 44px; font-weight: 300; color: var(--secondary); line-height: 1; margin-bottom: 6px; }
.market-stat-num span { font-size: 24px; color: var(--accent); }
.market-stat-lbl    { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--stone-dk); }
.market-stat-sub    { font-size: 12px; color: var(--stone-dk); margin-top: 4px; }
.market-trend-label { font-size: 11px; color: #2ecc71; letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; display: flex; align-items: center; justify-content: center; gap: 4px; }
.market-trend-label::before      { content: '▲'; font-size: 9px; }
.market-trend-label.down         { color: #e74c3c; }
.market-trend-label.down::before { content: '▼'; }


/* ================================================================
   FAQ / SEO SECTION
================================================================ */
.faq-section { background: var(--cream); padding: 100px 80px; }
.faq-inner   { max-width: 1200px; margin: 0 auto; }
.faq-header  { margin-bottom: 64px; }
.faq-header .section-title { color: var(--charcoal); margin-top: 12px; }
.faq-grid {
    display:               grid;
    grid-template-columns: 1fr 1fr;
    gap:                   0;
    border:                1px solid var(--stone);
    border-radius:         var(--radius-xl);
    overflow:              hidden;
}
.faq-item { padding: 40px 44px; border-right: 1px solid var(--stone); border-bottom: 1px solid var(--stone); transition: background var(--trans); }
.faq-item:nth-child(even)        { border-right: none; }
.faq-item:nth-last-child(-n+2)   { border-bottom: none; }
.faq-item:hover                  { background: var(--white); }
.faq-q { font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--charcoal); line-height: 1.3; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 2px solid var(--accent); }
.faq-a p { font-size: 14px; color: #5a5a54; line-height: 1.82; margin-bottom: 14px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a em           { font-style: italic; color: var(--secondary); }


/* ================================================================
   CTA SECTION
================================================================ */
.cta-section { background: var(--ink); padding: 120px 80px; position: relative; overflow: hidden; }
.cta-bg-glow {
    position:       absolute;
    inset:          0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 50% at 20% 60%, rgba(30,77,122,.20) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 40%, rgba(61,92,58,.18) 0%, transparent 60%);
}
.cta-inner {
    max-width:             1200px;
    margin:                0 auto;
    display:               grid;
    grid-template-columns: 1fr 400px;
    gap:                   80px;
    align-items:           center;
}
.cta-text .section-title { color: var(--white); margin-bottom: 24px; }
.cta-text p              { font-size: 16px; color: rgba(255,255,255,.60); line-height: 1.80; margin-bottom: 20px; max-width: 520px; }
.cta-btns                { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.cta-form-card           { background: var(--white); border-radius: var(--radius-xl); padding: 36px 32px; box-shadow: var(--shadow-lift); }
.cta-form-card h3        { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--charcoal); margin-bottom: 6px; }
.cta-form-card > p       { font-size: 13px; color: var(--stone-dk); margin-bottom: 22px; }
.cta-form .form-row      { margin-bottom: 12px; }
.cta-form .form-row label { display: block; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--stone-dk); margin-bottom: 4px; }
.cta-form .form-row input,
.cta-form .form-row select,
.cta-form .form-row textarea {
    width:        100%;
    padding:      10px 13px;
    border:       1px solid var(--stone);
    border-radius: var(--radius-md);
    font-size:    14px;
    color:        var(--charcoal);
    background:   var(--white);
    appearance:   none;
    -webkit-appearance: none;
    font-family:  var(--sans);
    transition:   border-color var(--trans), box-shadow var(--trans);
}
.cta-form .form-row input:focus,
.cta-form .form-row select:focus,
.cta-form .form-row textarea:focus {
    outline:      none;
    border-color: var(--secondary);
    box-shadow:   0 0 0 3px rgba(30,77,122,.10);
}
.cta-form .form-row textarea { resize: none; height: 76px; }
.form-submit-main {
    width:           100%;
    padding:         14px;
    background:      var(--secondary);
    color:           var(--white);
    border:          none;
    border-radius:   var(--radius-md);
    font-size:       14px;
    font-weight:     500;
    cursor:          pointer;
    display:         flex;
    align-items:     center;
    justify-content: center;
    gap:             8px;
    transition:      background var(--trans), transform var(--trans);
    font-family:     var(--sans);
    margin-top:      8px;
}
.form-submit-main:hover { background: var(--secondary-light); transform: translateY(-1px); }
.form-trust {
    font-size:       11px;
    color:           var(--stone-dk);
    text-align:      center;
    margin-top:      10px;
    display:         flex;
    align-items:     center;
    justify-content: center;
    gap:             5px;
}
.form-trust svg { opacity: .6; }
.form-success   { display: none; text-align: center; padding: 20px 0; }
.form-success-icon { font-size: 48px; margin-bottom: 12px; }
.form-success h4 { font-family: var(--serif); font-size: 26px; font-weight: 300; color: var(--charcoal); margin-bottom: 8px; }
.form-success p  { font-size: 14px; color: var(--stone-dk); }


/* ================================================================
   STICKY CONSULTATION WIDGET
================================================================ */
.sticky-consult {
    position:       fixed;
    bottom:         90px;
    right:          28px;
    z-index:        800;
    width:          300px;
    background:     var(--white);
    border-radius:  var(--radius-xl);
    box-shadow:     0 20px 60px rgba(13,18,25,.30), 0 0 0 1px rgba(13,18,25,.06);
    transform:      translateX(340px);
    transition:     transform 0.5s cubic-bezier(.34,1.56,.64,1);
    pointer-events: none;
}
.sticky-consult.visible       { transform: translateX(0); pointer-events: all; }
.sticky-consult.hidden        { display: none; }
.sticky-consult-inner         { padding: 20px 22px 22px; }
.sticky-consult-close {
    position:        absolute;
    top:             14px;
    right:           14px;
    width:           26px;
    height:          26px;
    border-radius:   50%;
    background:      var(--stone);
    color:           var(--charcoal);
    display:         flex;
    align-items:     center;
    justify-content: center;
    transition:      background var(--trans);
    border:          none;
    cursor:          pointer;
}
.sticky-consult-close:hover   { background: var(--stone-dk); color: var(--white); }
.sticky-consult-top           { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.sticky-consult-avatar {
    width:           44px;
    height:          44px;
    border-radius:   50%;
    background:      var(--secondary);
    display:         flex;
    align-items:     center;
    justify-content: center;
    font-size:       13px;
    font-weight:     600;
    color:           var(--white);
    flex-shrink:     0;
}
.sticky-consult-name   { font-weight: 600; font-size: 14px; color: var(--charcoal); margin-bottom: 2px; }
.sticky-consult-status { font-size: 12px; color: #2ecc71; display: flex; align-items: center; gap: 5px; }
.sticky-status-dot     { width: 7px; height: 7px; border-radius: 50%; background: #2ecc71; flex-shrink: 0; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot   { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .7; transform: scale(1.3); } }
.sticky-consult-msg    { font-size: 13px; color: #666; line-height: 1.65; margin-bottom: 16px; }
.sticky-consult-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.sticky-btn {
    display:         flex;
    align-items:     center;
    justify-content: center;
    gap:             6px;
    padding:         10px 14px;
    border-radius:   var(--radius-md);
    font-size:       13px;
    font-weight:     500;
    font-family:     var(--sans);
    cursor:          pointer;
    transition:      all var(--trans);
    border:          none;
    text-decoration: none;
}
.sticky-btn-primary         { background: var(--secondary); color: var(--white); }
.sticky-btn-primary:hover   { background: var(--secondary-light); }
.sticky-btn-secondary       { background: var(--stone); color: var(--charcoal); }
.sticky-btn-secondary:hover { background: var(--stone-dk); color: var(--white); }
.sticky-consult-form-link   { display: block; text-align: center; font-size: 11px; color: var(--stone-dk); transition: color var(--trans); cursor: pointer; }
.sticky-consult-form-link:hover { color: var(--secondary); }


/* ================================================================
   PAGE-LEVEL RESPONSIVE OVERRIDES
================================================================ */
@media (max-width: 1100px) {
    .section,
    .intro-section, .editorial-section, .neighborhoods-section,
    .why-section, .process-section, .testimonials-section,
    .market-strip, .cta-section, .invest-section, .faq-section { padding-left: 48px; padding-right: 48px; }
    .recreation-section { padding-left: 48px; }
    .rec-scroll-wrap    { padding-right: 48px; }
    .nbhd-grid          { grid-template-columns: repeat(2, 1fr); }
    .why-grid           { grid-template-columns: 1fr 1fr; }
    .process-steps      { grid-template-columns: repeat(3, 1fr); }
    .process-steps::before { display: none; }
    .cta-inner          { grid-template-columns: 1fr; }
    .cta-form-card      { max-width: 500px; }
    .invest-grid        { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
    header              { padding: 0 24px; }
    .hero-content       { padding: 0 24px 80px; }
    .hero-stats         { display: none; }
    .scroll-cue         { display: none; }
    .intro-grid,
    .editorial-grid     { grid-template-columns: 1fr; gap: 48px; }
    .intro-img-float    { display: none; }
    .intro-badge        { top: auto; bottom: 16px; right: 16px; }
    .nbhd-grid          { grid-template-columns: 1fr; max-width: 400px; }
    .why-grid           { grid-template-columns: 1fr; }
    .process-steps      { grid-template-columns: 1fr 1fr; }
    .testimonials-grid  { grid-template-columns: 1fr; }
    .market-strip-inner { flex-wrap: wrap; }
    .market-stat        { min-width: 45%; border-right: none; border-bottom: 1px solid var(--stone); }
    .section,
    .intro-section, .editorial-section, .neighborhoods-section,
    .why-section, .process-section, .testimonials-section,
    .market-strip, .cta-section, .invest-section, .faq-section { padding: 72px 24px; }
    .recreation-section { padding: 72px 0 72px 24px; }
    .rec-scroll-wrap    { padding-right: 24px; }
    .invest-grid        { grid-template-columns: 1fr; }
    .faq-grid           { grid-template-columns: 1fr; }
    .faq-item           { border-right: none !important; }
    .faq-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--stone) !important; }
    .faq-item:last-child           { border-bottom: none !important; }
    .testimonial-featured          { grid-template-columns: 1fr; padding: 32px 24px; }
    .testimonial-featured .testimonial-author { flex-direction: row; text-align: left; }
    .sticky-consult { width: calc(100vw - 32px); right: 16px; bottom: 80px; }
}

@media (max-width: 480px) {
    .process-steps { grid-template-columns: 1fr; }
    .market-stat   { min-width: 100%; }
}
