/* ColorTrends Painting - homepage styles
   Clean static port of the approved v2 mockup. Palette and type live as
   tokens here so iteration stays config-driven. No build step, no CDN. */

:root {
  /* palette */
  --cream: #F6F1E7;
  --cream-2: #FBF8F0;
  --navy: #16233B;
  --navy-2: #0F1A2D;
  --navy-3: #0B1220;
  --gold: #C8A24A;
  --red: #D63A2E;
  --red-dark: #bf3327;
  --orange: #F2802B;
  --apricot: #F6C9A0;
  --green: #7FD0A6;

  /* text */
  --ink: #16233B;
  --ink-soft: #475063;
  --ink-muted: #5a6173;
  --on-navy: #F6F1E7;
  --on-navy-soft: #C7CEDA;
  --on-navy-muted: #AEB7C6;

  /* type */
  --head: 'Archivo', system-ui, sans-serif;
  --body: 'DM Sans', system-ui, sans-serif;

  /* layout */
  --max: 1200px;
  --pad-x: clamp(18px, 4vw, 40px);
  --pad-y: clamp(56px, 7vw, 100px);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { display: block; }
input::placeholder { color: #8a8472; }

.wrap { max-width: var(--max); margin: 0 auto; padding: var(--pad-y) var(--pad-x); }
.eyebrow {
  font-family: var(--body); font-weight: 600; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--red);
}
.eyebrow.on-navy { color: var(--gold); }
.section-h {
  font-family: var(--head); font-weight: 700;
  font-size: clamp(30px, 4vw, 46px); color: var(--ink);
  margin: 10px 0 0; letter-spacing: -0.01em;
}
.section-h.on-navy { color: var(--on-navy); }
.center-head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; margin-bottom: clamp(32px, 4vw, 48px); }

/* ---------- buttons ---------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--red); color: #fff; font-family: var(--head);
  font-weight: 700; text-decoration: none; border: none; cursor: pointer;
  border-radius: 11px; padding: 17px 28px; font-size: 18px;
  box-shadow: 0 10px 26px rgba(214,58,46,.36);
  transition: background .15s ease, transform .15s ease;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-primary .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--apricot); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px; color: var(--on-navy);
  font-family: var(--head); font-weight: 600; font-size: 16px; padding: 16px 22px;
  border: 1.5px solid rgba(246,241,231,.32); border-radius: 11px; text-decoration: none;
  transition: border-color .15s ease, color .15s ease;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; background: var(--navy);
  box-shadow: 0 1px 0 rgba(200,162,74,.25), 0 6px 20px rgba(11,18,31,.18);
}
.header-row {
  max-width: var(--max); margin: 0 auto;
  padding: 14px var(--pad-x); display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand-logo { height: 54px; width: auto; display: block; flex: 0 0 auto; }
.footer-brand .brand-logo { height: 46px; }
.badge-ctp {
  width: 50px; height: 50px; border-radius: 50%; background: var(--navy);
  border: 2.5px solid var(--gold); display: flex; flex-direction: column;
  align-items: center; justify-content: center; line-height: 1; flex: 0 0 auto;
  box-shadow: 0 0 0 4px rgba(200,162,74,.12);
}
.badge-ctp .ctp { font-family: var(--head); font-weight: 800; font-size: 15px; color: var(--cream); letter-spacing: .04em; }
.badge-ctp .num { font-family: var(--head); font-weight: 700; font-size: 10px; color: var(--orange); }
.brand-name { font-family: var(--head); font-weight: 700; font-size: 18px; color: var(--cream); letter-spacing: .01em; }
.brand-tag { font-family: var(--body); font-weight: 500; font-size: 11px; color: var(--gold); letter-spacing: .16em; text-transform: uppercase; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }

.nav-desktop { display: flex; align-items: center; gap: 30px; }
.nav-desktop a.navlink { font-family: var(--body); font-weight: 500; font-size: 15px; color: #E7E1D3; text-decoration: none; padding: 6px 0; white-space: nowrap; }
.nav-desktop a.navlink:hover { color: var(--orange); }
.nav-desktop a.navlink .caret { font-size: 10px; opacity: .8; }

/* Services dropdown (desktop) */
.nav-dropdown { position: relative; padding-bottom: 10px; margin-bottom: -10px; }
.nav-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 210px; background: var(--navy-2); border: 1px solid rgba(200,162,74,.25);
  border-radius: 11px; padding: 8px; box-shadow: 0 18px 44px rgba(8,14,24,.5);
  opacity: 0; visibility: hidden; transition: opacity .16s ease, transform .16s ease; z-index: 60;
}
.nav-dropdown:hover .nav-menu, .nav-dropdown:focus-within .nav-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-menu-link { display: block; font-family: var(--body); font-weight: 500; font-size: 14px; color: #E7E1D3; text-decoration: none; padding: 10px 14px; border-radius: 7px; white-space: nowrap; }
.nav-menu-link:hover { background: rgba(200,162,74,.14); color: var(--orange); }

/* Services children in the mobile menu */
.nav-mobile .mobile-sublink { font-size: 15px; font-weight: 500; color: var(--on-navy-muted); padding-left: 22px; }
.nav-mobile .mobile-sublink::before { content: '- '; color: var(--gold); }
.nav-phone {
  display: inline-flex; align-items: center; gap: 9px; background: var(--red);
  color: #fff; font-family: var(--head); font-weight: 700; font-size: 15px;
  padding: 12px 20px; border-radius: 9px; text-decoration: none;
  box-shadow: 0 6px 16px rgba(214,58,46,.32);
}
.nav-phone:hover { background: var(--red-dark); }
.nav-phone .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--apricot); }

