/* Precision Plumbing Myrtle Beach
   Tokens and reasoning: design-system/MASTER.md. Mobile first. */

@font-face { font-family: "Bitter"; font-style: normal; font-weight: 400 700; font-display: swap; src: url("../fonts/bitter-var.woff2") format("woff2"); }
@font-face { font-family: "Public Sans"; font-style: normal; font-weight: 300 800; font-display: swap; src: url("../fonts/public-sans-var.woff2") format("woff2"); }

:root {
  --ink: #171B1F;
  --ink-2: #252B31;
  --ink-3: #333A42;
  --text: #2B3238;
  --slate: #4A545E;
  --copper: #A24C18;
  --copper-lift: #C15F20;
  --copper-soft: #E8A97A;
  --pipe: #0F5A63;
  --pipe-lift: #14747F;
  --line: #DCD7D0;
  --line-2: #BFB8AE;
  --paper: #F6F3EF;
  --paper-2: #EDE8E1;
  --white: #FFFFFF;
  --on-ink: #CFCAC3;

  --font-display: Bitter, Georgia, "Times New Roman", serif;
  --font-body: "Public Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --step--2: 0.8125rem;
  --step--1: 0.9375rem;
  --step-0: clamp(1.0625rem, 1.02rem + 0.2vw, 1.1875rem);
  --step-1: clamp(1.25rem, 1.15rem + 0.4vw, 1.4375rem);
  --step-2: clamp(1.5rem, 1.32rem + 0.75vw, 2rem);
  --step-3: clamp(1.9375rem, 1.6rem + 1.5vw, 2.875rem);
  --step-4: clamp(2.5rem, 1.9rem + 2.6vw, 4.25rem);
  --phone: clamp(1.9375rem, 1.5rem + 1.9vw, 2.875rem);

  --radius: 12px;
  --radius-sm: 8px;
  --gutter: 20px;
  --container: 1180px;
  --header-h: 66px;
  --callbar-h: 62px;
  --section-y: clamp(3.25rem, 2.2rem + 5vw, 6rem);

  --z-callbar: 40;
  --z-header: 50;
  --z-menu: 60;
}

@media (min-width: 640px) { :root { --gutter: 32px; } }
@media (min-width: 1024px) { :root { --gutter: 44px; --header-h: 82px; } }

/* ---------- Base ---------- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 20px); overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: var(--callbar-h);
}
@media (min-width: 1024px) { body { padding-bottom: 0; } }

img, svg { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; }
a { color: var(--pipe); text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color 150ms ease; }
a:hover { color: var(--pipe-lift); }
p { margin: 0 0 1em; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.012em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); font-weight: 600; line-height: 1.14; }

:focus-visible { outline: 3px solid var(--pipe); outline-offset: 3px; border-radius: 3px; }
.on-ink :focus-visible, .footzone :focus-visible, .phonebar:focus-visible { outline-color: var(--copper-soft); }

.jump-link {
  position: absolute; left: 12px; top: -64px; z-index: 100;
  background: var(--ink); color: var(--white); padding: 11px 18px; border-radius: var(--radius-sm);
  font-weight: 700; text-decoration: none;
}
.jump-link:focus { top: 12px; color: var(--white); }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.shell { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.band { padding-block: var(--section-y); }
.band--paper { background: var(--paper); }
.band--tight { padding-block: clamp(2.25rem, 1.8rem + 2.5vw, 3.5rem); }
.band--notop { padding-top: 0; }
.glyph { width: 1.25em; height: 1.25em; flex: none; }

.kicker {
  font-family: var(--font-body); font-size: var(--step--2); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--copper);
  margin: 0 0 14px; display: flex; align-items: center; gap: 10px;
}
.kicker::after { content: ""; height: 1px; flex: 1; background: var(--line); max-width: 96px; }
.on-ink .kicker { color: var(--copper-soft); }
.on-ink .kicker::after { background: rgba(255, 255, 255, 0.22); }

/* ---------- Call button: every phone CTA ---------- */

