/* ==========================================================================
   Plumber Dade City FL — design system
   Palette sampled directly from the logo: ink black, #b80000 red, chrome grey.
   ========================================================================== */

:root {
  /* ── Brand, taken from the logo artwork ──────────────────────────────── */
  --ink:        #15171a;   /* logo black — shield outline, banner, wordmark */
  --ink-2:      #1e2227;   /* raised surface on dark grounds */
  --ink-3:      #2b3137;
  --red:        #b80000;   /* logo red — "H.I.P" and the banner lettering */
  --red-bright: #d2141a;   /* same hue, lifted for legibility on dark */
  --red-dark:   #8c0000;   /* pressed / hover on light grounds */
  --steel:      #6f787e;   /* chrome grey from the wrench and pipe */
  --steel-2:    #9aa3a9;
  --steel-3:    #ccd2d6;

  /* Neutrals carry a slight cool bias so they read as chrome, not default grey */
  --paper:      #ffffff;
  --paper-2:    #f3f4f6;
  --paper-3:    #e7e9eb;
  --text:       #33383c;
  --text-strong:#15171a;
  --line:       #dcdfe2;
  --line-dark:  rgba(255,255,255,0.12);

  --ok:         #1a7f37;

  --display: 'Oswald', 'Arial Narrow', Impact, sans-serif;
  --body:    'Roboto', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --wrap: 1240px;
  --radius: 6px;
  --shadow: 0 14px 40px rgba(21,23,26,0.14);
  --shadow-sm: 0 4px 14px rgba(21,23,26,0.10);
}

/* ── Base ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.68;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  color: var(--text-strong);
  margin: 0 0 .5em;
  line-height: 1.1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .01em;
}
h2, h3, h4 { text-wrap: balance; }
h1 { font-size: clamp(32px, 5.6vw, 58px); font-weight: 700; }
h2 { font-size: clamp(27px, 4vw, 42px); }
h3 { font-size: clamp(20px, 2.4vw, 26px); }
h4 { font-size: 18px; }

:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
  border-radius: 3px;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: 20px; padding-right: 20px; }
@media (min-width: 900px) { .wrap { padding-left: 32px; padding-right: 32px; } }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 999;
  background: var(--red); color: #fff; padding: 12px 20px; border-radius: var(--radius);
  font-family: var(--display); transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ── Section rhythm ─────────────────────────────────────────────────────── */
.section { padding-top: 58px; padding-bottom: 58px; }
@media (min-width: 900px) { .section { padding-top: 96px; padding-bottom: 96px; } }
.section--tight { padding-top: 44px; padding-bottom: 44px; }
.section--grey { background: var(--paper-2); }
.section--ink  { background: var(--ink); color: rgba(255,255,255,.82); }
.section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
/* Dark band for the service-areas hub's "communities/zips we serve" lists */
.area-band { background: var(--ink); color: rgba(255,255,255,.82); }
.area-band h2, .area-band h3 { color: #fff; }
.area-band .section-head p { color: rgba(255,255,255,.72); }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 980px; margin: 0 auto; }
.area-tags span {
  padding: 8px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.22);
  font-size: 14px; color: rgba(255,255,255,.85); background: rgba(255,255,255,.05);
}
.area-tags--zips span { font-variant-numeric: tabular-nums; font-size: 13.5px; padding: 7px 14px; }

.eyebrow {
  display: inline-block; font-family: var(--body); font-weight: 700;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
}
.section--ink .eyebrow { color: var(--red-bright); }
.section-head { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { font-size: 18px; color: var(--steel); margin-bottom: 0; }
.section--ink .section-head p { color: rgba(255,255,255,.72); }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 14px 28px;
  font-family: var(--display); font-size: 17px; font-weight: 500;
  letter-spacing: .03em; text-transform: uppercase;
  border: 2px solid transparent; border-radius: var(--radius); cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, transform .18s, box-shadow .18s;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(184,0,0,.32); }
