/* ==========================================================================
   Fortex Appliance Repair — design system
   Premium + bold-conversion. Brand red + slate, generous spacing, big photos.
   ========================================================================== */

:root {
  /* Brand */
  --red:        #E5231C;
  --red-dark:   #BC1714;
  --red-ink:    #7d0e12;
  --red-tint:   #fdeceb;
  --orange:     #FF7A1A;
  --orange-dark:#F2630A;

  /* Blue removed per brand preference — light tint kept neutral */
  --blue-tint:  #f1f3f6;   /* neutral light tint (legacy var name) */

  /* Neutrals */
  --ink:        #1c2530;   /* headings */
  --body:       #3c454e;   /* body text */
  --muted:      #687079;   /* secondary text */
  --line:       #e5e8ec;   /* borders */
  --surface:    #f5f6f8;   /* light section bg (neutral) */
  --surface-2:  #ebedf0;
  --slate:      #242a31;   /* neutral charcoal for contrast bands */
  --slate-2:    #171b20;
  --white:      #ffffff;

  /* Accents */
  --green:      #19a463;
  --gold:       #f7b500;
  --yellow:     #FFC21A;
  --yellow-soft:#fff3cf;
  --yelp:       #d32323;

  /* Type */
  --font-head: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Radius / shadow */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --shadow-sm: 0 1px 3px rgba(20,30,40,.08), 0 1px 2px rgba(20,30,40,.04);
  --shadow:    0 12px 30px -10px rgba(20,30,45,.18);
  --shadow-lg: 0 30px 60px -20px rgba(20,30,45,.28);
  --shadow-red: 0 14px 26px -10px rgba(225,27,34,.45);

  /* Layout */
  --maxw: 1180px;
  --gut: clamp(18px, 4vw, 44px);
  --nav-h: 76px;
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
html { overflow-x: clip; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -.02em;
  font-weight: 800;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.7rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.7rem); }