.callbtn {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--copper); color: var(--white);
  padding: 12px 24px 12px 12px; border-radius: var(--radius);
  text-decoration: none; cursor: pointer; touch-action: manipulation;
  border: 1px solid rgba(0, 0, 0, 0.12);
  transition: background-color 150ms ease, transform 150ms ease;
}
.callbtn:hover { background: var(--copper-lift); color: var(--white); transform: translateY(-1px); }
.callbtn:active { transform: none; }
.callbtn__icon {
  width: 48px; height: 48px; flex: none; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.16); border-radius: var(--radius-sm); color: var(--white);
}
.callbtn__icon .glyph { width: 26px; height: 26px; }
.callbtn__text { display: grid; line-height: 1.05; }
.callbtn__label { font-size: var(--step--1); font-weight: 600; letter-spacing: 0.02em; opacity: 0.92; margin-bottom: 7px; }
.callbtn__num { font-family: var(--font-display); font-weight: 700; font-size: var(--phone); font-variant-numeric: tabular-nums; letter-spacing: -0.01em; white-space: nowrap; }
.callbtn--sm { gap: 11px; padding: 9px 18px 9px 9px; }
.callbtn--sm .callbtn__icon { width: 38px; height: 38px; }
.callbtn--sm .callbtn__icon .glyph { width: 20px; height: 20px; }
.callbtn--sm .callbtn__num { font-size: clamp(1.5rem, 1.3rem + 0.9vw, 1.875rem); }
.callbtn--block { display: flex; width: 100%; justify-content: center; }

.placeholder-note {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 12px;
  font-size: var(--step--2); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--copper); background: var(--paper-2); border: 1px dashed var(--line-2);
  padding: 4px 10px; border-radius: 999px;
}
.on-ink .placeholder-note { color: var(--copper-soft); background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.24); }

/* ---------- Trust items ---------- */

.assurances { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); }
.assurances li { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: var(--step--1); }
.assurances .glyph { width: 21px; height: 21px; color: var(--pipe); }
.on-ink .assurances, .callcard .assurances { border-top-color: rgba(255, 255, 255, 0.2); }
.on-ink .assurances li, .callcard .assurances li { color: var(--white); }
.on-ink .assurances .glyph, .callcard .assurances .glyph { color: var(--copper-soft); }

/* ---------- Utility strip ---------- */

.u-strip { display: none; background: var(--ink); color: var(--on-ink); font-size: var(--step--2); }
.u-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 38px; }
.u-strip ul { list-style: none; display: flex; gap: 22px; }
.u-strip li { display: flex; align-items: center; gap: 7px; }
.u-strip .glyph { width: 15px; height: 15px; color: var(--copper-soft); }
.u-strip b { color: var(--white); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
@media (min-width: 1024px) { .u-strip { display: block; } }

/* ---------- Header ---------- */

.masthead { position: sticky; top: 0; z-index: var(--z-header); background: var(--white); border-bottom: 1px solid var(--line); }
.masthead__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: var(--header-h); }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); flex: 0 1 auto; min-width: 0; }
.logo__glyph { width: 34px; height: 34px; flex: none; }
.logo__lines { display: grid; line-height: 1.02; min-width: 0; }
.logo__name { font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem; letter-spacing: -0.015em; color: var(--ink); }
.logo__place { font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--slate); margin-top: 4px; }
@media (min-width: 420px) { .logo__glyph { width: 38px; height: 38px; } .logo__name { font-size: 1.1875rem; } .logo__place { font-size: 0.625rem; } }
@media (min-width: 560px) { .logo { gap: 11px; } .logo__glyph { width: 40px; height: 40px; } .logo__name { font-size: 1.375rem; } .logo__place { font-size: 0.6875rem; letter-spacing: 0.15em; margin-top: 5px; } }
@media (min-width: 1024px) { .logo__glyph { width: 46px; height: 46px; } .logo__name { font-size: 1.625rem; } }

.mainnav { display: none; }
.mainnav__list { list-style: none; display: flex; align-items: center; gap: 2px; }
.mainnav__link, .mainnav__toggle {
  display: inline-flex; align-items: center; gap: 5px; padding: 10px 13px; min-height: 44px;
  font-weight: 600; font-size: 1rem; color: var(--ink); text-decoration: none;
  background: none; border: 0; cursor: pointer; border-radius: var(--radius-sm);
}
.mainnav__link:hover, .mainnav__toggle:hover { color: var(--pipe); background: var(--paper); }
.mainnav__link[aria-current="page"], .mainnav__item--on > .mainnav__toggle { color: var(--copper); }
.mainnav__toggle .glyph { width: 17px; height: 17px; transition: transform 150ms ease; }
.mainnav__toggle[aria-expanded="true"] .glyph { transform: rotate(180deg); }

