/* ============================================================
   Hoover Buildings — clone stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&family=Poppins:wght@600;700;800;900&display=swap');

:root{
  --red:#E31E24;
  --red-dark:#B3151A;
  --red-darker:#8f1015;
  --gold:#F4B740;
  --gold-dark:#e0a12b;
  --dark:#17181B;
  --dark-2:#1f2023;
  --dark-3:#2a2b2f;
  --ink:#1a1c1e;
  --gray-900:#26272b;
  --gray-700:#4b4d53;
  --gray-500:#767981;
  --gray-300:#c9cad0;
  --gray-100:#eceef1;
  --gray-50:#f6f7f9;
  --white:#ffffff;
  --radius-sm:6px;
  --radius:12px;
  --radius-lg:20px;
  --shadow:0 10px 30px rgba(20,20,25,.08);
  --shadow-lg:0 20px 50px rgba(20,20,25,.18);
  --font-head:'Poppins',system-ui,sans-serif;
  --font-body:'Inter',system-ui,sans-serif;
  --container:1440px;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;overflow-x:hidden}
/* NOTE: overflow-x must stay off `body` — setting it there too turns body
   into its own scroll container (forces overflow-y:auto per spec), which
   detaches position:sticky descendants (.site-header) from the real
   viewport scroller and silently breaks the sticky header. */
