/* American Patriot Pool Service — premium SoCal redesign */
:root {
  --navy: #062B4F;
  --navy-deep: #041e38;
  --red: #C8202A;
  --red-hover: #a81a23;
  --white: #FFFFFF;
  --light: #F5F7F9;
  --beige: #F5F3EE;
  --ig-bg: #E8EEF3;
  --text: #102A43;
  --muted: #486581;
  --border: #D9E2EC;
  --gold: #D4A017;
  --shadow: 0 16px 40px rgba(6, 43, 79, 0.1);
  --max: 1240px;
  --pad-x: clamp(1.5rem, 4vw, 4rem);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); }
a:hover { color: var(--red); }
h1, h2, h3, h4 { line-height: 1.15; color: var(--navy); margin: 0 0 0.85rem; font-weight: 700; }
p { margin: 0 0 1.1rem; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--red); color: #fff; padding: 0.75rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }
.container {
  width: min(100% - (var(--pad-x) * 2), var(--max));
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.9rem 1.5rem; min-height: 48px; border-radius: 4px;
  font-weight: 700; font-size: 0.88rem; letter-spacing: 0.04em;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  font-family: inherit; line-height: 1.2;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(6, 43, 79, 0.15); }
.btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn-primary:hover { background: var(--red-hover); border-color: var(--red-hover); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-deep); color: #fff; }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn .arrow { font-weight: 400; margin-left: 0.15rem; }
.btn-header {
  width: 162px; min-height: 48px; padding: 0.7rem 0.85rem;
  font-size: 0.78rem; letter-spacing: 0.03em;
}
.btn-cta-lg {
  min-width: 185px; min-height: 52px; padding: 0.95rem 1.6rem; font-size: 0.92rem;
}

.eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 0.85rem;
}
.section { padding: clamp(4.5rem, 9vw, 6.5rem) 0; }
.section-light { background: var(--light); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100; background: #fff;
  border-bottom: 1px solid var(--border); box-shadow: 0 1px 0 rgba(6, 43, 79, 0.04);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; min-height: 82px; padding-block: 0.35rem;
}
.logo-link { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-link img {
  width: clamp(120px, 18vw, 170px); height: auto; max-height: 78px; object-fit: contain;
}
.nav-desktop {
  display: none; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0;
}
.nav-desktop a {
  text-decoration: none; color: var(--navy); font-weight: 600; font-size: 0.97rem;
  letter-spacing: 0.02em; padding-bottom: 5px; border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] { color: var(--red); border-bottom-color: var(--red); }
.header-actions { display: none; align-items: center; gap: 1rem; }
.header-phone {
  font-weight: 700; font-size: 0.95rem; color: var(--navy);
  text-decoration: none; white-space: nowrap;
}
.header-phone:hover { color: var(--red); }
.ig-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; color: var(--navy); text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.ig-link:hover { color: var(--red); background: var(--light); }
.ig-link svg { width: 22px; height: 22px; fill: currentColor; }
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; border: 1px solid var(--border); border-radius: 6px;
  background: #fff; cursor: pointer; padding: 11px;
}
.nav-toggle span { display: block; height: 2px; background: var(--navy); border-radius: 2px; }
.nav-mobile { display: none; border-top: 1px solid var(--border); padding: 1rem 0 1.35rem; }
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; margin: 0; padding: 0; }
.nav-mobile a {
  display: block; padding: 0.85rem 0; text-decoration: none; color: var(--navy);
  font-weight: 600; font-size: 1.05rem; border-bottom: 1px solid var(--border);
}
.nav-mobile .btn { width: 100%; margin-top: 1.1rem; min-height: 52px; }
.veteran-bar { background: #fff; border-bottom: 1px solid var(--border); padding: 0.4rem 0; }
.veteran-bar .container { display: flex; justify-content: flex-end; }
.veteran-bar span {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #829AB1;
}
@media (min-width: 980px) {
  .header-inner {
    min-height: 90px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
  }
  .logo-link { justify-self: start; }
  .logo-link img { width: 175px; max-height: 86px; }
  .header-inner > nav { justify-self: center; }
  .nav-desktop { display: flex; }
  .header-actions { display: flex; justify-self: end; }
  .header-phone { display: none; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* Hero */
.hero {
  position: relative; min-height: 520px; height: clamp(520px, 72vw, 620px);
  display: flex; align-items: center; justify-content: flex-start; color: #fff;
  background: var(--navy-deep) 70% center / cover no-repeat; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg,
    rgba(4, 30, 56, 0.72) 0%,
    rgba(6, 43, 79, 0.52) 22%,
    rgba(6, 43, 79, 0.28) 42%,
    rgba(6, 43, 79, 0.08) 58%,
    transparent 72%);
}
.hero-content {
  position: relative; z-index: 1; padding: 3.5rem 0;
  max-width: 34rem;
  padding-left: clamp(0.5rem, 2.5vw, 1.75rem);
  text-align: left;
  margin: 0;
}
.hero .eyebrow {
  color: rgba(255, 255, 255, 0.92); font-size: 0.78rem;
  letter-spacing: 0.16em; margin-bottom: 1.1rem;
}
.hero h1 {
  color: #fff; font-size: clamp(2.65rem, 8vw, 4.25rem); letter-spacing: -0.01em;
  margin-bottom: 1.15rem; font-weight: 800; line-height: 0.98;
}
.hero h1 .mission { color: var(--red); display: block; }
.hero-sub {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem); margin-bottom: 1.85rem;
  color: rgba(255, 255, 255, 0.96); font-weight: 500; line-height: 1.45;
}
@media (min-width: 980px) {
  .hero { min-height: 580px; height: 620px; }
  .hero h1 { font-size: 68px; }
  .hero-content { padding-left: 1.75rem; }
}
@media (max-width: 700px) {
  .hero { min-height: 540px; height: auto; align-items: flex-end; }
  .hero-content { padding: 2.5rem 0 3.25rem; max-width: 100%; text-align: left; }
  .hero h1 { font-size: clamp(2.6rem, 11vw, 3.1rem); }
  .hero .btn-cta-lg { min-height: 54px; min-width: 190px; font-size: 0.95rem; }
  .hero::before {
    background: linear-gradient(180deg,
      rgba(4, 30, 56, 0.28) 0%,
      rgba(4, 30, 56, 0.48) 45%,
      rgba(4, 30, 56, 0.78) 100%);
  }
}

/* Services */
.services-section { padding: clamp(3.5rem, 6vw, 4.75rem) 0; background: #fff; }
.services-row { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 700px) { .services-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .services-row { grid-template-columns: repeat(4, 1fr); } }
.service-col {
  text-align: center; padding: 1.75rem 1.5rem; border-bottom: 1px solid var(--border);
}
@media (min-width: 700px) {
  .service-col { border-bottom: 0; border-right: 1px solid var(--border); }
  .service-col:nth-child(2n) { border-right: 0; }
}
@media (min-width: 1040px) {
  .service-col { border-right: 1px solid var(--border); padding: 1.5rem 1.65rem; }
  .service-col:nth-child(2n) { border-right: 1px solid var(--border); }
  .service-col:last-child { border-right: 0; }
}
.icon-circle {
  width: 56px; height: 56px; margin: 0 auto 1.2rem; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center; justify-content: center; color: #fff;
}
.icon-circle svg {
  width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.75;
  stroke-linecap: round; stroke-linejoin: round;
}
.service-col h3 { font-size: 1rem; margin-bottom: 0.55rem; }
.service-col p {
  color: var(--muted); font-size: 0.875rem; line-height: 1.55; margin: 0;
  max-width: 16rem; margin-inline: auto;
}

/* Splits */
.split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1.05fr 0.95fr; gap: clamp(3rem, 6vw, 5rem); }
  .split.split-commitment { grid-template-columns: 0.92fr 1.08fr; }
}
.split-media { border-radius: 3px; overflow: hidden; box-shadow: var(--shadow); }
.split-media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; min-height: 320px;
}
@media (min-width: 900px) {
  .split-media img { min-height: 420px; aspect-ratio: 5 / 4; }
  .about-section .split-media img { min-height: 460px; }
}
.split-copy h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.85rem); line-height: 1.12;
  margin-bottom: 1.15rem; letter-spacing: -0.015em;
}
.split-copy p {
  font-size: clamp(1rem, 1.35vw, 1.125rem); line-height: 1.68;
  color: var(--text); max-width: 34rem;
}
.split-copy .btn { margin-top: 0.5rem; }
.about-section { background: #fff; }
.commitment { background: var(--beige); }
.commitment .eyebrow { color: var(--navy); }
.commitment .split-media img {
  aspect-ratio: 4 / 3.2; object-fit: cover; object-position: center;
}
.flourish {
  margin-top: 1.85rem; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy);
}
.flourish::after {
  content: ""; display: block; width: 64px; height: 3px;
  background: var(--red); margin-top: 0.55rem; border-radius: 2px;
}