.mainnav__item { position: relative; }
.flyout {
  position: absolute; left: -8px; top: calc(100% + 10px); width: 560px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(23, 27, 31, 0.13); padding: 12px; display: none;
}
.mainnav__item.is-open .flyout { display: block; }
.flyout__list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 1px 10px; }
.flyout__list a { display: block; padding: 9px 12px; color: var(--ink); font-weight: 500; font-size: 0.9375rem; text-decoration: none; border-radius: var(--radius-sm); }
.flyout__list a:hover { color: var(--pipe); background: var(--paper); }
.flyout__all { display: block; margin-top: 8px; padding: 11px 12px; border-top: 1px solid var(--line); font-weight: 700; font-size: 0.9375rem; }

.masthead__cta { display: none; }
.masthead__actions { display: flex; align-items: center; gap: 8px; }
.masthead__call {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 15px;
  background: var(--copper); color: var(--white); font-weight: 700; font-size: 1rem;
  text-decoration: none; border-radius: var(--radius-sm);
}
.masthead__call:hover { background: var(--copper-lift); color: var(--white); }
.masthead__call .glyph { width: 19px; height: 19px; }
@media (max-width: 399px) { .masthead__call { padding: 0 11px; gap: 6px; } .masthead__actions { gap: 6px; } }
.burger {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  background: none; border: 1px solid var(--line-2); border-radius: var(--radius-sm); cursor: pointer; color: var(--ink);
}
.burger .glyph { width: 23px; height: 23px; }
.burger .glyph--close { display: none; }
.is-drawer-open .burger .glyph--open { display: none; }
.is-drawer-open .burger .glyph--close { display: block; }

.slideout {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: var(--z-menu);
  background: var(--white); overflow-y: auto; overscroll-behavior: contain;
  padding: 6px var(--gutter) calc(var(--callbar-h) + 36px); display: none;
}
.is-drawer-open .slideout { display: block; }
.is-drawer-open { overflow: hidden; }
.slideout__group { border-bottom: 1px solid var(--line); padding-block: 12px; }
.slideout__title { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--ink); text-decoration: none; display: block; padding-block: 8px; }
.slideout__list { list-style: none; display: grid; margin-top: 2px; }
.slideout__list a { display: flex; align-items: center; gap: 10px; padding: 11px 0; font-size: 1.0625rem; font-weight: 500; color: var(--text); text-decoration: none; }
.slideout__list .idx { font-family: var(--font-display); font-weight: 700; font-size: 0.8125rem; color: var(--copper); width: 22px; }

@media (min-width: 1024px) {
  .mainnav { display: block; }
  .masthead__cta { display: inline-flex; }
  .masthead__actions { display: none; }
  .slideout { display: none !important; }
}
@media (min-width: 1024px) and (max-width: 1179px) {
  .mainnav__link, .mainnav__toggle { padding-inline: 9px; font-size: 0.9375rem; }
  .masthead__cta .callbtn__num { font-size: 1.5rem; }
}

/* ---------- Mobile call bar ---------- */

.phonebar {
  position: fixed; left: 0; right: 0; bottom: 0; max-width: 100vw; z-index: var(--z-callbar);
  display: flex; align-items: center; justify-content: center; gap: 11px;
  height: var(--callbar-h); padding-bottom: env(safe-area-inset-bottom);
  background: var(--copper); color: var(--white); text-decoration: none;
  font-family: var(--font-display); font-weight: 700; font-size: 1.4375rem;
  box-shadow: 0 -6px 20px rgba(23, 27, 31, 0.18);
}
.phonebar:hover { color: var(--white); background: var(--copper-lift); }
.phonebar .glyph { width: 24px; height: 24px; }
@media (min-width: 1024px) { .phonebar { display: none; } }

/* ---------- Ink sections ---------- */

.on-ink { background: var(--ink); color: var(--on-ink); }
.on-ink h1, .on-ink h2, .on-ink h3 { color: var(--white); }
.on-ink a:not(.callbtn) { color: var(--copper-soft); }

