/* Round Rock Rodent Control: hyperlocal local-business design.
   Direction from the client-supplied reference screenshot (Clark Pest Control):
   royal blue + red accent + charcoal, a thin blue utility bar, a white header with a
   red "call now" button, a full-bleed photo hero with left copy and a red CTA, a red
   "for immediate attention call" bar under the hero, blue square-bordered icon tiles,
   full-width blue statement bands, alternating photo/text feature blocks, an accordion
   FAQ, and a dark charcoal services band with white square icons. Barlow Condensed +
   Barlow type. Rodent-only (mice and rats). Connector-safe: no ratings, no reviews,
   no guarantee, no free-inspection language. */

:root {
  /* Blue (primary) */
  --blue: #1668b3;
  --blue-600: #12588f;
  --blue-700: #0e4a79;
  --blue-050: #eef5fc;
  --blue-100: #d8e8f6;
  /* Red (accent / primary CTA) */
  --red: #e11b2e;
  --red-600: #c5142a;
  --red-700: #a30f22;
  --red-050: #fdeaec;
  /* Charcoal (bands + footer) */
  --charcoal: #2c3238;
  --charcoal-800: #262b31;
  --charcoal-900: #1e2227;
  /* Neutrals */
  --ink: #16222e;
  --body: #47535f;
  --muted: #6c7784;
  --line: #e1e7ee;
  --line-2: #eef1f5;
  --bg: #f1f5f9;
  --bg-2: #e7eef5;
  --white: #ffffff;
  /* Back-compat aliases (components reference --orange* / --lime* / --forest* / --cream) */
  --orange: var(--red);
  --orange-600: var(--red-600);
  --orange-700: var(--red-700);
  --orange-050: var(--red-050);
  --orange-100: var(--red-050);
  --lime: var(--blue);
  --lime-600: var(--blue-600);
  --cream: var(--bg);
  --cream-2: var(--bg-2);
  --bone: var(--bg);
  --forest: var(--blue-700);
  --forest-900: var(--charcoal-900);
  --shadow: 0 20px 44px rgba(18, 40, 66, 0.15);
  --shadow-sm: 0 8px 20px rgba(18, 40, 66, 0.09);
  --radius: 10px;
  --radius-lg: 16px;
  --f-display: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  --f-body: 'Barlow', system-ui, -apple-system, sans-serif;
  --maxw: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--body);
  font-size: 17px;
  line-height: 1.62;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--f-display); color: var(--ink); line-height: 1.06; margin: 0 0 .5em; font-weight: 700; letter-spacing: .005em; }
