/* ==========================================================================
   East Cobb Softwash — main stylesheet
   Design: clean navy + water-blue, amber call-to-action, generous whitespace.
   ========================================================================== */

:root {
  /* REPLACEABLE IMAGES — swap the file in assets/ or change the path here.
     CSS backgrounds must point at .jpg/.png files (not .webp). */
  --img-cta-band: url("assets/cta-band.jpg");
  /* END REPLACEABLE IMAGES */

  --navy-900: #061729;
  --navy-800: #0b2545;
  --navy-700: #133860;
  --blue-600: #1568c8;
  --blue-500: #2e8ae6;
  --blue-100: #dceaf8;
  --blue-050: #f1f7fd;

  --amber-500: #f5a524;
  --amber-600: #dd8f10;

  --ink: #16202e;
  --text: #33445c;
  --muted: #5d6e85;
  --line: #dde5ee;
  --white: #ffffff;
  --soft: #f5f8fc;

  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif;

  --wrap: 1160px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(6, 23, 41, .06), 0 2px 8px rgba(6, 23, 41, .05);
  --shadow-md: 0 10px 30px rgba(6, 23, 41, .10);
  --shadow-lg: 0 24px 60px rgba(6, 23, 41, .16);

  --step-0: clamp(1rem, .97rem + .15vw, 1.075rem);
  --step-1: clamp(1.13rem, 1.08rem + .25vw, 1.3rem);
  --step-2: clamp(1.35rem, 1.25rem + .5vw, 1.65rem);
  --step-3: clamp(1.6rem, 1.4rem + .9vw, 2.15rem);
  --step-4: clamp(1.95rem, 1.6rem + 1.6vw, 2.9rem);
  --step-5: clamp(2.25rem, 1.75rem + 2.4vw, 3.6rem);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  color: var(--navy-800);
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 800;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { margin: 0 0 1.1em; max-width: 72ch; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-600); text-decoration-thickness: .07em; text-underline-offset: .18em; }
a:hover { color: var(--navy-700); }

:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 2px;
  border-radius: 4px;
}

ul, ol { margin: 0 0 1.2em; padding-left: 1.15em; }
li { margin-bottom: .4em; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.narrow { max-width: 68ch; }
.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;
}

