/* ===========================================================
   West Cobb Alliance — demo preview
   Mobile-first. System fonts (zero web-font load, zero CLS).
   Palette: deep navy + warm cream, gold CTA (their brand is blue).
   =========================================================== */

:root{
  --navy:#0E2A47;
  --navy-700:#163a5f;
  --navy-600:#1f4a76;
  --blue:#1D5B9E;
  --blue-bright:#2D6CDF;
  --gold:#D99A2B;
  --gold-dark:#BE831C;
  --cream:#FAF7F1;
  --sand:#F1E9DB;
  --sand-line:#E4D9C5;
  --ink:#1A2230;
  --muted:#5C6675;
  --white:#fff;
  --line:rgba(14,42,71,.12);
  --shadow-sm:0 1px 2px rgba(14,42,71,.06), 0 2px 8px rgba(14,42,71,.06);
  --shadow-md:0 8px 30px rgba(14,42,71,.12);
  --shadow-lg:0 18px 50px rgba(14,42,71,.22);
  --serif:"Iowan Old Style","Palatino Linotype",Palatino,Georgia,"Times New Roman",serif;
  --sans:system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  --r-sm:10px; --r:16px; --r-lg:22px;
  --wrap:1140px;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0; background:var(--cream); color:var(--ink);
  font-family:var(--sans); font-size:17px; line-height:1.6;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{max-width:100%; display:block}
a{color:var(--blue); text-decoration:none}
h1,h2,h3,h4{font-family:var(--serif); font-weight:600; line-height:1.12; letter-spacing:-.01em; color:var(--navy); margin:0}
.reg{font-size:.42em; vertical-align:.78em; font-weight:500; letter-spacing:0; margin-left:.04em}
p{margin:0}
em{font-style:italic}
.wrap{width:100%; max-width:var(--wrap); margin:0 auto; padding:0 20px}

/* anchor offset under sticky header */
section[id], footer[id]{scroll-margin-top:96px}

/* ---------- buttons ---------- */
.btn{
  --bg:var(--navy); --fg:#fff;
  display:inline-flex; align-items:center; justify-content:center; gap:.5em;
  font-family:var(--sans); font-weight:650; font-size:1rem; line-height:1;
  padding:.85em 1.4em; border:0; border-radius:999px; cursor:pointer;
  background:var(--bg); color:var(--fg); text-align:center;
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease;
  -webkit-tap-highlight-color:transparent;
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn-gold{--bg:var(--gold); --fg:#3a2606; box-shadow:0 6px 18px rgba(217,154,43,.4)}
.btn-gold:hover{--bg:var(--gold-dark)}
.btn-navy{--bg:var(--navy); --fg:#fff}
.btn-navy:hover{--bg:var(--navy-700)}
.btn-lg{font-size:1.05rem; padding:1em 1.7em}
.btn-xl{font-size:1.2rem; padding:1.05em 2em; border-radius:999px}
.btn-block{width:100%}
.btn-text{background:none; color:var(--muted); padding:.85em .6em; box-shadow:none}
.btn-text:hover{color:var(--navy); transform:none}
.btn-ghost-light{background:rgba(255,255,255,.16); color:#fff; backdrop-filter:blur(4px); border:1px solid rgba(255,255,255,.35)}
.btn-ghost-light:hover{background:rgba(255,255,255,.28)}
.ic-sm{width:1.05em; height:1.05em; flex:none}
.pulse{animation:pulse 2.6s ease-in-out infinite}
@keyframes pulse{0%,100%{box-shadow:0 6px 18px rgba(217,154,43,.4)}50%{box-shadow:0 6px 30px rgba(217,154,43,.7)}}

/* ---------- header ---------- */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(250,247,241,.9); backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; height:88px}
.brand{display:flex; align-items:center; gap:.6rem}
.brand-mark{width:auto; height:64px; flex:none; display:block}
.brand-lockup{display:flex; flex-direction:column; gap:.2rem; line-height:1}
.brand-word{width:auto; height:52px; display:block}
.brand-sub{font-size:.66rem; letter-spacing:.05em; text-transform:uppercase; color:var(--muted)}
.nav{display:none}
.nav a{color:var(--navy); font-weight:550; font-size:.95rem; padding:.4rem .1rem}
.nav a:not(.nav-cta):hover{color:var(--blue-bright)}
.nav-cta{background:var(--navy); color:#fff !important; padding:.55rem 1.1rem !important; border-radius:999px}
.nav-cta:hover{background:var(--navy-700)}
.nav-toggle{
  width:44px; height:44px; display:grid; place-content:center; gap:5px;
  background:none; border:0; cursor:pointer;
}
.nav-toggle span{display:block; width:24px; height:2px; background:var(--navy); border-radius:2px; transition:.25s}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* mobile nav drawer */
.nav.open{
  display:flex; flex-direction:column; gap:.2rem;
  position:absolute; top:88px; left:0; right:0;
  background:var(--cream); border-bottom:1px solid var(--line);
  padding:14px 20px 22px; box-shadow:var(--shadow-md);
}
.nav.open a{padding:.8rem .2rem; border-bottom:1px solid var(--line); font-size:1.05rem}
.nav.open a:last-child{border:0}
.nav.open .nav-cta{text-align:center; margin-top:.6rem}

/* ---------- hero ---------- */
.hero{position:relative; min-height:88vh; display:flex; align-items:center; overflow:hidden; isolation:isolate}
.hero-bg{
  position:absolute; inset:0; z-index:-2;
  background:#0E2A47 url("img/hero.jpg") center 35%/cover no-repeat;
  transform:scale(1.04);
}
.hero-overlay{
  position:absolute; inset:0; z-index:-1;
  background:
    linear-gradient(180deg, rgba(8,24,42,.32) 0%, rgba(8,24,42,.55) 55%, rgba(8,24,42,.78) 100%),
    linear-gradient(90deg, rgba(8,24,42,.55), rgba(8,24,42,.1));
}
.hero-content{padding-top:80px; padding-bottom:54px; color:#fff; max-width:760px}
.eyebrow{
  font-family:var(--sans); font-weight:700; font-size:.78rem; letter-spacing:.16em;
  text-transform:uppercase; color:var(--gold); margin-bottom:1rem;
}
.eyebrow.light{color:#ffd591}
.hero-title{
  font-size:clamp(2.7rem,9vw,4.6rem); color:#fff; line-height:1.02;
  text-shadow:0 2px 30px rgba(0,0,0,.3); margin-bottom:1.1rem;
}
.hero-lede{font-size:clamp(1.05rem,3.4vw,1.3rem); color:rgba(255,255,255,.92); max-width:34em; margin-bottom:1.8rem}

.search{
  display:flex; flex-direction:column; gap:.6rem; background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.3); padding:.6rem; border-radius:var(--r);
  backdrop-filter:blur(8px); max-width:560px; margin-bottom:1.8rem;
}
.search-field{display:flex; align-items:center; gap:.6rem; background:#fff; border-radius:var(--r-sm); padding:.55rem .8rem; flex:1}
.search-field .ic{width:20px; height:20px; color:var(--muted); flex:none}
.search-field input{border:0; outline:0; font:inherit; font-size:1rem; width:100%; color:var(--ink); background:transparent}
.search-select{display:flex; align-items:center; justify-content:space-between; gap:.4rem; background:#fff; border-radius:var(--r-sm); padding:.65rem .8rem; color:var(--muted); font-size:.95rem}
.search-select .ic-sm{width:18px; height:18px}
.search .btn{border-radius:var(--r-sm); padding:.7rem}

.hero-cta-row{display:flex; flex-direction:column; gap:.9rem; align-items:flex-start}
.hero-cta-note{color:rgba(255,255,255,.9); font-size:.98rem; font-style:italic; max-width:30em}

.scroll-hint{position:absolute; bottom:18px; left:50%; transform:translateX(-50%); color:rgba(255,255,255,.8); animation:bob 2s ease-in-out infinite}
.scroll-hint svg{width:30px; height:30px}
@keyframes bob{0%,100%{transform:translate(-50%,0)}50%{transform:translate(-50%,7px)}}

/* ---------- trust strip ---------- */
.trust{background:var(--navy); color:#fff}
.trust-inner{display:flex; align-items:center; justify-content:center; gap:clamp(.8rem,4vw,2.6rem); padding:20px; flex-wrap:wrap; text-align:center}
.trust-item{display:flex; flex-direction:column; line-height:1.15}
.trust-item strong{font-family:var(--serif); font-size:1.4rem; color:#fff}
.trust-item span{font-size:.78rem; letter-spacing:.05em; text-transform:uppercase; color:rgba(255,255,255,.65)}
.trust-divider{width:1px; height:34px; background:rgba(255,255,255,.18)}

/* ---------- generic section ---------- */
.section{padding:clamp(56px,9vw,104px) 0}
.section-alt{background:var(--sand)}
.section-head{max-width:680px; margin:0 auto clamp(34px,5vw,56px); text-align:center}
.section-head h2{font-size:clamp(1.8rem,5.5vw,2.7rem); margin-bottom:.7rem}
.section-lede{font-size:clamp(1.02rem,2.6vw,1.18rem); color:var(--muted)}
.section-head .eyebrow{color:var(--gold-dark)}
.section-head.wide{max-width:920px}

/* ---------- prequalify flow ---------- */
.flow{display:grid; gap:1rem; margin-bottom:clamp(34px,5vw,52px)}
.flow-step{background:#fff; border:1px solid var(--line); border-radius:var(--r); padding:1.6rem 1.5rem; box-shadow:var(--shadow-sm); position:relative}
.flow-num{
  position:absolute; top:-16px; left:1.5rem; width:36px; height:36px; border-radius:50%;
  background:var(--gold); color:#3a2606; font-weight:800; display:grid; place-items:center; box-shadow:var(--shadow-sm);
}
.flow-step h3{font-size:1.25rem; margin:.5rem 0 .4rem}
.flow-step p{color:var(--muted); font-size:.98rem}
.flow-arrow{display:none; align-self:center; color:var(--gold-dark); font-size:1.6rem; font-weight:700}

.prequalify-cta{
  display:grid; gap:1.6rem; align-items:center;
  background:linear-gradient(160deg,var(--navy),var(--navy-600)); color:#fff;
  border-radius:var(--r-lg); padding:clamp(1.6rem,5vw,2.8rem); box-shadow:var(--shadow-md);
}
.prequalify-pitch h3{color:#fff; font-size:clamp(1.4rem,4vw,1.9rem); margin-bottom:.6rem}
.prequalify-pitch p{color:rgba(255,255,255,.85); margin-bottom:1.3rem}
.prequalify-pitch .btn{margin-bottom:.7rem}
.fineprint{font-size:.8rem; color:rgba(255,255,255,.6)}
.section-prequalify .prequalify-card-preview{order:-1}
.prequalify-card-preview{background:#fff; color:var(--ink); border-radius:var(--r); padding:1.3rem; box-shadow:var(--shadow-lg); max-width:380px; width:100%; margin:0 auto}
.ppv-bar{display:flex; gap:6px; margin-bottom:1.1rem}
.ppv-bar span{height:6px; border-radius:3px; background:var(--sand-line); flex:1}
.ppv-bar span:first-child{background:var(--gold)}
.ppv-label{font-weight:650; color:var(--navy); margin-bottom:.9rem}
.ppv-pills{display:flex; flex-wrap:wrap; gap:.5rem; margin-bottom:1.2rem}
.ppv-pills span{border:1.5px solid var(--sand-line); border-radius:999px; padding:.5rem .9rem; font-size:.9rem; color:var(--muted)}
.ppv-pills span.on{border-color:var(--gold); background:#fdf4e3; color:var(--gold-dark); font-weight:650}
.ppv-foot{display:flex; gap:7px; justify-content:center}
.ppv-dot{width:8px; height:8px; border-radius:50%; background:var(--sand-line)}
.ppv-dot.on{background:var(--navy)}

/* ---------- listings ---------- */
.listings-grid{display:grid; gap:1.4rem}
.property{background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-sm); transition:transform .2s ease, box-shadow .2s ease}
.property:hover{transform:translateY(-4px); box-shadow:var(--shadow-md)}
.property-media{position:relative; aspect-ratio:3/2; background:var(--sand)}
.property-media img{width:100%; height:100%; object-fit:cover}
.property-badge{position:absolute; top:12px; left:12px; background:var(--navy); color:#fff; font-size:.72rem; font-weight:700; letter-spacing:.05em; text-transform:uppercase; padding:.4rem .7rem; border-radius:999px}
.badge-auction{background:var(--gold); color:#3a2606}
.property-body{padding:1.3rem 1.4rem 1.5rem}
.property-top{display:flex; align-items:baseline; justify-content:space-between; gap:.6rem}
.property-price{font-family:var(--serif); font-size:1.5rem; font-weight:700; color:var(--navy)}
.property-specs{font-size:.9rem; color:var(--muted); font-weight:600}
.property-addr{font-weight:650; margin:.2rem 0 .4rem}
.property-blurb{color:var(--muted); font-size:.95rem; margin-bottom:1.1rem}
.smart-grid{display:grid; grid-template-columns:1fr 1fr; gap:.6rem; border-top:1px dashed var(--sand-line); padding-top:1.1rem}
.smart{display:flex; flex-direction:column; gap:.15rem}
.smart-k{font-size:.72rem; letter-spacing:.04em; text-transform:uppercase; color:var(--muted)}
.smart-v{font-weight:650; font-size:.96rem; color:var(--navy)}
.smart-v.ok{color:#2f7d4f}
.example-note{max-width:760px; margin:1.8rem auto 0; text-align:center; font-size:.85rem; color:var(--muted); font-style:italic}

/* ---------- before we tour ---------- */
.explain-grid{display:grid; gap:1.4rem; margin-bottom:clamp(34px,5vw,52px)}
.explain{background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:1.8rem 1.7rem; box-shadow:var(--shadow-sm)}
.explain-ic{width:52px; height:52px; border-radius:14px; background:#eef4fb; color:var(--blue); display:grid; place-items:center; margin-bottom:1rem}
.explain-ic svg{width:26px; height:26px}
.explain h3{font-size:1.35rem; margin-bottom:.55rem}
.explain p{color:var(--muted)}
.explain em{color:var(--navy); font-style:italic; font-weight:600}

.schedule{display:grid; gap:1.5rem; background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:clamp(1.6rem,5vw,2.6rem); box-shadow:var(--shadow-sm)}
.schedule h3{font-size:clamp(1.4rem,4vw,1.8rem); margin-bottom:.6rem}
.schedule-text p{color:var(--muted); margin-bottom:1rem}
.checklist{list-style:none; padding:0; margin:0; display:grid; gap:1.25rem}
.checklist li{position:relative; padding-left:2.3rem; color:var(--navy); font-size:1.08rem; font-weight:650; line-height:1.3}
.checklist li::before{content:""; position:absolute; left:.1rem; top:.3em; width:18px; height:10px; border-left:3.5px solid var(--gold-dark); border-bottom:3.5px solid var(--gold-dark); transform:rotate(-45deg)}
.schedule-text .btn{margin-top:1.3rem}
.schedule .fineprint{color:var(--muted); margin-top:.6rem}
.schedule-action{display:flex; flex-direction:column; gap:.7rem; align-items:flex-start; justify-content:center}

/* ---------- team ---------- */
.team-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:1rem}
.agent{background:#fff; border:1px solid var(--line); border-radius:var(--r); overflow:hidden; box-shadow:var(--shadow-sm); display:flex; flex-direction:column; transition:transform .2s, box-shadow .2s}
.agent:hover{transform:translateY(-4px); box-shadow:var(--shadow-md)}
.agent-photo{position:relative; aspect-ratio:4/5; background:var(--sand)}
.agent-photo img{width:100%; height:100%; object-fit:cover; object-position:top center}
.agent-video{
  position:absolute; bottom:10px; right:10px; display:flex; align-items:center; gap:.35rem;
  background:rgba(14,42,71,.78); color:#fff; font-size:.72rem; font-weight:600;
  padding:.35rem .6rem; border-radius:999px; backdrop-filter:blur(3px);
}
.agent-video svg{width:13px; height:13px}
.agent-lead{position:absolute; top:10px; left:10px; background:var(--gold); color:#3a2606; font-size:.66rem; font-weight:800; letter-spacing:.05em; text-transform:uppercase; padding:.3rem .6rem; border-radius:999px}
.agent-body{padding:.95rem 1rem 1.1rem; display:flex; flex-direction:column; flex:1}
.agent-name{font-family:var(--serif); font-weight:600; font-size:1.12rem; color:var(--navy); line-height:1.1}
.agent-title{font-size:.74rem; letter-spacing:.05em; text-transform:uppercase; color:var(--gold-dark); font-weight:700; margin:.25rem 0 .5rem}
.agent-bio{font-size:.88rem; color:var(--muted); flex:1; margin-bottom:.8rem}
.agent-contact{display:inline-flex; align-items:center; gap:.4rem; font-size:.85rem; font-weight:650; color:var(--blue)}
.agent-contact svg{width:15px; height:15px}

/* ---------- agent tools (unfinished on purpose) ---------- */
.section-tools{background:linear-gradient(180deg,var(--cream),#f3eee3)}
.tools-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:1rem}
.tool-slot{
  border:2px dashed #c8bda6; border-radius:var(--r); background:rgba(255,255,255,.4);
  min-height:130px; display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:.45rem; text-align:center; padding:1.2rem; transition:border-color .2s, background .2s;
}
.tool-slot:hover{border-color:var(--gold); background:rgba(255,255,255,.7)}
.tool-tag{font-family:var(--serif); font-size:1.1rem; color:#8a7f68; font-weight:600}
.tool-hint{font-size:.82rem; color:#a99e85}
.tools-foot{text-align:center; margin-top:1.6rem; color:var(--muted); font-style:italic}

/* ---------- footer ---------- */
.site-footer{background:var(--navy); color:rgba(255,255,255,.82); padding-top:clamp(48px,7vw,72px)}
.footer-inner{display:grid; gap:2rem; padding-bottom:2.4rem}
.footer-brandrow .brand-mark{height:46px}
.footer-brandrow .brand-word{height:30px}
.footer-brandrow .brand-sub{color:rgba(255,255,255,.6)}
.footer-tag{margin-top:1rem; font-size:.92rem; color:rgba(255,255,255,.7); max-width:34em}
.footer-col h4{font-family:var(--sans); font-size:.78rem; letter-spacing:.12em; text-transform:uppercase; color:var(--gold); margin-bottom:.8rem}
.footer-col p{margin-bottom:.7rem; line-height:1.5}
.footer-col a{color:#fff; font-weight:650}
.footer-col a:hover{color:var(--gold)}
.footer-col .cap{display:block; font-size:.78rem; color:rgba(255,255,255,.55); font-weight:400}
.footer-bottom{display:flex; flex-direction:column; gap:1rem; align-items:flex-start; padding:1.6rem 20px; border-top:1px solid rgba(255,255,255,.12); font-size:.85rem; color:rgba(255,255,255,.6)}
.demo-badge{display:inline-flex; align-items:center; gap:.5rem; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16); color:rgba(255,255,255,.8); padding:.5rem .9rem; border-radius:999px; font-size:.8rem}
.demo-badge::before{content:""; width:7px; height:7px; border-radius:50%; background:var(--gold)}

/* ---------- mobile sticky cta ---------- */
.mobile-cta{
  position:fixed; left:0; right:0; bottom:0; z-index:40;
  padding:.7rem 16px calc(.7rem + env(safe-area-inset-bottom));
  background:rgba(250,247,241,.94); backdrop-filter:blur(10px);
  border-top:1px solid var(--line);
  transform:translateY(120%); transition:transform .3s ease;
}
.mobile-cta.show{transform:translateY(0)}

/* ---------- modals ---------- */
.modal{position:fixed; inset:0; z-index:100; display:none}
.modal.open{display:block}
.modal-backdrop{position:absolute; inset:0; background:rgba(8,20,36,.6); backdrop-filter:blur(3px); animation:fade .2s ease}
.modal-card{
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:min(520px,92vw); max-height:90vh; overflow-y:auto;
  background:var(--cream); border-radius:var(--r-lg); padding:1.8rem 1.6rem 1.5rem;
  box-shadow:var(--shadow-lg); animation:pop .25s cubic-bezier(.2,.8,.3,1.2);
}
@keyframes fade{from{opacity:0}}
@keyframes pop{from{opacity:0; transform:translate(-50%,-46%) scale(.96)}}
.modal-x{position:absolute; top:12px; right:14px; width:38px; height:38px; border:0; background:rgba(14,42,71,.07); border-radius:50%; font-size:1.5rem; line-height:1; color:var(--navy); cursor:pointer}
.modal-x:hover{background:rgba(14,42,71,.14)}
.modal-progress{display:flex; gap:6px; margin-bottom:1.3rem; padding-right:2rem}
.mp{height:5px; flex:1; border-radius:3px; background:var(--sand-line); transition:background .3s}
.mp.on{background:var(--gold)}
.modal-eyebrow{font-size:.75rem; letter-spacing:.1em; text-transform:uppercase; color:var(--gold-dark); font-weight:700; margin-bottom:.5rem}
.step{display:none}
.step.on{display:block; animation:fade .25s ease}
.step h3{font-size:1.4rem; margin-bottom:1.1rem}
.field-label{display:block; font-weight:650; font-size:.9rem; color:var(--navy); margin:1.1rem 0 .6rem}
.pills{display:flex; flex-wrap:wrap; gap:.5rem}
.pill{border:1.5px solid var(--sand-line); background:#fff; color:var(--ink); border-radius:999px; padding:.6rem 1rem; font:inherit; font-size:.92rem; cursor:pointer; transition:.15s}
.pill:hover{border-color:var(--gold)}
.pill.sel{border-color:var(--gold); background:#fdf4e3; color:var(--gold-dark); font-weight:650}
.field{margin-bottom:.9rem}
.field label{display:block; font-weight:650; font-size:.9rem; color:var(--navy); margin-bottom:.35rem}
.field input{width:100%; border:1.5px solid var(--sand-line); border-radius:var(--r-sm); padding:.75rem .9rem; font:inherit; font-size:1rem; background:#fff; color:var(--ink)}
.field input:focus{outline:0; border-color:var(--blue-bright); box-shadow:0 0 0 3px rgba(45,108,223,.15)}
.modal-actions{display:flex; align-items:center; justify-content:space-between; gap:.8rem; margin-top:1.5rem}
.modal-actions.center{justify-content:center}
.step-done{text-align:center; padding-top:.5rem}
.done-check{width:64px; height:64px; margin:0 auto 1rem; border-radius:50%; background:#e8f5ee; color:#2f7d4f; display:grid; place-items:center; animation:pop .35s ease}
.done-check svg{width:32px; height:32px}
.step-done p{color:var(--muted); margin-bottom:.7rem}
.demo-flag{font-size:.82rem; color:var(--gold-dark); font-weight:600}

/* ---------- reveal animation ---------- */
.reveal{opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease}
.reveal.in{opacity:1; transform:none}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (min-width:600px){
  .listings-grid{grid-template-columns:repeat(2,1fr)}
  .explain-grid{grid-template-columns:1fr 1fr}
  .schedule{grid-template-columns:1.3fr 1fr; align-items:center}
  .footer-bottom{flex-direction:row; justify-content:space-between; align-items:center}
  .team-grid{grid-template-columns:repeat(3,1fr)}
  .tools-grid{grid-template-columns:repeat(4,1fr)}
  .hero-cta-row{flex-direction:row; align-items:center; flex-wrap:wrap}
  .search{flex-direction:row; align-items:center}
  .search-field{min-width:200px}
}
@media (min-width:880px){
  .nav{display:flex; align-items:center; gap:1.6rem}
  .nav-toggle{display:none}
  .flow{grid-template-columns:1fr auto 1fr auto 1fr; align-items:stretch}
  .flow-arrow{display:block}
  .prequalify-cta{grid-template-columns:1fr 1.1fr}
  .section-prequalify .prequalify-card-preview{order:0}
  .listings-grid{grid-template-columns:repeat(3,1fr)}
  .footer-inner{grid-template-columns:2fr 1fr 1.2fr 1fr; gap:2.5rem}
  .mobile-cta{display:none}
  section[id],footer[id]{scroll-margin-top:104px}
}
@media (min-width:1040px){
  .team-grid{grid-template-columns:repeat(4,1fr)}
  .checklist li{white-space:nowrap}
}

@media (prefers-reduced-motion:reduce){
  *{animation:none !important; scroll-behavior:auto !important}
  .reveal{opacity:1; transform:none; transition:none}
}