h1 { font-size: clamp(2.5rem, 5.4vw, 4rem); text-transform: uppercase; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); text-transform: uppercase; color: var(--blue); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1.1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section--tight { padding: 46px 0; }
.section--cream { background: var(--bg); }
.eyebrow { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: 1rem; color: var(--red); margin: 0 0 .5rem; }
.center { text-align: center; }
.measure { max-width: 760px; }
.measure.center { margin-left: auto; margin-right: auto; }
.lead { font-size: 1.18rem; color: var(--body); }
.sec-sub { color: var(--muted); font-size: 1.12rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-family: var(--f-display); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 1.06rem; border-radius: 7px; padding: .78rem 1.6rem; border: 2px solid transparent; cursor: pointer; transition: transform .12s ease, background .15s ease, box-shadow .15s; text-decoration: none; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
/* Primary = red (class kept as .btn-orange for back-compat with components) */
.btn-orange { background: var(--red); color: #fff; box-shadow: 0 12px 22px rgba(225, 27, 46, .26); }
.btn-orange:hover { background: var(--red-600); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-600); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: rgba(255,255,255,.22); }
.btn-lg { font-size: 1.16rem; padding: .95rem 1.95rem; }
.btn-block { width: 100%; }

/* Top utility bar (thin blue) */
.topbar { background: var(--blue-700); color: #d6e6f5; font-size: .95rem; font-weight: 500; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 40px; padding-top: 5px; padding-bottom: 5px; }
.topbar .tb-left { display: inline-flex; align-items: center; gap: 8px; }
.topbar .tb-right { display: inline-flex; align-items: center; gap: 22px; }
.topbar svg { color: #8fc0e8; flex: none; }
.topbar a { color: #eaf3fb; font-weight: 600; }
.topbar a:hover { text-decoration: underline; }

/* Header (white, blue nav, red CTA) */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; box-shadow: 0 2px 14px rgba(18,40,66,.10); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--f-display); font-weight: 700; text-transform: uppercase; color: var(--blue); font-size: 1.5rem; line-height: .98; letter-spacing: .01em; }
.brand:hover { text-decoration: none; }
.brand .logo { width: 50px; height: 50px; flex: none; }
.brand small { display: block; font-size: .66rem; font-weight: 600; color: var(--red); letter-spacing: .16em; margin-top: 4px; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: .03em; font-size: 1.04rem; color: var(--charcoal); }
.nav a:hover { color: var(--red); text-decoration: none; }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-cta .btn { white-space: nowrap; }
.header-phone { font-family: var(--f-display); font-weight: 700; color: var(--blue); font-size: 1.32rem; white-space: nowrap; line-height: 1; text-align: right; }
.header-phone small { display: block; font-size: .62rem; font-weight: 700; color: var(--red); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 3px; }
.header-phone a { color: var(--blue); }
.menu-toggle { display: none; }
.menu-toggle.btn-outline { color: var(--blue); border-color: var(--line); padding: .5rem .7rem; }
.menu-toggle.btn-outline:hover { background: var(--bg); color: var(--blue); }

/* Homepage hero: full-bleed photo + left copy + red CTA */
.hero { position: relative; background: var(--charcoal-900); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(14,32,52,.92) 0%, rgba(14,32,52,.72) 46%, rgba(14,32,52,.34) 100%), url('/images/hero.jpg'); background-size: cover; background-position: center; }
.hero .container { position: relative; padding-top: 84px; padding-bottom: 92px; }
.hero-inner { color: #fff; max-width: 620px; }
.hero .eyebrow { color: #ff8a95; }
.hero h1 { color: #fff; margin-bottom: .2em; text-shadow: 0 3px 18px rgba(0,0,0,.35); }
.hero h1 .accent { color: #6fb2e8; }
.hero p { color: #e7eef6; font-size: 1.2rem; max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; align-items: center; }
.hero-actions .call-note { color: #e7eef6; font-size: .96rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.22); }
.hero-badges span { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: .03em; font-size: .96rem; color: #f2f6fb; }
.hero-badges svg { flex: none; color: #6fb2e8; }

/* Red "for immediate attention call" bar */
.callbar { background: var(--red); color: #fff; }
.callbar .container { display: flex; align-items: center; justify-content: center; gap: 10px 22px; flex-wrap: wrap; padding: 15px 20px; text-align: center; }
.callbar .cb-label { font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: 1.16rem; }
.callbar .cb-num { font-family: var(--f-display); font-weight: 700; font-size: 2rem; line-height: 1; color: #fff; letter-spacing: .01em; }
.callbar .cb-num:hover { text-decoration: none; }

/* Intro two-column: text + blue block w/ heritage badge */
.intro-two { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; align-items: stretch; }
.intro-two .it-copy { padding: 68px 56px 68px 0; }
.intro-two .it-copy h2 { color: var(--blue); }
.intro-two .it-block { background: var(--blue); color: #fff; display: grid; place-items: center; padding: 48px; position: relative; border-radius: var(--radius-lg); }
.badge-seal { text-align: center; color: #fff; border: 3px dashed rgba(255,255,255,.5); border-radius: 16px; padding: 34px 30px; }
.badge-seal .bs-rodent { width: 62px; height: 62px; margin: 0 auto 8px; color: var(--red); }
.badge-seal .bs-big { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; font-size: 2.9rem; line-height: .92; }
.badge-seal .bs-sub { font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: 1.15rem; margin-top: 4px; color: #cfe4f6; }

.intro-two .it-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); min-height: 440px; }
.intro-two .it-photo img { width: 100%; height: 100%; object-fit: cover; }
.intro-two .it-photo .it-tag { position: absolute; left: 0; right: 0; bottom: 0; background: linear-gradient(transparent, rgba(14,32,52,.86)); color: #fff; font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: 1.02rem; padding: 46px 20px 16px; text-align: center; }

/* Blue square-bordered icon tiles (rodent categories) */
.tiles-band { background: var(--bg); }
.tiles-head { text-align: center; margin-bottom: 30px; }
.tiles-head .th-line { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--blue); font-size: 1.5rem; }
.icon-tiles { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.icon-tile { background: #fff; border: 2px solid var(--blue-100); border-radius: 10px; padding: 22px 12px; text-align: center; color: var(--blue); transition: transform .14s ease, box-shadow .14s ease, border-color .14s; display: block; }
.icon-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--blue); text-decoration: none; }
.icon-tile .it-ic { width: 40px; height: 40px; margin: 0 auto 10px; color: var(--blue); }
.icon-tile .it-name { font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: .03em; font-size: 1rem; color: var(--charcoal); line-height: 1.1; }

/* Intro split (photo + copy) */
.introwrap { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.introwrap.flip .introwrap-media { order: 2; }
.introwrap-media { position: relative; }
.introwrap-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.introwrap-media .sticky-badge { position: absolute; right: -14px; bottom: -18px; width: 132px; height: 132px; background: var(--red); color: #fff; border-radius: 12px; display: grid; place-items: center; text-align: center; padding: 14px; box-shadow: var(--shadow); transform: rotate(-4deg); }
.introwrap-media .sticky-badge span { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; font-size: 1rem; line-height: 1.05; }
.introwrap .icon-badge { width: 58px; height: 58px; border-radius: 12px; background: var(--blue-050); display: grid; place-items: center; margin-bottom: 18px; }
.introwrap .icon-badge svg { width: 30px; height: 30px; color: var(--blue); }
.introwrap .eyebrow { color: var(--red); }
.intro-copy h2 { color: var(--blue); }

/* Statement band (blue) */
.statement { background: var(--blue); position: relative; }
.statement .container { padding: 60px 20px; }
.statement-card { max-width: 820px; margin: 0 auto; text-align: center; color: #fff; }
.statement-card h2 { color: #fff; }
.statement-card p { color: #dcebf8; font-size: 1.16rem; max-width: 62ch; margin: 0 auto 1.4rem; }
.statement-card .btn-orange { background: #fff; color: var(--red); }
.statement-card .btn-orange:hover { background: #ffe3e6; }

/* Secret / dark statement band */
.secret { background: var(--blue-700); color: #fff; }
.secret .container { padding: 54px 20px; text-align: center; }
.secret h2 { color: #fff; }
.secret p { color: #cfe1f2; max-width: 70ch; margin: 0 auto; font-size: 1.1rem; }

/* Feature trio (why choose) */
.whychoose { background: var(--bg); }
.whychoose h2 { color: var(--blue); }
.whychoose .eyebrow { color: var(--red); }
.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 38px; }
.feature-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px; text-align: center; box-shadow: var(--shadow-sm); }
.feature-card .ic-wrap { width: 66px; height: 66px; border-radius: 50%; background: var(--blue); display: grid; place-items: center; margin: 0 auto 16px; }
.feature-card .ic { width: 32px; height: 32px; color: #fff; }
.feature-card h3 { font-size: 1.34rem; margin-bottom: .4rem; color: var(--blue); }
.feature-card p { font-size: .99rem; color: var(--body); margin: 0; }

/* Trust strip (connector-safe, no ratings) */
.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-strip .container { display: flex; align-items: center; justify-content: center; gap: 12px 30px; flex-wrap: wrap; padding: 18px 20px; text-align: center; }
.trust-strip .ts-item { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: .02em; color: var(--blue); font-size: 1.02rem; }
.trust-strip .ts-item svg { color: var(--red); flex: none; }
.trust-strip .ts-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-100); }

/* Unique grid */
.unique-band { background: #fff; }
.unique-band h2 { color: var(--blue); }
.unique-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.unique-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow-sm); text-align: left; }
.unique-card .ic-wrap { width: 52px; height: 52px; border-radius: 11px; background: var(--blue-050); display: grid; place-items: center; margin-bottom: 15px; }
.unique-card .ic { width: 26px; height: 26px; color: var(--blue); }
.unique-card h3 { font-size: 1.18rem; margin-bottom: .35rem; color: var(--charcoal); }
.unique-card p { font-size: .95rem; color: var(--muted); margin: 0; }

/* Symptom grid */
.symptom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.symptom-card { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-sm); }
.symptom-card .s-ic { width: 44px; height: 44px; border-radius: 10px; background: var(--red-050); display: grid; place-items: center; margin-bottom: 13px; }
.symptom-card .s-ic svg { width: 22px; height: 22px; color: var(--red); }
.symptom-card h3 { font-size: 1.18rem; margin-bottom: .3rem; color: var(--charcoal); }
.symptom-card p { margin: 0; font-size: .97rem; color: var(--body); }

/* Service cards */
.services-band { background: var(--bg); }
.services-band h2 { color: var(--blue); }
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 38px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); color: var(--ink); display: flex; flex-direction: column; transition: transform .14s ease, box-shadow .14s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); text-decoration: none; }
.service-card .thumb { aspect-ratio: 16 / 10; width: 100%; object-fit: cover; background: var(--bg-2); }
.service-card .sc-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.service-card h3 { font-size: 1.28rem; margin: 0; color: var(--blue); }
.service-card p { font-size: .95rem; color: var(--muted); margin: 0; flex: 1; }
.service-card .more { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--red); font-size: 1rem; }

/* Dark charcoal "Our Services" band with white square icons */
.services-dark { background: var(--charcoal); color: #cfd6dd; }
.services-dark h2 { color: #fff; text-align: center; }
.services-dark .eyebrow { color: #ff8a95; text-align: center; }
.svc-icons { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 34px; }
.svc-icon { text-align: center; color: #cfd6dd; display: block; }
.svc-icon .si-box { width: 66px; height: 66px; margin: 0 auto 12px; border: 1.5px solid rgba(255,255,255,.28); border-radius: 8px; display: grid; place-items: center; transition: background .15s, border-color .15s; }
.svc-icon .si-box svg { width: 30px; height: 30px; color: #fff; }
.svc-icon:hover { text-decoration: none; color: #fff; }
.svc-icon:hover .si-box { background: var(--red); border-color: var(--red); }
.svc-icon .si-name { font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: .03em; font-size: .98rem; line-height: 1.15; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 38px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px; box-shadow: var(--shadow-sm); position: relative; }
.step .num { width: 54px; height: 54px; border-radius: 10px; background: var(--blue); color: #fff; font-family: var(--f-display); font-weight: 700; font-size: 1.5rem; display: grid; place-items: center; margin-bottom: 15px; }
.step h3 { font-size: 1.2rem; color: var(--charcoal); }
.step p { font-size: .95rem; color: var(--muted); margin: 0; }

/* Split content */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.split h2 { color: var(--blue); }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.checklist { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 11px; }
.checklist li { position: relative; padding-left: 34px; font-size: 1.02rem; color: var(--body); }
.checklist li::before { content: ""; position: absolute; left: 0; top: 2px; width: 23px; height: 23px; border-radius: 6px; background: var(--blue); }
.checklist li::after { content: ""; position: absolute; left: 7px; top: 8px; width: 9px; height: 5px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg); }

/* Booking band */
.book-band { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.book-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 46px; align-items: center; }
.book-copy h2 { color: var(--blue); }
.book-form { background: #fff; border: 1px solid var(--line); border-top: 5px solid var(--red); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 30px 28px; }
.book-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.book-form label { display: block; font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: .02em; font-size: .92rem; color: var(--charcoal); margin: 0 0 .3rem; }
.book-form .field { margin-bottom: 12px; }
.book-form input, .book-form textarea { width: 100%; padding: .78rem .85rem; border: 1px solid var(--line); border-radius: 8px; font-family: var(--f-body); font-size: 1rem; color: var(--ink); background: #fbfcfe; }
.book-form input:focus, .book-form textarea:focus { outline: 2px solid var(--blue); border-color: var(--blue); }
.book-form .fineprint { font-size: .82rem; color: var(--muted); margin: .6rem 0 0; }

/* Area / map */
.area-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 46px; align-items: center; }
.area-grid h2 { color: var(--blue); }
.area-list { columns: 2; column-gap: 26px; margin: 20px 0 0; padding: 0; list-style: none; }
.area-list li { break-inside: avoid; padding: 7px 0 7px 26px; position: relative; font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: .02em; color: var(--blue); font-size: 1.04rem; }
.area-list li::before { content: ""; position: absolute; left: 0; top: 11px; width: 11px; height: 11px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(225,27,46,.15); }
.area-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); background: var(--blue-700); }

/* FAQ */
.faq { max-width: 860px; margin: 0 auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; padding: 18px 22px; font-family: var(--f-display); font-weight: 700; text-transform: uppercase; letter-spacing: .01em; color: var(--blue); font-size: 1.16rem; list-style: none; display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; flex: none; width: 26px; height: 26px; border-radius: 50%; background-color: var(--red); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.faq details[open] summary::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E"); }
.faq details > div { padding: 0 22px 20px; color: var(--body); }
.faq details > div p:last-child { margin-bottom: 0; }

/* Call band */
.callband { background: var(--charcoal); color: #fff; }
.callband--orange { background: var(--red); }
.callband .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.callband h2 { color: #fff; margin: 0; }
.callband p { color: #d3dae2; margin: .35rem 0 0; max-width: 60ch; }
.callband--orange p { color: #ffe0e3; }
.callband .btn-orange { background: #fff; color: var(--red); }
.callband .btn-orange:hover { background: #ffe3e6; }
.callband--orange .btn-orange { background: #fff; color: var(--red); }

/* Page hero (inner pages) */
.page-hero { position: relative; background: var(--blue-700); color: #fff; padding: 60px 0 52px; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,42,72,.93), rgba(14,42,72,.66)), url('/images/hero.jpg'); background-size: cover; background-position: center; opacity: .5; }
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #dbe7f3; font-size: 1.16rem; max-width: 62ch; margin-bottom: 20px; }
.page-hero .hero-actions { margin-top: 8px; justify-content: flex-start; }
.breadcrumbs { font-size: .9rem; color: #b8ccdf; margin-bottom: 14px; font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.breadcrumbs a { color: #dbe7f3; }

/* Article / prose */
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.7em; text-transform: none; color: var(--blue); }
.prose h3 { margin-top: 1.3em; text-transform: none; color: var(--charcoal); }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .5rem; }
.prose .callout { background: var(--blue-050); border-left: 4px solid var(--red); padding: 16px 20px; border-radius: 0 12px 12px 0; margin: 1.4rem 0; }
.layout-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 46px; align-items: start; }
.sidebar { position: sticky; top: 104px; display: grid; gap: 20px; }
.sidebar .card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.sidebar .card h3 { font-size: 1.2rem; color: var(--blue); }
.sidebar .call-card { background: var(--blue); color: #fff; text-align: center; }
.sidebar .call-card h3 { color: #fff; }
.sidebar .call-card p { color: #d3e4f4; }
.sidebar .call-card .num { font-family: var(--f-display); font-weight: 700; font-size: 1.7rem; color: #fff; }
.sidebar ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.sidebar ul a { font-weight: 500; }

/* Footer (charcoal) */
.site-footer { background: var(--charcoal-900); color: #9aa6b2; padding: 60px 0 28px; font-size: .97rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 36px; }
.footer-brand .logo { width: 50px; height: 50px; margin-bottom: 12px; }
.site-footer h4 { color: #fff; font-family: var(--f-display); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 1.2rem; margin-bottom: 14px; }
.site-footer .footer-brand h4 { font-size: 1.35rem; }
.site-footer a { color: #9aa6b2; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-phone { font-family: var(--f-display); font-weight: 700; font-size: 1.6rem; color: #fff; margin: 6px 0; }
.footer-phone a { color: #ff8a95; }
.disclaimer { border-top: 1px solid rgba(255,255,255,.12); margin-top: 38px; padding-top: 22px; font-size: .85rem; color: #74808c; line-height: 1.6; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 14px; font-size: .88rem; }

/* Sticky mobile call bar */
.sticky-call { display: none; }

/* Responsive */
@media (max-width: 1000px) {
  .icon-tiles { grid-template-columns: repeat(3, 1fr); }
  .svc-icons { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .intro-two { grid-template-columns: 1fr; }
  .intro-two .it-copy { padding: 40px 0 34px; }
  .introwrap, .introwrap.flip { grid-template-columns: 1fr; gap: 30px; }
  .introwrap.flip .introwrap-media { order: 0; }
  .unique-grid { grid-template-columns: repeat(2, 1fr); }
  .book-grid { grid-template-columns: 1fr; gap: 26px; }
  .symptom-grid, .service-cards, .steps, .feature-cards { grid-template-columns: repeat(2, 1fr); }
  .split, .area-grid { grid-template-columns: 1fr; gap: 26px; }
  .layout-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .nav, .header-phone { display: none; }
  .header-cta .btn-orange { display: none; }
  .header-inner { min-height: 64px; }
  .brand { font-size: 1.22rem; gap: 10px; }
  .brand .logo { width: 42px; height: 42px; }
  .brand small { display: none; }
  .topbar .tb-left span { display: none; }
  .menu-toggle { display: inline-flex; }
  .callbar .cb-num { font-size: 1.7rem; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 52px 0; }
  .icon-tiles, .svc-icons { grid-template-columns: repeat(2, 1fr); }
  .feature-cards, .unique-grid, .symptom-grid, .service-cards, .steps, .sidebar { grid-template-columns: 1fr; }
  .area-list { columns: 1; }
  .book-form .row { grid-template-columns: 1fr; }
  .callband .container { flex-direction: column; text-align: center; }
  .callband p { max-width: none; }
  main { padding-bottom: 74px; }
  .sticky-call { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; background: var(--red); box-shadow: 0 -6px 18px rgba(0,0,0,.2); }
  .sticky-call a { flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem; padding: 15px; font-family: var(--f-display); font-weight: 700; text-transform: uppercase; font-size: 1.14rem; color: #fff; }
  .sticky-call a:hover { text-decoration: none; }
}

/* Mobile nav */
.mobile-menu { display: none; }
@media (max-width: 820px) {
  #navtoggle:checked ~ .mobile-menu { display: block; }
  .mobile-menu { position: absolute; left: 0; right: 0; top: 100%; background: #fff; box-shadow: var(--shadow); padding: 10px 0; border-top: 1px solid var(--line); }
  .mobile-menu a { display: block; padding: 13px 20px; font-family: var(--f-display); font-weight: 600; text-transform: uppercase; color: var(--charcoal); border-bottom: 1px solid var(--line-2); }
  .mobile-menu a:hover { background: var(--bg); text-decoration: none; }
}
