:root {
  --ink: #110d0a;
  --ink-2: #1c1612;
  --ink-soft: #3d342e;
  --muted: #6b625b;
  --line: #e6e0d8;
  --paper: #ffffff;
  --cream: #f7f4ef;
  --sand: #f1ece6;
  --accent: #c2451a;
  --accent-hover: #a83814;
  --white: #ffffff;
  --header-h: 80px;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 10px 30px rgba(17, 13, 10, 0.06);
  --container: 1180px;
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
h1, h2, h3 { margin: 0; letter-spacing: -0.035em; line-height: 1.12; }
p, li, h1, h2, h3 { overflow-wrap: break-word; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.icon {
  width: 1.05em;
  height: 1.05em;
  flex-shrink: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid rgba(17, 13, 10, 0.06);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: var(--header-h);
  padding-block: 18px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}
.logo-img {
  display: block;
  height: 34px;
  width: auto;
  max-width: min(240px, 52vw);
  object-fit: contain;
  object-position: left center;
}
.logo-on-dark .logo-img {
  height: 36px;
  max-width: min(280px, 72vw);
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-weight: 800; font-size: 12px; letter-spacing: 0.01em; }
.logo-legal { font-size: 10px; color: var(--muted); font-weight: 600; letter-spacing: 0.04em; }
.logo-on-dark .logo-legal { color: rgba(255,255,255,0.55); }

.nav-desktop {
  display: flex;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
}
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop a:hover { color: var(--accent); }
.nav-mobile a.is-active { color: var(--accent); }
body { overflow-x: hidden; }
body.nav-open { overflow: hidden; }

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}
.header-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}
.header-email .icon { color: var(--accent); width: 16px; height: 16px; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle .icon { width: 22px; height: 22px; }
.nav-mobile {
  display: none;
  padding: 8px 24px 24px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.nav-mobile a {
  display: block;
  padding: 12px 0;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.nav-mobile .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 14.5px;
  border-radius: var(--radius-sm);
  padding: 11px 18px;
  line-height: 1;
  transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn .icon { width: 16px; height: 16px; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-hover); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.55);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-lg { padding: 14px 22px; font-size: 15px; }
.btn-header { padding: 10px 16px; }

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) saturate(0.7);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,9,7,0.88) 0%, rgba(12,9,7,0.62) 48%, rgba(12,9,7,0.35) 100%),
    linear-gradient(180deg, rgba(12,9,7,0.15), rgba(12,9,7,0.55));
}
.hero-content {
  position: relative;
  padding: 88px 0 72px;
  max-width: 820px;
  margin-left: max(24px, calc((100% - var(--container)) / 2));
  margin-right: auto;
  width: min(calc(100% - 48px), 760px);
}
@media (max-width: 980px) {
  .container.hero-content {
    margin-left: auto;
    margin-right: auto;
    width: min(calc(100% - 32px), 760px);
    max-width: none;
  }
}
.eyebrow {
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.35rem, 4.6vw, 4.15rem);
  font-weight: 800;
  max-width: 16ch;
}
.hero-lead {
  margin-top: 22px;
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  max-width: 52ch;
  line-height: 1.65;
}
.page-contact .hero-lead,
.page-hero .hero-lead {
  color: var(--ink-soft);
  font-size: 17.5px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 28px;
  font-size: 14px;
  color: rgba(255,255,255,0.86);
}
.hero-checks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-checks .icon {
  width: 16px;
  height: 16px;
  color: #fff;
}