.skip-link {
  position: absolute; left: .75rem; top: -100px; z-index: 200;
  background: var(--navy-800); color: #fff; padding: .7rem 1.1rem;
  border-radius: 0 0 10px 10px; text-decoration: none; font-weight: 700;
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 750; font-size: 1rem; line-height: 1.1;
  padding: .92rem 1.4rem; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease, color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn-primary { background: var(--amber-500); color: #241601; box-shadow: 0 8px 20px rgba(221, 143, 16, .28); }
.btn-primary:hover { background: var(--amber-600); color: #241601; box-shadow: 0 10px 26px rgba(221, 143, 16, .38); }

.btn-navy { background: var(--navy-800); color: #fff; }
.btn-navy:hover { background: var(--navy-700); color: #fff; }

.btn-outline { border-color: rgba(255, 255, 255, .7); color: #fff; background: rgba(255, 255, 255, .06); }
.btn-outline:hover { background: #fff; color: var(--navy-800); border-color: #fff; }

.btn-line { border-color: var(--line); color: var(--navy-800); background: #fff; }
.btn-line:hover { border-color: var(--blue-500); color: var(--blue-600); background: var(--blue-050); }

.btn-sm { padding: .62rem 1rem; font-size: .93rem; }

.link-arrow {
  font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: .38rem;
}
.link-arrow::after { content: "→"; transition: transform .15s ease; }
.link-arrow:hover::after { transform: translateX(3px); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .55rem 0;
}
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 52px; width: auto; }

.nav-toggle {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--navy-800); color: #fff; border: 0; border-radius: 10px;
  padding: .6rem .8rem; font: inherit; font-weight: 700; font-size: .92rem; cursor: pointer;
}
.nav-toggle .bars { display: block; width: 18px; height: 2px; background: #fff; position: relative; }
.nav-toggle .bars::before, .nav-toggle .bars::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: #fff;
}
.nav-toggle .bars::before { top: -6px; }
.nav-toggle .bars::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars::after { top: 0; transform: rotate(-45deg); }

.site-nav ul { list-style: none; margin: 0; padding: 0; }
.site-nav a { color: var(--navy-800); text-decoration: none; font-weight: 650; }

@media (max-width: 899px) {
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md); padding: .6rem 1.25rem 1.25rem;
  }
  .site-nav.open { display: block; }
  .site-nav li { margin: 0; border-bottom: 1px solid var(--line); }
  .site-nav li a { display: block; padding: .85rem .2rem; font-size: 1.05rem; }
  .nav-cta { display: grid; gap: .6rem; margin-top: 1rem; }
  .nav-cta .btn { width: 100%; }
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .header-inner { padding: .6rem 0; }
  .brand img { height: 64px; }
  .site-nav { display: flex; align-items: center; gap: 1.75rem; }
  .site-nav ul { display: flex; gap: 1.6rem; align-items: center; }
  .site-nav li { margin: 0; }
  .site-nav li a {
    position: relative; padding: .35rem 0; font-size: .98rem; display: inline-block;
  }
  .site-nav li a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -.1rem; height: 2px;
    background: var(--blue-500); transform: scaleX(0); transform-origin: left;
    transition: transform .18s ease;
  }
  .site-nav li a:hover::after, .site-nav li a[aria-current="page"]::after { transform: scaleX(1); }
  .site-nav li a[aria-current="page"] { color: var(--blue-600); }
  .nav-cta { display: flex; gap: .6rem; align-items: center; }
}

/* ---------- hero ----------
   Mobile: photo band on top (full, uncropped), copy below on navy.
   Desktop: photo fills the section behind a navy gradient scrim. */
.hero { background: var(--navy-900); color: #fff; }
.hero-media img { width: 100%; height: auto; }
.hero-inner { padding: 2.2rem 0 2.6rem; max-width: 40rem; }

@media (min-width: 820px) {
  .hero { position: relative; isolation: isolate; }
  .hero-media { position: absolute; inset: 0; z-index: -2; }
  .hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%; }
  .hero::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(90deg, rgba(6, 23, 41, .94) 0%, rgba(6, 23, 41, .84) 42%, rgba(6, 23, 41, .38) 72%, rgba(6, 23, 41, .22) 100%);
  }
  .hero-inner { padding: 5.5rem 0 5rem; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  text-transform: uppercase; letter-spacing: .14em; font-size: .76rem; font-weight: 800;
  color: var(--blue-600); margin: 0 0 1rem;
}
.hero .eyebrow { color: #8fc7f5; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; display: block; }

.hero h1 { color: #fff; margin-bottom: .55rem; }
.hero .lead { font-size: var(--step-1); color: #d7e5f3; max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.5rem 0 1.3rem; }
.hero-actions .btn { flex: 1 1 auto; }
@media (min-width: 560px) { .hero-actions .btn { flex: 0 0 auto; } }
.hero-note { font-size: .95rem; color: #a9c2da; margin: 0; }

.trust-strip { background: var(--navy-800); color: #cfe0f0; border-top: 1px solid rgba(255,255,255,.08); }
.trust-strip ul {
  list-style: none; margin: 0; padding: 1rem 0; display: grid; gap: .6rem;
  grid-template-columns: 1fr; font-size: .95rem;
}
@media (min-width: 700px) {
  .trust-strip ul { grid-template-columns: repeat(4, 1fr); padding: 1.15rem 0; gap: 1.2rem; }
}
.trust-strip li { margin: 0; display: flex; align-items: flex-start; gap: .5rem; line-height: 1.35; }
.trust-strip svg { width: 18px; height: 18px; color: var(--blue-500); flex: none; margin-top: .12rem; }

/* ---------- page header (inner pages) ---------- */
.page-head {
  background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: #fff; padding: 2.8rem 0 2.6rem;
}
@media (min-width: 820px) { .page-head { padding: 4rem 0 3.6rem; } }
.page-head h1 { color: #fff; }
.page-head p { color: #cfe0f0; font-size: var(--step-1); max-width: 56ch; margin-bottom: 0; }
.breadcrumb { font-size: .85rem; color: #9db9d4; margin: 0 0 1.1rem; }
.breadcrumb a { color: #cfe0f0; text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }

/* ---------- sections ---------- */
section { scroll-margin-top: 88px; }
.section { padding: 3.4rem 0; }
@media (min-width: 820px) { .section { padding: 5rem 0; } }
.section-soft { background: var(--soft); }
.section-head { max-width: 60ch; margin-bottom: 2.2rem; }
.section-head p { color: var(--muted); font-size: var(--step-1); margin-bottom: 0; }

/* ---------- service cards ---------- */
.cards { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .cards { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 1000px) { .cards { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem 1.4rem; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--blue-100); }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--muted); margin-bottom: 1.1rem; }
.card .link-arrow { margin-top: auto; }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--blue-050);
  color: var(--blue-600); display: grid; place-items: center; margin-bottom: 1.1rem;
  border: 1px solid var(--blue-100);
}
.card-icon svg, .card-icon img { width: 27px; height: 27px; object-fit: contain; }

/* ---------- split (image + text) ---------- */
.split { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .split.reverse .split-media { order: 2; }
}
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }

/* framed figure: never upscales small source photos */
.figure-frame {
  margin: 0; background: var(--blue-050); border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg); padding: 1rem; text-align: center;
}
.figure-frame img {
  width: auto; max-width: 100%; margin-inline: auto; border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.figure-frame figcaption {
  font-size: .86rem; color: var(--muted); margin-top: .8rem; line-height: 1.45;
}

.checklist { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.checklist li { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .55rem; }
.checklist svg { width: 20px; height: 20px; color: var(--blue-600); flex: none; margin-top: .2rem; }

/* ---------- service detail rows ---------- */
.service-row { padding: 2.6rem 0; border-top: 1px solid var(--line); }
.service-row:first-of-type { border-top: 0; }
@media (min-width: 820px) { .service-row { padding: 3.6rem 0; } }
.service-row .service-grid { display: grid; gap: 1.8rem; align-items: center; }
@media (min-width: 900px) {
  .service-row .service-grid { grid-template-columns: 1.05fr .95fr; gap: 3rem; }
  .service-row:nth-of-type(even) .service-media { order: -1; }
}
.service-row h2 { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; }
.service-row h2 svg { width: 30px; height: 30px; color: var(--blue-600); flex: none; }
.service-lead { font-size: var(--step-1); color: var(--ink); }
.tag-list { display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0 0 1.3rem; list-style: none; }
.tag-list li {
  margin: 0; font-size: .85rem; font-weight: 600; color: var(--navy-700);
  background: var(--blue-050); border: 1px solid var(--blue-100);
  padding: .3rem .7rem; border-radius: 999px;
}

/* ---------- testimonial ---------- */
.quotes { display: grid; gap: 1.25rem; }
@media (min-width: 800px) { .quotes { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } }
.quote {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--blue-500);
  border-radius: var(--radius); padding: 1.7rem 1.6rem; box-shadow: var(--shadow-sm);
}
.quote blockquote { margin: 0 0 .9rem; font-size: var(--step-2); color: var(--navy-800); font-weight: 650; line-height: 1.35; }
.quote .who { font-size: .95rem; color: var(--muted); margin: 0; font-weight: 600; }

/* ---------- areas ---------- */
.area-grid { display: grid; gap: .8rem; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); padding: 0; margin: 0; list-style: none; }
.area-grid li { margin: 0; }
.area-card {
  display: flex; align-items: center; gap: .6rem; height: 100%;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: .95rem 1.05rem; text-decoration: none; color: var(--navy-800); font-weight: 700;
  box-shadow: var(--shadow-sm); transition: border-color .15s ease, transform .15s ease;
}
.area-card:hover { border-color: var(--blue-500); transform: translateY(-2px); color: var(--navy-800); }
.area-card svg { width: 19px; height: 19px; color: var(--blue-600); flex: none; }

.area-detail { display: grid; gap: 1.5rem; }
@media (min-width: 780px) { .area-detail { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; } }
.area-detail article {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem; box-shadow: var(--shadow-sm);
}
.area-detail h3 { margin-bottom: .3rem; }
.area-detail p { color: var(--muted); margin-bottom: .9rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .75rem; max-width: 62rem; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: .2rem 1.3rem; box-shadow: var(--shadow-sm);
}
.faq details[open] { border-color: var(--blue-100); box-shadow: var(--shadow-md); }
.faq summary {
  cursor: pointer; font-weight: 750; color: var(--navy-800); font-size: var(--step-1);
  padding: 1.05rem 2rem 1.05rem 0; list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--blue-600); line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq .answer { padding-bottom: .4rem; }
.faq .answer p { color: var(--text); margin-bottom: 1rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; isolation: isolate; color: #fff; text-align: center;
  padding: 3.4rem 0; background-color: var(--navy-800);
  background-image: var(--img-cta-band); background-size: cover; background-position: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(6, 23, 41, .90), rgba(11, 37, 69, .93));
}
@media (min-width: 820px) { .cta-band { padding: 4.6rem 0; } }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cfe0f0; margin-inline: auto; max-width: 54ch; font-size: var(--step-1); }
.cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.6rem; }

/* ---------- contact ---------- */
.contact-grid { display: grid; gap: 2.4rem; }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 1.05fr .95fr; gap: 3.4rem; align-items: start; } }

.contact-card {
  background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.7rem 1.6rem;
}
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; gap: .85rem; align-items: flex-start; margin-bottom: 1.15rem; }
.contact-list li:last-child { margin-bottom: 0; }
.contact-list svg { width: 22px; height: 22px; color: var(--blue-600); flex: none; margin-top: .25rem; }
.contact-list .label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; }
.contact-list .value { font-size: var(--step-1); font-weight: 750; color: var(--navy-800); text-decoration: none; }
a.value:hover { color: var(--blue-600); }