/* ---------- Hero ---------- */

.banner.on-ink { position: relative; background: var(--ink); overflow: hidden; }
.banner__media { position: absolute; inset: 0; }
.banner__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; }
.banner__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 24, 28, 0.94) 0%, rgba(20, 24, 28, 0.82) 45%, rgba(20, 24, 28, 0.9) 100%);
}
.banner__inner { position: relative; padding-block: clamp(2.75rem, 2rem + 5vw, 6.5rem); }
.banner__copy { max-width: 34rem; }
.banner h1 { color: var(--white); margin-bottom: 0.34em; }
.banner__lead { font-size: var(--step-1); line-height: 1.5; color: #E4E0DA; max-width: 30rem; margin-bottom: 1.7em; }
.banner .assurances { max-width: 34rem; }

@media (min-width: 860px) {
  .banner__veil { background: linear-gradient(100deg, rgba(20, 24, 28, 0.97) 0%, rgba(20, 24, 28, 0.93) 38%, rgba(20, 24, 28, 0.62) 62%, rgba(20, 24, 28, 0.42) 100%); }
  .banner__media img { object-position: 78% 50%; }
  .banner__inner { min-height: min(660px, calc(100vh - var(--header-h))); display: flex; align-items: center; }
}

/* ---------- Section heads ---------- */

.headgroup { display: grid; gap: 10px 56px; margin-bottom: clamp(1.75rem, 1.4rem + 1.8vw, 3rem); }
.headgroup h2 { margin: 0; max-width: 18ch; }
.headgroup p { margin: 0; color: var(--slate); max-width: 54ch; }
.on-ink .headgroup p { color: var(--on-ink); }
@media (min-width: 900px) {
  .headgroup { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: end; }
  .headgroup--center { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .headgroup--center h2, .headgroup--center p { max-width: 46ch; text-align: center; }
}

/* ---------- Service cards ---------- */

.jobcards { list-style: none; display: grid; gap: 22px; }
@media (min-width: 620px) { .jobcards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .jobcards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .jobcards--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.jobcard {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}
.jobcard__media { position: relative; aspect-ratio: 4 / 3; background: var(--paper-2); }
.jobcard__media img { width: 100%; height: 100%; object-fit: cover; }
.jobcard__num {
  position: absolute; left: 0; bottom: 0; z-index: 1;
  background: var(--copper); color: var(--white); font-family: var(--font-display); font-weight: 700;
  font-size: 0.8125rem; letter-spacing: 0.06em; padding: 5px 12px; border-radius: 0 var(--radius-sm) 0 0;
}
.jobcard__body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.jobcard__title { font-size: var(--step-1); font-weight: 700; margin: 0 0 8px; }
.jobcard__title a { color: var(--ink); text-decoration: none; }
.jobcard__title a::after { content: ""; position: absolute; inset: 0; }
.jobcard__text { color: var(--slate); font-size: var(--step--1); margin: 0; }
.jobcard:hover { border-color: var(--line-2); box-shadow: 0 14px 30px rgba(23, 27, 31, 0.1); transform: translateY(-2px); }
.jobcard:hover .jobcard__title a { color: var(--copper); }
.band--paper .jobcard { background: var(--white); }

/* ---------- Index rows (long lists) ---------- */

.rows { list-style: none; display: grid; border-top: 1px solid var(--line-2); }
@media (min-width: 760px) { .rows { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 48px; } }
.row {
  position: relative; display: grid; grid-template-columns: 34px 1fr 20px; gap: 2px 12px;
  padding: 17px 0 19px; border-bottom: 1px solid var(--line); align-items: baseline;
}
.row__idx { font-family: var(--font-display); font-weight: 700; font-size: 0.875rem; color: var(--copper); font-variant-numeric: tabular-nums; }
.row__name { grid-column: 2; font-family: var(--font-display); font-weight: 600; font-size: 1.3125rem; line-height: 1.2; color: var(--ink); margin: 0; }
.row__name a { color: inherit; text-decoration: none; }
.row__name a::after { content: ""; position: absolute; inset: 0; }
.row__text { grid-column: 2; margin: 5px 0 0; color: var(--slate); font-size: var(--step--1); }
.row__chev { grid-column: 3; grid-row: 1 / 3; align-self: center; width: 20px; height: 20px; color: var(--line-2); transition: color 150ms ease, transform 150ms ease; }
.row:hover .row__name { color: var(--copper); }
.row:hover .row__chev { color: var(--copper); transform: translateX(3px); }

/* ---------- Step rail ---------- */

.stairs { list-style: none; display: grid; gap: 26px; position: relative; }
.stair { position: relative; display: grid; grid-template-columns: 54px 1fr; gap: 0 18px; }
.stair__n {
  position: relative; z-index: 1; width: 54px; height: 54px; display: grid; place-items: center;
  border: 2px solid var(--copper); border-radius: 50%; background: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: 1.375rem; color: var(--copper);
}
.band--paper .stair__n { background: var(--paper); }
.on-ink .stair__n { background: var(--ink); border-color: var(--copper-soft); color: var(--copper-soft); }
.stair h3 { font-size: var(--step-1); margin: 11px 0 6px; }
.stair p { margin: 0; color: var(--slate); max-width: 36ch; }
.on-ink .stair p { color: var(--on-ink); }
.stairs::before { content: ""; position: absolute; left: 26px; top: 40px; bottom: 40px; border-left: 2px dashed var(--line-2); }
@media (min-width: 900px) {
  .stairs { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 44px; }
  .stair { grid-template-columns: 1fr; }
  .stair h3 { margin-top: 20px; }
  .stairs::before { left: 40px; right: 40px; top: 26px; bottom: auto; border-left: 0; border-top: 2px dashed var(--line-2); }
}

/* ---------- Spec panel ---------- */

.spec { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; }
.spec__head {
  background: var(--paper-2); border-bottom: 1px solid var(--line); padding: 12px 20px;
  font-size: var(--step--2); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink);
}
.spec__body { padding: 20px; }
.spec__body > :last-child { margin-bottom: 0; }
.spec__list { list-style: none; display: grid; gap: 11px; }
.spec__list li { display: flex; gap: 11px; font-size: var(--step--1); line-height: 1.45; }
.spec__list .glyph { width: 19px; height: 19px; color: var(--pipe); margin-top: 3px; }

/* ---------- Proof ---------- */

.why { display: grid; gap: 34px; align-items: center; }
.why__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.why__list { display: grid; gap: 26px; }
.why__item { display: grid; grid-template-columns: 46px 1fr; gap: 4px 16px; }
.why__item .badge {
  grid-row: 1 / 3; width: 46px; height: 46px; display: grid; place-items: center;
  background: var(--paper-2); border-radius: var(--radius-sm); color: var(--pipe);
}
.why__item .badge .glyph { width: 24px; height: 24px; }
.why__item h3 { font-size: var(--step-1); margin: 8px 0 6px; }
.why__item p { margin: 0; color: var(--slate); }
@media (min-width: 900px) { .why { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 64px; } }

/* ---------- Map and towns ---------- */

.coverage { display: grid; gap: 34px; align-items: start; }
@media (min-width: 960px) { .coverage { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 60px; } }
.strandmap { width: 100%; height: auto; border-radius: var(--radius); background: #D9E4E6; }
.strandmap__sea { fill: #D9E4E6; }
.strandmap__land { fill: var(--paper); stroke: var(--line-2); stroke-width: 1; }
.strandmap__land--nc { fill: var(--paper-2); }
.strandmap__creek { fill: #D9E4E6; stroke: #D9E4E6; stroke-width: 1.2; stroke-linejoin: round; }
.strandmap__frame { fill: none; stroke: var(--line-2); stroke-width: 1; rx: 12; }
.strandmap__pin { fill: var(--copper); stroke: var(--white); stroke-width: 2; }
.strandmap__name { font-family: var(--font-body); font-weight: 700; font-size: 16px; fill: var(--ink); paint-order: stroke; stroke: var(--paper); stroke-width: 3.5px; stroke-linejoin: round; }
.strandmap__state { font-family: var(--font-body); font-weight: 600; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; fill: #6B6257; }
.strandmap__sea-label { font-family: var(--font-body); font-weight: 500; font-style: italic; font-size: 15px; fill: #3E5B60; }
.strandmap__scale { stroke: var(--ink); stroke-width: 2; fill: none; }
.strandmap__scale-label { font-family: var(--font-body); font-weight: 700; font-size: 12px; letter-spacing: 0.06em; fill: var(--ink); }
.strandmap-note { font-size: var(--step--2); color: var(--slate); margin-top: 10px; }
@media (max-width: 640px) {
  .strandmap__name { font-size: 26px; stroke-width: 5px; }
  .strandmap__state, .strandmap__sea-label { font-size: 21px; }
  .strandmap__scale-label { font-size: 19px; }
}

.place-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0 22px; border-top: 1px solid var(--line-2); }
.place-list li { border-bottom: 1px solid var(--line); }
.place-list a { display: flex; align-items: center; gap: 9px; padding: 13px 0; font-weight: 600; font-size: var(--step--1); color: var(--ink); text-decoration: none; min-height: 48px; }
.place-list a:hover { color: var(--copper); }
.place-list .glyph { width: 17px; height: 17px; color: var(--pipe); }
.coverage__text p { color: var(--slate); }
.coverage__link { display: inline-flex; align-items: center; gap: 7px; margin-top: 20px; font-weight: 700; }
.coverage__link .glyph { width: 17px; height: 17px; }

/* ---------- FAQ ---------- */

.qa { display: grid; gap: 26px; }
@media (min-width: 960px) {
  .qa { grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: 64px; }
  .qa__intro { position: sticky; top: calc(var(--header-h) + 28px); align-self: start; }
}
.qa__intro p { color: var(--slate); }
.qa__list { border-top: 1px solid var(--line-2); }
.qa__item { border-bottom: 1px solid var(--line); }
.qa__item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 19px 0; font-family: var(--font-display); font-weight: 600; font-size: var(--step-1); color: var(--ink); line-height: 1.25;
}
.qa__item summary::-webkit-details-marker { display: none; }
.qa__item summary .glyph { width: 22px; height: 22px; color: var(--copper); transition: transform 180ms ease; }
.qa__item[open] summary .glyph { transform: rotate(180deg); }
.qa__item summary:hover { color: var(--copper); }
.qa__body { padding: 0 0 22px; max-width: 66ch; color: var(--slate); }
.qa__body p:last-child { margin-bottom: 0; }

/* ---------- Call band ---------- */

.callband { padding-block: clamp(2.75rem, 2rem + 4vw, 4.75rem); }
.callband__inner { display: grid; gap: 26px; align-items: center; }
.callband h2 { margin-bottom: 0.3em; }
.callband p { margin: 0; max-width: 48ch; font-size: var(--step-1); line-height: 1.5; }
@media (min-width: 900px) { .callband__inner { grid-template-columns: 1fr auto; gap: 56px; } }

/* ---------- Breadcrumbs and page head ---------- */

.trail { padding-top: 20px; font-size: var(--step--2); }
.trail ol { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; color: var(--slate); }
.trail li + li::before { content: "/"; margin-right: 7px; color: var(--line-2); }
.trail a { color: var(--slate); }
.trail a:hover { color: var(--copper); }

.topper { padding: 16px 0 clamp(2.5rem, 2rem + 3vw, 4.25rem); }
.topper__grid { display: grid; gap: 32px; align-items: center; margin-top: clamp(0.75rem, 0.5rem + 1.5vw, 1.75rem); }
.topper h1 { font-size: clamp(2.25rem, 1.75rem + 2.4vw, 3.5rem); max-width: 17ch; }
.topper__lead { font-size: var(--step-1); line-height: 1.5; color: var(--slate); max-width: 44ch; margin-bottom: 1.5em; }
.topper__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); }
@media (min-width: 960px) {
  .topper__grid { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: 64px; }
}
.topper--plain .topper__grid { grid-template-columns: 1fr; }
@media (min-width: 960px) {
  .topper--split .topper__grid { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); align-items: end; gap: 64px; }
  .topper--split h1 { margin-bottom: 0; }
  .topper--split .topper__lead { margin-bottom: 0; }
}
.topper--tight { padding-bottom: clamp(1.25rem, 1rem + 1.5vw, 2rem); }

.band-strip img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; }
@media (max-width: 639px) { .band-strip img { aspect-ratio: 4 / 3; } }

/* ---------- Service page body ---------- */

.split { display: grid; gap: 44px; }
@media (min-width: 1024px) { .split { grid-template-columns: minmax(0, 1fr) 336px; gap: 68px; align-items: start; } }
.chunk { margin-bottom: clamp(2.25rem, 1.8rem + 1.5vw, 3.25rem); }
.chunk:last-child { margin-bottom: 0; }
.chunk h2 { font-size: var(--step-2); margin-bottom: 0.65em; }
.chunk p { max-width: 68ch; }

.ticks { list-style: none; display: grid; gap: 0 32px; border-top: 1px solid var(--line); }
@media (min-width: 640px) { .ticks { grid-template-columns: 1fr 1fr; } .checklist--single { grid-template-columns: 1fr; } }
.ticks li { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); line-height: 1.45; }
.ticks .glyph { width: 21px; height: 21px; color: var(--pipe); margin-top: 3px; }