body{
  max-width:100%;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img,svg{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{font:inherit;cursor:pointer;border:none;background:none;color:inherit}
input,select,textarea{font:inherit;color:inherit}
h1,h2,h3,h4{font-family:var(--font-head);line-height:1.15;font-weight:900;letter-spacing:-.01em}
.icon{width:1em;height:1em;stroke:currentColor;stroke-width:2;fill:none;stroke-linecap:round;stroke-linejoin:round}

.container{width:100%;max-width:var(--container);margin:0 auto;padding:0 24px}

/* -------- eyebrow / kicker -------- */
.eyebrow{
  display:inline-flex;align-items:center;
  font-family:var(--font-body);font-weight:700;font-size:.78rem;
  letter-spacing:.12em;text-transform:uppercase;color:var(--red);
  margin-bottom:14px;
}
.eyebrow.on-dark{color:var(--gold)}
.eyebrow.center{justify-content:center}
.eyebrow.eyebrow-blue{color:#2f5fdb}

.section-head{max-width:640px;margin:0 auto 36px;text-align:center}
.section-head h2{font-size:clamp(1.7rem,3vw,2.4rem);margin-bottom:14px}
.section-head p{color:var(--gray-700);font-size:1.02rem}
.section-head.left{margin-left:0;text-align:left}

/* -------- buttons -------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:14px 26px;border-radius:999px;font-weight:600;font-size:.95rem;
  white-space:nowrap;transition:transform .15s ease,box-shadow .15s ease,background .15s ease,color .15s ease;
}
.btn:active{transform:translateY(1px)}
.btn-red{background:var(--red);color:#fff;box-shadow:0 8px 20px rgba(227,30,36,.28)}
.btn-red:hover{background:var(--red-dark)}
.btn-gold{background:linear-gradient(180deg,#f7c25c,var(--gold-dark));color:#291a00;font-weight:800;box-shadow:0 8px 20px rgba(244,183,64,.35)}
.btn-gold:hover{filter:brightness(1.05)}
.btn-dark{background:var(--dark);color:#fff}
.btn-dark:hover{background:#000}
.btn-outline{border:1.5px solid rgba(255,255,255,.5);color:#fff}
.btn-outline:hover{background:rgba(255,255,255,.12)}
.btn-outline-dark{border:1.5px solid var(--gray-300);color:var(--ink)}
.btn-outline-dark:hover{border-color:var(--red);color:var(--red)}
.btn-block{width:100%}
.btn-sm{padding:10px 18px;font-size:.85rem}
.btn-link{display:inline-flex;align-items:center;gap:6px;font-weight:600;color:var(--red);font-size:.9rem}
.btn-link .icon{width:16px;height:16px;transition:transform .15s}
.btn-link:hover .icon{transform:translateX(3px)}
.btn-link.on-dark{color:var(--gold)}

/* ============================================================
   TOPBAR
   ============================================================ */
/* No JS-driven collapse here on purpose: the topbar is plain, un-sticky
   content sitting above the sticky header, so scrolling it out of view is
   handled entirely natively by the browser — 1:1 with the scroll gesture,
   nothing to animate or race against. It reappears exactly when you
   scroll back up to the very top, which is what "only show at the top"
   means in practice. */
.topbar{background:var(--dark);color:#dfe0e3;font-size:.76rem;overflow:hidden}
.topbar .container{display:flex;align-items:center;justify-content:center;padding-top:10px;padding-bottom:10px}
.topbar-msg{display:flex;align-items:center;justify-content:center;gap:7px;flex-wrap:wrap;font-weight:600;text-align:center;text-transform:uppercase;letter-spacing:.03em}
.topbar-slide{display:inline-flex;align-items:center;gap:7px}
.topbar-msg .flag{font-size:.9em}
.topbar-msg strong{color:#fff;font-weight:700}
.topbar-msg .sep{color:var(--gray-500)}
.topbar-msg .gold{color:var(--gold);font-weight:700}
.topbar-msg .gold:hover{text-decoration:underline}
.topbar-phone{color:var(--red);font-weight:800;letter-spacing:.02em}
.topbar-phone:hover{color:#ff5257}

/* ============================================================
   HEADER
   ============================================================ */
/* .site-header keeps its normal scroll runway (sticks once you've
   scrolled past the topbar, same feel as before) — only .site-header
   is sticky, not the topbar above it. */
.site-header{background:#fff;position:sticky;top:0;z-index:50;box-shadow:0 1px 0 var(--gray-100)}
.header-top{border-bottom:1px solid var(--gray-100)}
.header-top-inner{display:flex;align-items:center;justify-content:space-between;gap:18px;padding-top:14px;padding-bottom:14px}
.logo{display:flex;align-items:center;flex-shrink:0}
.logo-img{height:36px;width:auto;display:block}
@media (min-width:861px){
  .site-header .logo-img{height:44px}
}

.header-nav-row .container{display:flex;justify-content:center}
.main-nav{min-width:0}
.main-nav ul{display:flex;align-items:center;gap:30px;padding:11px 0}
.main-nav a{font-weight:500;font-size:.87rem;color:var(--gray-900);letter-spacing:.005em;display:flex;align-items:center;gap:4px;padding:4px 0;white-space:nowrap}
.main-nav a:hover{color:var(--red)}
.caret{width:0;height:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:4px solid currentColor;opacity:.5;margin-top:2px;flex-shrink:0}

.header-actions{display:flex;align-items:center;gap:8px;flex-shrink:0}

.pill-btn{
  display:flex;align-items:center;gap:9px;
  padding:8px 18px;border-radius:999px;color:#fff;white-space:nowrap;
}
.pill-btn > .icon{width:15px;height:15px;flex-shrink:0;opacity:.9}
.pill-text{display:flex;flex-direction:column;line-height:1.2;text-align:left}
.pill-text small{font-size:.64rem;letter-spacing:.06em;text-transform:uppercase;font-weight:200;opacity:.8}
.pill-text strong{font-size:.93rem;font-weight:700}
.pill-call{background:var(--dark)}
.pill-quote{background:var(--red);box-shadow:0 6px 16px rgba(227,30,36,.28)}
.pill-btn:hover{filter:brightness(1.08)}

.bbb-badge{display:flex;align-items:stretch;border:1.4px solid #1b3f8f;border-radius:6px;overflow:hidden;flex-shrink:0;height:38px;font-family:var(--font-body)}
.bbb-blue{background:#1b3f8f;color:#fff;font-weight:800;font-size:.8rem;letter-spacing:.02em;display:flex;align-items:center;justify-content:center;padding:0 10px}
.bbb-white{background:#fff;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:2px 12px;line-height:1.05;gap:1px}
.bbb-plus{font-size:1rem;font-weight:900;color:#1b3f8f;-webkit-text-stroke:.3px #1b3f8f}
.bbb-word{font-size:.48rem;font-weight:800;letter-spacing:.04em;color:#4b5563}

.nav-toggle{display:none;width:38px;height:38px;align-items:center;justify-content:center;border-radius:8px;border:1px solid var(--gray-100);flex-shrink:0}
.nav-toggle .icon{width:18px;height:18px}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative;color:#fff;overflow:hidden;
  background:
    linear-gradient(rgba(8,9,11,.72),rgba(8,9,11,.72)),
    url("../images/cover-photo-scaled.jpg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.hero .container{position:relative;display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:flex-start;padding-top:64px;padding-bottom:90px}
.hero-badge{display:inline-block;background:var(--red);color:#fff;padding:8px 16px;border-radius:6px;font-size:.72rem;font-weight:800;letter-spacing:.07em;text-transform:uppercase;margin-bottom:22px}
.hero h1{font-size:clamp(2.6rem,5vw,4.1rem);font-weight:800;line-height:1.06;margin-bottom:22px}
.hero h1 .accent{color:var(--gold)}
.hero p.lead{color:#c3c4cb;font-size:1.02rem;max-width:480px;margin-bottom:32px}
.hero-cta{display:flex;gap:14px;flex-wrap:wrap}
.hero-cta .btn .icon{width:16px;height:16px}
.btn-dark-glass{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.18);color:#fff;backdrop-filter:blur(4px)}
.btn-dark-glass:hover{background:rgba(255,255,255,.16)}

.hero-card{
  background:#fff;color:var(--ink);border-radius:var(--radius-lg);
  padding:44px 40px 46px;box-shadow:var(--shadow-lg);margin-top:6px;
}
.hero-card-badge{display:block;color:var(--red);font-weight:800;font-size:.8rem;letter-spacing:.08em;text-transform:uppercase;margin-bottom:26px}
.hero-checklist{display:flex;flex-direction:column;gap:26px;margin-bottom:32px}
.hero-checklist li{display:flex;align-items:center;gap:16px;font-size:.98rem;font-weight:600;color:var(--gray-900)}
.hero-checklist .check-circle-icon{width:24px;height:24px}
.hero-card .btn{padding:17px 26px;font-size:1rem}
.check-dot{flex-shrink:0;width:26px;height:26px;border-radius:50%;background:var(--gray-100);color:var(--red);display:flex;align-items:center;justify-content:center}
.check-dot .icon{width:13px;height:13px;stroke-width:2.4}
.hero-checklist .check-dot{width:34px;height:34px}
.hero-checklist .check-dot .icon{width:16px;height:16px}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip{background:var(--red);color:#fff}
.stats-strip .container{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;padding-top:22px;padding-bottom:22px;text-align:center}
.stats-strip .stat{position:relative}
.stats-strip .stat:not(:last-child)::after{content:'';position:absolute;top:2px;bottom:2px;right:-12px;width:1px;background:rgba(255,255,255,.25)}
.stats-strip .stat b{display:block;font-family:var(--font-head);font-size:clamp(1.3rem,2vw,1.65rem);font-weight:800;color:var(--gold);line-height:1;margin-bottom:4px}
.stats-strip .stat span{font-size:.8rem;color:#ffd9da;font-weight:600;letter-spacing:.02em}

.marquee-bar{background:#0b0b0c;overflow:hidden;padding:13px 0}
.marquee-track{display:flex;width:max-content;animation:marquee 30s linear infinite}
.marquee-track span{display:inline-flex;align-items:center;color:#8d8f95;font-size:.76rem;font-weight:700;letter-spacing:.05em;text-transform:uppercase;white-space:nowrap}
.marquee-track span::after{content:'';display:inline-block;width:6px;height:6px;background:var(--red);transform:rotate(45deg);margin:0 18px;flex-shrink:0}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@media (prefers-reduced-motion:reduce){.marquee-track{animation:none}}

/* ============================================================
   GENERIC SPLIT SECTION (image + text)
   ============================================================ */
.split{padding:64px 0;background:var(--gray-50)}
.split .container{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
.split.reverse .container{direction:rtl}
.split.reverse .container > *{direction:ltr}
.split-media{position:relative}
.split-media .ph{border-radius:var(--radius-lg);aspect-ratio:4/3.2;box-shadow:var(--shadow)}
.floating-badge{
  position:absolute;left:-15px;top:90%;transform:translateY(-50%);background:linear-gradient(160deg,var(--red),var(--red-darker));
  border-radius:10px;box-shadow:var(--shadow-lg);padding:12px 16px;display:flex;flex-direction:column;align-items:flex-start;gap:2px;color:#fff;
  white-space:nowrap;z-index:2;
}
.floating-badge.on-photo{left:-57px}
.floating-badge .fb-num{font-family:var(--font-head);font-weight:800;font-size:1.4rem;line-height:1}
.floating-badge .fb-txt{font-size:.72rem;font-weight:600;line-height:1.2;opacity:.9}

/* "Built for You" split badge: sits inside the photo (bottom-left), not overhanging the edge */
.split-media .floating-badge{left:20px;right:auto;top:auto;bottom:20px;transform:none}

.split-content .eyebrow{margin-bottom:12px}
.split-content h2{font-size:clamp(1.7rem,3.2vw,2.3rem);margin-bottom:18px}
.split-content > p{color:var(--gray-700);margin-bottom:28px}
.feature-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px 24px;margin-bottom:32px}
.feature-item{display:flex;align-items:center;gap:10px;font-weight:600;font-size:.92rem;color:var(--gray-900)}
.check-circle-icon{width:20px;height:20px;flex-shrink:0;color:var(--red);fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}

/* ============================================================
   PLACEHOLDER PHOTO BLOCKS
   ============================================================ */
.ph{
  position:relative;width:100%;height:100%;overflow:hidden;
  display:flex;align-items:center;justify-content:center;
  background-size:cover;
}
.ph img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
.ph::before{
  content:'';position:absolute;inset:0;z-index:1;
  background:linear-gradient(180deg,rgba(0,0,0,0) 55%,rgba(0,0,0,.5) 100%);
}
.ph .ph-icon{position:relative;width:26%;max-width:64px;color:rgba(255,255,255,.85);opacity:.9}
.ph .ph-tag{
  position:absolute;z-index:2;left:14px;bottom:14px;background:rgba(10,10,12,.55);color:#fff;
  font-size:.72rem;font-weight:700;letter-spacing:.04em;padding:6px 12px;border-radius:999px;
  backdrop-filter:blur(3px);
}
.ph-1{background:linear-gradient(135deg,#8a2c2f,#3a1214)}
.ph-2{background:linear-gradient(135deg,#3d5a73,#1c2b38)}
.ph-3{background:linear-gradient(135deg,#4f7942,#1f3018)}
.ph-4{background:linear-gradient(135deg,#5a5f6b,#23262c)}
.ph-5{background:linear-gradient(135deg,#a9762c,#4a3212)}
.ph-6{background:linear-gradient(135deg,#6a4a8f,#241835)}
.ph-7{background:linear-gradient(135deg,#c0392b,#5c1710)}
.ph-8{background:linear-gradient(135deg,#2c3e50,#0f1720)}
.ph-hero{background:linear-gradient(135deg,#4b4d53,#1a1b1e)}

/* ============================================================
   BUILD TYPES GRID
   ============================================================ */
.types{padding:64px 0;background:var(--white)}
.types .section-head{max-width:760px}
.types .section-head h2{font-size:clamp(1.9rem,3.4vw,2.65rem);white-space:nowrap}
.types-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.type-card .ph{border-radius:var(--radius);aspect-ratio:4/2.9;box-shadow:var(--shadow)}
.type-card-label{
  position:absolute;left:0;right:0;bottom:0;padding:36px 16px 16px;z-index:2;
  background:linear-gradient(0deg,rgba(0,0,0,.88),rgba(0,0,0,.55) 60%,transparent);color:#fff;
}
.type-card-label h3{font-size:.94rem;font-weight:600;letter-spacing:normal;margin-bottom:2px;color:#fff;text-shadow:0 1px 4px rgba(0,0,0,.6)}
.type-card-label span{font-size:.72rem;color:#fff;font-weight:500;text-shadow:0 1px 3px rgba(0,0,0,.6)}

/* ============================================================
   QUALITY (dark) SECTION
   ============================================================ */
.quality{background:var(--dark);color:#fff;padding:72px 0}
.quality .container{display:grid;grid-template-columns:.8fr 1.2fr;gap:130px;align-items:center}
.pill-eyebrow{display:inline-block;background:rgba(255,255,255,.08);color:var(--red);font-weight:700;font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;padding:8px 16px;border-radius:999px;margin-bottom:20px}
.pill-eyebrow.indigo{color:#8b93f5}
.quality h2{font-size:clamp(1.9rem,3.4vw,2.6rem);margin-bottom:18px}
.quality > .container > div:first-child > p{color:#b7b9c0;margin-bottom:28px}
.quality-list{display:flex;flex-direction:column;gap:16px;margin-bottom:34px}
.quality-list li{display:flex;align-items:center;gap:12px;font-size:.95rem;color:#e6e6ea}
.quality-cta{display:flex;align-items:center;gap:20px;flex-wrap:wrap}

.collage{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:1fr 1fr;gap:16px;height:600px}
.collage .ph{border-radius:var(--radius)}
.collage-main-wrap{position:relative;grid-row:1/3}
.collage-main{width:100%;height:100%}

/* ============================================================
   WHAT WE OFFER
   ============================================================ */
.offer{padding:72px 0}
.offer-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}
.offer-card{
  border:1px solid var(--gray-100);border-radius:var(--radius);padding:30px 26px;
  transition:box-shadow .2s ease,transform .2s ease,border-color .2s ease;
}
.offer-card:hover{box-shadow:var(--shadow);transform:translateY(-4px);border-color:transparent}
.offer-icon{
  width:52px;height:52px;border-radius:12px;background:#e9eefc;color:#2f5fdb;
  display:flex;align-items:center;justify-content:center;margin-bottom:20px;
}
.offer-icon .icon{width:24px;height:24px}
.offer-card h3{font-size:1.08rem;font-weight:700;margin-bottom:8px}
.offer-card p{color:var(--gray-500);font-size:.88rem}

/* ============================================================
   TOP BUILDS (dark) SECTION
   ============================================================ */
.builds{background:var(--dark);padding:72px 0;color:#fff}
.builds .section-head h2{font-size:clamp(1.9rem,3.4vw,2.65rem);margin-bottom:10px}
.builds-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;margin-bottom:48px}
.build-card{background:var(--dark-2);border-radius:var(--radius);overflow:hidden;border:1px solid rgba(255,255,255,.06)}
.build-card-media{position:relative}
.build-card .ph{aspect-ratio:4/2.4}
.build-tag{
  position:absolute;top:12px;left:12px;background:var(--red);color:#fff;
  font-size:.6rem;font-weight:800;letter-spacing:.04em;text-transform:uppercase;
  padding:6px 12px;border-radius:999px;
}
.build-card-body{padding:18px 18px 20px}
.build-dims{display:block;color:var(--gray-500);font-size:.76rem;margin-bottom:6px}
.build-card-body h3{font-size:1.02rem;font-weight:700;color:#fff;margin-bottom:8px}
.build-card-body p{color:#9d9ea5;font-size:.85rem;margin-bottom:16px}
.build-card-divider{border-top:1px solid rgba(255,255,255,.1);margin-bottom:12px}
.build-loc{display:flex;align-items:center;gap:6px;color:var(--gray-500);font-size:.78rem}
.build-loc .icon{width:13px;height:13px}
.builds-cta{display:flex;align-items:center;justify-content:center;gap:24px;flex-wrap:wrap}

/* ============================================================
   PROMISE (3-col) + offices bar
   ============================================================ */
.promise{padding:72px 0 0}
.promise .section-head{max-width:680px}
.promise .section-head h2{white-space:nowrap}
.promise-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;margin-bottom:40px}
.promise-card{background:#fff;border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden}
.promise-card-img{aspect-ratio:16/9.5;overflow:hidden;background:var(--gray-100)}
.promise-card-img img{width:100%;height:100%;object-fit:cover;object-position:center;transition:transform .4s ease}
.promise-card:hover .promise-card-img img{transform:scale(1.04)}
.promise-card-body{padding:22px 24px 26px}
.promise-tag{display:inline-block;background:#fdecec;color:var(--red);font-weight:700;font-size:.68rem;letter-spacing:.06em;text-transform:uppercase;padding:6px 12px;border-radius:999px;margin-bottom:14px}
.promise-card h3{font-size:1.1rem;font-weight:700;margin-bottom:8px}
.promise-card p{color:var(--gray-500);font-size:.9rem}

.offices-bar{
  background:var(--dark);color:#fff;border-radius:var(--radius-lg);
  padding:30px 40px;display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;
  position:relative;top:28px;box-shadow:var(--shadow-lg);
}
.offices-bar h3{font-size:1.3rem;margin-bottom:6px}
.offices-bar p{color:#b7b9c0;font-size:.9rem}
.offices-actions{display:flex;gap:12px;flex-wrap:wrap}
.promise-spacer{height:28px}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials{padding:150px 0 100px;background:var(--gray-50)}
.rating-row{display:flex;align-items:center;justify-content:center;gap:10px;margin-bottom:8px}
.stars{display:flex;gap:2px;color:var(--gold)}
.stars .icon{width:16px;height:16px;fill:currentColor}
.rating-row span:not(.stars){font-weight:700;font-size:.9rem;color:var(--gray-700)}
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.testi-card{position:relative;background:#fff;border-radius:var(--radius);padding:28px;box-shadow:var(--shadow)}
.testi-card .stars{margin-bottom:14px}
.testi-quote{position:absolute;top:27px;right:26px;width:22px;height:20px}
.testi-quote::before,.testi-quote::after{content:"";position:absolute;top:0;width:8px;height:20px;border-radius:3px;background:#f7d67d}
.testi-quote::before{left:0}
.testi-quote::after{left:13px}
.testi-card p{color:var(--gray-700);font-size:.94rem;margin-bottom:18px}
.testi-person{display:flex;align-items:center;gap:12px;padding-top:16px;border-top:1px solid var(--gray-100)}
.testi-avatar{width:42px;height:42px;border-radius:50%;background:linear-gradient(135deg,var(--red),var(--red-darker));color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;flex-shrink:0}
.testi-person>div{display:flex;flex-direction:column;gap:2px}
.testi-person strong{font-size:.9rem;line-height:1}
.testi-person span:not(.testi-avatar){font-size:.78rem;color:var(--gray-500);line-height:1}

/* ============================================================
   FAQ
   ============================================================ */
.faq{padding:72px 0}
.faq-list{max-width:820px;margin:0 auto 40px}
.faq-item{border-bottom:1px solid var(--gray-100)}
.faq-q{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:22px 4px;text-align:left;font-family:var(--font-head);font-weight:600;font-size:1rem;
}
.faq-q .icon{width:18px;height:18px;flex-shrink:0;transition:transform .2s ease;color:var(--red)}
.faq-item.open .faq-q .icon{transform:rotate(180deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .25s ease}
.faq-a p{padding:0 4px 22px;color:var(--gray-700);font-size:.92rem;max-width:680px}
.faq-cta{
  max-width:820px;margin:0 auto;background:var(--dark);color:#fff;border-radius:var(--radius);
  padding:26px 30px;display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap;
}
.faq-cta h4{font-size:1.02rem;margin-bottom:4px}
.faq-cta p{color:var(--gray-300);font-size:.86rem}

/* ============================================================
   QUOTE FORM CTA
   ============================================================ */
.quote-section{background:var(--gray-50);padding:72px 0}
.quote-section .container{display:grid;grid-template-columns:.85fr 1.15fr;gap:56px;align-items:stretch}
.quote-photo{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow)}
.quote-photo img{width:100%;height:100%;min-height:420px;object-fit:cover}
.quote-right{display:flex;flex-direction:column;gap:32px}
.quote-intro{color:var(--ink);text-align:center}
.quote-intro h2{font-size:clamp(1.8rem,3.2vw,2.5rem);margin-bottom:16px}
.quote-intro p{color:var(--gray-500);margin:0 auto 26px;max-width:420px}
.quote-points{display:flex;flex-direction:column;align-items:center;gap:14px}
.quote-points li{display:flex;align-items:center;gap:12px;font-size:.92rem;color:var(--gray-700)}

.quote-form{display:flex;flex-direction:column;gap:20px}
.qf-group{background:#fff;border:1px solid var(--gray-100);border-radius:var(--radius);overflow:hidden}
.qf-legend{display:flex;align-items:center;gap:10px;font-weight:700;font-size:.95rem;color:var(--ink);padding:18px 22px;border-bottom:1px solid var(--gray-100)}
.qf-legend .num{width:24px;height:24px;border-radius:50%;background:var(--red);color:#fff;font-size:.75rem;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.qf-body{padding:22px}
.qf-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:14px}
.qf-row.cols-3{grid-template-columns:1.4fr .8fr .8fr}
.qf-field label{display:block;font-size:.8rem;font-weight:600;color:var(--gray-700);margin-bottom:6px}
.qf-field input,.qf-field select,.qf-field textarea{
  width:100%;border:1px solid var(--gray-100);background:var(--gray-50);border-radius:8px;
  padding:12px 14px;font-size:.9rem;transition:border-color .15s ease,background .15s ease;
}
.qf-field input:focus,.qf-field select:focus,.qf-field textarea:focus{outline:none;border-color:var(--red);background:#fff}
.qf-label{display:block;font-size:.8rem;font-weight:600;color:var(--gray-700);margin-bottom:10px}
.qf-pills{display:flex;flex-wrap:wrap;gap:10px}
.qf-pill{display:inline-flex;align-items:center;padding:11px 20px;border:1px solid var(--gray-300);border-radius:999px;font-size:.85rem;color:var(--gray-700);cursor:pointer;transition:border-color .15s ease,background .15s ease,color .15s ease}
.qf-pill:hover{border-color:var(--gray-500)}
.qf-pill[aria-pressed="true"]{border-color:var(--red);background:#fdecec;color:var(--red);font-weight:600}
.qf-pill:focus-visible{outline:2px solid var(--red);outline-offset:2px}
.qf-footnote{text-align:center;font-size:.86rem;color:var(--gray-500)}
.qf-footnote a{color:var(--red);font-weight:700}
.qf-consent{display:block;font-size:.72rem;color:var(--gray-500);line-height:1.5;text-align:center;margin:-6px 0 2px}
.qf-error{display:none;background:#fdecec;color:#b3261e;border:1px solid #f6c6c8;border-radius:8px;padding:10px 14px;font-size:.86rem;font-weight:600;text-align:center}
.qf-error.show{display:block}

.qf-steps{margin-bottom:4px}
.qf-steps-track{display:flex;align-items:center}
.qf-step-circle{flex-shrink:0;width:28px;height:28px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.75rem;background:var(--gray-100);color:var(--gray-500);transition:background .2s ease,color .2s ease}
.qf-step-circle.is-active,.qf-step-circle.is-done{background:var(--red);color:#fff}
.qf-step-line{flex:1;height:2px;background:var(--gray-100);margin:0 4px;transition:background .2s ease}
.qf-step-line.is-done{background:var(--red)}
.qf-steps-labels{display:flex;justify-content:space-between;padding:6px 1px 0}
.qf-steps-labels span{flex:1;font-size:.72rem;font-weight:600;color:var(--gray-500)}
.qf-steps-labels span:first-child{text-align:left}
.qf-steps-labels span:last-child{text-align:right}
.qf-steps-labels span:not(:first-child):not(:last-child){text-align:center}
.qf-steps-labels span.is-active{color:var(--ink)}

.qf-group[data-step]{display:none}
.qf-group[data-step].is-active{display:block}
.qf-nav{display:flex;gap:12px}
.qf-nav .btn{flex:1;white-space:normal;text-align:center}
.qf-nav .btn[hidden]{display:none}

/* ============================================================
   BOTTOM CTA BAR
   ============================================================ */
.cta-bar{background:var(--red);color:#fff;padding:56px 0}
.cta-bar .container{display:flex;align-items:center;justify-content:space-between;gap:30px;flex-wrap:wrap}
.cta-bar h2{font-size:clamp(1.5rem,2.6vw,2rem);margin-bottom:8px}
.cta-bar p{color:#ffd9da;font-size:.95rem}
.cta-bar-actions{display:flex;gap:14px;flex-wrap:wrap}
.cta-bar .btn-dark{background:var(--dark)}
.cta-bar .btn-dark:hover{background:#000}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{background:#0f1012;color:#c6c7cc;padding:80px 0 0}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1.2fr;gap:40px;padding-bottom:56px;border-bottom:1px solid rgba(255,255,255,.08)}
.footer-brand .logo{color:#fff;margin-bottom:16px}
.footer-brand p{font-size:.88rem;color:#9d9ea5;max-width:280px;margin-bottom:16px}
.footer-hours{display:flex;align-items:center;gap:8px;font-size:.85rem;color:#9d9ea5}
.footer-hours .icon{width:15px;height:15px;color:var(--red);flex-shrink:0}
.footer-label{font-family:var(--font-body);font-weight:700;font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;color:var(--red);margin-bottom:16px}
.footer-address{display:flex;align-items:flex-start;gap:10px;font-size:.87rem;color:#9d9ea5;line-height:1.4;margin-bottom:12px}
.footer-address .icon{width:15px;height:15px;color:var(--red);flex-shrink:0;margin-top:2px}
.footer-phone{display:inline-flex;align-items:center;gap:8px;font-size:.9rem;font-weight:700;color:#fff}
.footer-phone .icon{width:15px;height:15px;color:var(--red)}
.footer-serving{font-size:.87rem;color:#9d9ea5;line-height:1.6}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;padding:22px 0;font-size:.8rem;color:#77787e}
.footer-bottom a{color:#77787e}
.footer-bottom a:hover{color:#fff}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1180px){
  .bbb-badge{display:none}
  .main-nav ul{gap:13px}
  .main-nav a{font-size:.78rem}
}
@media (max-width:1080px){
  .hero .container{grid-template-columns:1fr;gap:40px}
  .hero-card{max-width:520px}
  .types-grid{grid-template-columns:repeat(2,1fr)}
  .builds-grid{grid-template-columns:repeat(2,1fr)}
  .offer-grid{grid-template-columns:repeat(2,1fr)}
  .promise-grid{grid-template-columns:1fr}
  .quality .container{grid-template-columns:1fr}
  .collage{height:360px}
  .quote-section .container{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:860px){
  .header-nav-row,.pill-quote,.bbb-badge{display:none}
  .nav-toggle{display:flex}
  .pill-call .pill-text small{display:none}
  .stats-strip .container{grid-template-columns:repeat(2,1fr);row-gap:22px}
  .stats-strip .stat:not(:last-child)::after{display:none}
  .stats-strip .stat:nth-child(odd)::after{display:block}
  .split .container{grid-template-columns:1fr}
  .split.reverse .container{direction:ltr}
  .testi-grid{grid-template-columns:1fr}
  .offices-bar{flex-direction:column;align-items:flex-start;top:0;margin-top:-14px}
  .promise-spacer{height:14px}
  .footer-grid{grid-template-columns:1fr}
}
@media (max-width:600px){
  .topbar .container{justify-content:center;text-align:center}
  .topbar-msg{position:relative;width:100%;min-height:18px;flex-wrap:nowrap;overflow:hidden}
  .topbar-msg .sep{display:none}
  .topbar-slide{
    position:absolute;left:0;right:0;top:0;
    justify-content:center;
    opacity:0;visibility:hidden;
    transition:opacity .4s ease;
    white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
  }
  .topbar-slide.is-active{opacity:1;visibility:visible}
  .hero-cta,.qf-row,.qf-checks,.qf-row.cols-3{grid-template-columns:1fr}
  .hero-cta{flex-direction:column;align-items:stretch}
  .hero-cta .btn{width:100%;justify-content:center}
  .builds-cta{flex-direction:column;align-items:stretch}
  .builds-cta .btn{width:100%;justify-content:center}
  .split-content > .btn{display:flex;width:fit-content;margin:0 auto}
  .quality-cta{justify-content:center}
  .collage{grid-template-columns:1fr 1fr;grid-template-rows:auto auto;height:auto;gap:12px}
  .collage-main-wrap{grid-column:1/3;grid-row:1;aspect-ratio:16/10}
  .collage > .ph:not(.collage-main){aspect-ratio:1/1}
  .offices-bar{align-items:center;text-align:center;border-radius:24px;padding:32px 28px}
  .offices-actions{align-self:center;flex-direction:column;align-items:center;justify-content:center;gap:14px;margin-top:6px}
  .offices-actions .btn{width:auto;min-width:200px;justify-content:center}
  .faq-cta{flex-direction:column;align-items:stretch}
  .faq-cta > a{width:100%;justify-content:center}
  .qf-row,.qf-row.cols-3{display:flex;flex-direction:column}
  .types-grid,.builds-grid,.offer-grid{grid-template-columns:1fr}
  .types .section-head h2{white-space:normal}
  .promise .section-head h2{white-space:normal}
  .cta-bar .container{flex-direction:column;text-align:center}
  .cta-bar-actions{flex-direction:column;align-items:stretch;justify-content:center;width:100%}
  .cta-bar-actions .btn{width:100%;justify-content:center}
  .footer-bottom{flex-direction:column;text-align:center}
  .floating-badge.on-photo{left:16px}

  /* -------- tighter section spacing on mobile -------- */
  .hero .container{padding-top:40px;padding-bottom:48px}
  .split,.types{padding:40px 0}
  .quality,.offer,.builds,.faq,.quote-section{padding:40px 0}
  .promise{padding:40px 0 0}
  .testimonials{padding:64px 0 48px}
  .cta-bar{padding:32px 0}
  .site-footer{padding:48px 0 0}
}

/* utility */
.mobile-menu{
  /* top is set inline by JS to sit flush under the header (.site-header),
     which stays in place — body scroll is locked while the menu is open,
     so the header's position can't drift underneath it */
  display:none;position:fixed;top:70px;left:0;right:0;bottom:0;background:var(--dark);z-index:100;
  padding:24px;flex-direction:column;overflow-y:auto;
  box-shadow:0 12px 24px rgba(0,0,0,.25);
}
.mobile-menu.open{display:flex}
.mobile-menu ul{display:flex;flex-direction:column;gap:0;margin-bottom:20px}
.mobile-menu a{color:#fff;font-family:var(--font-head);font-size:1.15rem;font-weight:600;padding:8px 0;border-bottom:1px solid rgba(255,255,255,.08);display:block}
.mobile-menu a.btn{display:flex;border-bottom:none}
.mobile-menu-bbb{display:none}