/* Stats */
.stats-bar {
  background: var(--ink);
  color: #fff;
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stats-grid strong {
  display: block;
  font-size: 34px;
  letter-spacing: -0.04em;
  font-weight: 800;
}
.stats-grid span {
  color: rgba(255,255,255,0.62);
  font-size: 14px;
}

/* Sections */
.section { padding: 96px 0; }
.section-cream { background: var(--cream); }
.section-intro { max-width: 640px; margin-bottom: 40px; }
.section h2 { font-size: clamp(1.85rem, 3vw, 2.7rem); font-weight: 800; }
.section-intro p,
.lede {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 54ch;
}

.page-hero {
  padding: 72px 0 28px;
  background: #fff;
}
.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  font-weight: 800;
  max-width: 18ch;
}
.page-hero .hero-lead { margin-top: 18px; max-width: 62ch; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 18px;
}
.service-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
}
.service-card.featured {
  grid-row: span 2;
  background: var(--ink-2);
  color: #fff;
}
.service-card.wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr 1.4fr auto;
  gap: 8px 28px;
  align-items: start;
}
.service-card.wide h3,
.service-card.wide p { grid-column: 2; }
.service-card.wide ul { grid-column: 3; grid-row: 1 / span 3; }
.service-card.wide .service-icon { grid-row: 1 / span 2; }
.service-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 14px;
  display: grid;
  place-items: start;
}
.service-icon .icon { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); font-size: 14.5px; }
.service-card.featured p { color: rgba(255,255,255,0.72); }
.service-card ul { margin-top: 16px; display: grid; gap: 8px; }
.service-card li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 14px;
}
.service-card.featured li { color: rgba(255,255,255,0.9); }
.service-card .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
  flex-shrink: 0;
}
.service-card .icon-check { color: #fff; width: 15px; height: 15px; margin-top: 2px; }
.text-link {
  margin-top: auto;
  padding-top: 22px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card.featured .text-link { color: #ff7a45; }

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.process-photo {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 11;
}
.process-photo img { width: 100%; height: 100%; object-fit: cover; }
.process-steps { display: grid; gap: 28px; padding-top: 8px; }
.process-steps li { display: grid; grid-template-columns: 42px 1fr; gap: 16px; }
.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
}
.process-steps h3 { font-size: 1.2rem; margin-bottom: 6px; }
.process-steps p { color: var(--ink-soft); font-size: 15px; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.about-grid p { margin-top: 16px; color: var(--ink-soft); font-size: 16.5px; }
.about-stats {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.about-stats div {
  padding: 18px 20px 18px 0;
  border-bottom: 1px solid var(--line);
}
.about-stats div:nth-child(odd) { padding-right: 24px; }
.about-stats div:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line); }
.about-stats span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}
.about-stats strong { font-size: 16px; }
.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }

/* Industries */
.industries-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.industries-grid p { margin-top: 14px; color: var(--ink-soft); }
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pills li {
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 1px 0 rgba(17,13,10,0.04);
}

.industries-section { padding-bottom: 40px; }

/* CTA */
.cta-wrap {
  padding-top: 8px;
  padding-bottom: 96px;
  background: var(--cream);
}
.cta-banner {
  background: var(--ink-2);
  color: #fff;
  border-radius: 14px;
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-banner h2 { font-size: clamp(1.6rem, 2.4vw, 2.15rem); max-width: 18ch; }
.cta-banner p { margin-top: 10px; color: rgba(255,255,255,0.7); max-width: 46ch; }

/* Inner pages */
.page-banner {
  width: min(calc(100% - 48px), var(--container));
  margin: 8px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  height: min(38vw, 380px);
}
.page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eyebrow a { color: var(--accent); }
.hero-actions.light { margin-top: 24px; }
.section-more { margin-top: 28px; }
.prose p {
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}
.prose h2 { margin-bottom: 16px; }
.tick-list { margin-top: 16px; display: grid; gap: 10px; }
.tick-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.tick-list .icon { color: var(--accent); width: 16px; height: 16px; margin-top: 3px; }
.subhead { font-size: 0.95rem; margin: 22px 0 8px; }

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 8px 8px 0;
}
.photo-mosaic figure { margin: 0; }
.photo-mosaic img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 10px;
}
.mosaic-pad { padding: 0; width: min(calc(100% - 48px), var(--container)); margin: 0 auto 64px; }