h3 { font-size: clamp(1.18rem, 2.2vw, 1.5rem); font-weight: 700; }
p  { color: var(--body); }
strong { color: var(--ink); font-weight: 700; }

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(38px, 5vw, 72px); }
.section--tight { padding-block: clamp(26px, 3.5vw, 46px); }
.section--slate { background: var(--slate); color: #cdd7e0; }
.section--surface { background: var(--surface); }
.section--slate h1, .section--slate h2, .section--slate h3 { color: #fff; }
.section--blue { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #e6f0fb; }
.section--blue h1, .section--blue h2, .section--blue h3 { color: #fff; }
.center { text-align: center; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--muted); max-width: 62ch; }
.center .lede { margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--red);
  margin-bottom: 14px;
}
.eyebrow--light { color: #ff7a7f; }
.section-head { max-width: 64ch; margin-bottom: clamp(22px, 3.2vw, 38px); }
.section-head.center { margin-inline: auto; }
.stack > * + * { margin-top: 1rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.02rem;
  padding: 15px 26px; border-radius: 999px; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 19px; height: 19px; }
.btn--primary { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; transform: translateY(-2px); }
.btn--outline { background: #fff; border-color: var(--line); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--outline:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.btn--lg { padding: 18px 34px; font-size: 1.1rem; }
.btn--block { width: 100%; }

/* pill / chip */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-tint); color: var(--red-ink);
  font-weight: 600; font-size: .92rem; padding: 7px 14px; border-radius: 999px;
}
.chip svg { width: 16px; height: 16px; }

/* ---------- top promo bar ---------- */
.promobar {
  background: var(--slate); color: #d7dbe0;
  font-size: .9rem; text-align: center; padding: 9px var(--gut);
  display: flex; gap: 16px; align-items: center; justify-content: center; flex-wrap: wrap;
}
.promobar b { color: #fff; }
.promobar .dot { color: rgba(255,255,255,.4); }
.promobar a { color: var(--yellow); font-weight: 700; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 14px; height: var(--nav-h); flex-wrap: nowrap; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand .mark { width: 38px; height: 44px; color: var(--red); }
.brand .word { font-family: var(--font-head); line-height: 1; }
.brand .word b { display: block; font-size: 1.28rem; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
.brand .word span { display: block; font-size: .62rem; font-weight: 700; letter-spacing: .22em; color: var(--red); text-transform: uppercase; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a {
  font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--ink);
  padding: 9px 11px; border-radius: 8px; transition: background .15s, color .15s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { background: var(--surface-2); color: var(--red); }
.nav-cta { display: flex; align-items: center; gap: 10px; margin-left: 8px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 800; color: var(--ink); font-size: 1.02rem; white-space: nowrap; }
.nav-phone svg { width: 18px; height: 18px; color: var(--red); }
.nav-toggle { display: none; background: none; border: none; width: 44px; height: 44px; color: var(--ink); }

/* dropdown */
.has-menu { position: relative; }
.menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 240px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: .16s ease;
}
.has-menu:hover .menu, .has-menu:focus-within .menu { opacity: 1; visibility: visible; transform: none; }
.menu a { display: block; padding: 9px 12px; border-radius: 8px; font-size: .95rem; }
.menu a:hover { background: var(--surface); color: var(--red); }

/* mobile nav */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px);
  background: #fff; z-index: 90; transform: translateX(100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1); padding: 22px;
  box-shadow: var(--shadow-lg); overflow-y: auto;
  display: flex; flex-direction: column; gap: 6px;
}
.mobile-nav.open { transform: none; }
.mobile-nav a { font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; padding: 13px 12px; border-radius: 10px; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-nav a:hover { background: var(--surface); }
.mobile-nav .m-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.scrim { position: fixed; inset: 0; background: rgba(15,22,30,.5); z-index: 80; opacity: 0; visibility: hidden; transition: .25s; }
.scrim.open { opacity: 1; visibility: visible; }

/* ---------- hero ---------- */
.hero { position: relative; background: linear-gradient(180deg, #ffffff 0%, var(--blue-tint) 100%); color: var(--body); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1fr 1.06fr; gap: clamp(28px, 4vw, 56px);
  align-items: center; padding-block: clamp(40px, 5vw, 76px);
}
.hero h1 { color: var(--ink); }
.hero h1 .accent { color: var(--red); }
.hero-sub { font-size: clamp(1.05rem, 1.7vw, 1.28rem); color: var(--muted); margin-top: 18px; max-width: 52ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px 30px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-trust .ht { display: flex; flex-direction: column; gap: 2px; }
.hero-trust .ht b { font-family: var(--font-head); font-size: 1.5rem; color: var(--ink); line-height: 1; }
.hero-trust .ht span { font-size: .85rem; color: var(--muted); }
.hero-media { position: relative; }
.hero-media .photo { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5/5.7; }
.hero-media .photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.hero-badge {
  position: absolute; left: -18px; bottom: 22px; background: #fff; color: var(--ink);
  border-radius: var(--r); box-shadow: var(--shadow-lg); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.hero-badge .stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 2px; }
.hero-badge b { font-family: var(--font-head); display: block; font-size: 1.05rem; }
.hero-badge span { font-size: .82rem; color: var(--muted); }
.hero-glow { position: absolute; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(229,35,28,.10), transparent 65%); top: -180px; right: -140px; filter: blur(20px); pointer-events: none; }
.hero-glow::after { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(255,194,26,.16), transparent 65%); left: -170px; top: 280px; filter: blur(10px); }

/* hero value-prop checks */
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-points li { display: flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 600; font-size: .96rem; color: var(--ink); }
.hero-points svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; }

/* homepage inline quote form */
.quote-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px, 4vw, 52px); align-items: center; }
@media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; } }

/* ---------- trust strip ---------- */
.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-strip .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px 18px; padding-block: 20px; }
.trust-item { display: flex; align-items: center; justify-content: center; gap: 10px; font-weight: 600; color: var(--ink); font-size: .95rem; }
@media (max-width: 640px) { .trust-strip .wrap { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .trust-strip .wrap { grid-template-columns: 1fr; } }
.trust-item svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; }
.trust-item .stars { color: var(--gold); letter-spacing: 1px; }
/* Rating items link to the Yelp / Google profiles so the score is checkable. */
.trust-item--link { text-decoration: none; color: var(--ink); border-radius: 999px; padding: 6px 12px; margin: -6px -12px; transition: background .15s, color .15s; }
.trust-item--link:hover { background: rgba(0,0,0,.04); color: var(--red); }
.trust-item--link:hover .stars { color: var(--gold); }

