/* =====================================================================
   Summit Contracting — site styles
   Faithful implementation of the Claude Design source.
   Palette, type scale, spacing and components transcribed 1:1.
   ===================================================================== */

:root {
  /* Brand navy / blue */
  --navy-900: #0B2340;   /* top bar, footer, dark sections, badges */
  --navy-800: #0F2B52;   /* CTA gradient mid stop */
  --navy-700: #1A4585;   /* CTA gradient end stop */
  --ink:      #0F2A4D;   /* headings + dark UI text */
  --blue-600: #1B4B96;   /* primary actions, links, accents */
  --blue-700: #123A6B;   /* link / primary hover */
  --blue-500: #2A62B8;   /* hero button hover */
  --blue-400: #4E86D8;   /* pillar bar-chart accent */
  --blue-200: #A9C4E8;   /* light accent on dark */

  /* Neutrals on dark */
  --on-dark-1: #C3D0E4;
  --on-dark-2: #B9C7DC;
  --on-dark-3: #B3C1D6;
  --on-dark-mute: #A9B8D0;
  --on-dark-faint: #7E90AC;

  /* Neutrals on light */
  --body:   #55637A;   /* default body text */
  --slate-700: #3C4A61;
  --slate-650: #48566E;
  --slate-550: #8A97AD;

  /* Surfaces + borders */
  --bg: #ffffff;
  --bg-alt: #F5F6FA;
  --chip-blue: #E8EDF7;
  --border: #E4E8F0;
  --border-card: #E7EAF1;
  --border-faq: #E0E5EE;
  --border-outline: #D5DCE8;
  --border-chip: #D9E0EC;
  --border-input: #DDE3ED;

  /* Type */
  --font-head: Archivo, system-ui, sans-serif;
  --font-body: Inter, system-ui, sans-serif;
  --font-serif: Newsreader, Georgia, serif;

  /* Layout rhythm */
  --maxw: 1240px;
  --pad-x: clamp(20px, 5vw, 48px);
  --section-y: clamp(64px, 8vw, 110px);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.02em;
}
p { margin: 0; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--blue-700); }
img { display: block; }
input, select, textarea, button { font-family: inherit; }

/* ------------------------------------------------------------------ */
/* Layout helpers                                                       */
/* ------------------------------------------------------------------ */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: var(--section-y) var(--pad-x); }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy-900); }
.section--cta {
  background: linear-gradient(105deg, var(--navy-900) 0%, var(--navy-800) 46%, var(--navy-700) 100%);
  text-align: center;
}
.section__inner { max-width: var(--maxw); margin: 0 auto; }
.measure-52 { max-width: 52ch; }
.measure-54 { max-width: 54ch; }
.measure-56 { max-width: 56ch; }
.measure-60 { max-width: 60ch; }
.measure-70 { max-width: 70ch; }
.measure-72 { max-width: 72ch; }

/* ------------------------------------------------------------------ */
/* Eyebrow (little rule + uppercase label)                             */
/* ------------------------------------------------------------------ */
.eyebrow { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.eyebrow::before {
  content: ""; width: 26px; height: 1.5px; background: var(--blue-600); flex: none;
}
.eyebrow > span {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue-600);
}
.eyebrow--light::before { background: var(--blue-200); }
.eyebrow--light > span { color: var(--blue-200); }
.eyebrow--center { justify-content: center; }

/* ------------------------------------------------------------------ */
/* Headings + copy scale                                               */
/* ------------------------------------------------------------------ */
.h1 { font-size: clamp(40px, 5.4vw, 72px); line-height: 1.03; font-weight: 800; }
.h1--page { font-size: clamp(34px, 3.8vw, 50px); line-height: 1.08; font-weight: 800; }
.h2 { font-size: clamp(30px, 3.4vw, 44px); line-height: 1.12; font-weight: 700; }
.h2--sm { font-size: clamp(28px, 3vw, 40px); line-height: 1.15; font-weight: 700; }
.h2--md { font-size: clamp(26px, 2.8vw, 38px); line-height: 1.16; font-weight: 700; }
.h2--cta { font-size: clamp(30px, 3.6vw, 46px); line-height: 1.12; font-weight: 700; }
.lead { font-size: 15.5px; line-height: 1.7; margin-top: 18px; }
.serif-accent {
  font-family: var(--font-serif); font-weight: 300; font-style: italic;
  color: var(--blue-200); letter-spacing: -0.01em;
}