/* Reviews */
.reviews { text-align: center; padding: clamp(4.5rem, 9vw, 6rem) 0; background: #fff; }
.reviews-heading {
  display: block; font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  letter-spacing: 0.14em; color: var(--red); margin: 0 0 1.15rem;
  font-weight: 800; text-transform: uppercase;
}
.reviews-quote {
  margin: 0 auto; max-width: 38rem; border: 0; padding: 0;
}
.stars {
  display: flex; justify-content: center; gap: 0.4rem; margin: 0 0 1.5rem;
  color: var(--gold); font-size: 1.55rem; letter-spacing: 0.08em; opacity: 0.85;
}
.reviews-placeholder {
  max-width: 36rem; margin: 0 auto; color: var(--navy);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem); font-style: italic;
  line-height: 1.55; font-weight: 500;
}
.review-nav {
  display: flex; justify-content: center; align-items: center;
  gap: 1rem; margin-top: 2rem; opacity: 0.55; pointer-events: none;
}
.review-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: 0; padding: 0; }
.review-dot.active { background: var(--navy); }
.review-btn {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border);
  background: #fff; color: var(--navy); cursor: default; font-size: 1.05rem;
}

/* Instagram */
.ig-bar { background: var(--ig-bg); padding: clamp(3.5rem, 7vw, 5rem) 0; }
.ig-bar-inner { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 1000px) {
  .ig-bar-inner { grid-template-columns: minmax(240px, 0.85fr) minmax(400px, 1.9fr) auto; gap: 1.5rem; align-items: center; }
}
.ig-bar-copy .eyebrow { margin-bottom: 0.55rem; font-size: 0.78rem; }
.ig-handle {
  display: flex; align-items: center; gap: 0.5rem; font-weight: 700;
  color: var(--navy); font-size: 1.05rem; margin-bottom: 0.45rem;
  flex-wrap: wrap; line-height: 1.25;
}
a.ig-handle { text-decoration: none; }
a.ig-handle:hover { text-decoration: underline; }
a.ig-grid { text-decoration: none; }
a.ig-grid img { transition: opacity .2s ease; }
a.ig-grid:hover img { opacity: .85; }
.ig-handle svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }
.ig-bar-copy p { margin: 0; color: var(--muted); font-size: 0.98rem; line-height: 1.5; }
.ig-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.65rem; min-height: 160px; }
.ig-grid img {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 3px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ig-grid img:hover { transform: scale(1.02); box-shadow: 0 8px 24px rgba(6, 43, 79, 0.18); }
@media (max-width: 700px) {
  .ig-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .ig-grid img:nth-child(4), .ig-grid img:nth-child(5) { display: none; }
}
.ig-bar .btn-navy { min-height: 50px; white-space: nowrap; padding-inline: 1.25rem; }

/* Final CTA */
.final-cta {
  position: relative;
  isolation: isolate;
  z-index: 0;
  margin: 0;
  padding: clamp(5.5rem, 11vw, 7.5rem) 0;
  color: #fff;
  text-align: center;
  background: var(--navy) center / cover no-repeat;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 30, 56, 0.72);
  z-index: 0;
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 {
  color: #fff; font-size: clamp(1.85rem, 4vw, 2.75rem); margin-bottom: 1.65rem;
  line-height: 1.15; letter-spacing: -0.015em; max-width: 22ch; margin-inline: auto;
}
.final-cta .cta-sub {
  color: rgba(255, 255, 255, 0.92); font-size: clamp(1.05rem, 2vw, 1.2rem);
  margin: 0 auto 1.75rem; font-weight: 500;
}
.final-cta .btn-cta-lg { min-width: 190px; min-height: 52px; }

/* Page hero */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, #0a3a66 100%);
  color: #fff; padding: clamp(3.25rem, 7vw, 4.5rem) 0 clamp(2.75rem, 5vw, 3.5rem);
  border-bottom: 3px solid var(--red);
}
.page-hero h1 {
  color: #fff; font-size: clamp(2rem, 4.2vw, 2.85rem);
  margin-bottom: 0.85rem; max-width: 18ch;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.88); max-width: 40rem; margin: 0;
  font-size: 1.08rem; line-height: 1.65;
}
.page-hero .eyebrow { color: #F7C6C9; margin-bottom: 0.75rem; }
.page-hero a { color: #F7C6C9; font-weight: 700; text-decoration: none; }
.page-hero a:hover { color: #fff; text-decoration: underline; }

/* Footer */
.site-footer {
  position: relative;
  z-index: 2;
  clear: both;
  margin: 0;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.88);
  padding: clamp(3.25rem, 6vw, 4.25rem) 0 0;
}
.footer-grid {
  display: grid; gap: 2.5rem; grid-template-columns: 1fr;
  align-items: start; padding-bottom: 2.5rem;
}
.footer-grid > * { min-width: 0; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) {
  .footer-grid { grid-template-columns: 1.25fr 0.9fr 1.2fr 1fr; gap: 2rem 2.5rem; }
}
.footer-brand .logo-link img {
  width: 140px; max-height: 70px; margin-bottom: 0.85rem; filter: brightness(1.05);
}
.footer-brand .brand-name {
  font-weight: 700; color: #fff; font-size: 0.95rem; margin: 0 0 0.35rem; line-height: 1.35;
}
.footer-brand .brand-slogan {
  margin: 0; font-size: 0.88rem; color: rgba(255, 255, 255, 0.72); line-height: 1.45;
}
.footer-col h4 {
  color: #fff; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  margin: 0 0 1.1rem; font-weight: 700;
}
.footer-nav {
  display: flex; flex-direction: column; gap: 0.65rem; list-style: none; margin: 0; padding: 0;
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.9); text-decoration: none; font-weight: 500; font-size: 0.95rem;
}
.footer-nav a:hover { color: #F7C6C9; }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.95rem; }
.footer-contact a { color: #fff; text-decoration: none; font-weight: 600; word-break: break-word; }
.footer-contact a:hover { color: #F7C6C9; }
.footer-contact .row { display: flex; align-items: flex-start; gap: 0.6rem; }
.footer-contact svg {
  width: 17px; height: 17px; flex-shrink: 0; margin-top: 0.2rem; fill: currentColor; opacity: 0.85;
}
.footer-connect { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-connect .ig-row {
  display: flex; align-items: center; gap: 0.55rem; color: #fff;
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
}
.footer-connect .ig-row:hover { color: #F7C6C9; }
.footer-connect .ig-row svg { width: 20px; height: 20px; fill: currentColor; }
.footer-connect .vet-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.88); margin-top: 0.35rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14); padding: 1.15rem 0;
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: space-between;
  font-size: 0.88rem; color: rgba(255, 255, 255, 0.7);
}
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: #F7C6C9; }
.footer-bottom .tag { font-weight: 700; letter-spacing: 0.04em; color: rgba(255, 255, 255, 0.9); }
.footer-top { display: grid; gap: 2rem; padding-bottom: 2rem; }

/* Forms & inner pages */
.form-card {
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 1.75rem; box-shadow: var(--shadow);
}
@media (min-width: 700px) { .form-card { padding: 2.35rem; } }
.form-grid { display: grid; gap: 1.15rem; grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .form-grid.two { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}
label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 0.4rem; color: var(--navy); }
.req { color: var(--red); }
input[type=text], input[type=email], input[type=tel], input[type=file], select, textarea {
  width: 100%; padding: 0.9rem 1rem; border: 1px solid var(--border);
  border-radius: 6px; font: inherit; color: var(--text); background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
textarea { min-height: 130px; resize: vertical; }
input:hover, select:hover, textarea:hover { border-color: #9FB3C8; }
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--navy); outline-offset: 1px; border-color: var(--navy);
}
.field-hint { font-size: 0.82rem; color: var(--muted); margin-top: 0.3rem; }
.hp-field {
  position: absolute !important; left: -9999px !important; width: 1px !important;
  height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important;
}
.form-status { display: none; margin-top: 1rem; padding: 0.95rem 1.1rem; border-radius: 8px; font-weight: 600; }
.form-status.success { display: block; background: #E3F9E5; color: #0E7A28; border: 1px solid #B7E4BE; }
.form-status.error { display: block; background: #FFE3E3; color: #9B1C1C; border: 1px solid #F5C2C2; }
.form-card .btn[type=submit] { width: 100%; min-height: 52px; }
.contact-layout { display: grid; gap: 1.75rem; }
@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1.6fr 0.9fr; align-items: start; gap: 2.5rem; }
}
.contact-aside {
  background: var(--navy); color: rgba(255, 255, 255, 0.9);
  border-radius: 10px; padding: 2rem 1.85rem; box-shadow: var(--shadow);
}
.contact-aside h3 { color: #fff; margin-bottom: 0.5rem; font-size: 1.35rem; }
.contact-aside p { color: rgba(255, 255, 255, 0.88); }
.contact-aside a { color: #F7C6C9; font-weight: 700; text-decoration: none; word-break: break-word; }
.contact-aside a:hover { color: #fff; text-decoration: underline; }
.aside-list { list-style: none; margin: 1.15rem 0; padding: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.aside-meta { font-size: 0.95rem; line-height: 1.55; margin-top: 1.25rem; }
.aside-vet { margin-top: 1.5rem !important; margin-bottom: 0 !important; }
.vet-inline {
  font-weight: 700; letter-spacing: 0.08em; color: var(--red);
  font-size: 0.82rem; text-transform: uppercase; margin: 1.15rem 0 0.85rem;
}
.aside-vet { color: #F7C6C9; }
.prose { max-width: 46rem; }
.prose h2 { margin-top: 2.25rem; font-size: 1.4rem; }
.prose p, .prose li { font-size: 1.05rem; line-height: 1.7; }
.prose ul { padding-left: 1.25rem; margin: 0 0 1.1rem; }
.section-services-detail { padding-top: clamp(2.5rem, 5vw, 3.5rem); padding-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.service-block {
  display: grid; gap: 1.75rem; padding: clamp(2rem, 4vw, 2.75rem) 0;
  border-bottom: 1px solid var(--border); align-items: center;
}
.service-block:last-of-type { border-bottom: 0; }
@media (min-width: 800px) {
  .service-block { grid-template-columns: minmax(280px, 360px) 1fr; gap: 2.75rem; }
  .service-block:nth-child(even) { direction: rtl; }
  .service-block:nth-child(even) > * { direction: ltr; }
}
.service-block img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px;
  box-shadow: 0 12px 28px rgba(6, 43, 79, 0.12);
}
.service-block-copy h2 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); margin-bottom: 0.75rem; }
.service-block-copy p { font-size: 1.05rem; color: var(--muted); max-width: 36rem; }
.service-block-copy .btn { margin-top: 0.35rem; }
.map-placeholder {
  background: var(--light); border: 1px solid var(--border); border-radius: 10px;
  padding: clamp(2rem, 4vw, 2.75rem); text-align: center; color: var(--text); font-size: 1.05rem;
  box-shadow: 0 8px 24px rgba(6, 43, 79, 0.06);
}
.map-placeholder .map-kicker {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red); margin-bottom: 0.85rem;
}
.map-placeholder strong { color: var(--navy); }
.map-placeholder .map-note { margin: 1rem 0 0; color: var(--muted); font-size: 0.98rem; }
.map-placeholder a { font-weight: 700; text-decoration: none; }
.map-placeholder a:hover { color: var(--red); }
.center-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; margin-top: 2rem; }
.page-final-cta { min-height: 280px; }
.jobs-layout { max-width: 760px; }
.text-center { text-align: center; }
.mt-2 { margin-top: 1.15rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}
/* Progressive enhancement: content visible until JS opts into reveal animation */
.js .reveal:not(.is-visible) {
  opacity: 0; transform: translateY(18px);
}
.reveal {
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal:not(.is-visible),
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
  html { scroll-behavior: auto; }
}