/* ---------- services grid ---------- */
.cards { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 18px 20px 20px; transition: .18s ease; display: flex; flex-direction: column; gap: 9px;
  position: relative; box-shadow: var(--shadow-sm);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card .ic { width: 44px; height: 44px; border-radius: 11px; background: var(--red-tint); color: var(--red); display: grid; place-items: center; }
.svc-card .ic svg { width: 24px; height: 24px; }
.svc-card h3 { font-size: 1.04rem; }
.svc-card p { font-size: .89rem; color: var(--muted); line-height: 1.5; }
.svc-card .more { margin-top: auto; font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: var(--red); display: inline-flex; align-items: center; gap: 6px; }
.svc-card .more svg { width: 16px; height: 16px; transition: transform .15s; }
.svc-card:hover .more svg { transform: translateX(4px); }

/* compact service tiles (homepage "what we fix") */
.svc-tiles { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.svc-tile {
  display: flex; flex-direction: column; align-items: center; gap: 11px; text-align: center;
  padding: 20px 10px; background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-sm); transition: transform .16s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.svc-tile__ic { width: 50px; height: 50px; border-radius: 13px; background: var(--red-tint); color: var(--red); display: grid; place-items: center; }
.svc-tile__ic svg { width: 27px; height: 27px; }
.svc-tile__name { font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: var(--ink); line-height: 1.2; }
@media (max-width: 1000px) { .svc-tiles { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 620px)  { .svc-tiles { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 380px)  { .svc-tiles { grid-template-columns: repeat(2, 1fr); } }

/* image card (service with photo) */
.photo-card { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: #fff; transition: .18s; display: flex; flex-direction: column; }
.photo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.photo-card .ph { aspect-ratio: 3/2; overflow: hidden; }
.photo-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.photo-card:hover .ph img { transform: scale(1.05); }
.photo-card .bd { padding: 18px 20px 22px; }
.photo-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.photo-card p { font-size: .92rem; color: var(--muted); }

/* ---------- steps (how it works) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 30px 26px; position: relative; }
.step .n { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; color: var(--red-tint); line-height: 1; }
.step .ic { position: absolute; top: 26px; right: 26px; width: 44px; height: 44px; border-radius: 12px; background: var(--surface); color: var(--red); display: grid; place-items: center; }
.step .ic svg { width: 24px; height: 24px; }
.step h3 { margin: 14px 0 8px; }
.step p { font-size: .96rem; color: var(--muted); }

/* ---------- feature band (why) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.split .media img { border-radius: var(--r-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.feature-list { display: grid; gap: 18px; margin-top: 26px; }
.feature { display: flex; gap: 16px; }
.feature .fic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: var(--red-tint); color: var(--red); display: grid; place-items: center; }
.feature .fic svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.1rem; margin-bottom: 3px; }
.feature p { font-size: .95rem; color: var(--muted); }

/* stat row */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; }
.stat b { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 4vw, 2.9rem); color: var(--ink); display: block; line-height: 1; }
.section--slate .stat b, .section--blue .stat b { color: #fff; }
.stat span { font-size: .92rem; color: var(--muted); }
.section--slate .stat span { color: #93a2b1; }
.section--blue .stat span { color: #cfe2f6; }

/* ---------- reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.review .stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.review p { font-size: 1rem; color: var(--body); }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review .av { width: 42px; height: 42px; border-radius: 50%; background: var(--slate); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; flex-shrink: 0; }
.review .av--verified { background: var(--green); }
.review .who b { font-size: .96rem; display: block; }
.review .who span { font-size: .82rem; color: var(--muted); }
.review .src { font-size: .78rem; color: var(--muted); display: inline-flex; align-items: center; gap: 5px; }

/* rating summary */
.rating-summary { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 28px; }
.rating-pill { display: inline-flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 12px 22px; box-shadow: var(--shadow-sm); color: var(--ink); text-decoration: none; transition: border-color .15s, box-shadow .15s, transform .15s; }
a.rating-pill:hover { border-color: var(--red); box-shadow: var(--shadow); transform: translateY(-2px); }
.rating-pill .stars { color: var(--gold); letter-spacing: 1px; }
.rating-pill b { font-family: var(--font-head); }

/* ---------- areas index: list beside map ---------- */
.areas-split { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(24px, 3.5vw, 44px); align-items: start; }
.areas-col h2 { margin-bottom: 18px; }
.city-list { display: flex; flex-direction: column; gap: 10px; }
.city-list a {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px;
  padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--r);
  background: #fff; box-shadow: var(--shadow-sm);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.city-list a:hover { border-color: var(--red); transform: translateX(3px); box-shadow: var(--shadow); }
.city-list .ci { width: 38px; height: 38px; border-radius: 10px; background: var(--red-tint); color: var(--red); display: grid; place-items: center; }
.city-list .cd { display: block; min-width: 0; }
.city-list .cd b { display: block; font-family: var(--font-head); font-size: 1.06rem; color: var(--ink); }
.city-list .cd span { display: block; font-size: .87rem; color: var(--muted); line-height: 1.45; margin-top: 3px; }
.city-list .ca { color: var(--muted); display: grid; place-items: center; }
.city-list a:hover .ca { color: var(--red); }
.nearby { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.nearby h3 { font-size: 1.02rem; margin-bottom: 8px; }
.nearby p { font-size: .92rem; color: var(--muted); line-height: 1.7; }
.nearby .btn { margin-top: 16px; }
.areas-map { position: sticky; top: calc(var(--nav-h) + 18px); }
.areas-map .map-wrap { max-width: none; }
.areas-map .fx-map { height: clamp(420px, 62vh, 640px); }
@media (max-width: 900px) {
  .areas-split { grid-template-columns: 1fr; }
  .areas-map { position: static; order: -1; }
  .areas-map .fx-map { height: clamp(320px, 52vw, 420px); }
}

/* ---------- coverage map ---------- */
.map-wrap { max-width: 900px; margin: 0 auto; }
.fx-map {
  height: clamp(340px, 52vw, 480px); width: 100%;
  border-radius: var(--radius); border: 1px solid var(--line);
  background: #eef2f5; position: relative; overflow: hidden; z-index: 0;
}
/* Placeholder shimmer until Leaflet paints, so the panel never looks broken. */
.fx-map::after {
  content: "Loading map…"; position: absolute; inset: 0;
  display: grid; place-items: center; color: var(--muted); font-size: .9rem;
}
.fx-map--ready::after, .fx-map--failed::after { content: none; }
.fx-map--failed { display: grid; place-items: center; }
.map-fallback, .fx-map--failed::before {
  content: "Map unavailable — see the city list below."; color: var(--muted);
  font-size: .9rem; text-align: center; padding: 0 20px;
}
.fx-map .leaflet-container { font: inherit; }
.fx-map .leaflet-popup-content { font-size: .9rem; }
.fx-map .leaflet-popup-content a { color: var(--red); font-weight: 600; }
.map-legend { display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center;
  margin-top: 18px; font-size: .88rem; color: var(--muted); }
.map-legend span { display: inline-flex; align-items: center; gap: 8px; }
.map-legend .dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.map-legend .dot--main { background: var(--red); }
.map-legend .dot--near { background: #64748b; }

/* ---------- brand strip ---------- */
.brandstrip { display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: center; justify-content: center; max-width: 1000px; margin-inline: auto; }
.brandstrip span { font-family: var(--font-head); font-weight: 700; font-size: clamp(.95rem, 1.3vw, 1.18rem); color: #95a3b2; letter-spacing: .01em; }
.brandstrip .more-brands { color: var(--red); }

/* ---------- areas — clean cards (no photos) ---------- */
.area-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.area-card {
  display: flex; flex-direction: column; gap: 12px; text-align: center;
  padding: 22px 16px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow-sm); transition: transform .16s ease, box-shadow .2s ease;
}
.area-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.area-ic { width: 48px; height: 48px; border-radius: 12px; background: var(--red-tint); color: var(--red); display: grid; place-items: center; margin-inline: auto; }
.area-card h3 { font-size: 1.1rem; color: var(--ink); }
.area-card p { font-size: .89rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 800px) { .area-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .area-cards { grid-template-columns: 1fr; } }

/* "Also serving nearby" chips. The markup shipped without a matching rule, so
   these rendered as bare block links with the pin icon on its own line. */
.area-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-list a {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px;
  background: #fff; color: var(--ink); font-size: .92rem; font-weight: 600;
  text-decoration: none; transition: border-color .15s, color .15s, transform .15s, box-shadow .15s;
}
.area-list a:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.area-list svg { width: 17px; height: 17px; color: var(--red); flex: none; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--red-dark) 0%, var(--red) 45%, var(--orange) 100%); color: #fff; border-radius: var(--r-xl); padding: clamp(34px, 5vw, 60px); text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #fff2e6; max-width: 56ch; margin: 12px auto 0; }
.cta-band .hero-cta { justify-content: center; }
.cta-band .btn--primary { background: #fff; color: var(--red); box-shadow: var(--shadow); }
.cta-band .btn--primary:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.cta-band .btn--ghost { border-color: rgba(255,255,255,.6); }

/* ---------- page hero (interior) ---------- */
.page-hero { background: linear-gradient(180deg, var(--blue-tint), #ffffff); color: var(--body); border-bottom: 1px solid var(--line); }
.page-hero .wrap { padding-block: clamp(40px, 6vw, 76px); }
.breadcrumb { font-size: .86rem; color: var(--muted); margin-bottom: 14px; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--red); }
.page-hero h1 { color: var(--ink); max-width: 18ch; }
.page-hero p { color: var(--muted); max-width: 60ch; margin-top: 14px; }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px,5vw,56px); align-items: center; }
.page-hero-grid .media img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); aspect-ratio: 3/2; object-fit: cover; width: 100%; }

/* prose */
.prose { max-width: 70ch; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.5em; }
.prose p, .prose li { color: var(--body); }
.prose > * + * { margin-top: 1.1rem; }
.prose ul { display: grid; gap: 10px; }
.prose ul li { position: relative; padding-left: 30px; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .35em; width: 18px; height: 18px; background: var(--red-tint); border-radius: 50%; }
.prose ul li::after { content: ""; position: absolute; left: 6px; top: .62em; width: 6px; height: 6px; border-right: 2px solid var(--red); border-bottom: 2px solid var(--red); transform: rotate(45deg); }

/* symptom / checklist grid */
.checks { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 14px 16px; font-size: .96rem; }
.checks li svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; margin-top: 2px; }

/* FAQ */
.faq { display: grid; gap: 12px; max-width: 820px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 4px 20px; }
.faq summary { font-family: var(--font-head); font-weight: 700; color: var(--ink); padding: 16px 30px 16px 0; cursor: pointer; list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 12px; font-size: 1.5rem; color: var(--red); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 18px; color: var(--muted); }

/* ---------- booking form ---------- */
.booking { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px,5vw,56px); align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: clamp(24px, 3vw, 38px); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--ink); margin-bottom: 7px; }
.field .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font: inherit; font-size: 1rem; color: var(--ink); background: var(--white); transition: border .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--red-tint); }
.field textarea { resize: vertical; min-height: 96px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.choice-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.choice {
  position: relative; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: 14px 10px; text-align: center; cursor: pointer; transition: .15s; font-size: .86rem; font-weight: 600; color: var(--ink);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
}
.choice svg { width: 26px; height: 26px; color: var(--muted); transition: color .15s; }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice:hover { border-color: var(--red); }
.choice:has(input:checked) { border-color: var(--red); background: var(--red-tint); color: var(--red-ink); }
.choice:has(input:checked) svg { color: var(--red); }
.form-aside { display: grid; gap: 18px; }
.aside-card { background: var(--surface); border-radius: var(--r); padding: 24px; }
.aside-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.aside-list { display: grid; gap: 12px; }
.aside-list li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; }
.aside-list svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 4px; }
.hp { position: absolute; left: -9999px; }