.plainlist { list-style: none; display: grid; border-top: 1px solid var(--line); max-width: 68ch; }
.plainlist li { padding: 11px 0 11px 24px; border-bottom: 1px solid var(--line); position: relative; }
.plainlist li::before { content: ""; position: absolute; left: 0; top: 1.2em; width: 11px; height: 2px; background: var(--copper); }

.terms { display: grid; border-top: 1px solid var(--line); margin: 0; max-width: 68ch; }
.terms div { display: grid; gap: 3px 28px; padding: 15px 0; border-bottom: 1px solid var(--line); }
@media (min-width: 640px) { .terms div { grid-template-columns: 190px 1fr; } }
.terms dt { font-family: var(--font-display); font-weight: 600; font-size: 1.125rem; color: var(--ink); line-height: 1.3; }
.terms dd { margin: 0; color: var(--slate); overflow-wrap: anywhere; }

.sidenote { background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--copper); padding: 22px 26px; border-radius: 0 var(--radius) var(--radius) 0; }
.sidenote h2 { font-size: var(--step-1); margin-bottom: 0.5em; }
.sidenote p { color: var(--slate); }
.sidenote p:last-child { margin-bottom: 0; }

.shot { margin: 0; }
.shot img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius); }
.shot figcaption { font-size: var(--step--2); color: var(--slate); margin-top: 10px; }