.service-thumb {
  border-radius: 8px;
  overflow: hidden;
  margin: -4px -4px 16px;
  aspect-ratio: 16 / 10;
}
.service-thumb img { width: 100%; height: 100%; object-fit: cover; }
.service-card.featured .service-thumb { opacity: 0.92; }
.service-card.wide.has-photo {
  display: grid;
  grid-template-columns: 240px 1.1fr 1fr;
  gap: 8px 28px;
  align-items: start;
}
.service-card.wide.has-photo .service-thumb {
  grid-row: 1 / span 5;
  margin: 0;
  height: 100%;
  min-height: 180px;
  aspect-ratio: auto;
}
.service-card.wide.has-photo h3,
.service-card.wide.has-photo p,
.service-card.wide.has-photo .service-icon { grid-column: 2; }
.service-card.wide.has-photo ul { grid-column: 3; grid-row: 1 / span 4; }
.service-card.wide.has-photo .text-link { grid-column: 2; }

.home-band { padding: 24px 0 80px; background: var(--paper); }
.band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.band-grid figure { margin: 0; }
.band-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
}
.band-grid figcaption { padding-top: 12px; }
.band-grid strong { display: block; font-size: 1.05rem; }
.band-grid span { color: var(--ink-soft); font-size: 14.5px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.why-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
}
.why-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.why-card p { color: var(--ink-soft); font-size: 14.5px; }

.pills a { display: block; }
.industry-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.preview-card {
  display: block;
  color: inherit;
}
.preview-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
}
.preview-card span { display: block; margin-top: 10px; font-weight: 600; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
}
.split:last-child { margin-bottom: 0; }
.split-rev .split-photo { order: 2; }
.split-photo img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
}
.split-copy .btn { margin-top: 22px; }
.step-block .step-num { margin-bottom: 14px; }

.detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 36px;
  align-items: start;
}
.sticky-card { position: sticky; top: 96px; }
.sticky-card .btn { margin-top: 20px; width: 100%; }

.include-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
}
.include-grid li { display: flex; gap: 10px; align-items: flex-start; }
.include-grid .icon { color: var(--accent); width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; }

.related-title { margin-bottom: 8px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.related-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
}
.related-card span { display: block; margin-top: 10px; font-weight: 600; font-size: 14.5px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.timeline { margin-top: 12px; }
.timeline li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 15px;
}
.timeline strong { display: block; color: var(--ink); margin-bottom: 4px; }

.industry-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.industry-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 220px;
}
.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}
.industry-card div { padding: 22px 22px 18px; display: flex; flex-direction: column; }
.industry-card h2 { font-size: 1.25rem; margin-bottom: 8px; }
.industry-card p { color: var(--ink-soft); font-size: 14.5px; flex: 1; }
.industry-card .text-link { padding-top: 14px; margin-top: auto; }