/* SMS consent (A2P 10DLC) — optional, never pre-checked */
.consent { display: flex; gap: 10px; align-items: flex-start; margin-top: 4px; }
.consent input[type="checkbox"] {
  flex: none; width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--red); cursor: pointer;
}
.consent label { font-size: .8rem; line-height: 1.5; color: var(--muted); cursor: pointer; }
.consent a { color: var(--red); text-decoration: underline; }
.consent a:hover { color: var(--ink); }

/* ---------- footer ---------- */
.site-footer { background: var(--surface-2); color: var(--body); border-top: 3px solid var(--red); padding-block: clamp(48px,6vw,72px) 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; }
.site-footer .brand .mark { color: var(--red); }
.site-footer .brand .word b { color: var(--ink); }
.site-footer .brand .word span { color: var(--red); }
.footer-about { margin-top: 16px; font-size: .94rem; max-width: 34ch; color: var(--muted); }
.footer-badges { display: flex; gap: 12px; align-items: center; margin-top: 18px; }
.footer-badges img { height: 64px; width: auto; background: #fff; border-radius: 10px; padding: 6px; box-shadow: var(--shadow-sm); }
.footer-col h4 { color: var(--ink); font-size: 1rem; margin-bottom: 16px; font-family: var(--font-head); }
.footer-col ul { display: grid; gap: 9px; }
.footer-col a { font-size: .94rem; color: var(--muted); transition: color .15s; }
.footer-col a:hover { color: var(--red); }
/* Buttons in the footer are still <a>, so the muted link colour above wins on
   specificity and leaves dark text on the red fill. Restore the button colour. */
.footer-col a.btn--primary,
.footer-col a.btn--primary:hover { color: #fff; font-size: .95rem; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .94rem; margin-bottom: 12px; color: var(--muted); }
.footer-contact svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; margin-top: 3px; }
.footer-contact a { color: var(--ink); font-weight: 600; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 40px; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; font-size: .84rem; color: var(--muted); }
.footer-bottom a { color: var(--body); }
.footer-bottom a:hover { color: var(--red); }
.pay-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.pay { font-family: var(--font-head); font-weight: 800; font-size: .7rem; letter-spacing: .03em; color: var(--muted); background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 5px 9px; }

/* ---------- sticky mobile call bar ---------- */
.mobilebar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 70; display: none; gap: 0; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(20,30,45,.1); }
.mobilebar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 8px; font-family: var(--font-head); font-weight: 700; font-size: .98rem; }
.mobilebar svg { width: 19px; height: 19px; }
.mobilebar .call { color: var(--ink); }
.mobilebar .book { background: var(--red); color: #fff; }

/* ---------- video embed (YouTube facade) ---------- */
.video-embed { position: relative; max-width: 940px; margin: 0 auto; aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); cursor: pointer; background: #0b1118; }
.video-embed img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease, filter .3s ease; }
.video-embed:hover img { transform: scale(1.03); filter: brightness(.92); }
.video-play { position: absolute; inset: 0; margin: auto; width: 88px; height: 88px; border-radius: 50%; background: var(--red); color: #fff; border: none; display: grid; place-items: center; box-shadow: var(--shadow-red); transition: transform .15s ease, background .15s ease; }
.video-play svg { width: 34px; height: 34px; margin-left: 5px; }
.video-embed:hover .video-play { transform: scale(1.09); background: var(--red-dark); }
.video-embed::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8,14,22,.45)); pointer-events: none; }
.video-tag { position: absolute; left: 18px; bottom: 16px; z-index: 2; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1rem; display: flex; align-items: center; gap: 8px; }
.video-tag .yt { background: var(--red); border-radius: 5px; padding: 2px 7px; font-size: .72rem; letter-spacing: .04em; }