.rail { display: grid; gap: 22px; align-content: start; }
@media (min-width: 1024px) { .rail__stick { position: sticky; top: calc(var(--header-h) + 26px); display: grid; gap: 22px; } }
.callcard { background: var(--ink); border-radius: var(--radius); padding: 24px; color: var(--on-ink); }
.callcard h2 { font-size: 1.5rem; color: var(--white); margin-bottom: 0.35em; }
.callcard p { font-size: var(--step--1); margin-bottom: 16px; }
.callcard .callbtn { width: 100%; justify-content: center; }
.callcard .assurances { flex-direction: column; gap: 10px; margin-top: 18px; }
.sidelinks { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.sidelinks h2 { font-size: var(--step--2); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; background: var(--paper-2); border-bottom: 1px solid var(--line); padding: 12px 18px; margin: 0; }
.sidelinks ul { list-style: none; padding: 6px 0; }
.sidelinks a { display: block; padding: 9px 18px; color: var(--ink); text-decoration: none; font-weight: 500; font-size: var(--step--1); }
.sidelinks a:hover { color: var(--copper); background: var(--paper); }
.sidelinks a[aria-current="page"] { color: var(--slate); pointer-events: none; background: var(--paper); }

/* ---------- Service areas page ---------- */

.place { display: grid; gap: 26px; align-items: center; padding-block: clamp(2.25rem, 1.8rem + 2vw, 3.5rem); border-top: 1px solid var(--line); }
.place:first-child { border-top: 0; padding-top: 0; }
.place__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius); }
.place h2 { font-size: var(--step-3); }
.place p { color: var(--slate); }
.place__call { margin-top: 6px; font-weight: 700; }
@media (min-width: 900px) {
  .place { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 60px; }
  .place--flip .place__media { order: 2; }
}
.place-grid { display: grid; gap: 0 56px; border-top: 1px solid var(--line); }
@media (min-width: 900px) { .place-grid { grid-template-columns: 1fr 1fr; } }
.place-mini { padding-block: 28px; border-bottom: 1px solid var(--line); }
.place-mini h2 { font-size: var(--step-2); }
.place-mini p { color: var(--slate); margin-bottom: 0.6em; }