.btn--onink { background: var(--red-bright); color: #fff; }
.btn--onink:hover { background: var(--red); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none !important; }

/* ── Utility bar ────────────────────────────────────────────────────────── */
.utility {
  background: var(--ink); color: rgba(255,255,255,.66);
  font-size: 13px; border-bottom: 1px solid var(--line-dark);
}
.utility__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.utility__hours { display: none; }
@media (min-width: 760px) { .utility__hours { display: block; } }
.utility__links { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.utility__links a:hover { color: #fff; }
.utility strong { color: #fff; }

/* ── Header ─────────────────────────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 200; background: var(--paper); box-shadow: 0 1px 0 var(--line); }
.site-header__row { display: flex; align-items: center; gap: 20px; padding-top: 12px; padding-bottom: 12px; }
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 44px; width: auto; }
@media (min-width: 900px) { .brand img { height: 54px; } }

.nav { display: none; margin-left: auto; }
@media (min-width: 1040px) { .nav { display: flex; align-items: center; gap: 2px; } }
.nav__item { position: relative; }
.nav__link {
  display: flex; align-items: center; gap: 6px; padding: 12px 14px;
  font-family: var(--display); font-size: 15px; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase; color: var(--ink);
  border-radius: var(--radius); background: none; border: 0; cursor: pointer;
}
.nav__link:hover { color: var(--red); background: var(--paper-2); }
.nav__link[aria-current="page"], .nav__item.is-active > .nav__link { color: var(--red); }
.nav__link .chev { width: 11px; height: 11px; transition: transform .2s; }
.nav__item.open .chev { transform: rotate(180deg); }

.header-cta { display: none; margin-left: 8px; }
@media (min-width: 1040px) { .header-cta { display: inline-flex; } }
.header-phone {
  display: none; flex-direction: column; line-height: 1.15; margin-left: auto; text-align: right;
}
@media (min-width: 620px) and (max-width: 1039px) { .header-phone { display: flex; } }
.header-phone small { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--steel); }
.header-phone b { font-family: var(--display); font-size: 20px; color: var(--red); }

/* ── Mega menu ──────────────────────────────────────────────────────────── */
.mega {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  width: min(940px, calc(100vw - 48px));
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  box-shadow: var(--shadow); padding: 26px; z-index: 210;
  opacity: 0; visibility: hidden; transition: opacity .18s, visibility .18s, transform .18s;
}
.mega::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav__item.open .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega--wide { width: min(1080px, calc(100vw - 48px)); }
.mega__grid { display: grid; grid-template-columns: 1fr 1fr 268px; gap: 26px; }
.mega__grid--areas { grid-template-columns: repeat(3, 1fr) 268px; }
.mega__grid--services { grid-template-columns: repeat(3, 1fr) 250px; }
.mega__col + .mega__col { }
.mega__title {
  font-family: var(--body); font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--steel); margin-bottom: 12px;
}
.mega__col .mega__title:not(:first-child) { margin-top: 20px; }
.mega__link { display: flex; gap: 11px; padding: 9px 10px; border-radius: var(--radius); align-items: flex-start; }
.mega__link:hover { background: var(--paper-2); }
.mega__link:hover .mega__name { color: var(--red); }
.mega__ico { flex: none; width: 32px; height: 32px; border-radius: 6px; background: var(--ink); color: #fff; display: grid; place-items: center; }
.mega__ico svg { width: 17px; height: 17px; }
.mega__name { display: block; font-family: var(--display); font-size: 15px; font-weight: 500; text-transform: uppercase; color: var(--ink); letter-spacing: .02em; }
.mega__desc { display: block; font-size: 12.5px; color: var(--steel); line-height: 1.45; }
/* Compact service links — 18 services need a denser row than the icon+description card */
.mega__link--compact { padding: 6px 8px; gap: 9px; align-items: center; }
.mega__ico--sm { width: 24px; height: 24px; border-radius: 5px; }
.mega__ico--sm svg { width: 13px; height: 13px; }
.mega__name--sm { font-size: 13.5px; text-transform: none; letter-spacing: 0; font-weight: 500; }
.mega__cities { columns: 1; }
.mega__cities a { display: block; padding: 7px 10px; border-radius: var(--radius); font-size: 14.5px; color: var(--text); }
.mega__cities a:hover { background: var(--paper-2); color: var(--red); }
.mega__promo { background: var(--ink); color: rgba(255,255,255,.8); border-radius: 8px; padding: 22px; display: flex; flex-direction: column; }
.mega__promo h4 { color: #fff; font-size: 19px; margin-bottom: 8px; }
.mega__promo p { font-size: 13.5px; margin-bottom: 16px; }
.mega__promo .btn { margin-top: auto; }
.mega__all { display: inline-block; margin-top: 12px; font-family: var(--display); text-transform: uppercase; font-size: 13.5px; letter-spacing: .04em; color: var(--red); }
.mega__all:hover { text-decoration: underline; }

/* ── Mobile drawer ──────────────────────────────────────────────────────── */
.burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; margin-left: auto; flex: none;
  background: var(--ink); border: 0; border-radius: var(--radius); cursor: pointer;
}
@media (min-width: 1040px) { .burger { display: none; } }
.burger span, .burger span::before, .burger span::after {
  content: ''; display: block; width: 21px; height: 2px; background: #fff; border-radius: 2px; position: relative;
}
.burger span::before { position: absolute; top: -7px; }
.burger span::after { position: absolute; top: 7px; }

.drawer {
  position: fixed; inset: 0; z-index: 400; background: var(--ink);
  transform: translateX(100%); transition: transform .3s ease;
  overflow-y: auto; padding: 18px 20px 40px; color: #fff;
  visibility: hidden;
}
.drawer.open { transform: translateX(0); visibility: visible; }
@media (min-width: 1040px) { .drawer { display: none !important; } }
body.no-scroll { overflow: hidden; }
.drawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.drawer__top img { height: 42px; width: auto; background: #fff; padding: 6px 10px; border-radius: var(--radius); }
.drawer__close { width: 44px; height: 44px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.3); background: none; color: #fff; font-size: 24px; line-height: 1; cursor: pointer; }
.drawer a { color: #fff; }
.drawer__link { display: block; padding: 14px 12px; font-family: var(--display); font-size: 18px; text-transform: uppercase; letter-spacing: .03em; border-radius: var(--radius); }
.drawer__link:hover { background: rgba(255,255,255,.08); }
.drawer__toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 14px 12px; background: none; border: 0; color: #fff; cursor: pointer;
  font-family: var(--display); font-size: 18px; text-transform: uppercase; letter-spacing: .03em; border-radius: var(--radius);
}
.drawer__toggle .chev { width: 13px; height: 13px; transition: transform .2s; }
.drawer__group.open .chev { transform: rotate(180deg); }
.drawer__panel { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.drawer__group.open .drawer__panel { max-height: 900px; }
.drawer__panel a { display: block; padding: 11px 12px 11px 24px; font-size: 15px; color: rgba(255,255,255,.78); }
.drawer__panel a:hover { color: var(--red-bright); }
.drawer__subhead {
  margin: 14px 0 2px 24px; font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
}
.drawer__subhead:first-child { margin-top: 4px; }
.drawer__cta { margin-top: 20px; display: grid; gap: 10px; }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero { position: relative; background: var(--ink); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(104deg, rgba(21,23,26,.96) 0%, rgba(21,23,26,.90) 46%, rgba(21,23,26,.58) 100%);
}
.hero__inner { position: relative; z-index: 2; padding-top: 62px; padding-bottom: 58px; }
@media (min-width: 900px) { .hero__inner { padding-top: 104px; padding-bottom: 92px; } }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px;
  max-width: 100%;
  padding: 8px 15px; border-radius: 999px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #fff;
}
.hero__badge svg { width: 15px; height: 15px; flex: none; }
.hero h1 { color: #fff; max-width: 26ch; }
.hero h1 .hl { color: var(--red-bright); }
.hero__deck {
  font-family: var(--display); font-weight: 500; text-transform: uppercase;
  font-size: clamp(20px, 3vw, 32px); line-height: 1.15; letter-spacing: .01em;
  color: #fff; margin: -.1em 0 .6em; max-width: 32ch;
}
.hero__deck .hl { color: var(--red-bright); }
.hero__lead { color: rgba(255,255,255,.84); font-size: clamp(16px, 2vw, 19.5px); max-width: 56ch; }

/* Long-tail "what we get called for" list */
.longtail { columns: 1; column-gap: 40px; }
@media (min-width: 760px) { .longtail { columns: 2; } }
.longtail li { break-inside: avoid; padding: 9px 0 9px 26px; position: relative; font-size: 15.5px; }
.longtail li::before {
  content: ''; position: absolute; left: 2px; top: 1.05em; width: 9px; height: 2px; background: var(--red);
}
.longtail a { color: var(--ink); font-weight: 500; }
.longtail a:hover { color: var(--red); text-decoration: underline; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 34px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stat {
  padding: 12px 18px; border-radius: var(--radius);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13);
}
.hero__stat b { display: block; font-family: var(--display); font-size: 21px; color: #fff; letter-spacing: .01em; }
.hero__stat span { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); }

/* Compact hero for interior pages */
.pagehead { background: var(--ink); color: rgba(255,255,255,.8); padding-top: 40px; padding-bottom: 46px; }
.pagehead h1 { color: #fff; margin-bottom: .35em; }
.pagehead p { max-width: 62ch; margin-bottom: 0; font-size: 17.5px; }
.pagehead__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* ── Breadcrumbs ────────────────────────────────────────────────────────── */
.crumbs { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs li:not(:last-child)::after { content: '/'; margin-left: 8px; opacity: .5; }
.crumbs [aria-current] { color: rgba(255,255,255,.9); }

/* ── Trust strip ────────────────────────────────────────────────────────── */
.trust { background: var(--ink-2); padding: 30px 0; }
.trust__grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 680px) { .trust__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .trust__grid { grid-template-columns: repeat(4, 1fr); } }
.trust__item { display: flex; gap: 13px; align-items: flex-start; color: rgba(255,255,255,.72); font-size: 14px; }
.trust__item svg { width: 30px; height: 30px; flex: none; color: var(--red-bright); }
.trust__item b { display: block; font-family: var(--display); font-size: 15.5px; color: #fff; text-transform: uppercase; letter-spacing: .02em; }

/* ── Service category groups (services hub) ────────────────────────────── */
.svc-cat + .svc-cat { margin-top: 52px; }
.svc-cat__title {
  font-size: 15px; letter-spacing: .1em; color: var(--red); margin-bottom: 20px;
  padding-bottom: 10px; border-bottom: 1px solid var(--line);
}

/* ── Cards ──────────────────────────────────────────────────────────────── */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 680px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--steel-3); }
.card__media { height: 186px; background: var(--ink); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__media--icon { display: grid; place-items: center; }
.card__media--icon svg { width: 58px; height: 58px; color: var(--red-bright); }
.card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.card__body h3, .card__body h4 { font-size: 20px; margin-bottom: .4em; }
.card__body p { font-size: 15px; color: var(--steel); }
.card__list { margin: 0 0 18px; }
.card__list li { position: relative; padding-left: 20px; margin-bottom: 7px; font-size: 14.5px; }
.card__list li::before { content: ''; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.card__foot { margin-top: auto; padding-top: 4px; }
.card__more { font-family: var(--display); text-transform: uppercase; font-size: 14px; letter-spacing: .04em; color: var(--red); }
.card__more:hover { text-decoration: underline; }

/* Area chip cards */
.area-card {
  display: block; padding: 18px 20px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--paper); transition: border-color .2s, transform .2s, box-shadow .2s;
}
.area-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.area-card b { display: block; font-family: var(--display); font-size: 18px; text-transform: uppercase; color: var(--ink); letter-spacing: .02em; }
.area-card span { font-size: 13px; color: var(--steel); }

/* ── Numbered process ───────────────────────────────────────────────────── */
.steps { display: grid; gap: 24px; grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 680px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding: 26px 22px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; }
.step__n {
  width: 42px; height: 42px; border-radius: 50%; background: var(--red); color: #fff;
  display: grid; place-items: center; font-family: var(--display); font-size: 19px; margin-bottom: 15px;
}
.step h3 { font-size: 17px; }
.step p { font-size: 14.5px; color: var(--steel); margin: 0; }

/* ── Feature list ───────────────────────────────────────────────────────── */
.feature { display: flex; gap: 15px; }
.feature__ico { flex: none; width: 44px; height: 44px; border-radius: 8px; background: var(--ink); color: #fff; display: grid; place-items: center; }
.feature__ico svg { width: 21px; height: 21px; }
.feature b { display: block; font-family: var(--display); font-size: 16.5px; text-transform: uppercase; letter-spacing: .02em; color: var(--ink); margin-bottom: 3px; }
.feature p { font-size: 14.5px; color: var(--steel); margin: 0; }

/* ── Reviews ────────────────────────────────────────────────────────────── */
.rating-summary {
  display: inline-flex; align-items: center; gap: 9px; flex-wrap: wrap;
  margin: 16px 0 0; padding: 9px 16px; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line);
  font-size: 15px; color: var(--text);
}
.rating-summary__stars { color: var(--red); letter-spacing: 2px; }
.rating-summary strong { font-family: var(--display); font-size: 19px; color: var(--ink); }
.footer__nap { font-size: 13.5px; line-height: 1.6; }
.footer__nap strong { color: #fff; }

.review { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 24px; }
.review__stars { color: var(--red); letter-spacing: 2px; margin-bottom: 10px; font-size: 15px; }
.review p { font-size: 15.5px; font-style: italic; }
.review__who { font-family: var(--display); font-size: 13.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink); }
.review__who span { color: var(--steel); }

/* ── Prose (long-form SEO content) ──────────────────────────────────────── */
.prose { max-width: 68ch; }
.prose h2 { margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.4em; font-size: 20px; }
.prose ul { margin: 0 0 1.2em; }
.prose ul li { position: relative; padding-left: 26px; margin-bottom: .55em; }
.prose ul li::before { content: ''; position: absolute; left: 4px; top: .62em; width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.prose a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--red-dark); }
.prose strong { color: var(--text-strong); }

.layout { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 1040px) { .layout { grid-template-columns: minmax(0,1fr) 340px; gap: 52px; } }
.sidebar { position: sticky; top: 96px; display: grid; gap: 22px; }

.panel { border: 1px solid var(--line); border-radius: 10px; padding: 22px; background: var(--paper); }
.panel--ink { background: var(--ink); color: rgba(255,255,255,.78); border-color: transparent; }
.panel--ink h3, .panel--ink h4 { color: #fff; }
.panel h3 { font-size: 18px; }
.panel__list li { border-bottom: 1px solid var(--line); }
.panel__list li:last-child { border-bottom: 0; }
.panel__list a { display: block; padding: 11px 0; font-size: 15px; }
.panel__list a:hover { color: var(--red); }
.panel--ink .panel__list li { border-color: var(--line-dark); }
.panel--ink .panel__list a:hover { color: var(--red-bright); }

.checklist li { position: relative; padding-left: 28px; margin-bottom: .6em; font-size: 15px; }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: .35em; width: 17px; height: 17px;
  background: var(--red); border-radius: 50%;
  clip-path: polygon(22% 52%, 40% 70%, 78% 30%, 86% 40%, 40% 86%, 14% 60%);
}

/* ── FAQ accordion ──────────────────────────────────────────────────────── */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
/* The question is an <h3> for document structure; it must not inherit the
   global h3 sizing/uppercase treatment. */
.faq__h { margin: 0; font: inherit; text-transform: none; letter-spacing: normal; }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 19px 2px; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--display); font-size: 17.5px; font-weight: 500; color: var(--ink); letter-spacing: .01em;
}
.faq__q:hover { color: var(--red); }
.faq__sign { position: relative; width: 18px; height: 18px; flex: none; }
.faq__sign::before, .faq__sign::after { content: ''; position: absolute; background: var(--red); border-radius: 2px; }
.faq__sign::before { width: 18px; height: 3px; top: 7.5px; left: 0; }
.faq__sign::after { width: 3px; height: 18px; top: 0; left: 7.5px; transition: transform .22s, opacity .22s; }
.faq__item.open .faq__sign::after { transform: rotate(90deg); opacity: 0; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq__a > div { padding: 0 2px 20px; font-size: 15.5px; color: var(--text); }
.faq__a p:last-child { margin-bottom: 0; }

/* ── Quote form ─────────────────────────────────────────────────────────── */
.form { display: grid; gap: 15px; }
.form__row { display: grid; gap: 15px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; font-family: var(--body); font-size: 16px;
  color: var(--text-strong); background: var(--paper); border: 1px solid var(--steel-3); border-radius: var(--radius);
}
.field textarea { resize: vertical; min-height: 118px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(184,0,0,.14);
}
.panel--ink .field label { color: rgba(255,255,255,.85); }
.hp { position: absolute; left: -9999px; width: 0; height: 0; opacity: 0; }
.form__note { font-size: 12.5px; color: var(--steel); }
.panel--ink .form__note { color: rgba(255,255,255,.55); }
.form__status { display: none; font-size: 15px; font-weight: 500; padding: 13px 15px; border-radius: var(--radius); }
.form__status.show { display: block; }
.form__status.ok  { background: rgba(26,127,55,.12); color: var(--ok); }
.form__status.err { background: rgba(184,0,0,.10); color: var(--red); }

/* ── CTA band ───────────────────────────────────────────────────────────── */
.cta-band { background: var(--red); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); font-size: 18px; max-width: 60ch; margin: 0 auto 26px; }
.cta-band .btn--primary { background: var(--ink); }
.cta-band .btn--primary:hover { background: #000; box-shadow: none; }
.cta-band__row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255,255,255,.68); font-size: 14.5px; padding-top: 56px; }
.site-footer h4 { color: #fff; font-size: 13px; letter-spacing: .12em; margin-bottom: 14px; }
.site-footer a:hover { color: var(--red-bright); }
.footer__grid { display: grid; gap: 34px; grid-template-columns: 1fr; padding-bottom: 40px; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; } }
@media (min-width: 1040px) { .footer__grid { grid-template-columns: 1.7fr 1fr 1fr 1fr; } }
.footer__brand img { height: 46px; width: auto; background: #fff; padding: 7px 11px; border-radius: var(--radius); margin-bottom: 15px; }
.footer__list li { margin-bottom: 9px; }
.footer__contact a { color: #fff; font-family: var(--display); font-size: 20px; }
.footer__bottom {
  border-top: 1px solid var(--line-dark); padding: 18px 0 88px;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: 12.5px; color: rgba(255,255,255,.45);
}
@media (min-width: 1040px) { .footer__bottom { padding-bottom: 22px; } }

/* ── Sticky mobile call bar ─────────────────────────────────────────────── */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
  display: grid; grid-template-columns: 1fr 1fr;
  box-shadow: 0 -6px 20px rgba(0,0,0,.22);
}
@media (min-width: 1040px) { .callbar { display: none; } }
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 58px; padding: 10px;
  font-family: var(--display); font-size: 16px; letter-spacing: .03em; text-transform: uppercase; color: #fff;
}
.callbar a svg { width: 19px; height: 19px; }
.callbar__call { background: var(--red); }
.callbar__quote { background: var(--ink); }
body { padding-bottom: 58px; }
@media (min-width: 1040px) { body { padding-bottom: 0; } }

/* ── Motion ─────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ── Print ──────────────────────────────────────────────────────────────── */
@media print {
  .utility, .site-header, .drawer, .callbar, .cta-band, .site-footer { display: none !important; }
  body { padding-bottom: 0; color: #000; }
  .hero, .pagehead { background: none !important; color: #000; }
  .hero h1, .pagehead h1 { color: #000; }
}
