﻿:root {
  --navy: #0f172a;
  --navy-deep: #0b1220;
  --navy-soft: #334155;
  --sky: #3b82f6;
  --gold: #2563eb;
  --gold-soft: #dbeafe;
  --ivory: #f8fbff;
  --mist: #eff6ff;
  --paper: #ffffff;
  --text: #0f172a;
  --muted: #4b5568;
  --line: rgba(148, 163, 184, 0.22);
  --shadow-lg: 0 20px 44px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 12px 24px rgba(15, 23, 42, 0.06);
  --shadow-sm: 0 6px 14px rgba(15, 23, 42, 0.04);
  --radius-xl: 16px;
  --radius-lg: 10px;
  --radius-md: 8px;
  --max: 1220px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}
main { flex: 1 0 auto; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -3.5rem;
  z-index: 200;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: #ffffff;
  color: var(--navy);
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  transition: top 0.2s ease;
}
.skip-link:focus-visible {
  top: 1rem;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.5);
  outline-offset: 3px;
}
p, li, a, input, textarea, button, select { font-family: inherit; }
h1, h2, h3, h4 {
  margin: 0;
  color: var(--navy);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
}
p { margin: 0; }
.container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.section { padding: 5.5rem 0; position: relative; }
.section.alt { background: #ffffff; }
.page-hero-section {
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.page-hero-section-tight {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.section-top-tight {
  padding-top: 1.5rem;
}
.section-top-compact {
  padding-top: 1rem;
}
.section-top-cta {
  padding-top: 0.75rem;
}
.section-bottom-tight {
  padding-bottom: 2rem;
}
.stack-top-md {
  margin-top: 1rem;
}
.stack-top-lg {
  margin-top: 1.5rem;
}
.stack-top-xl {
  margin-top: 2rem;
}
.copy-emphasis {
  color: var(--navy);
  font-weight: 700;
}
.home-hero-section {
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.home-cta-section {
  padding-top: 0.75rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: var(--sky);
  font: 700 0.84rem/1 "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.breadcrumb-eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.breadcrumb-eyebrow > a,
.breadcrumb-eyebrow > span {
  white-space: nowrap;
}
.page-hero-services > .breadcrumb-eyebrow {
  grid-column: 1 / -1;
  width: 100%;
  margin-bottom: 0.5rem;
}
.eyebrow::before { content: ""; width: 2.3rem; height: 1px; background: currentColor; opacity: 0.7; }
.section-title { font-size: clamp(1.85rem, 4.1vw, 3.55rem); max-width: 13ch; }
.section-intro { margin-top: 1rem; max-width: 760px; color: var(--muted); font-size: 1.06rem; }
.lead { font-size: 1.08rem; color: var(--muted); }
.muted { color: var(--muted); }
.page-summary a,
.section-intro a,
.lead a,
.muted a,
.service-card-copy a {
  color: var(--sky);
}
.page-summary a:hover,
.section-intro a:hover,
.lead a:hover,
.muted a:hover,
.service-card-copy a:hover {
  color: #2563eb;
}
.btn-row, .tag-row, .hero-links, .subnav { display: flex; flex-wrap: wrap; gap: .85rem; }
.tag-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.tag-row.tag-grid .tag {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.9rem;
  min-height: 72px;
  padding: 0 3rem 0 0.95rem;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(148,163,184,0.22);
  box-shadow: var(--shadow-sm);
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: none;
}
.tag-row.tag-grid .tag .service-icon {
  margin-bottom: 0;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
}
.tag-row.tag-grid .tag .tag-label {
  display: block;
}
.tag-row.tag-grid .tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.3rem;
  border-radius: 6px 0 0 6px;
  background: #3b82f6;
}
.tag-row.tag-grid .tag::after {
  content: "›";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 300;
  transition: transform .2s ease, color .2s ease;
}
.tag-row.tag-grid .tag:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.tag-row.tag-grid .tag:hover::after {
  transform: translate(3px, -50%);
  color: var(--sky);
}
.btn-row { margin-top: 1.7rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.92rem 1.35rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: linear-gradient(135deg, #2563eb, #3b82f6); color: #fff; box-shadow: 0 14px 30px rgba(37,99,235,0.22); }
.btn-primary:hover { box-shadow: 0 18px 34px rgba(37,99,235,0.24); }
.btn-secondary { background: rgba(255,255,255,0.84); color: var(--navy); border-color: rgba(148,163,184,0.24); backdrop-filter: blur(8px); }
.btn-outline { background: rgba(255,255,255,0.94); color: var(--navy); border-color: var(--line); }
.btn-outline:hover {
  border-color: rgba(148,163,184,0.32);
  box-shadow: var(--shadow-sm);
}
.tag {
  padding: .52rem .8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  color: var(--navy);
  border: 1px solid rgba(148,163,184,0.2);
  font-size: .86rem;
  font-weight: 700;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148,163,184,0.16);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 84px;
}
.brand img { width: 205px; height: auto; }
nav ul {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}
nav a { color: var(--navy-soft); font-weight: 600; }
nav a.active, nav a:hover { color: var(--sky); }
.nav-cta {
  padding: .8rem 1rem;
  border-radius: 10px;
  color: #fff !important;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  box-shadow: var(--shadow-sm);
}
.hero-stage, .page-hero, .notice-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.hero-stage {
  background: #f8fbff;
  color: var(--text);
  border: 1px solid rgba(191,219,254,0.65);
}
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}
.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .78fr);
  gap: 1.75rem;
  align-items: stretch;
  padding: clamp(1.75rem, 3.4vw, 2.6rem);
}
.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  padding: .5rem 0;
}
.home-story {
  margin-top: 1.75rem;
  padding: 1.75rem clamp(1.5rem, 3vw, 2.25rem) 1.75rem;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.home-story .image-panel {
  width: 100%;
  min-height: 440px;
  aspect-ratio: 4 / 5;
  justify-self: start;
}
.home-story .image-panel img {
  object-position: 42% center;
}
.home-story .section-title {
  font-size: clamp(2.05rem, 4.15vw, 3.45rem);
  max-width: 11ch;
}
.home-story .section-intro {
  max-width: 36rem;
}
.home-service-grid {
  margin-top: 1.6rem;
}
.home-hero-actions {
  margin-top: 1.35rem;
}
.home-story-list {
  margin-top: 1.5rem;
}
.home-story-emphasis {
  margin-top: 1.5rem;
  max-width: 34rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.45;
}
.hero-logo { width: 220px; margin-bottom: 1.25rem; }
.hero-copy h1 { color: var(--navy); font-size: clamp(2.1rem, 4.5vw, 3.85rem); max-width: 11ch; }
.hero-copy p { max-width: 37rem; }
.hero-figure {
  position: relative;
  min-height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #eff6ff;
  border: 1px solid rgba(191,219,254,0.8);
}
.hero-figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: inherit;
  box-shadow: none;
}
.hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
}
.grid-2, .grid-3, .grid-4, .stats, .process-steps, .contact-shell { display: grid; gap: 1rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card, .service-card, .feature-card, .stat-card, .project-card, .team-card, .info-card, .contact-card, .contact-form, .process-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(148,163,184,0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.service-card, .feature-card, .stat-card, .project-card, .team-card, .info-card, .process-card { padding: 1.5rem; }
.service-card, .project-card, .team-card { transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover, .project-card:hover, .team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card h3, .feature-card h3, .project-card h3, .team-card h3, .info-card h3 { margin-bottom: .55rem; }
.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}
.service-icon img { width: 28px; height: 28px; object-fit: contain; }
.highlight-strip {
  margin-top: -2rem;
  position: relative;
  z-index: 3;
}
.highlight-card { padding: 1.45rem; }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .95fr);
  gap: 2rem;
  align-items: center;
}
.image-panel {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.image-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(15,23,42,0.22));
}
.quote-card {
  margin-top: 1.5rem;
  padding: 1.4rem 1.5rem;
  border-left: 4px solid var(--sky);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.quote-card p { color: var(--navy); }
.quote-card span { display: block; margin-top: .75rem; color: var(--muted); font-weight: 700; font-size: .9rem; }
.photo-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(148,163,184,0.18);
  box-shadow: var(--shadow-md);
}
.photo-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.photo-card .content { padding: 1.3rem; }
.process-wrap {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(148,163,184,0.18);
  box-shadow: var(--shadow-md);
}
.process-wrap img { width: min(100%, 980px); margin: 1.5rem auto 0; }
.process-graphic-panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(191,219,254,0.7);
  overflow: hidden;
}
.process-graphic-panel img {
  width: 100%;
  margin: 0;
  display: block;
}
.process-steps { grid-template-columns: repeat(5, minmax(0, 1fr)); margin-top: 2rem; }
.process-card { padding: 1.25rem; }
.process-step-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: .8rem;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--sky);
  font-weight: 800;
}
.team-card img {
  width: 100%;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1rem;
}
.page-hero {
  background: #f8fbff;
  color: var(--text);
  padding: 3rem clamp(1.5rem, 4vw, 2.8rem);
  border: 1px solid rgba(191,219,254,0.7);
}
.breadcrumbs {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 600;
}
.page-hero h1 { color: var(--navy); font-size: clamp(2.05rem, 4.15vw, 3.45rem); max-width: 13ch; }
.title-match-services {
  font-size: clamp(2.05rem, 4.15vw, 3.45rem);
}
.page-hero-services {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, 1.08fr);
  gap: 1.5rem;
  align-items: start;
}
.page-hero-services > .service-process-row {
  grid-column: 1 / -1;
  margin-top: 1rem;
  padding-top: 1rem;
  align-items: center;
}
.page-hero-main {
  padding-right: .5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-summary { margin-top: 1rem; max-width: 34rem; color: var(--muted); font-size: 1rem; line-height: 1.65; }
.page-summary + .page-summary {
  margin-top: 1rem;
}
.page-hero .list-checks {
  margin-top: 1.5rem;
}
.hero-links { margin-top: 1.4rem; }
.page-hero-main .hero-links {
  margin-top: 2rem;
}
.service-process-row {
  display: block;
}
.hero-image-slice {
  margin-bottom: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(191,219,254,0.7);
}
.hero-image-slice img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.service-link-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
}
.service-link-grid > .service-card:not(.service-card-link) {
  padding: 1rem 1.05rem 1rem 1.15rem;
}
.service-link-grid > .service-card:not(.service-card-link) h3 {
  margin-bottom: .2rem;
  font-size: 1rem;
  line-height: 1.2;
}
.service-link-grid > .service-card:not(.service-card-link) p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.45;
}
.service-link-grid .service-card:not(a):hover {
  transform: none;
  box-shadow: var(--shadow-md);
}
.managed-ops-tile-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.managed-ops-tile-grid .list-checks li {
  font-size: 0.9rem;
  line-height: 1.45;
}
.service-card-link {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: .9rem;
  align-items: center;
  padding: 1rem 3rem 1rem 1.05rem;
}
.service-card-link::after {
  content: "›";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 300;
}
.service-card-link-nav {
  position: relative;
  display: block;
  padding: 1rem 3rem 1rem 1.15rem;
}
.service-card-link-nav::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.3rem;
  border-radius: 6px 0 0 6px;
  background: #3b82f6;
}
.service-card-link .service-icon {
  margin-bottom: 0;
  width: 52px;
  height: 52px;
}
.service-card-copy h3 {
  margin-bottom: .2rem;
  font-size: 1rem;
  line-height: 1.2;
}
.service-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}
.hero-graphic {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(191,219,254,0.8);
  box-shadow: var(--shadow-md);
}
.hero-graphic img { width: 100%; display: block; height: auto; }
.hero-links a, .subnav a {
  padding: .72rem .95rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(148,163,184,0.18);
  color: var(--navy);
  font-size: .92rem;
  font-weight: 700;
}
.hero-links a[href*="contact/index.html"] {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 30px rgba(37,99,235,0.22);
}
.page-hero-main .hero-links .btn-primary {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 30px rgba(37,99,235,0.22);
}
.subnav { margin-top: 1rem; }
.subnav a.active-chip { background: linear-gradient(135deg, #2563eb, #3b82f6); color: #fff; border-color: transparent; }
.list-checks { list-style: none; padding: 0; margin: 0; display: grid; gap: .85rem; }
.list-checks li { position: relative; padding-left: 1.5rem; color: var(--muted); }
.list-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: .55rem;
  height: .55rem;
  border-radius: 999px;
  background: var(--sky);
}
.notice-band, .feature-band {
  padding: 1.6rem 1.7rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}
.notice-band {
  background: #f8fbff;
  color: var(--text);
  border: 1px solid rgba(191,219,254,0.7);
}
.notice-band .btn {
  align-self: center;
}
.notice-band h2, .feature-band h3, .notice-band h3 { color: var(--navy); }
.notice-band p, .feature-band p { color: var(--muted); }
.feature-band {
  background: #ffffff;
  color: var(--text);
  border: 1px solid rgba(191,219,254,0.7);
}
.contact-shell { grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr); }
.contact-card, .contact-form { padding: 1.7rem; }
.contact-form form { display: grid; gap: .9rem; }
label { display: grid; gap: .45rem; color: var(--navy); font-size: .94rem; font-weight: 700; }
input, select, textarea {
  width: 100%;
  border: 1px solid #dbe4ee;
  border-radius: var(--radius-md);
  padding: .95rem 1rem;
  font-size: .98rem;
  color: var(--text);
  background: #fff;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(59, 130, 246, 0.22);
  outline-offset: 1px;
  border-color: #93c5fd;
}
textarea { min-height: 140px; resize: vertical; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.turnstile-widget {
  min-height: 65px;
}
.form-status {
  display: none;
  margin: 0;
  padding: .85rem 1rem;
  border-radius: var(--radius-md);
  font-size: .94rem;
  font-weight: 600;
}
.form-status.is-visible {
  display: block;
}
.form-status.is-info {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}
.form-status.is-success {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}
.form-status.is-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}
.site-footer {
  margin-top: auto;
  padding: 2.2rem 0 2.8rem;
  background: #f8fbff;
  color: var(--muted);
  border-top: 1px solid rgba(148,163,184,0.14);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 1rem; flex-wrap: wrap; font-weight: 600; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
@media (max-width: 1100px) {
  .hero-shell, .split, .grid-2, .grid-3, .grid-4, .stats, .process-steps, .contact-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-process-row {
    grid-template-columns: 1fr;
  }
  .managed-ops-tile-grid {
    grid-template-columns: 1fr;
  }
  .notice-band, .feature-band { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .header-inner { flex-direction: column; align-items: flex-start; padding: .9rem 0 1rem; }
  nav ul { gap: .9rem; }
  .section { padding: 4rem 0; }
  .hero-shell, .split, .grid-2, .grid-3, .grid-4, .stats, .process-steps, .contact-shell { grid-template-columns: 1fr; }
  .page-hero-services, .service-card-link { grid-template-columns: 1fr; }
  .service-process-row {
    grid-template-columns: 1fr;
  }
  .managed-ops-tile-grid {
    grid-template-columns: 1fr;
  }
  .service-card-link .service-icon { margin-bottom: .35rem; }
  .hero-stage, .page-hero, .notice-band, .feature-band { border-radius: 18px; }
  .hero-figure { min-height: 320px; }
  .hero-copy h1,
  .home-story .section-title {
    max-width: none;
  }
  .tag-grid {
    grid-template-columns: 1fr;
  }
}
