@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,700;9..144,800&family=Nunito+Sans:wght@400;600;700;800;900&display=swap');

* { box-sizing: border-box; }
:root {
  --ink: #173333;
  --muted: #5f7370;
  --paper: #f2fbf8;
  --white: #ffffff;
  --mint: #21bfa6;
  --blue: #4f9fd8;
  --blue-soft: #e9f5ff;
  --sage: #d9efe7;
  --aqua: #7ad7cf;
  --coral: #ee8b7a;
  --cream: #fffaf1;
  --line: rgba(23, 51, 51, 0.13);
  --radius: 8px;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(122, 215, 207, 0.22), transparent 28%),
    linear-gradient(180deg, #f7fffc, var(--paper) 44%, #ffffff);
  line-height: 1.55;
}
body:not(.page-home) {
  background:
    radial-gradient(circle at 86% 8%, rgba(79, 159, 216, 0.22), transparent 30%),
    radial-gradient(circle at 8% 12%, rgba(122, 215, 207, 0.18), transparent 28%),
    linear-gradient(180deg, #f5fbff, #eef8ff 42%, #ffffff);
}
a { color: inherit; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: rgba(247, 255, 252, 0.86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}
.site-header.scrolled { border-color: var(--line); background: rgba(247, 255, 252, 0.96); }
.logo {
  font-family: "Fraunces", serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  text-decoration: none;
  letter-spacing: 0;
}
.logo span { color: var(--mint); }
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}
.site-nav a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(23, 51, 51, 0.68);
}
.site-nav a:hover, .site-nav a.active { color: var(--ink); }
.nav-pill {
  border: 1px solid rgba(79, 159, 216, 0.45);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--ink) !important;
  background: rgba(233, 245, 255, 0.85);
}

.page-home {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 232, 191, 0.34), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(186, 229, 222, 0.32), transparent 32%),
    linear-gradient(180deg, #fffdf8, #f8fffb 48%, #ffffff);
}
.page-home .site-header {
  background: rgba(255, 253, 248, 0.86);
}
.page-home .site-header.scrolled {
  background: rgba(255, 253, 248, 0.96);
}