.menu-btn { display: none; flex-direction: column; gap: 5px; background: transparent; border: none; cursor: pointer; padding: 10px; }
.menu-btn span { width: 24px; height: 2.5px; background: var(--cream); border-radius: 2px; }
.nav-mobile {
  background: var(--navy-2); border-top: 1px solid rgba(200,162,74,.2);
  padding: 8px var(--pad-x) 20px; display: none; flex-direction: column;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-family: var(--head); font-weight: 600; font-size: 17px; color: var(--cream); text-decoration: none; padding: 15px 4px; border-bottom: 1px solid rgba(255,255,255,.07); }
.nav-mobile .nav-phone { margin-top: 16px; justify-content: center; font-size: 17px; padding: 15px; }

/* ---------- hero ---------- */
.hero { background: var(--navy); position: relative; overflow: hidden; }
.hero-grid {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(48px,6vw,84px) var(--pad-x) clamp(56px,7vw,96px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: clamp(36px,5vw,64px); align-items: center;
}
.hero-kicker { display: inline-flex; align-items: center; gap: 9px; font-family: var(--body); font-weight: 600; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.hero-kicker .rule { width: 24px; height: 2px; background: var(--gold); }
.hero h1 {
  font-family: var(--head); font-weight: 800; font-size: clamp(38px,5.4vw,60px);
  line-height: 1.04; color: var(--cream); margin: 0 0 8px; letter-spacing: -0.015em;
}
.hero h1 .mark { position: relative; white-space: nowrap; }
.hero h1 .mark span {
  position: absolute; left: -2%; right: -3%; bottom: 4px; height: 14px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  clip-path: polygon(0 38%, 100% 8%, 100% 78%, 0 96%); z-index: -1; opacity: .92;
}
.hero-sub { font-family: var(--body); font-size: clamp(17px,2vw,20px); line-height: 1.55; color: var(--on-navy-soft); max-width: 480px; margin: 18px 0 0; }
.hero-more { font-family: var(--body); font-size: 16px; line-height: 1.6; color: var(--on-navy-muted); max-width: 480px; margin: 14px 0 0; }
.hero-more[hidden] { display: none; }
.hero-more-btn { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; background: transparent; border: none; cursor: pointer; padding: 4px 0; font-family: var(--head); font-weight: 600; font-size: 15px; color: var(--gold); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; align-items: center; }
.hero-phone { display: inline-block; margin-top: 22px; font-family: var(--head); font-weight: 700; font-size: clamp(22px,3vw,28px); color: var(--cream); text-decoration: none; letter-spacing: .01em; }
.hero-media { position: relative; }
.hero-media .frame { aspect-ratio: 4/3.2; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 60px rgba(8,14,24,.45); border: 1px solid rgba(200,162,74,.22); }
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-chip {
  position: absolute; left: -14px; bottom: -16px; background: var(--cream);
  border-radius: 12px; padding: 14px 18px; box-shadow: 0 12px 30px rgba(8,14,24,.3);
  display: flex; align-items: center; gap: 13px; border-left: 4px solid var(--gold);
}
.hero-chip .big { font-family: var(--head); font-weight: 800; font-size: 30px; color: var(--navy); line-height: 1; }
.hero-chip .big span { color: var(--gold); }
.hero-chip .cap { font-family: var(--body); font-size: 13px; font-weight: 600; line-height: 1.25; color: var(--ink-soft); }

/* ---------- proof bar ---------- */
.proof { background: var(--navy-2); }
.proof-grid { max-width: var(--max); margin: 0 auto; padding: clamp(28px,3.5vw,40px) var(--pad-x); display: grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr)); gap: 24px; }
.proof-item { display: flex; flex-direction: column; gap: 6px; border-left: 2px solid rgba(200,162,74,.4); padding: 6px 0 6px 18px; }
.proof-item .stat { font-family: var(--head); font-weight: 800; font-size: clamp(26px,3vw,34px); color: var(--gold); line-height: 1; }
.proof-item .label { font-family: var(--body); font-weight: 500; font-size: 14px; color: var(--on-navy-soft); line-height: 1.35; }