/* ---------- How it works and contact ---------- */

.stairs--stacked { list-style: none; display: grid; border-top: 1px solid var(--line-2); }
.stairs--stacked li { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.stairs--stacked h2 { font-size: var(--step-2); margin: 6px 0 8px; }
.stairs--stacked p { margin: 0; max-width: 62ch; color: var(--slate); }
.stairs--stacked p + p { margin-top: 0.8em; }

.duo { display: grid; gap: 36px; }
@media (min-width: 900px) { .duo { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 60px; } }
.info-block { margin-top: 2rem; }
.info-block h2 { font-size: var(--step-1); margin-bottom: 0.5em; }
.info-block p { max-width: 62ch; color: var(--slate); }
.addr { font-style: normal; }

/* ---------- Legal ---------- */

.policy { max-width: 72ch; }
.policy__date { font-weight: 600; color: var(--slate); margin: 0 0 1.1em; }
.policy ul { list-style: none; display: grid; gap: 9px; margin: 0 0 1em; }
.policy li { position: relative; padding-left: 24px; color: var(--slate); }
.policy li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 11px; height: 2px; background: var(--copper); }
.policy p { color: var(--slate); }
.policy__part { margin-top: clamp(2rem, 1.6rem + 1.5vw, 2.75rem); padding-top: clamp(2rem, 1.6rem + 1.5vw, 2.75rem); border-top: 1px solid var(--line); }
.policy__part h2 { font-size: var(--step-2); margin-bottom: 0.55em; }
.policy__part h3 { font-size: var(--step-1); margin: 1.3em 0 0.45em; }
.policy__part h2 + h3 { margin-top: 0.4em; }
.policy__part > :last-child { margin-bottom: 0; }
.rail--toc { display: none; }
@media (min-width: 1024px) { .rail--toc { display: grid; } }