/* ------------------------------------------------------------------ */
/* Buttons + arrow links                                               */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: 0; border-radius: 999px; font-weight: 600; font-size: 14.5px;
  padding: 15px 28px; cursor: pointer; white-space: nowrap; line-height: 1;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn--primary { background: var(--blue-600); color: #fff; }
.btn--primary:hover { background: var(--blue-700); color: #fff; }
.btn--hero { font-size: 15px; padding: 16px 30px; background: var(--blue-600); color: #fff; }
.btn--hero:hover { background: var(--blue-500); color: #fff; }
.btn--sm { font-size: 14px; padding: 13px 24px; }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { background: var(--chip-blue); color: var(--ink); }
.btn--ghost-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.45); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.10); color: #fff; }
.btn--outline { background: transparent; color: var(--ink); border: 1px solid var(--border-outline); }
.btn--outline:hover { border-color: var(--blue-600); color: var(--blue-600); }
.btn--block { width: 100%; padding: 16px; font-size: 15px; }

.arrow-link {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14.5px; font-weight: 600; color: var(--blue-600);
}
.arrow-link:hover { color: var(--blue-700); }
.arrow-link .ar { transition: transform .18s ease; }
.arrow-link:hover .ar { transform: translateX(3px); }

/* ------------------------------------------------------------------ */
/* Top bar + header                                                    */
/* ------------------------------------------------------------------ */
.topbar { background: var(--navy-900); color: var(--on-dark-mute); font-size: 13px; letter-spacing: 0.01em; }
.topbar__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 10px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.topbar a { color: #fff; font-weight: 600; }

.header { position: sticky; top: 0; z-index: 60; background: #fff; border-bottom: 1px solid var(--border); }
.header__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x);
  height: 78px; display: flex; align-items: center; gap: 28px;
}
.header__logo { display: flex; align-items: center; }
.header__logo img { height: 40px; width: auto; }
.header__spacer { flex: 1; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-size: 14.5px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.nav a:hover { color: var(--blue-600); }
.nav a[aria-current="page"] { color: var(--blue-600); }

.nav-toggle {
  width: 46px; height: 46px; border: 1px solid var(--border); border-radius: 12px; background: #fff;
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  cursor: pointer; padding: 0;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); }

.mobile-nav {
  display: none; border-top: 1px solid var(--border);
  padding: 14px var(--pad-x) 22px; flex-direction: column; gap: 4px; background: #fff;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 16px; font-weight: 600; color: var(--ink);
  padding: 12px 0; border-bottom: 1px solid var(--border-7, #F0F2F7);
}
.mobile-nav .btn { margin-top: 10px; border-bottom: 0; }

@media (max-width: 1079px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ------------------------------------------------------------------ */
/* Home hero (full-bleed photo + gradient)                             */
/* ------------------------------------------------------------------ */
.hero {
  position: relative;
  background-image: url('assets/photos/hero-home.jpg');
  background-size: cover; background-position: center 62%;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,35,64,0.95) 0%, rgba(11,35,64,0.86) 34%, rgba(11,35,64,0.34) 68%, rgba(11,35,64,0.12) 100%);
}
.hero__inner {
  position: relative; max-width: var(--maxw); margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) var(--pad-x) 0;
  min-height: clamp(520px, 64vh, 700px);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero__title { color: #fff; max-width: 15ch; }
.hero__sub { color: var(--on-dark-1); font-size: clamp(15px, 1.2vw, 17px); line-height: 1.65; max-width: 54ch; margin-top: clamp(20px, 2.4vw, 28px); }
.hero__cta { margin-top: clamp(26px, 3vw, 36px); }
.hero__stats {
  margin-top: clamp(44px, 6vw, 76px);
  background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.16); border-bottom: 0;
  border-radius: 14px 14px 0 0; padding: clamp(20px, 2.4vw, 26px) clamp(22px, 3vw, 34px);
  display: flex; gap: clamp(20px, 4vw, 56px);
}
.hero__stats > div { flex: 1; min-width: 0; }
.hero__stat-n { font-family: var(--font-head); color: #fff; font-size: clamp(19px, 1.8vw, 22px); font-weight: 700; }
.hero__stat-l { color: var(--on-dark-mute); font-size: 13.5px; margin-top: 4px; }

/* ------------------------------------------------------------------ */
/* Split hero (interior pages: navy panel + photo)                     */
/* ------------------------------------------------------------------ */
.split-hero { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.split-hero__panel {
  background: var(--navy-900);
  padding: clamp(48px, 6vw, 84px) var(--pad-x) clamp(48px, 6vw, 84px) max(20px, calc((100vw - 1240px) / 2));
  display: flex; flex-direction: column; justify-content: center;
}
.split-hero__img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; }
.split-hero__title { color: #fff; max-width: 14ch; }
.split-hero__sub { color: var(--on-dark-3); font-size: 15.5px; line-height: 1.7; margin-top: 20px; max-width: 48ch; }
.breadcrumb { font-size: 13px; color: var(--on-dark-faint); margin-bottom: 20px; }
.breadcrumb a { color: var(--on-dark-mute); }
.breadcrumb a:hover { color: #fff; }

/* ------------------------------------------------------------------ */
/* Generic two-column media rows                                       */
/* ------------------------------------------------------------------ */
.split {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(36px, 5vw, 72px); align-items: center;
}
.ratio-45 { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 6px; }
.ratio-45--soft { border-radius: 10px; }
.ratio-43 { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 10px; }

/* Photo badge (16+ years) */
.photo-wrap { position: relative; }
.photo-badge {
  position: absolute; left: 18px; bottom: 18px; background: var(--navy-900);
  border-radius: 6px; padding: 16px 20px;
}
.photo-badge__n { font-family: var(--font-head); color: #fff; font-size: 26px; font-weight: 800; line-height: 1; }
.photo-badge__l { color: var(--on-dark-mute); font-size: 12.5px; line-height: 1.5; margin-top: 6px; }

/* Body paragraphs inside content columns */
.copy { font-size: 15.5px; line-height: 1.72; }
.copy--wide { line-height: 1.74; }
.copy + .copy { margin-top: 16px; }
.copy-lead-intro { font-size: 16.5px; line-height: 1.75; }

/* Check list */
.checks { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px 24px; margin-top: 28px; }
.check { display: flex; align-items: flex-start; gap: 11px; }
.check__dot {
  width: 18px; height: 18px; border-radius: 999px; background: var(--blue-600); color: #fff;
  font-size: 10px; display: flex; align-items: center; justify-content: center; flex: none; margin-top: 1px;
}
.check span:last-child { font-size: 14.5px; font-weight: 500; color: var(--ink); line-height: 1.5; }

/* ------------------------------------------------------------------ */
/* Service cards (home grid)                                           */
/* ------------------------------------------------------------------ */
.grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2vw, 26px); margin-top: clamp(34px, 4vw, 48px); }
@media (max-width: 900px) { .grid-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-cards { grid-template-columns: 1fr; } }
.svc-card { background: #fff; border: 1px solid var(--border-card); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; }
.svc-card__media { position: relative; }
.svc-card__media img { width: 100%; height: 170px; object-fit: cover; }
.svc-card__num {
  position: absolute; top: 12px; left: 12px; background: var(--navy-900); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; padding: 6px 9px; border-radius: 5px;
}
.svc-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.svc-card__body h3 { font-size: 17.5px; font-weight: 700; line-height: 1.3; }
.svc-card__body p { font-size: 14.5px; line-height: 1.68; margin-top: 12px; flex: 1; }
.svc-card__body .arrow-link { margin-top: 20px; font-size: 14px; }

/* ------------------------------------------------------------------ */
/* Pillars (dark "why" grid)                                           */
/* ------------------------------------------------------------------ */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(16px, 1.6vw, 22px); margin-top: clamp(34px, 4vw, 48px); }
.pillar { background: rgba(255,255,255,0.045); border: 1px solid rgba(255,255,255,0.11); border-radius: 12px; padding: 24px 22px 26px; }
.pillar__bars { display: flex; align-items: flex-end; gap: 3px; height: 18px; margin-bottom: 18px; }
.pillar__bars span { width: 4px; background: var(--blue-400); border-radius: 1px; }
.pillar__bars span:nth-child(1) { height: 8px; }
.pillar__bars span:nth-child(2) { height: 13px; }
.pillar__bars span:nth-child(3) { height: 18px; }
.pillar h3 { color: #fff; font-size: 16.5px; font-weight: 700; }
.pillar p { color: var(--on-dark-mute); font-size: 14px; line-height: 1.65; margin-top: 11px; }

/* ------------------------------------------------------------------ */
/* Project tiles                                                       */
/* ------------------------------------------------------------------ */
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: clamp(20px, 2vw, 26px); margin-top: clamp(34px, 4vw, 48px); }
.tile { position: relative; display: block; border-radius: 12px; overflow: hidden; aspect-ratio: 5 / 4; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
a.tile:hover img { transform: scale(1.04); }
.tile__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,35,64,0) 42%, rgba(11,35,64,0.86) 100%); }
.tile__meta { position: absolute; left: 20px; right: 20px; bottom: 18px; }
.tile__tag { font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-200); }
.tile__title { font-family: var(--font-head); color: #fff; font-size: 18px; font-weight: 700; margin-top: 7px; }
.center-row { display: flex; justify-content: center; margin-top: clamp(30px, 3.4vw, 42px); }

/* ------------------------------------------------------------------ */
/* Testimonials                                                        */
/* ------------------------------------------------------------------ */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: clamp(20px, 2vw, 26px); margin-top: clamp(34px, 4vw, 48px); }
.quote { background: #fff; border: 1px solid var(--border-card); border-radius: 12px; padding: 28px 26px 26px; margin: 0; display: flex; flex-direction: column; }
.quote__mark { font-family: var(--font-serif); font-style: italic; font-size: 40px; line-height: 0.8; color: var(--on-dark-1); }
.quote blockquote { margin: 16px 0 0; font-size: 15.5px; line-height: 1.72; color: var(--slate-700); flex: 1; }
.quote figcaption { margin-top: 22px; padding-top: 18px; border-top: 1px solid #EDF0F6; }
.quote__name { font-size: 14.5px; font-weight: 700; color: var(--ink); }
.quote__meta { font-size: 13px; margin-top: 4px; }

/* Credential chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips--divider { margin-top: clamp(34px, 4vw, 48px); padding-top: clamp(30px, 3.4vw, 40px); border-top: 1px solid var(--border); }
.chip { border: 1px solid var(--border-chip); border-radius: 999px; padding: 9px 16px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em; color: var(--slate-650); background: #fff; }

/* ------------------------------------------------------------------ */
/* CTA band                                                            */
/* ------------------------------------------------------------------ */
.cta { max-width: 760px; margin: 0 auto; }
.cta h2 { color: #fff; }
.cta p { color: var(--on-dark-2); font-size: 15.5px; line-height: 1.7; margin-top: 18px; }
.cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 32px; }

/* ------------------------------------------------------------------ */
/* Estimate form + contact details                                     */
/* ------------------------------------------------------------------ */
.estimate { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(36px, 5vw, 72px); align-items: start; }
.contact-lines { display: flex; flex-direction: column; gap: 22px; margin-top: 34px; }
.contact-line { display: flex; align-items: flex-start; gap: 15px; }
.contact-ic { width: 40px; height: 40px; border-radius: 10px; background: var(--chip-blue); color: var(--blue-600); font-size: 17px; display: flex; align-items: center; justify-content: center; flex: none; }
.contact-k { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate-550); }
.contact-v { font-size: 16px; font-weight: 700; color: var(--ink); margin-top: 5px; }
a.contact-v { display: block; }

.form-card { background: #fff; border: 1px solid var(--border-card); border-radius: 14px; padding: clamp(24px, 3vw, 34px); box-shadow: 0 20px 44px rgba(15,42,77,0.06); }
.form-card h3 { font-size: 21px; font-weight: 700; }
.form-card > p { font-size: 14px; margin-top: 8px; }
.form { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; }
.form label { display: block; }
.form label > span { display: block; font-size: 12.5px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.form input, .form select, .form textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--border-input); border-radius: 8px;
  font-size: 14.5px; color: var(--ink); background: #fff;
}
.form textarea { resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--blue-200); outline-offset: 1px; border-color: var(--blue-600); }
.form__note { font-size: 12.5px; text-align: center; color: var(--slate-550); }
.form-success { padding: 40px 8px; text-align: center; }
.form-success__ic { width: 52px; height: 52px; border-radius: 999px; background: var(--chip-blue); color: var(--blue-600); font-size: 22px; display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.form-success h3 { font-size: 21px; font-weight: 700; margin-top: 20px; }
.form-success p { font-size: 15px; line-height: 1.7; margin-top: 12px; }
.form-success__again { margin-top: 22px; background: none; border: 1px solid var(--border-outline); color: var(--ink); font-size: 14px; font-weight: 600; padding: 12px 22px; border-radius: 999px; cursor: pointer; }
.hidden { display: none !important; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-error { font-size: 13px; line-height: 1.5; text-align: center; color: #B4232B; }
.form-error a { color: #B4232B; font-weight: 600; text-decoration: underline; }

/* ------------------------------------------------------------------ */
/* Services detail rows                                                 */
/* ------------------------------------------------------------------ */
.intro-rule { font-size: 16.5px; line-height: 1.75; max-width: 72ch; padding-bottom: clamp(40px, 5vw, 64px); border-bottom: 1px solid var(--border); }
.detail-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 4.5vw, 68px); align-items: center;
  padding: clamp(46px, 5.5vw, 78px) 0; border-bottom: 1px solid var(--border);
}
.detail-row__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 10px; }
.detail-eyebrow { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.detail-eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--blue-600); flex: none; }
.detail-eyebrow span { font-size: 11.5px; font-weight: 700; letter-spacing: 0.2em; color: var(--blue-600); }
.detail-row h2 { font-size: clamp(26px, 2.6vw, 34px); line-height: 1.16; font-weight: 700; }
.detail-row .copy { margin-top: 18px; }
.detail-checks { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 13px 24px; margin-top: 26px; }
.detail-row .btn { margin-top: 30px; }

/* FAQ */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq { margin-top: clamp(30px, 3.6vw, 44px); border-top: 1px solid var(--border-faq); }
.faq__item { padding: 24px 0; border-bottom: 1px solid var(--border-faq); }
.faq__item h3 { font-size: 16.5px; font-weight: 700; }
.faq__item p { font-size: 15px; line-height: 1.72; margin-top: 11px; }

/* ------------------------------------------------------------------ */
/* About stats + process                                               */
/* ------------------------------------------------------------------ */
.stat-band { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: clamp(24px, 3vw, 40px); }
.stat__n { font-family: var(--font-head); color: #fff; font-size: clamp(24px, 2.4vw, 30px); font-weight: 800; line-height: 1; }
.stat__l { color: var(--on-dark-mute); font-size: 13.5px; margin-top: 9px; }
.section--navy-band { padding: clamp(44px, 5vw, 64px) var(--pad-x); }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(16px, 1.6vw, 22px); margin-top: clamp(34px, 4vw, 48px); }
.step { border: 1px solid var(--border-card); border-radius: 12px; padding: 26px 22px 28px; }
.step__n { font-family: var(--font-head); font-size: 19px; font-weight: 800; color: var(--blue-600); }
.step h3 { font-size: 16.5px; font-weight: 700; margin-top: 14px; }
.step p { font-size: 14px; line-height: 1.68; margin-top: 11px; }
.chips--process { margin-top: clamp(40px, 5vw, 60px); padding-top: clamp(30px, 3.4vw, 40px); border-top: 1px solid var(--border); }
.chips--process .chip { background: transparent; }

/* ------------------------------------------------------------------ */
/* Footer                                                              */
/* ------------------------------------------------------------------ */
.footer { background: var(--navy-900); padding: clamp(52px, 6vw, 76px) var(--pad-x) 0; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; }
.footer__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: clamp(32px, 4vw, 56px); }
.footer__brand { min-width: 240px; }
.footer__brand img { height: 38px; width: auto; }
.footer__brand p { color: var(--on-dark-mute); font-size: 14px; line-height: 1.7; margin-top: 20px; max-width: 34ch; }
.footer__phone { display: inline-block; color: #fff; font-size: 16px; font-weight: 700; margin-top: 16px; }
.footer__h { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-dark-faint); margin-bottom: 18px; }
.footer__list { display: flex; flex-direction: column; gap: 11px; }
.footer__list a, .footer__areas span { color: var(--on-dark-1); font-size: 14px; }
.footer__list a:hover { color: #fff; }
.footer__areas { display: flex; flex-direction: column; gap: 11px; }
.footer__creds { display: flex; flex-wrap: wrap; gap: 9px; margin-top: clamp(38px, 4.5vw, 56px); }
.footer__creds .chip { background: transparent; border-color: rgba(255,255,255,0.16); color: var(--on-dark-mute); padding: 8px 15px; font-size: 12px; }
.footer__bottom {
  margin-top: clamp(30px, 3.4vw, 40px); padding: 26px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  color: var(--on-dark-faint); font-size: 13px;
}
.footer__bottom a { color: var(--on-dark-faint); }
.footer__bottom a:hover { color: #fff; }
.footer__legal { display: flex; gap: 8px; }

/* ------------------------------------------------------------------ */
/* Small helpers                                                       */
/* ------------------------------------------------------------------ */
.mt-30 { margin-top: 30px; }
.stack-24 > * + * { margin-top: 16px; }
:focus-visible { outline: 2px solid var(--blue-600); outline-offset: 2px; }
.skip-link { position: absolute; left: -9999px; top: 0; background: #fff; color: var(--ink); padding: 10px 16px; z-index: 100; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

/* ------------------------------------------------------------------ */
/* Mobile refinements                                                  */
/* ------------------------------------------------------------------ */
@media (max-width: 720px) {
  /* Hero: switch to a darker vertical wash so text/stats stay legible */
  .hero__overlay {
    background: linear-gradient(180deg, rgba(11,35,64,0.5) 0%, rgba(11,35,64,0.8) 52%, rgba(11,35,64,0.93) 100%);
  }
  .hero__inner { min-height: clamp(480px, 76vh, 620px); }
  /* Service detail rows: single column, image always on top */
  .detail-row { grid-template-columns: 1fr; }
  .detail-row__img { order: -1; }
}

@media (max-width: 640px) {
  /* Hero stat shelf: stack cleanly with hairline dividers */
  .hero__stats { flex-direction: column; gap: 0; padding: 4px clamp(18px, 5vw, 22px); }
  .hero__stats > div { flex: none; padding: 15px 2px; border-top: 1px solid rgba(255,255,255,0.13); }
  .hero__stats > div:first-child { border-top: 0; }
  /* A touch tighter vertical rhythm on phones */
  .section { padding-top: clamp(52px, 12vw, 72px); padding-bottom: clamp(52px, 12vw, 72px); }
}

@media (max-width: 560px) {
  /* Top bar: keep the phone/hours, drop the tagline to avoid a cramped wrap */
  .topbar__inner { justify-content: center; text-align: center; }
  .topbar__inner > span:first-child { display: none; }
}

@media (max-width: 420px) {
  /* Home hero headline: slightly smaller so it doesn't crowd small phones */
  .h1 { font-size: 34px; }
}