form .field { margin-bottom: 1.15rem; }
form label { display: block; font-weight: 700; color: var(--navy-800); margin-bottom: .35rem; font-size: .95rem; }
form .hint { font-weight: 400; color: var(--muted); font-size: .85rem; }
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%; font: inherit; color: var(--ink); background: #fff;
  border: 1.5px solid var(--line); border-radius: 12px; padding: .8rem .9rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(46, 138, 230, .16); outline: none;
}
textarea { min-height: 150px; resize: vertical; }

/* honeypot — hidden from humans, still in the DOM for bots */
.hp-field {
  position: absolute !important; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none;
}

.form-note { font-size: .87rem; color: var(--muted); }
.form-status { margin-top: 1rem; padding: 1rem 1.1rem; border-radius: 12px; font-weight: 600; }
.form-status[hidden] { display: none; }
.form-status.ok { background: #e8f6ec; border: 1px solid #b7e2c3; color: #16613a; }
.form-status.err { background: #fdeced; border: 1px solid #f5c2c7; color: #8a1c25; }
.cf-turnstile { margin-bottom: 1.1rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-900); color: #b9cde0; padding: 3rem 0 1.6rem; margin-top: 0; }
.footer-grid { display: grid; gap: 2.2rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; gap: 2.6rem; } }
@media (min-width: 1040px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; } }
.site-footer h2, .site-footer h3 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1rem; }
.site-footer a { color: #dbe8f4; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer p { font-size: .95rem; }
.footer-brand img { height: 78px; width: auto; margin-bottom: 1rem; }
.footer-contact .big { display: block; font-size: 1.22rem; font-weight: 800; color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12); margin-top: 2.4rem; padding-top: 1.3rem;
  display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; justify-content: space-between;
  font-size: .84rem; color: #8ba5bf;
}
.footer-bottom p { margin: 0; font-size: .84rem; }
[data-ss-credit] a { color: #a8c1d9; text-decoration: underline; }

/* ---------- mobile quick-contact bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem;
  padding: .55rem .75rem calc(.55rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .97); border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(6, 23, 41, .12);
}
.mobile-bar .btn { width: 100%; padding: .8rem 1rem; font-size: .95rem; }
@media (min-width: 900px) { .mobile-bar { display: none; } }
body { padding-bottom: 4.6rem; }
@media (min-width: 900px) { body { padding-bottom: 0; } }

/* ---------- utilities ---------- */
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-muted { color: var(--muted); }
.small { font-size: .9rem; }

/* photo in a service row (large source images only) */
.service-media > picture > img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}

/* About page: title -> image -> copy, identical order at every breakpoint */
.about-block { display: grid; gap: 1.8rem; }
.about-block > .about-head { grid-column: 1 / -1; }
.about-block .about-copy p { max-width: 68ch; font-weight: 400; }
.about-block .about-figure { margin: 0; }
.about-block .about-figure img {
  width: 100%; max-width: 500px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.about-block .about-figure figcaption { font-size: .86rem; color: var(--muted); margin-top: .7rem; max-width: 46ch; }
@media (min-width: 920px) {
  .about-block { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 2.2rem 3.2rem; align-items: start; }
  .about-block .about-figure img { max-width: 500px; }
}
.stat-row { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); margin-top: 1rem; }
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.2rem 1.25rem; box-shadow: var(--shadow-sm);
}
.stat strong { display: block; color: var(--navy-800); font-size: 1.05rem; margin-bottom: .15rem; }
.stat span { color: var(--muted); font-size: .94rem; }
.mt-lg { margin-top: 1.8rem; }