/* Contact */
.contact-section { padding-top: 40px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 22px;
  align-items: start;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.form-card h2 { font-size: 1.55rem; }
.muted { color: var(--muted); margin: 8px 0 22px; font-size: 14.5px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
form { display: grid; gap: 14px; }
form .btn { justify-self: start; }
label {
  display: grid;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
}
input, select, textarea {
  width: 100%;
  border: 1px solid #ddd6ce;
  border-radius: 8px;
  padding: 12px 13px;
  font-size: 15px;
  background: #fff;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(194, 69, 26, 0.25);
  border-color: var(--accent);
}
.contact-aside { display: grid; gap: 16px; }
.info-list { display: grid; gap: 18px; margin-top: 16px; }
.info-list li, .hours-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}
.info-list .icon, .card h3 .icon { color: var(--accent); width: 18px; height: 18px; }
.card h3 {
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-list strong { display: block; font-size: 14.5px; font-weight: 600; }
.info-list span { display: block; color: var(--muted); font-size: 13px; margin-top: 3px; }
.hours-list { margin-top: 14px; }
.hours-list li {
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list span { color: var(--ink-soft); }
.contact-aside p { margin-top: 12px; color: var(--ink-soft); font-size: 14.5px; }

.notice { border-radius: 8px; padding: 12px 14px; font-size: 14.5px; margin-bottom: 8px; }
.notice-ok { background: #eef8ee; color: #1d5c2e; }
.notice-err { background: #fdecea; color: #8a1f11; }

.map-section { padding-top: 24px; }
.map-section h2 { margin-bottom: 22px; }
.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
#office-map { height: 420px; width: 100%; background: #efe8dc; }
.map-caption {
  background: #f3f1ed;
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--muted);
}
.map-pin span {
  display: block;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* Footer */
.site-footer {
  background: #110d0a;
  color: #fff;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p {
  margin: 16px 0 22px;
  color: rgba(255,255,255,0.62);
  max-width: 40ch;
  font-size: 14.5px;
}
.footer-brand .logo {
  padding-block: 8px;
}
.footer-contact { display: grid; gap: 12px; }
.footer-contact li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
}
.footer-contact .icon { color: var(--accent); width: 16px; height: 16px; margin-top: 2px; }
.site-footer h3 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.9);
}
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 14.5px; }
.footer-links a:hover { color: #fff; }
.footer-hours { display: grid; gap: 10px; margin-bottom: 22px; }
.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.footer-hours strong { color: #fff; font-weight: 600; }
.footer-cta { margin-top: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,0.45);
  font-size: 12.5px;
}

@media (max-width: 1100px) {
  .industry-board { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .header-inner {
    display: flex;
    gap: 16px;
  }
  .nav-desktop, .header-actions { display: none; }
  .nav-toggle { display: block; }
  .nav-mobile:not([hidden]) { display: block; }
  .hero { min-height: 520px; }
  .stats-grid,
  .why-grid,
  .band-grid,
  .related-grid,
  .industry-preview,
  .include-grid,
  .photo-mosaic {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid,
  .process-grid,
  .about-grid,
  .industries-grid,
  .contact-grid,
  .footer-grid,
  .form-row,
  .split,
  .detail-grid,
  .two-col {
    grid-template-columns: 1fr;
  }
  .service-card.featured,
  .service-card.wide,
  .service-card.wide.has-photo {
    grid-row: auto;
    grid-column: auto;
    display: flex;
    flex-direction: column;
  }
  .split-rev .split-photo { order: 0; }
  .sticky-card { position: static; }
  .cta-banner, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .about-photo, .about-photo img { min-height: 260px; }
  .footer-hours li { flex-direction: column; gap: 4px; }
  .photo-mosaic { grid-template-columns: 1fr 1fr; }
  .industry-card { grid-template-columns: 1fr 1.2fr; }
  .page-banner { width: min(calc(100% - 32px), var(--container)); height: 240px; }
  .split-photo img { height: 260px; }
  .nav-toggle { min-width: 44px; min-height: 44px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 56px 0; }
  .hero { min-height: 0; }
  .hero-content {
    padding: 48px 0 40px;
    width: min(calc(100% - 32px), 760px);
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero h1 { font-size: 2.05rem; }
  .page-hero { padding: 40px 0 16px; }
  .page-hero h1 { font-size: 1.9rem; }
  .stats-grid,
  .why-grid,
  .band-grid,
  .related-grid,
  .industry-preview,
  .include-grid,
  .industry-card {
    grid-template-columns: 1fr;
  }
  .photo-mosaic { grid-template-columns: 1fr 1fr; gap: 6px; padding: 6px; }
  .photo-mosaic img { height: 120px; }
  .cta-banner { padding: 28px 22px; }
  .cta-wrap { padding-bottom: 56px; }
  .logo-img { height: 30px; }
  .logo-on-dark .logo-img { height: 32px; }
  .band-grid img,
  .why-card img,
  .preview-card img,
  .related-card img,
  .industry-card img {
    height: 200px;
    min-height: 0;
  }
  .mosaic-pad { width: min(calc(100% - 32px), var(--container)); margin-bottom: 40px; }
  .hours-list li { grid-template-columns: 1fr; }
  input, select, textarea, .btn { font-size: 16px; }
}