/* lightbox — plays the video BIG, centered over a dark backdrop */
.video-lightbox { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 24px; background: rgba(10,14,20,.85); animation: fadeIn .2s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.video-lightbox__inner { position: relative; width: min(1100px, 94vw); aspect-ratio: 16/9; background: #000; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg); }
.video-lightbox iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-lightbox__close { position: absolute; top: -48px; right: 0; width: 42px; height: 42px; border: none; background: rgba(255,255,255,.16); color: #fff; border-radius: 50%; font-size: 1.3rem; line-height: 1; cursor: pointer; transition: background .15s; }
.video-lightbox__close:hover { background: rgba(255,255,255,.32); }
@media (max-width: 560px) { .video-lightbox__close { top: -46px; } }

/* ---------- reveal animation ----------
   Transform-only (no opacity) so content is ALWAYS visible — even if the
   animation is paused/unsupported (e.g. a backgrounded tab), the element is
   only offset, never hidden. */
@keyframes revealUp { from { transform: translateY(18px); } to { transform: none; } }
.reveal { animation: revealUp .6s ease both; }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; } html { scroll-behavior: auto; } }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid, .split, .booking, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1040px) {
  .nav-links, .nav-phone, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-grid; place-items: center; margin-left: auto; }
}
@media (max-width: 860px) {
  .steps, .reviews { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); gap: 26px; }
  .mobilebar { display: flex; }
  body { padding-bottom: 58px; }
  .choice-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px) {
  .grid-3, .grid-2, .checks, .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badge { left: 50%; transform: translateX(-50%); bottom: -22px; }
  .hero-media { margin-bottom: 26px; }
  .promobar .hide-sm { display: none; }
}