.home-hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
  overflow: hidden;
  padding: 142px clamp(20px, 6vw, 76px) 84px;
  background:
    linear-gradient(130deg, rgba(255, 253, 248, 0.98), rgba(236, 250, 246, 0.86)),
    radial-gradient(circle at 74% 30%, rgba(79, 159, 216, 0.16), transparent 36%);
}
.home-hero::after {
  content: "";
  position: absolute;
  left: clamp(20px, 6vw, 76px);
  right: clamp(20px, 6vw, 76px);
  bottom: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(33, 191, 166, 0.36), transparent);
}
.home-hero-copy {
  position: relative;
  z-index: 2;
}
.home-hero h1 {
  max-width: 880px;
  font-size: clamp(3rem, 7vw, 7.4rem);
}
.home-hero p:not(.eyebrow) {
  max-width: 610px;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  color: var(--muted);
}
.home-visual {
  position: relative;
  min-height: min(58vw, 570px);
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.42)),
    linear-gradient(135deg, rgba(233,245,255,0.76), rgba(217,239,231,0.58));
  box-shadow: inset 0 0 0 1px rgba(79,159,216,0.16), 0 28px 70px rgba(57,105,100,0.12);
}
.sun-halo {
  position: absolute;
  top: 12%;
  right: 14%;
  width: 150px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 237, 190, 0.98), rgba(255, 237, 190, 0.18) 62%, transparent 70%);
  animation: softGlow 6s ease-in-out infinite;
}
.route {
  position: absolute;
  border: 1px dashed rgba(79, 159, 216, 0.35);
  border-radius: 50%;
  animation: routeDrift 7s ease-in-out infinite;
}
.route-a { width: 74%; aspect-ratio: 1.45; left: 5%; top: 18%; }
.route-b { width: 52%; aspect-ratio: 1.1; right: -8%; bottom: 10%; animation-delay: 1.1s; }
.home-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  border: 1px solid rgba(79,159,216,0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(57,105,100,0.11);
  animation: cardFloat 6.2s ease-in-out infinite;
}
.home-card strong { font-family: "Fraunces", serif; font-size: 1.35rem; }
.home-card span { color: var(--muted); font-weight: 800; font-size: 0.88rem; }
.home-card-top { left: 7%; top: 16%; }
.home-card-bottom { right: 7%; bottom: 14%; animation-delay: 1.4s; }
.transport-scene {
  position: absolute;
  left: 12%;
  bottom: 28%;
  width: min(470px, 74vw);
  aspect-ratio: 2.8 / 1;
  border-radius: 30px 72px 22px 22px;
  background: linear-gradient(90deg, #ffffff, #effaf6 62%, #d9efe7);
  box-shadow: 0 32px 62px rgba(57,105,100,0.18);
  animation: vehicleFloat 5.8s ease-in-out infinite;
}
.transport-window {
  position: absolute;
  left: 24%;
  top: 19%;
  width: 43%;
  height: 35%;
  border-radius: 16px 48px 9px 9px;
  background: linear-gradient(90deg, #dff3ff, #ffffff);
}
.transport-cross {
  position: absolute;
  left: 10%;
  bottom: 29%;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--mint);
}
.transport-cross::before,
.transport-cross::after {
  content: "";
  position: absolute;
  background: var(--white);
  border-radius: 99px;
}
.transport-cross::before { width: 24px; height: 6px; left: 8px; top: 17px; }
.transport-cross::after { width: 6px; height: 24px; left: 17px; top: 8px; }
.transport-stripe {
  position: absolute;
  right: 11%;
  bottom: 35%;
  width: 24%;
  height: 5px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--mint));
}
.transport-wheel {
  position: absolute;
  bottom: -17%;
  width: 20%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0 22%, #244244 23% 58%, #97c9bd 59% 70%, #244244 71%);
}
.wheel-left { left: 16%; }
.wheel-right { right: 15%; }
.road-line {
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: 21%;
  height: 6px;
  border-radius: 99px;
  background: repeating-linear-gradient(90deg, rgba(23,51,51,0.22) 0 42px, transparent 42px 76px);
  animation: roadMove 2.8s linear infinite;
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
  overflow: hidden;
  padding: 140px clamp(20px, 6vw, 76px) 78px;
  background:
    linear-gradient(140deg, rgba(255, 250, 241, 0.95), rgba(217, 239, 231, 0.92)),
    radial-gradient(circle at 76% 30%, rgba(122, 215, 207, 0.34), transparent 35%);
  color: var(--ink);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 96px clamp(14px, 3vw, 42px) 26px;
  border: 1px solid rgba(33, 191, 166, 0.24);
  border-radius: 28px;
  pointer-events: none;
}
.motion-scene {
  position: relative;
  min-height: min(58vw, 560px);
  width: 100%;
  overflow: hidden;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255,255,255,0.18)),
    repeating-linear-gradient(90deg, rgba(33,191,166,0.08) 0 1px, transparent 1px 56px),
    repeating-linear-gradient(0deg, rgba(33,191,166,0.08) 0 1px, transparent 1px 56px);
  box-shadow: inset 0 0 0 1px rgba(33,191,166,0.18), 0 30px 80px rgba(57, 105, 100, 0.16);
}
.care-orbit {
  position: absolute;
  border: 1px solid rgba(33, 191, 166, 0.24);
  border-radius: 50%;
  animation: orbitPulse 5s ease-in-out infinite;
}
.orbit-a { width: 62%; aspect-ratio: 1; right: 6%; top: 6%; }
.orbit-b { width: 38%; aspect-ratio: 1; left: 8%; bottom: 10%; animation-delay: 1.2s; }
.health-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  width: min(220px, 46vw);
  padding: 18px;
  border: 1px solid rgba(33, 191, 166, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 50px rgba(57, 105, 100, 0.13);
  animation: cardFloat 5.8s ease-in-out infinite;
}
.health-card span { color: var(--coral); font-weight: 900; }
.health-card strong { font-size: 1rem; }
.health-card small { color: var(--muted); font-weight: 800; }
.schedule-card { left: 5%; top: 12%; }
.pulse-card { right: 4%; bottom: 13%; animation-delay: 1.7s; }
.heart-mark {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--coral);
  position: relative;
}
.heart-mark::before, .heart-mark::after {
  content: "";
  position: absolute;
  background: var(--white);
}
.heart-mark::before { width: 14px; height: 3px; left: 7px; top: 12px; }
.heart-mark::after { width: 3px; height: 14px; left: 12px; top: 7px; }
.care-vehicle {
  position: absolute;
  left: 18%;
  bottom: 24%;
  width: min(430px, 66vw);
  aspect-ratio: 2.7 / 1;
  border-radius: 34px 66px 22px 22px;
  background: linear-gradient(90deg, #ffffff, #e8f6f1 58%, #cfeee7);
  box-shadow: 0 34px 70px rgba(57, 105, 100, 0.2);
  animation: vehicleFloat 5s ease-in-out infinite;
}
.vehicle-window {
  position: absolute;
  left: 17%;
  top: 19%;
  width: 48%;
  height: 34%;
  border-radius: 18px 52px 10px 10px;
  background: linear-gradient(90deg, #bee8e2, #f7fffc);
}
.medical-cross {
  position: absolute;
  left: 11%;
  bottom: 28%;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--mint);
}
.medical-cross::before, .medical-cross::after {
  content: "";
  position: absolute;
  background: var(--white);
  border-radius: 99px;
}
.medical-cross::before { width: 24px; height: 6px; left: 9px; top: 18px; }
.medical-cross::after { width: 6px; height: 24px; left: 18px; top: 9px; }
.vehicle-line {
  position: absolute;
  right: 12%;
  bottom: 35%;
  width: 27%;
  height: 5px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--coral), var(--aqua));
}
.wheel {
  position: absolute;
  bottom: -18%;
  width: 22%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #f7fffc 0 20%, #173333 21% 58%, #8abdb3 59% 70%, #173333 71%);
}
.wheel-a { left: 15%; }
.wheel-b { right: 14%; }
.pulse-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 70px;
  opacity: 0.7;
  background: linear-gradient(90deg, transparent 0 8%, var(--mint) 8% 20%, transparent 20% 30%, var(--mint) 30% 36%, transparent 36% 45%, var(--coral) 45% 49%, transparent 49% 58%, var(--mint) 58% 74%, transparent 74%);
  clip-path: polygon(0 54%, 8% 54%, 12% 54%, 17% 54%, 22% 18%, 28% 84%, 35% 54%, 43% 54%, 47% 32%, 52% 72%, 57% 54%, 100% 54%, 100% 60%, 57% 60%, 52% 78%, 47% 38%, 43% 60%, 35% 60%, 28% 90%, 22% 24%, 17% 60%, 0 60%);
  animation: pulseTravel 3.8s ease-in-out infinite;
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 940px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  letter-spacing: 0;
  line-height: 1.02;
}
.hero h1 { max-width: 850px; font-size: clamp(2.75rem, 6.4vw, 6.7rem); }
.hero p:not(.eyebrow), .page-hero p:not(.eyebrow) {
  max-width: 660px;
  font-size: clamp(1rem, 2vw, 1.24rem);
  color: var(--muted);
}
.button-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 22px;
  text-decoration: none;
  border: 1px solid currentColor;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
}
.btn-dark { background: var(--ink); color: var(--white); border-color: var(--ink); box-shadow: 0 16px 28px rgba(23, 51, 51, 0.16); }
.btn-light { background: var(--white); color: var(--ink); border-color: rgba(33, 191, 166, 0.28); }

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  padding: clamp(70px, 9vw, 124px) clamp(20px, 6vw, 76px) clamp(48px, 7vw, 84px);
}
.home-intro h2 {
  max-width: 850px;
  font-size: clamp(2.1rem, 5.3vw, 5.2rem);
}
.home-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}
.home-service-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(20px, 6vw, 76px) clamp(66px, 8vw, 110px);
}
.home-service-preview article {
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(33, 191, 166, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 40px rgba(57,105,100,0.08);
}
.home-service-preview article::before {
  content: "";
  display: block;
  width: 42px;
  height: 6px;
  margin-bottom: 22px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--mint), rgba(79,159,216,0.72));
}
.home-service-preview h2 {
  margin-bottom: 18px;
  font-size: clamp(1.5rem, 2.5vw, 2.45rem);
}
.home-service-preview p {
  margin: 0;
  color: var(--muted);
}
.home-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 6vw, 76px);
  background:
    linear-gradient(135deg, rgba(217, 239, 231, 0.86), rgba(233, 245, 255, 0.62)),
    radial-gradient(circle at 88% 18%, rgba(255,237,190,0.54), transparent 28%);
}
.home-cta p {
  max-width: 850px;
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 1.03;
}
.home-cta a {
  font-weight: 900;
  text-transform: uppercase;
}