/* ---------- Footer ---------- */

.footzone { background: var(--ink); color: var(--on-ink); padding-block: clamp(2.75rem, 2rem + 3vw, 4.25rem) 26px; font-size: var(--step--1); }
.footzone a { color: #E7E3DD; text-decoration: none; }
.footzone a:hover { color: var(--copper-soft); }
.foot__grid { display: grid; gap: 36px; }
@media (min-width: 720px) { .foot__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .foot__grid { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 0.85fr) minmax(0, 0.75fr); gap: 46px; } }
.foot__brand .logo__name { color: var(--white); }
.foot__brand .logo__place { color: #9E978D; }
.foot__brand p { margin-top: 16px; max-width: 40ch; }
.foot__phone { display: inline-flex; align-items: center; gap: 10px; margin-top: 4px; font-family: var(--font-display); font-weight: 700; font-size: 1.75rem; color: var(--copper-soft) !important; }
.foot__phone:hover { color: var(--white) !important; }
.foot__phone .glyph { width: 24px; height: 24px; }
.foot__contact { font-style: normal; display: grid; gap: 6px; margin-top: 14px; font-size: var(--step--2); }
.foot__col h2 { font-family: var(--font-body); font-weight: 700; font-size: var(--step--2); letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin: 0 0 14px; }
.foot__col ul { list-style: none; display: grid; gap: 9px; }
.foot__legal { margin-top: 42px; padding-top: 22px; border-top: 1px solid #2E353C; display: grid; gap: 12px; font-size: var(--step--2); color: #9E978D; }
@media (min-width: 900px) { .foot__legal { grid-template-columns: 1fr auto; align-items: start; } }
.foot__legal p { margin: 0; max-width: 82ch; }
.foot__legal-meta { display: flex; flex-wrap: wrap; gap: 6px 22px; }
.footzone .foot__legal a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Utilities ---------- */

.muted { color: var(--slate); }
.mt-0 { margin-top: 0; }
.stack-sm > * + * { margin-top: 12px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

@media print {
  .masthead, .u-strip, .phonebar, .slideout, .callband, .rail { display: none !important; }
  body { padding: 0; }
}