/* ---------- before / after ---------- */
.ba { background: var(--cream); }
.ba-frame { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 4px; border-radius: 16px; overflow: hidden; box-shadow: 0 18px 50px rgba(22,35,59,.16); background: var(--gold); }
.ba-pane { position: relative; aspect-ratio: 3/2.1; overflow: hidden; }
.ba-pane img { width: 100%; height: 100%; object-fit: cover; }
.ba-tag { position: absolute; top: 14px; font-family: var(--head); font-weight: 700; font-size: 12px; letter-spacing: .1em; color: #fff; padding: 5px 12px; border-radius: 5px; }
.ba-tag.before { left: 14px; background: rgba(71,80,99,.92); }
.ba-tag.after { right: 14px; background: var(--red); }
.ba-caption { text-align: center; margin-top: 18px; font-family: var(--body); font-weight: 600; font-size: 15px; color: var(--navy); }
.ba-thumbs { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 24px; }
.ba-thumb { position: relative; width: 120px; height: 74px; border-radius: 9px; overflow: hidden; border: 2px solid transparent; cursor: pointer; padding: 0; background: #e9ddc6; display: block; }
.ba-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-thumb .tag { position: absolute; left: 0; bottom: 0; font-family: var(--body); font-weight: 600; font-size: 10px; color: var(--navy); background: rgba(246,241,231,.9); padding: 3px 7px; margin: 6px; border-radius: 4px; line-height: 1.2; text-align: left; }
.ba-thumb .ring { position: absolute; inset: 0; border: 2.5px solid var(--red); border-radius: 9px; display: none; }
.ba-thumb.active .ring { display: block; }

/* ---------- services ---------- */
.services { background: var(--cream-2); }
.services-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: clamp(32px,4vw,48px); }
.services-head .lead { font-family: var(--body); font-size: 16px; color: var(--ink-muted); max-width: 380px; margin: 0; line-height: 1.55; }
.services-head .lead strong { color: var(--navy); }
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 22px; }
.svc-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 8px 24px rgba(22,35,59,.07); border: 1px solid rgba(22,35,59,.06); display: flex; flex-direction: column; }
.svc-media { position: relative; aspect-ratio: 3/1.9; background: #e7dec9; overflow: hidden; }
.svc-media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.svc-mosaic { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 3px; }
.svc-mosaic div { position: relative; overflow: hidden; background: #e7dec9; }
.svc-mosaic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.svc-placeholder { position: absolute; inset: 0; background: repeating-linear-gradient(135deg,#e7dec9 0 14px,#efe7d5 14px 28px); display: flex; align-items: center; justify-content: center; }
.svc-placeholder span { font-family: ui-monospace, monospace; font-size: 10px; letter-spacing: .05em; text-transform: uppercase; color: #6b6147; background: rgba(251,248,240,.8); padding: 5px 9px; border-radius: 4px; }
.svc-premium { position: absolute; top: 12px; right: 12px; font-family: var(--head); font-weight: 700; font-size: 10px; letter-spacing: .08em; color: var(--navy); background: var(--gold); padding: 5px 10px; border-radius: 20px; }
.svc-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.svc-body h3 { font-family: var(--head); font-weight: 700; font-size: 20px; color: var(--navy); margin: 0; }
.svc-body p { font-family: var(--body); font-size: 15px; color: var(--ink-muted); line-height: 1.5; margin: 0; flex: 1; }
.svc-body a { font-family: var(--head); font-weight: 600; font-size: 14px; color: var(--red); text-decoration: none; margin-top: 4px; }
.svc-body a:hover { color: var(--red-dark); }

/* ---------- how we work ---------- */
.how { background: var(--navy); }
.how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 18px; }
.step { background: rgba(255,255,255,.035); border: 1px solid rgba(200,162,74,.18); border-radius: 13px; padding: 24px 22px; display: flex; flex-direction: column; gap: 12px; }
.step .n { width: 42px; height: 42px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: var(--head); font-weight: 800; font-size: 18px; color: #fff; }
.step h3 { font-family: var(--head); font-weight: 700; font-size: 18px; color: var(--cream); margin: 0; }
.step p { font-family: var(--body); font-size: 14px; color: var(--on-navy-muted); line-height: 1.5; margin: 0; }

/* ---------- who we are ---------- */
.who { background: var(--cream); }
.who-grid { max-width: 1140px; margin: 0 auto; padding: var(--pad-y) var(--pad-x); display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); gap: clamp(36px,5vw,60px); align-items: center; }
.who-media { position: relative; }
.who-media .frame { aspect-ratio: 4/4.4; border-radius: 16px; overflow: hidden; box-shadow: 0 18px 44px rgba(22,35,59,.16); }
.who-media .frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; }
.who-chip { position: absolute; right: -12px; top: 24px; background: var(--navy); color: var(--cream); border-radius: 12px; padding: 12px 16px; box-shadow: 0 12px 30px rgba(8,14,24,.3); border-left: 4px solid var(--gold); }
.who-chip .t { font-family: var(--head); font-weight: 700; font-size: 14px; }
.who-chip .s { font-family: var(--body); font-size: 12px; color: var(--on-navy-muted); }
.who h2 { font-family: var(--head); font-weight: 700; font-size: clamp(28px,3.6vw,42px); color: var(--navy); margin: 12px 0 0; line-height: 1.1; letter-spacing: -0.01em; }
.who p { font-family: var(--body); font-size: 17px; color: var(--ink-soft); line-height: 1.6; margin: 20px 0 0; max-width: 460px; }
.who p + p { margin-top: 14px; }
.who-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.who-pills span { font-family: var(--head); font-weight: 600; font-size: 13px; color: var(--navy); background: #fff; border: 1px solid rgba(200,162,74,.5); padding: 9px 15px; border-radius: 30px; }

/* ---------- trust badges ---------- */
.trust { background: var(--cream-2); border-top: 1px solid rgba(22,35,59,.06); }
.trust .wrap { max-width: 1100px; text-align: center; padding: clamp(40px,4.5vw,60px) var(--pad-x); }
.trust h2 { font-family: var(--head); font-weight: 700; font-size: clamp(24px,3vw,34px); color: var(--navy); margin: 10px 0 0; letter-spacing: -0.01em; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-end; gap: clamp(28px,5vw,64px); margin-top: clamp(30px,3.5vw,44px); }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.trust-item .slot { height: 128px; display: flex; justify-content: center; }
.trust-item .slot.bottom { align-items: flex-end; }
.trust-item .slot.middle { align-items: center; }
.trust-item .label { font-family: var(--body); font-size: 13px; font-weight: 600; color: var(--ink-muted); line-height: 1.3; }
.trust-item img.owned { height: 128px; width: auto; }
.trust-item img.bbb { height: 74px; width: auto; border: 0; }
.trust-item .chamber-card { width: 148px; height: 104px; border-radius: 12px; background: #fff; border: 1px solid rgba(22,35,59,.1); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(22,35,59,.09); padding: 12px; }
.trust-item .chamber-card img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ---------- reviews ---------- */
.reviews { background: var(--cream); }
.reviews .stars-line { display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; }
.reviews .stars-line .stars { font-family: var(--head); font-weight: 700; font-size: 17px; letter-spacing: .16em; color: var(--gold); }
.reviews .stars-line .n { font-family: var(--body); font-size: 15px; font-weight: 600; color: var(--ink-muted); }
.review-featured { background: var(--navy-2); border-radius: 18px; padding: clamp(30px,4vw,52px); box-shadow: 0 18px 50px rgba(8,14,24,.25); max-width: 880px; margin: 0 auto clamp(22px,3vw,28px); position: relative; overflow: hidden; }
.review-featured .bar { position: absolute; top: 0; left: 0; width: 6px; height: 100%; background: linear-gradient(var(--red), var(--orange)); }
.review-featured .stars { font-family: var(--head); font-weight: 700; font-size: 16px; letter-spacing: .18em; color: var(--gold); margin-bottom: 18px; }
.review-featured p { font-family: var(--body); font-size: clamp(18px,2.2vw,22px); line-height: 1.6; color: var(--cream); margin: 0; }
.review-meta { display: flex; align-items: center; gap: 13px; margin-top: 24px; }
.review-meta .av { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--navy); font-family: var(--head); font-weight: 800; font-size: 17px; display: flex; align-items: center; justify-content: center; }
.review-meta .name { font-family: var(--head); font-weight: 700; font-size: 16px; color: var(--cream); }
.review-meta .when { font-family: var(--body); font-size: 13px; color: #9aa6b8; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 22px; }
.review-card { background: #fff; border-radius: 14px; padding: 26px 24px; box-shadow: 0 8px 24px rgba(22,35,59,.07); border: 1px solid rgba(22,35,59,.06); display: flex; flex-direction: column; gap: 15px; }
.review-card .top { display: flex; align-items: center; justify-content: space-between; }
.review-card .stars { font-family: var(--head); font-weight: 700; font-size: 14px; letter-spacing: .18em; color: var(--gold); }
.review-card .src { font-family: var(--body); font-weight: 600; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: #9aa0ad; }
.review-card p { font-family: var(--body); font-size: 15.5px; color: #33405a; line-height: 1.58; margin: 0; flex: 1; }
.review-card .foot { display: flex; align-items: center; gap: 12px; padding-top: 4px; border-top: 1px solid rgba(22,35,59,.08); }
.review-card .av { width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: var(--head); font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.review-card .name { font-family: var(--head); font-weight: 600; font-size: 15px; color: var(--navy); }
.review-card .when { font-family: var(--body); font-size: 12.5px; color: #8a8f9c; }

/* ---------- service area ---------- */
.area { background: var(--navy); }
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: clamp(28px,4vw,48px); align-items: start; }
.area-search { position: relative; }
.area-search input { width: 100%; font-family: var(--body); font-size: 16px; font-weight: 500; color: var(--navy); background: var(--cream); border: 1.5px solid rgba(200,162,74,.55); border-radius: 11px; padding: 15px 46px 15px 18px; }
.area-search input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,162,74,.2); }
.area-search .glass { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; border: 2px solid #8a8472; border-radius: 50%; box-shadow: 6px 6px 0 -5px #8a8472; }
.area-msg { margin-top: 14px; display: flex; align-items: center; gap: 9px; font-family: var(--body); font-weight: 600; font-size: 15px; }
.area-msg[hidden] { display: none; }
.area-msg.yes { color: var(--green); }
.area-msg.yes .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); }
.area-msg.no { color: var(--gold); }
.area-msg.no .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.area-chip { font-family: var(--head); font-weight: 600; font-size: 14px; color: var(--cream); background: rgba(255,255,255,.05); border: 1px solid rgba(200,162,74,.3); padding: 9px 16px; border-radius: 30px; cursor: pointer; }
.area-chip:hover { border-color: var(--gold); }
.area-chip.on { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.area-clear { margin-top: 14px; display: inline-flex; align-items: center; gap: 7px; background: transparent; border: 1px solid rgba(200,162,74,.4); color: var(--gold); font-family: var(--body); font-weight: 600; font-size: 13px; padding: 7px 14px; border-radius: 30px; cursor: pointer; }
.area-clear:hover { border-color: var(--gold); color: var(--cream); }
.area-clear[hidden] { display: none; }
.area-cta { display: inline-flex; align-items: center; gap: 9px; margin-top: 28px; background: var(--red); color: #fff; font-family: var(--head); font-weight: 700; font-size: 16px; padding: 15px 24px; border-radius: 10px; text-decoration: none; box-shadow: 0 8px 22px rgba(214,58,46,.32); }
.area-cta:hover { background: var(--red-dark); }
.area-map { position: relative; aspect-ratio: 4/3.2; border-radius: 16px; overflow: hidden; background: radial-gradient(circle at 50% 40%, #24344f 0%, #1a283f 70%); border: 1px solid rgba(200,162,74,.22); box-shadow: 0 18px 44px rgba(8,14,24,.4); }
.ctp-map-base { position: absolute; inset: 0; z-index: 0; opacity: .68; }
.ctp-map-vignette { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(circle at 50% 42%, rgba(26,40,63,.28) 0%, rgba(22,35,59,.6) 100%); }
.ctp-map-grid { position: absolute; inset: 0; z-index: 1; pointer-events: none; background-image: linear-gradient(rgba(200,162,74,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(200,162,74,.06) 1px, transparent 1px); background-size: 38px 38px; }
.area-map .region { position: absolute; z-index: 2; top: 14px; left: 16px; font-family: ui-monospace, monospace; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: #B9C4D6; text-shadow: 0 1px 3px rgba(8,14,24,.8); }

/* blend the OSM base into the brand */
.ctp-map .leaflet-container { background: #1a283f; font-family: var(--body); }
.ctp-map .leaflet-tile-pane { filter: saturate(.5) brightness(.9) contrast(1.04); }
.ctp-map .leaflet-control-attribution { background: rgba(15,26,45,.55); color: #7c8ba3; font-size: 9px; padding: 1px 5px; }
.ctp-map .leaflet-control-attribution a { color: var(--gold); }

/* branded pins on top of the map, three states */
.pin { position: absolute; transform: translate(-50%,-50%); display: flex; flex-direction: column; align-items: center; gap: 4px; background: transparent; border: none; padding: 6px; cursor: pointer; z-index: 2; }
.pin .lbl { white-space: nowrap; }
.pin .dot { border-radius: 50%; }
.pin.normal .lbl { font-family: var(--body); font-weight: 600; font-size: 10px; color: var(--on-navy-muted); }
.pin.normal .dot { width: 9px; height: 9px; background: var(--gold); box-shadow: 0 0 0 4px rgba(200,162,74,.18); }
.pin.hub .lbl { font-family: var(--head); font-weight: 700; font-size: 10px; color: var(--navy); background: var(--gold); padding: 3px 8px; border-radius: 5px; }
.pin.hub .dot { width: 13px; height: 13px; background: var(--gold); border: 3px solid var(--navy); box-shadow: 0 0 0 5px rgba(200,162,74,.28); }
.pin.on .lbl { font-family: var(--head); font-weight: 700; font-size: 11px; color: var(--navy); background: var(--orange); padding: 3px 8px; border-radius: 5px; box-shadow: 0 4px 10px rgba(0,0,0,.35); }
.pin.on .dot { width: 16px; height: 16px; background: var(--red); border: 3px solid var(--apricot); animation: ctpPulse 1.8s ease-out infinite; }

/* result card + empty helper below the map */
.area-result { margin-top: 14px; background: var(--cream); border-radius: 12px; padding: 14px 16px; box-shadow: 0 12px 30px rgba(8,14,24,.28); display: flex; align-items: center; gap: 13px; animation: ctpCardIn .28s ease; }
.area-result[hidden] { display: none; }
.area-result .check { flex: 0 0 auto; width: 36px; height: 36px; border-radius: 50%; background: #1f9d57; color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--head); font-weight: 800; font-size: 18px; }
.area-result .info { flex: 1; min-width: 0; line-height: 1.3; }
.area-result .t { font-family: var(--head); font-weight: 700; font-size: 15.5px; color: var(--navy); }
.area-result .s { font-family: var(--body); font-size: 12.5px; color: var(--ink-muted); }
.area-result .call { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 7px; background: var(--red); color: #fff; font-family: var(--head); font-weight: 700; font-size: 13.5px; padding: 10px 15px; border-radius: 9px; text-decoration: none; white-space: nowrap; box-shadow: 0 6px 16px rgba(214,58,46,.3); }
.area-result .call:hover { background: var(--red-dark); }
.area-result .call .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--apricot); }
.area-noactive { margin-top: 14px; font-family: var(--body); font-size: 13.5px; color: #8FA0B8; text-align: center; }
.area-noactive[hidden] { display: none; }

@keyframes ctpCardIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ctpPulse { 0% { box-shadow: 0 0 0 6px rgba(214,58,46,.28); } 70% { box-shadow: 0 0 0 12px rgba(214,58,46,0); } 100% { box-shadow: 0 0 0 6px rgba(214,58,46,0); } }

/* ---------- final CTA ---------- */
.closer { background: var(--cream); }
.closer .wrap { max-width: 1100px; }
.closer-card { background: var(--navy-2); border-radius: 22px; padding: clamp(40px,5vw,68px) clamp(28px,4vw,56px); text-align: center; position: relative; overflow: hidden; box-shadow: 0 24px 60px rgba(8,14,24,.28); }
.closer-card .topbar { position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, var(--red), var(--orange), var(--gold)); }
.closer-card h2 { font-family: var(--head); font-weight: 800; font-size: clamp(30px,4.2vw,50px); color: var(--cream); margin: 14px 0 0; line-height: 1.06; letter-spacing: -0.015em; }
.closer-card p { font-family: var(--body); font-size: 18px; color: var(--on-navy-soft); line-height: 1.55; margin: 16px auto 0; max-width: 480px; }
.closer-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.closer-cta .btn-primary { font-size: 19px; padding: 18px 32px; border-radius: 12px; box-shadow: 0 10px 28px rgba(214,58,46,.4); }
.closer-cta .btn-ghost { font-size: 17px; padding: 17px 28px; border-radius: 12px; }

/* two-column closer: phone-first pitch (left) + form fallback (right) */
.closer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(32px, 4vw, 56px); align-items: start; text-align: left; }
.closer-pitch h2 { margin-top: 12px; }
.closer-pitch p { margin-left: 0; margin-right: 0; }
.closer-hours { margin-top: 26px; display: flex; flex-direction: column; gap: 4px; }
.closer-hours span { font-family: var(--body); font-size: 14px; color: var(--on-navy-muted); }
.closer-hours span.h { font-family: var(--head); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }

.closer-form { background: var(--cream); border-radius: 16px; padding: clamp(24px, 3vw, 32px); box-shadow: 0 18px 44px rgba(8,14,24,.28); }
.closer-form h3 { font-family: var(--head); font-weight: 700; font-size: 22px; color: var(--navy); margin: 0; }
.closer-form .form-sub { font-family: var(--body); font-size: 14.5px; color: var(--ink-muted); line-height: 1.5; margin: 8px 0 20px; max-width: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label, .field .field-label { font-family: var(--head); font-weight: 600; font-size: 13px; color: var(--navy); }
.field .opt { font-family: var(--body); font-weight: 500; color: #8a8472; }
.closer-form input, .closer-form select, .closer-form textarea {
  width: 100%; font-family: var(--body); font-size: 15px; color: var(--navy);
  background: #fff; border: 1.5px solid rgba(22,35,59,.18); border-radius: 9px;
  padding: 12px 13px;
}
.closer-form textarea { resize: vertical; min-height: 76px; }
.closer-form input:focus, .closer-form select:focus, .closer-form textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,162,74,.2);
}
.closer-form input.invalid, .closer-form select.invalid { border-color: var(--red); }
.radio-row { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-chip { position: relative; }
.radio-chip input { position: absolute; opacity: 0; pointer-events: none; }
.radio-chip span { display: inline-block; font-family: var(--head); font-weight: 600; font-size: 13px; color: var(--navy); background: #fff; border: 1.5px solid rgba(22,35,59,.18); padding: 8px 14px; border-radius: 30px; cursor: pointer; }
.radio-chip input:checked + span { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.radio-chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(200,162,74,.35); }
.form-submit { width: 100%; justify-content: center; margin-top: 6px; font-size: 17px; }
.form-status { font-family: var(--body); font-size: 14px; line-height: 1.5; margin: 14px 0 0; padding: 12px 14px; border-radius: 9px; }
.form-status[hidden] { display: none; }
.form-status.ok { color: #1c6b45; background: rgba(127,208,166,.18); border: 1px solid rgba(28,107,69,.25); }
.form-status.err { color: var(--red-dark); background: rgba(214,58,46,.08); border: 1px solid rgba(214,58,46,.25); }

@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; }
}

/* ---------- footer ---------- */
.site-footer { background: var(--navy-3); }
.footer-grid { max-width: var(--max); margin: 0 auto; padding: clamp(44px,5vw,68px) var(--pad-x) clamp(28px,3vw,40px); display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 36px; }
.footer-brand { max-width: 300px; }
.footer-brand .row { display: flex; align-items: center; gap: 12px; }
.footer-brand .badge-ctp { width: 46px; height: 46px; box-shadow: none; }
.footer-brand .badge-ctp .ctp { font-size: 14px; }
.footer-brand .badge-ctp .num { font-size: 9px; }
.footer-brand .name { font-family: var(--head); font-weight: 700; font-size: 17px; color: var(--cream); }
.footer-brand p { font-family: var(--body); font-size: 14px; color: #8a93a3; line-height: 1.55; margin: 16px 0 0; }
.footer-col .h { font-family: var(--head); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col .links { display: flex; flex-direction: column; gap: 11px; }
.footer-col .links a, .footer-col .links span { font-family: var(--body); font-size: 14px; color: var(--on-navy-soft); text-decoration: none; }
.footer-col .links a:hover { color: var(--orange); }
.footer-col a.phone { font-family: var(--head); font-weight: 700; font-size: 20px; color: var(--cream); text-decoration: none; display: block; }
.footer-col p { font-family: var(--body); font-size: 14px; color: #8a93a3; line-height: 1.6; margin: 12px 0 0; }
.footer-legal { max-width: var(--max); margin: 0 auto; padding: 18px var(--pad-x); border-top: 1px solid rgba(255,255,255,.08); display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; }
.footer-legal span { font-family: var(--body); font-size: 13px; color: #6c7484; }

/* ---------- sticky BBB CTA (HOLD: pending Steve's pick vs. badge-only) ---------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: var(--navy); box-shadow: 0 -4px 24px rgba(8,14,24,.42); border-top: 1px solid rgba(200,162,74,.32); }
.sticky-cta .row { max-width: var(--max); margin: 0 auto; padding: 9px clamp(12px,3vw,28px) calc(9px + env(safe-area-inset-bottom)); display: flex; align-items: center; gap: 12px; }
.sticky-cta .seal { display: flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.sticky-cta .seal img { height: 42px; width: auto; border: 0; border-radius: 5px; }
.sticky-cta .seal .t { font-family: var(--head); font-weight: 700; font-size: 14px; color: var(--cream); }
.sticky-cta .seal .s { font-family: var(--body); font-size: 11.5px; color: var(--gold); }
.sticky-cta .seal .label { display: flex; flex-direction: column; line-height: 1.2; }
.sticky-cta .spacer { flex: 1; min-width: 8px; }
.sticky-cta .phone { font-family: var(--head); font-weight: 700; font-size: 18px; color: var(--cream); text-decoration: none; margin-right: 6px; }
.sticky-cta .call { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; font-family: var(--head); font-weight: 700; font-size: 15px; padding: 12px 20px; border-radius: 10px; text-decoration: none; white-space: nowrap; }
.sticky-cta .call:hover { background: var(--red-dark); }
.sticky-cta .call .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--apricot); }
.sticky-cta .text-btn { display: inline-flex; align-items: center; justify-content: center; color: var(--cream); font-family: var(--head); font-weight: 700; font-size: 15px; padding: 12px 18px; border-radius: 10px; text-decoration: none; border: 1.5px solid rgba(246,241,231,.4); }
.sticky-cta .text-btn:hover { border-color: var(--gold); color: var(--gold); }
.sticky-spacer { height: 76px; }

/* ---------- FAQ page ---------- */
.faq-hero { background: var(--navy); }
.faq-hero .wrap { max-width: 1100px; text-align: center; padding: clamp(46px,6vw,80px) var(--pad-x) clamp(40px,5vw,64px); }
.faq-kicker { display: inline-flex; align-items: center; gap: 9px; font-family: var(--body); font-weight: 600; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.faq-kicker .rule { width: 24px; height: 2px; background: var(--gold); }
.faq-hero h1 { font-family: var(--head); font-weight: 800; font-size: clamp(34px,5vw,54px); line-height: 1.05; color: var(--cream); margin: 0; letter-spacing: -0.015em; }
.faq-hero p { font-family: var(--body); font-size: clamp(16px,2vw,19px); line-height: 1.55; color: var(--on-navy-soft); max-width: 520px; margin: 18px auto 0; }
.faq-hero .btn-primary { margin-top: 28px; font-size: 17px; padding: 15px 26px; }

.faq-body { background: var(--cream); }
.faq-body .wrap { max-width: 860px; }
.faq-group { margin-bottom: clamp(34px,4vw,52px); }
.faq-group:last-child { margin-bottom: 0; }
.faq-group-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.faq-group-head span.t { font-family: var(--head); font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--red); }
.faq-group-head span.line { flex: 1; height: 1px; background: rgba(22,35,59,.14); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border-radius: 13px; border: 1px solid rgba(22,35,59,.07); box-shadow: 0 6px 18px rgba(22,35,59,.05); overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 21px 24px; background: transparent; border: none; cursor: pointer; text-align: left; }
.faq-q .q { font-family: var(--head); font-weight: 600; font-size: clamp(16px,2vw,19px); color: var(--navy); line-height: 1.35; }
.faq-icon { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: #F2EBDB; color: var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--head); font-weight: 700; font-size: 22px; line-height: 0; }
.faq-icon::after { content: '+'; }
.faq-item.open .faq-icon { background: var(--navy); color: var(--cream); }
.faq-item.open .faq-icon::after { content: '\2212'; }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; }
.faq-item.open .faq-a { padding: 0 24px 23px; max-height: 480px; }
.faq-a p { font-family: var(--body); font-size: 16px; line-height: 1.65; color: #4a5366; margin: 0; max-width: 620px; }

/* ---------- responsive ---------- */
/* Seven nav items plus the wide logo lockup and phone CTA need room, so keep
   the desktop nav spacious and collapse to the hamburger below 1200 rather
   than let it cram. */
@media (max-width: 1200px) {
  .nav-desktop { display: none; }
  .menu-btn { display: flex; }
}

@media (max-width: 880px) {
  .sticky-cta .seal .label,
  .sticky-cta .phone { display: none; }
}

/* narrow phones: keep the sticky BBB bar on one line without clipping */
@media (max-width: 520px) {
  .sticky-cta .row { gap: 8px; padding-left: 12px; padding-right: 12px; }
  .sticky-cta .seal img { height: 34px; }
  .sticky-cta .call { padding: 11px 15px; font-size: 14px; }
  .sticky-cta .text-btn { padding: 11px 14px; font-size: 14px; }
}