.split-feature, .story-layout, .form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 90px);
  padding: clamp(74px, 9vw, 130px) clamp(20px, 6vw, 76px);
}
.split-feature h2, .story-layout h2, .cta-strip h2 { font-size: clamp(2rem, 5vw, 5rem); }
.feature-grid, .proof-list { display: grid; gap: 14px; }
.feature-grid article, .proof-list p, .cards-grid article, .contact-panel, .form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(57, 105, 100, 0.08);
}
.feature-grid article { padding: 28px; }
.feature-grid article::before, .cards-grid article::before, .proof-list p::before {
  content: "";
  display: block;
  width: 40px;
  height: 6px;
  margin-bottom: 18px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--mint));
}
.feature-grid strong, .proof-list strong { display: block; margin-bottom: 8px; font-size: 1.05rem; }
.feature-grid span, .proof-list span, .cards-grid p, .story-layout p, .contact-panel p { color: var(--muted); }
.editorial-band {
  padding: clamp(70px, 10vw, 150px) clamp(20px, 6vw, 76px);
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,0.36), transparent 28%),
    linear-gradient(135deg, var(--sage), var(--aqua));
  color: var(--ink);
}
.editorial-band p {
  max-width: 960px;
  margin: 0 0 22px;
  font-family: "Fraunces", serif;
  font-size: clamp(2.3rem, 7vw, 7rem);
  line-height: 1.02;
}
.editorial-band a { font-weight: 900; text-transform: uppercase; }

.page-hero {
  padding: 150px clamp(20px, 6vw, 76px) 76px;
  background:
    radial-gradient(circle at 82% 20%, rgba(79, 159, 216, 0.28), transparent 30%),
    radial-gradient(circle at 16% 34%, rgba(122, 215, 207, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff, #e8f5ff);
  color: var(--ink);
}
.page-hero h1 { max-width: 1020px; font-size: clamp(2.6rem, 6.2vw, 6.2rem); }
.page-hero a { color: var(--ink); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(54px, 7vw, 96px) clamp(20px, 6vw, 76px);
}
.cards-grid article { min-height: 250px; padding: 28px; }
.cards-grid h2 { margin-bottom: 18px; font-size: clamp(1.45rem, 2.4vw, 2.35rem); }
.service-cards article {
  display: grid;
  grid-template-rows: 210px 1fr;
  gap: 22px;
  overflow: hidden;
  padding: 0;
}
.service-cards article::before { display: none; }
.service-cards img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--blue-soft);
}
.service-cards article > div { padding: 0 28px 30px; }
.service-cards h2 { margin-bottom: 12px; }
.review-grid article { min-height: 220px; display: flex; flex-direction: column; justify-content: space-between; }
.review-grid p { font-size: 1.1rem; color: var(--ink); }
.cta-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 58px clamp(20px, 6vw, 76px);
  border-top: 1px solid var(--line);
}
.proof-list p { margin: 0; padding: 24px; }

.form-layout.single { grid-template-columns: minmax(0, 900px); justify-content: center; }
.contact-panel, .form-card { padding: clamp(24px, 4vw, 42px); }
.form-card { display: grid; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: grid; gap: 8px; font-weight: 800; font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.05em; }
input, select, textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
  background: #fbfffd;
  color: var(--ink);
}
textarea { min-height: 130px; resize: vertical; }
.hidden { display: none; }
.form-status { margin: 0; color: var(--muted); font-weight: 700; }
.form-status.success { color: #08795f; }
.form-status.error { color: #b3261e; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 30px clamp(20px, 6vw, 76px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.site-footer p { margin: 0; }

@keyframes vehicleFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes cardFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes orbitPulse { 0%, 100% { transform: scale(0.98); opacity: 0.45; } 50% { transform: scale(1.04); opacity: 0.82; } }
@keyframes pulseTravel { 0%, 100% { transform: translateX(-10px); opacity: 0.45; } 50% { transform: translateX(10px); opacity: 0.86; } }
@keyframes softGlow { 0%, 100% { transform: scale(0.96); opacity: 0.62; } 50% { transform: scale(1.06); opacity: 0.92; } }
@keyframes routeDrift { 0%, 100% { transform: translateY(0) rotate(-3deg); opacity: 0.42; } 50% { transform: translateY(-12px) rotate(3deg); opacity: 0.72; } }
@keyframes roadMove { from { background-position: 0 0; } to { background-position: -76px 0; } }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: 74px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px; }
  .hero, .home-hero { grid-template-columns: 1fr; min-height: 92vh; }
  .motion-scene { min-height: 410px; order: -1; margin-top: 18px; }
  .home-visual { min-height: 420px; order: -1; margin-top: 18px; }
  .care-vehicle { width: 78vw; left: 7%; bottom: 18%; }
  .transport-scene { width: 78vw; left: 7%; bottom: 23%; }
  .split-feature, .story-layout, .form-layout, .cards-grid, .home-intro, .home-service-preview { grid-template-columns: 1fr; }
  .cards-grid article { min-height: 0; }
  .home-service-preview article { min-height: 0; }
  .cta-strip, .home-cta { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 620px) {
  .field-row { grid-template-columns: 1fr; }
  .hero h1, .page-hero h1, .home-hero h1 { font-size: clamp(2.5rem, 13vw, 4.4rem); }
  .home-card { max-width: 190px; }
  .home-card-bottom { right: 4%; }
}
