@import url("https://fonts.googleapis.com/css2?family=Anton&family=Boldonse&family=Instrument+Sans:wdth,wght@75..100,400..700&display=swap");

:root {
  --green: #202c3a;
  --green-dark: #202c3a;
  --yellow: #f2b83f;
  --yellow-rgb: 242, 184, 63;
  --ink: #121615;
  --muted: #5c6663;
  --line: #e8ece9;
  --paper: #ffffff;
  --soft: #f5f7f4;
  --radius: 8px;
  --max: 1200px;
  --header: 94px;
  --heading-line-height: 1.8;
  --subheader-size: 16px;
  --font-body: "Instrument Sans", "Instrument Sans Placeholder", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Boldonse", ui-sans-serif, system-ui, sans-serif;
  font-family: var(--font-body);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 20px;
  left: 50%;
  width: min(calc(100% - 32px), 1100px);
  height: 74.4px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 10px 10px 24px;
  background: rgba(255, 255, 255, .96);
  border: 0;
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  top: 0;
  width: 100%;
  height: 82px;
  padding-left: max(24px, calc((100% - 1100px) / 2 + 24px));
  padding-right: max(10px, calc((100% - 1100px) / 2 + 10px));
  background: rgba(32, 44, 58, .98);
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(18, 24, 32, .22);
}

.site-header.is-scrolled .brand span,
.site-header.is-scrolled .nav-links,
.site-header.is-scrolled .phone {
  color: #fff;
}

.site-header.is-scrolled .phone:hover {
  color: var(--yellow);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
}
.site-header .brand {
  gap: 9px;
  overflow: visible;
  border-radius: 0;
}
.brand img {
  width: 86px;
  height: 68px;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius);
}
.site-header .brand img {
  width: 56px;
  height: 42px;
  object-fit: contain;
}
.brand span {
  display: none;
}
.site-header .brand span {
  display: block;
  width: 94px;
  color: var(--green-dark);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.02;
  white-space: normal;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #333f3b;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}
.nav-links a {
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
  transition: color .22s ease, text-decoration-color .22s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--yellow);
  text-decoration-line: underline;
  text-decoration-color: var(--yellow);
}
.phone:hover { color: var(--green); }

.phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}
.phone-icon {
  position: relative;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
}
.phone-icon svg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 22px;
  height: 22px;
  fill: currentColor;
  transform-origin: 48% 58%;
  animation: phoneHandset 2.4s ease-in-out infinite;
}
.phone-icon i {
  position: absolute;
  top: -2px;
  left: 14px;
  width: 7px;
  height: 7px;
  border: 2px solid currentColor;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  opacity: 0;
  transform: rotate(-9deg) scale(.55);
  transform-origin: left bottom;
  animation: phoneSignal 2.4s ease-out infinite;
}
.phone-icon i:nth-of-type(2) {
  width: 11px;
  height: 11px;
  animation-delay: .16s;
}
.phone-icon i:nth-of-type(3) {
  width: 15px;
  height: 15px;
  animation-delay: .32s;
}
.phone-number { position: relative; }
.phone,
.nav-cta {
  position: relative;
  z-index: 2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 66px;
  padding: 0 27px;
  border: 0;
  border-radius: var(--radius);
  color: white;
  background: var(--green);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .14), 0 12px 25px rgba(32, 44, 58, .3);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); background: #2a3a4c; box-shadow: inset 0 0 0 2px rgba(255,255,255,.16), 0 18px 32px rgba(32, 44, 58, .36); }
.btn span { font-size: 30px; line-height: 0; transform: translateY(-1px); }
.nav-cta {
  min-width: 225.8px;
  min-height: 54.4px;
  padding: 16px;
  gap: 8px;
  border-radius: 12px;
  flex: 0 0 auto;
  color: var(--green-dark);
  background: var(--yellow);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.18), 0 12px 25px rgba(var(--yellow-rgb), .28);
}
.nav-cta:hover {
  color: white;
  background: var(--green-dark);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.14), 0 16px 30px rgba(32,44,58,.32);
}
.menu-toggle { display: none; }

.hero {
  min-height: 760px;
  height: 100vh;
  height: 100svh;
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 140px 0 64px;
  overflow: hidden;
  background: #111;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/wingspan-hero-lobby-with-cleaner-v3.jpg");
  background-size: cover;
  background-position: 50% center;
  transform: none;
  animation: none;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 12, .82) 0%, rgba(5, 10, 12, .62) 39%, rgba(5, 10, 12, .2) 70%, rgba(5, 10, 12, .28) 100%),
    linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.14) 46%, rgba(0,0,0,.52));
}
.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  display: grid;
  grid-template-columns: minmax(0, 660px) minmax(390px, 420px);
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 30px;
}
.hero-copy-column {
  min-width: 0;
  max-width: 660px;
  padding-left: 10px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--yellow);
  font-size: 15px;
  font-weight: 750;
  letter-spacing: .1em;
  line-height: 1.2;
  text-transform: uppercase;
}
.hero-eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  flex: 0 0 34px;
  background: currentColor;
}
.client-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 500px;
  height: 62.9px;
  margin: 0 0 20px;
  color: white;
}
.avatars { display: flex; padding-left: 0; }
.avatars img {
  width: 62.9px;
  height: 62.9px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.74);
  border-radius: 50%;
  margin-left: -32.5px;
  box-shadow: 0 6px 18px rgba(0,0,0,.28);
}
.avatars img:first-child { margin-left: 0; }
.client-proof > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  height: 62.9px;
}
.client-proof p { margin: 0; font-size: 20px; line-height: 38.5px; font-weight: 500; white-space: nowrap; }
.client-proof strong { color: var(--yellow); font-size: 32px; line-height: 38.5px; margin-right: 6px; font-weight: 400; }
.client-proof span { color: rgba(255,255,255,.86); font-size: 16px; line-height: 22.4px; font-weight: 500; white-space: nowrap; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; }
h2, h3 { line-height: var(--heading-line-height) !important; }
.hero h1 {
  width: 100%;
  max-width: 100%;
  margin-bottom: 26px;
  color: #fff;
  font-family: "Anton", var(--font-display);
  font-size: 80px;
  line-height: 1;
  letter-spacing: .01em;
  word-spacing: .09em;
  font-weight: 400;
}
.hero-copy {
  width: 590px;
  max-width: 100%;
  margin-bottom: 0;
  color: rgba(255,255,255,.86);
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
}
.hero-walkthrough-cta {
  width: max-content;
  min-width: 250px;
  min-height: 54px;
  margin-top: 28px;
  padding: 16px 20px;
  gap: 10px;
  color: var(--green-dark);
  background: var(--yellow);
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.18), 0 14px 30px rgba(var(--yellow-rgb), .28);
}
.hero-walkthrough-cta:hover {
  color: white;
  background: var(--green-dark);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.14), 0 18px 34px rgba(32,44,58,.34);
}
.hero-walkthrough-cta span { font-size: 22px; }
.hero-cta {
  min-width: 225.8px;
  min-height: 54.4px;
  padding: 16px;
  gap: 8px;
  border-radius: 12px;
  white-space: nowrap;
  color: var(--green);
  background: var(--yellow);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .18), 0 12px 25px rgba(var(--yellow-rgb), .3);
}
.hero-cta:hover {
  background: var(--yellow);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.18), 0 18px 32px rgba(var(--yellow-rgb), .34);
}
.hero-cta span { font-size: 22px; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.hero-quote-form {
  width: 100%;
  display: grid;
  gap: 10px;
  padding: 28px;
  color: white;
  background: linear-gradient(155deg, rgba(32,44,58,.97), rgba(16,25,35,.95));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
  backdrop-filter: blur(16px);
}
.hero-form-heading { margin-bottom: 8px; }
.hero-form-heading > span {
  display: block;
  margin-bottom: 4px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero-form-heading h2 {
  margin: 0;
  color: white;
  font-family: var(--font-body);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2 !important;
}
.hero-form-heading p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}
.hero-quote-form label { display: block; }
.hero-quote-form input,
.hero-quote-form select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background-color: #f7f8f7;
  border: 1px solid #dfe5e1;
  border-radius: 9px;
  outline: 0;
  font: 500 15px/1.2 var(--font-body);
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.hero-quote-form select {
  appearance: none;
  padding-right: 38px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--green) 50%),
    linear-gradient(135deg, var(--green) 50%, transparent 50%);
  background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}
.hero-quote-form input::placeholder { color: #68716e; opacity: 1; }
.hero-quote-form input:focus,
.hero-quote-form select:focus {
  background-color: white;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(var(--yellow-rgb), .22);
}
.hero-quote-form .btn {
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
  color: var(--green-dark);
  background: var(--yellow);
  border-radius: 9px;
  box-shadow: 0 12px 24px rgba(var(--yellow-rgb), .24);
}
.hero-quote-form .btn:hover {
  color: white;
  background: var(--green-dark);
}

@keyframes phoneHandset {
  0%, 12%, 48%, 100% { transform: rotate(0); }
  18% { transform: rotate(-8deg); }
  24% { transform: rotate(7deg); }
  30% { transform: rotate(-5deg); }
  36% { transform: rotate(3deg); }
}
@keyframes phoneSignal {
  0%, 14%, 52%, 100% { opacity: 0; transform: rotate(-9deg) scale(.55); }
  22% { opacity: .9; }
  42% { opacity: 0; transform: rotate(-9deg) scale(1.08); }
}
.section-pad {
  width: min(calc(100% - 56px), var(--max));
  margin: 0 auto;
  padding: 108px 0;
}
.eyebrow,
.section-kicker {
  --bracket-color: var(--yellow);
  position: relative;
  display: inline-block;
  width: max-content;
  font-size: var(--subheader-size);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow {
  margin-bottom: 18px;
  color: var(--green);
}
.section-kicker {
  margin: 0 0 22px;
  color: var(--ink);
}
.eyebrow::before,
.eyebrow::after,
.section-kicker::before,
.section-kicker::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  pointer-events: none;
}
.eyebrow::before,
.section-kicker::before {
  left: -18px;
  bottom: -7px;
  border-left: 3px solid var(--bracket-color);
  border-bottom: 3px solid var(--bracket-color);
}
.eyebrow::after,
.section-kicker::after {
  right: -18px;
  top: -7px;
  border-right: 3px solid var(--bracket-color);
  border-top: 3px solid var(--bracket-color);
}
h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(30px, 2.4vw, 34px);
  line-height: var(--heading-line-height);
  letter-spacing: 0;
  font-weight: 400;
}
.section-heading { max-width: 790px; margin-bottom: 48px; }
.section-heading.split {
  max-width: none;
  display: block;
}
.section-heading.split p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
}

.logo-strip {
  width: 100%;
  scroll-margin-top: 110px;
  padding: 22px 0;
  overflow: hidden;
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.marquee-track {
  --marquee-gap: 24px;
  --marquee-shift: 12px;
  display: flex;
  align-items: center;
  gap: var(--marquee-gap);
  width: max-content;
  animation: marquee 70s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group {
  display: flex;
  align-items: center;
  gap: var(--marquee-gap);
  flex: 0 0 auto;
}
.marquee span {
  color: var(--green);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(28px, 2.6vw, 34px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.35px;
  white-space: nowrap;
}
.marquee-divider {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 22px;
  color: var(--yellow);
  font-style: normal;
}
.marquee-divider::before {
  content: "✦";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
}

.lead {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: stretch;
}
.lead-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px;
  color: white;
  background: var(--green);
  border-radius: 18px;
}
.lead-copy .section-kicker {
  align-self: flex-start;
  width: max-content;
  color: white;
}
.lead-copy .section-kicker::before,
.lead-copy .section-kicker::after {
  border-color: var(--yellow);
}
.lead-copy h2 {
  color: white;
}
.lead-copy p {
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
}
.lead-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.lead-details a,
.lead-details p {
  display: block;
  margin: 0;
  padding: 18px 20px;
  color: white;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  font-size: 19px;
  font-weight: 850;
}
.lead-details span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.lead-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(18, 22, 21, .08);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.lead-form label {
  display: grid;
  gap: 9px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 16px;
  color: var(--ink);
  background: #f8faf8;
  outline: 0;
  font-size: 17px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.lead-form input,
.lead-form select {
  height: 58px;
}
.lead-form textarea {
  min-height: 132px;
  padding-top: 15px;
  resize: vertical;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  background: white;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(32, 44, 58, .09);
}
.lead-form .btn {
  justify-self: start;
  margin-top: 4px;
}
.choose-media img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.choose-copy > p, .work-copy p, .question-card p, .booking-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
}

.services {
  scroll-margin-top: 110px;
  padding: 86px 0 120px;
  overflow: clip;
  background: white;
}
.services .service-heading.section-pad {
  width: min(calc(100% - 64px), 1440px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 52px;
  margin-bottom: 52px;
  padding: 0;
}
.service-heading-copy {
  max-width: 860px;
}
.service-kicker {
  margin: 0 0 24px 20px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .1em;
}
.service-kicker::before,
.service-kicker::after {
  width: 15px;
  height: 15px;
}
.service-kicker::before {
  left: -20px;
  bottom: -8px;
}
.service-kicker::after {
  right: -20px;
  top: -8px;
}
.service-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 3.3vw, 46px);
  line-height: 1.3 !important;
  letter-spacing: -.03em;
  font-weight: 400;
}
.service-heading-copy p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
}
.service-heading-cta {
  min-width: 210px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  align-self: end;
  margin-bottom: 3px;
  padding: 0 18px;
  color: var(--green-dark);
  background: var(--yellow);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 750;
  box-shadow: 0 10px 24px rgba(var(--yellow-rgb), .2);
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.service-heading-cta span {
  font-size: 22px;
}
.service-heading-cta:hover,
.service-heading-cta:focus-visible {
  color: white;
  background: var(--green-dark);
  transform: translateY(-2px);
}
.service-showcase.section-pad {
  width: min(calc(100% - 64px), 1440px);
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  align-items: start;
  gap: 22px;
  padding: 0;
}
.service-visual {
  position: sticky;
  top: 116px;
  height: clamp(560px, 45vw, 650px);
  align-self: start;
  overflow: hidden;
  padding: 12px;
  background: #fafbfa;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(32,44,58,.09);
  transition: transform .45s cubic-bezier(.2,.7,.2,1),
              border-color .45s ease,
              box-shadow .45s ease;
}
.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  border-radius: 12px;
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .45s ease;
  transform: scale(1);
}
@media (hover: hover) and (pointer: fine) {
  .service-visual:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--yellow-rgb), .5);
    box-shadow: 0 25px 54px rgba(32,44,58,.16);
  }
  .service-visual:hover img {
    transform: scale(1.045);
    filter: saturate(1.04) contrast(1.02);
  }
}
.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  color: var(--green-dark);
  background: var(--yellow);
  border-radius: 11px;
}
.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-row h3 {
  margin: 0 0 8px;
  font-family: "Anton", var(--font-body);
  font-size: clamp(25px, 2vw, 30px);
  line-height: 1.05;
  letter-spacing: -.01em;
  font-weight: 400;
}
.service-row p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
}
.service-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: var(--yellow);
  border: 0;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(var(--yellow-rgb), .24);
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.service-list {
  display: grid;
  gap: 18px;
  min-width: 0;
}
.service-row {
  position: sticky;
  top: 116px;
  display: grid;
  grid-template-columns: minmax(0, 58fr) minmax(270px, 42fr);
  align-items: stretch;
  height: clamp(218px, 17.5vw, 240px);
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(32,44,58,.06);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-row:nth-child(1) { z-index: 1; }
.service-row:nth-child(2) { z-index: 2; }
.service-row:nth-child(3) { z-index: 3; }
.service-row:nth-child(4) { z-index: 4; }
.service-row:nth-child(5) { z-index: 5; }
.service-row:nth-child(6) { z-index: 6; }
.service-row-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 17px;
  padding: 22px 26px;
}
.service-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.service-row > .service-arrow {
  position: absolute;
  right: 13px;
  bottom: 13px;
}
.service-row:hover,
.service-row:focus-visible {
  border-color: rgba(var(--yellow-rgb), .65);
  box-shadow: 0 16px 34px rgba(32,44,58,.1);
}
.service-row:hover img,
.service-row:focus-visible img {
  transform: scale(1.05);
}
.service-row:hover > .service-arrow,
.service-row:focus-visible > .service-arrow {
  color: white;
  background: var(--green-dark);
  transform: translateX(3px);
}
.service-overview-grid article[id] {
  scroll-margin-top: 120px;
}

.serve {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 112px 0 64px;
  overflow: hidden;
  color: white;
  background: linear-gradient(135deg, #202c3a 0%, #192531 100%);
  border-top: 1px solid rgba(var(--yellow-rgb), .2);
}
.facilities-shell {
  width: min(calc(100% - 64px), 1440px);
  margin: 0 auto;
}
.facilities-heading {
  display: grid;
  grid-template-columns: minmax(0, 960px) auto;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 52px;
}
.facilities-heading-copy {
  max-width: 960px;
}
.facilities-kicker {
  margin: 0 0 24px 20px;
  color: rgba(255,255,255,.86);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .1em;
}
.facilities-kicker::before,
.facilities-kicker::after {
  width: 15px;
  height: 15px;
}
.facilities-kicker::before {
  left: -20px;
  bottom: -8px;
}
.facilities-kicker::after {
  right: -20px;
  top: -8px;
}
.facilities-heading h2 {
  margin: 0;
  color: white;
  font-family: var(--font-display);
  font-size: clamp(38px, 3.3vw, 46px);
  line-height: 1.3 !important;
  letter-spacing: -.03em;
  font-weight: 400;
}
.facilities-heading-copy p {
  max-width: 790px;
  margin: 20px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
}
.facilities-heading-cta {
  min-width: 220px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  align-self: end;
  margin-bottom: 3px;
  padding: 0 18px;
  color: var(--green-dark);
  background: var(--yellow);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 750;
  box-shadow: 0 12px 26px rgba(0,0,0,.18);
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.facilities-heading-cta span {
  font-size: 22px;
}
.facilities-heading-cta:hover,
.facilities-heading-cta:focus-visible {
  color: var(--green-dark);
  background: white;
  transform: translateY(-2px);
}
.facility-carousel-viewport {
  overflow: hidden;
  padding: 6px 0 18px;
}
.facility-home-track {
  display: flex;
  gap: 18px;
  transition: transform .58s cubic-bezier(.2,.72,.2,1);
  will-change: transform;
}
.facility-home-card {
  position: relative;
  flex: 0 0 calc((100% - 54px) / 4);
  min-width: 0;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: white;
  background: #111922;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(4,8,12,.22);
  isolation: isolate;
  transition: transform .42s cubic-bezier(.2,.7,.2,1), border-color .35s ease, box-shadow .42s ease;
}
.facility-home-card img,
.facility-home-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.facility-home-card img {
  z-index: -2;
  object-fit: cover;
  object-position: center;
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .45s ease;
}
.facility-home-shade {
  z-index: -1;
  background: linear-gradient(180deg, rgba(12,18,24,.08) 0%, rgba(12,18,24,.18) 42%, rgba(12,18,24,.9) 100%);
}
.facility-home-copy {
  height: 158px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 30px 28px;
}
.facility-home-copy small {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.facility-home-copy strong {
  max-width: 95%;
  color: white;
  font-family: "Anton", var(--font-body);
  font-size: clamp(29px, 2.25vw, 37px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 400;
  text-shadow: 0 3px 18px rgba(0,0,0,.4);
}
.facility-home-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 21px;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.facility-home-card:hover,
.facility-home-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(var(--yellow-rgb), .8);
  box-shadow: 0 27px 54px rgba(4,8,12,.34);
}
.facility-home-card:hover img,
.facility-home-card:focus-visible img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.02);
}
.facility-home-card:hover .facility-home-arrow,
.facility-home-card:focus-visible .facility-home-arrow {
  color: var(--green-dark);
  background: white;
  transform: translateX(3px);
}
.facility-carousel-footer {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.facility-carousel-controls {
  display: flex;
  gap: 10px;
}
.facility-carousel-controls button {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  padding: 0;
  color: white;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: color .24s ease, background .24s ease, border-color .24s ease, transform .24s ease, opacity .24s ease;
}
.facility-carousel-controls button:not(:disabled):hover,
.facility-carousel-controls button:not(:disabled):focus-visible {
  color: var(--green-dark);
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-2px);
}
.facility-carousel-controls button:disabled {
  opacity: .32;
  cursor: default;
}

@media (max-width: 1180px) {
  .serve {
    padding: 96px 0 72px;
  }
  .facilities-shell {
    width: min(calc(100% - 48px), 1040px);
  }
  .facilities-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 42px;
  }
  .facilities-heading-cta {
    justify-self: start;
    margin-bottom: 0;
  }
  .facility-home-card {
    flex-basis: calc((100% - 18px) / 2);
  }
  .facility-home-card {
    min-height: 390px;
  }
}

@media (max-width: 720px) {
  .serve {
    padding: 78px 0 72px;
  }
  .facilities-shell {
    width: min(calc(100% - 36px), 680px);
  }
  .facilities-kicker {
    margin-bottom: 22px;
    font-size: 16px;
  }
  .facilities-heading h2 {
    font-size: clamp(32px, 9.2vw, 38px);
    line-height: 1.35 !important;
  }
  .facilities-heading-copy p {
    margin-top: 17px;
    font-size: 16px;
  }
  .facilities-heading-cta {
    min-height: 52px;
    font-size: 15px;
  }
  .facility-home-track {
    gap: 16px;
  }
  .facility-home-card {
    flex-basis: 100%;
    min-height: 330px;
    border-radius: 15px;
  }
  .facility-home-copy {
    height: 150px;
    padding: 26px 24px;
  }
  .facility-home-copy strong {
    font-size: 31px;
  }
  .facility-carousel-footer {
    margin-top: 14px;
  }
}

@media (max-width: 460px) {
  .facility-home-card {
    min-height: 300px;
  }
  .facility-home-copy strong {
    font-size: 29px;
  }
}

.steps {
  scroll-margin-top: 82px;
  width: min(calc(100% - 64px), 1440px);
  padding-top: 100px;
  padding-bottom: 64px;
}
.steps-heading {
  max-width: 1280px;
  margin: 0 auto 50px;
  text-align: center;
}
.steps-heading .section-kicker {
  margin-bottom: 32px;
  margin-left: 0;
  font-size: 18px;
  font-weight: 650;
}
.steps-heading h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 3.3vw, 46px);
  line-height: 1.3 !important;
  letter-spacing: -.03em;
}
.steps-stage {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--green);
  box-shadow: 0 26px 64px rgba(32, 44, 58, .13);
}
.steps-stage > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.steps-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32,44,58,.02) 0%, rgba(32,44,58,.08) 40%, rgba(20,29,39,.3) 100%);
  pointer-events: none;
}
.step-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: end;
  min-height: 720px;
  padding: 220px 46px 42px;
}
.step-grid article, .feature, .question-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}
.step-grid span {
  color: var(--yellow);
  display: block;
  margin-top: auto;
  font-size: clamp(66px, 5vw, 90px);
  line-height: .82;
  font-weight: 900;
}
.step-grid h3, .feature h3, .work-copy h3, .question-card h3 {
  margin: 0 0 18px;
  font-size: 26px;
  line-height: 1.1;
}
.step-grid h3 {
  font-size: clamp(22px, 1.65vw, 27px);
  line-height: 1.2 !important;
  letter-spacing: -.02em;
}
.step-grid article:nth-child(2) h3 {
  line-height: 1.38 !important;
}
.step-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.step-grid article {
  --step-grow-delay: 120ms;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  padding: 28px 24px 30px;
  background: white;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(18,22,21,.16);
  transform-origin: center bottom;
  transition: translate .3s cubic-bezier(.2,.72,.2,1), scale .3s cubic-bezier(.2,.72,.2,1), box-shadow .3s ease;
  will-change: transform, clip-path, opacity;
}
.step-grid article:hover {
  translate: 0 -8px;
  scale: 1.012;
  box-shadow: inset 0 3px 0 rgba(var(--yellow-rgb), .92), 0 28px 58px rgba(18,22,21,.24);
}
.step-card-content {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.step-grid article:nth-child(2) {
  --step-grow-delay: 360ms;
  min-height: 430px;
}
.step-grid article:nth-child(3) {
  --step-grow-delay: 600ms;
  min-height: 470px;
}
.step-grid article:nth-child(4) {
  --step-grow-delay: 840ms;
  min-height: 510px;
}
.steps-stage:not(.is-visible) .step-grid article {
  opacity: 0;
  clip-path: inset(100% 0 0 0);
  transform: translateY(44px);
}
.steps-stage.is-visible .step-grid article {
  animation: stepCardGrowUp 1250ms cubic-bezier(.2,.78,.2,1) both;
  animation-delay: var(--step-grow-delay);
}

@keyframes stepCardGrowUp {
  0% {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
    transform: translateY(44px);
  }
  68% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(-7px);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

.choose-section {
  scroll-margin-top: 82px;
  padding: 96px 0 112px;
  background: #f6f7f5;
}
.choose {
  width: min(calc(100% - 64px), 1440px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  gap: clamp(52px, 5vw, 84px);
  align-items: stretch;
  padding: clamp(42px, 4vw, 64px);
  background: #fff;
  border: 1px solid #e3e7e4;
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(32, 44, 58, .07);
}
.choose-copy {
  align-self: center;
  min-width: 0;
}
.choose-kicker {
  margin: 0 0 32px 20px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 650;
}
.choose-copy h2 {
  max-width: 700px;
  margin-bottom: 26px;
  font-size: clamp(38px, 3.3vw, 46px);
  line-height: 1.3 !important;
  letter-spacing: -.03em;
}
.choose-copy > p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}
.choose-media {
  position: relative;
  top: auto;
  height: 690px;
  min-width: 0;
  align-self: start;
  overflow: hidden;
  border: 12px solid #f1f3f1;
  border-radius: 16px;
  background: var(--soft);
  box-shadow: 0 12px 32px rgba(32, 44, 58, .09);
}
.choose-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity .42s ease, transform .7s cubic-bezier(.2,.78,.2,1);
}
.choose-media img[data-feature-image="team"] {
  object-position: center 38%;
}
.choose-media img[data-feature-image="eco"] {
  object-position: center;
}
.choose-media img.active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}
.feature-list {
  display: grid;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}
.feature {
  overflow: hidden;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  transition: margin .25s ease, background .25s ease, border-radius .25s ease, box-shadow .25s ease;
}
.feature button {
  width: 100%;
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  align-items: center;
  gap: 20px;
  padding: 0 18px;
  color: inherit;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}
.feature h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(21px, 1.55vw, 24px);
  line-height: 1.25 !important;
  letter-spacing: -.02em;
}
.feature-toggle {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid #dce2de;
  border-radius: 50%;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.feature-toggle::before,
.feature-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  transform: translate(-50%, -50%);
  background: var(--green);
  transition: transform .25s ease, background .25s ease;
}
.feature-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.feature p {
  max-height: 0;
  margin: 0;
  padding: 0 74px 0 18px;
  overflow: hidden;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  opacity: 0;
  transition: max-height .32s ease, padding .32s ease, opacity .22s ease;
}
.feature:not(.active):hover h3 {
  color: #46515d;
}
.feature:not(.active):hover .feature-toggle {
  transform: translateX(3px);
  border-color: var(--yellow);
}
.feature.active {
  margin: 10px 0;
  color: white;
  background: var(--green);
  border-bottom-color: transparent;
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(32, 44, 58, .16);
}
.feature.active button {
  min-height: 78px;
  padding-top: 5px;
}
.feature.active h3 {
  color: white;
}
.feature.active .feature-toggle {
  background: var(--yellow);
  border-color: var(--yellow);
}
.feature.active .feature-toggle::before,
.feature.active .feature-toggle::after {
  background: var(--green);
}
.feature.active .feature-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.feature.active p {
  max-height: 140px;
  padding-bottom: 25px;
  color: rgba(255,255,255,.76);
  opacity: 1;
}

.work-card {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}
.before-after {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.panel {
  display: grid;
  place-items: center;
  color: white;
  font-size: 40px;
  font-weight: 900;
  background-size: cover;
  background-position: center;
}
.before { background-image: linear-gradient(rgba(15,15,15,.52),rgba(15,15,15,.52)), url("https://framerusercontent.com/images/TgVzJWORgKJE2DyDaOoumpgRtE.webp?width=2400&height=1792"); }
.after { background-image: linear-gradient(rgba(32,44,58,.18),rgba(32,44,58,.18)), url("https://framerusercontent.com/images/RFU3noYBBhJ0yx31LCtH138sRU.webp?width=2400&height=1792"); }
.divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: white;
  box-shadow: 0 0 0 1px rgba(0,0,0,.1);
}
.work-copy { padding: 58px; align-self: center; }
.work-copy .btn { margin-top: 18px; }

.testimonials {
  width: min(calc(100% - 64px), 1440px);
  padding: 56px clamp(34px, 4vw, 64px) 48px;
  color: white;
  background: linear-gradient(145deg, #202c3a 0%, #17222e 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(32,44,58,.13);
  overflow: hidden;
}
.testimonials .section-heading {
  max-width: 900px;
  margin-bottom: 52px;
}
.testimonials .eyebrow {
  margin-bottom: 30px;
  color: rgba(255,255,255,.82);
}
.testimonials .section-heading h2 {
  color: white;
}

.testimonial-slider {
  --testimonial-gap: 18px;
  position: relative;
  background: transparent;
}
.testimonial-viewport {
  padding: 10px 0 18px;
  overflow: hidden;
  background: transparent;
}
.testimonial-track {
  display: flex;
  gap: var(--testimonial-gap);
  background: transparent;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
.testimonial-card {
  position: relative;
  flex: 0 0 calc((100% - (var(--testimonial-gap) * 2)) / 3);
  min-width: 0;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  background: white;
  border: 1px solid rgba(var(--yellow-rgb), .22);
  border-top: 4px solid var(--yellow);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(4,11,17,.18);
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.72,.2,1), border-color .3s ease, box-shadow .3s ease;
}
.testimonial-card:hover {
  transform: translateY(-7px);
  border-color: rgba(var(--yellow-rgb), .7);
  box-shadow: 0 28px 58px rgba(4,11,17,.28);
}
.testimonial-quote-mark {
  display: block;
  height: 34px;
  color: var(--yellow);
  font-family: Georgia, serif;
  font-size: 66px;
  line-height: .78;
  font-weight: 700;
}
.testimonial-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.testimonial-rating {
  flex: 0 0 auto;
  color: var(--yellow);
  font-size: 16px;
  letter-spacing: 2px;
}
.testimonial-card p {
  position: relative;
  z-index: 1;
  margin: 30px 0 38px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
}
.testimonial-author {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #e4e8e5;
}
.testimonial-author strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}
.testimonial-author span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.testimonial-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 26px;
}
.testimonial-controls button {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  color: var(--green-dark);
  background: var(--yellow);
  font-size: 24px;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, opacity .18s ease, transform .18s ease;
}
.testimonial-controls button:hover {
  color: var(--green-dark);
  background: white;
  transform: translateY(-2px);
}
.testimonial-controls button:disabled {
  cursor: default;
  opacity: .35;
  transform: none;
}

.faq {
  width: min(calc(100% - 64px), 1440px);
  margin: 72px auto;
  padding: 88px clamp(34px, 4vw, 64px) 96px;
  background: var(--soft);
  border: 1px solid #e5e9e6;
  border-radius: 20px;
}
.faq .section-heading {
  max-width: 900px;
  margin-bottom: 56px;
}
.faq .eyebrow {
  margin-bottom: 30px;
}
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  gap: 28px;
  align-items: start;
}
.accordion {
  display: grid;
  gap: 14px;
}
.faq-entry {
  overflow: hidden;
  background: white;
  border: 1px solid #dfe5e1;
  border-radius: 13px;
  box-shadow: 0 8px 24px rgba(32,44,58,.03);
  transition: border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}
.faq-entry:hover {
  border-color: rgba(var(--yellow-rgb), .62);
  box-shadow: 0 14px 32px rgba(32,44,58,.08);
  transform: translateY(-2px);
}
.faq-entry.open {
  border-color: rgba(var(--yellow-rgb), .76);
  box-shadow: 0 16px 36px rgba(32,44,58,.08);
}
.faq-item {
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 18px;
  gap: 14px;
  align-items: center;
  padding: 0 22px;
  color: var(--ink);
  background: white;
  border: 0;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.faq-item::after {
  content: "";
  width: 10px;
  height: 10px;
  justify-self: end;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .24s ease;
}
.faq-item span {
  color: var(--yellow);
  font-weight: 800;
}
.faq-item:hover,
.faq-item.open {
  color: var(--green-dark);
  background: #fffdfa;
}
.faq-item.open::after {
  transform: rotate(225deg) translate(-1px, -1px);
}
.faq-answer {
  display: none;
  padding: 0 56px 24px 80px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
  font-weight: 400;
  border-top: 1px solid #edf0ee;
}
.faq-answer.open {
  display: block;
  padding-top: 18px;
}
.faq-answer a {
  color: var(--green-dark);
  font-weight: 750;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.faq-answer a:hover {
  color: #b97d00;
}
.question-card {
  min-height: 494px;
  display: grid;
  grid-template-rows: 44% 56%;
  padding: 0;
  text-align: center;
  background: var(--green-dark);
  border: 1px solid rgba(var(--yellow-rgb), .28);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(32,44,58,.13);
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.72,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.question-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--yellow-rgb), .62);
  box-shadow: 0 28px 58px rgba(32,44,58,.22);
}
.question-card-media {
  min-height: 0;
  overflow: hidden;
  background: #d9dfdc;
}
.question-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  transition: transform .55s cubic-bezier(.2,.72,.2,1);
}
.question-card:hover .question-card-media img {
  transform: scale(1.045);
}
.question-card-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 38px 32px;
  color: white;
  background: linear-gradient(145deg, #202c3a 0%, #17222e 100%);
}
.question-card-label {
  display: block;
  margin-bottom: 13px;
  color: var(--yellow);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.question-card h3 {
  max-width: 430px;
  margin: 0 0 14px;
  color: white;
  font-size: clamp(28px, 2.1vw, 34px);
  line-height: 1.38 !important;
  letter-spacing: -.025em;
}
.question-card p {
  max-width: 410px;
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: 16px;
  line-height: 1.5;
}
.question-card .btn {
  min-height: 50px;
  margin-top: 20px;
  color: var(--green-dark);
  background: var(--yellow);
  box-shadow: 0 12px 24px rgba(var(--yellow-rgb), .26);
}
.question-card .btn:hover {
  color: var(--green-dark);
  background: white;
}

.booking {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .72fr);
  gap: clamp(56px, 6vw, 100px);
  align-items: center;
  width: min(calc(100% - 64px), 1440px);
  min-height: 390px;
  margin: 0 auto 82px;
  padding: clamp(56px, 5.5vw, 82px);
  overflow: hidden;
  background: linear-gradient(145deg, #202c3a 0%, #17222e 100%);
  border: 1px solid rgba(var(--yellow-rgb), .24);
  border-radius: 20px;
  box-shadow: 0 24px 62px rgba(32,44,58,.14);
}
.booking h2, .booking p { color: white; }
.booking-copy {
  position: relative;
  z-index: 1;
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
}
.booking .eyebrow {
  --bracket-color: var(--yellow);
  margin-bottom: 30px;
  margin-left: 20px;
  color: var(--yellow);
}
.booking h2 {
  max-width: 760px;
  margin: 0;
}
.booking-action {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: clamp(36px, 4vw, 58px);
  border-left: 1px solid rgba(255,255,255,.16);
}
.booking-action p {
  max-width: 520px;
  margin: 0 0 30px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.6;
}
.booking .btn {
  min-height: 54px;
  padding: 0 20px;
  color: var(--green-dark);
  background: var(--yellow);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
}
.booking .btn:hover {
  color: var(--green-dark);
  background: white;
}

.about-page {
  background: var(--paper);
}
.about-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: #121615;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/wingspan-about-hero-v2.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}
.about-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 13, 17, .82) 0%, rgba(9, 13, 17, .58) 36%, rgba(9, 13, 17, .16) 70%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.52));
}
.about-hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 104px), var(--max));
  margin: 118px auto 0;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: rgba(255,255,255,.9);
  font-size: 18px;
  font-weight: 850;
}
.breadcrumb span[aria-hidden="true"] {
  color: var(--yellow);
  font-size: 28px;
  line-height: 1;
}
.about-hero h1 {
  margin-bottom: 220px;
  color: white;
  font-size: clamp(57.6px, 5.76vw, 94.4px);
  line-height: .95;
  letter-spacing: 0;
  font-weight: 900;
}
.about-hero p {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 550;
}
.about-identity {
  display: block;
  padding-top: 100px;
  padding-bottom: 96px;
}
.about-identity-main {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(400px, .94fr);
  gap: clamp(56px, 6vw, 88px);
  align-items: center;
}
.about-identity-media {
  width: min(100%, 520px);
  margin: 0;
  overflow: hidden;
  justify-self: end;
  background: var(--soft);
  border: 1px solid rgba(32,44,58,.14);
  border-radius: 18px;
  box-shadow: 0 24px 58px rgba(32,44,58,.14);
  transition: transform .42s cubic-bezier(.2,.72,.2,1), box-shadow .42s ease;
}
.about-identity-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  transition: transform .65s cubic-bezier(.2,.72,.2,1);
}
.about-identity-media:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 68px rgba(32,44,58,.2);
}
.about-identity-media:hover img {
  transform: scale(1.05);
}
.about-identity-copy .section-kicker {
  --bracket-color: var(--yellow);
  margin-bottom: 24px;
}
.about-identity-copy h2 {
  max-width: 590px;
  margin: 0 0 28px;
  color: var(--ink);
  font-size: clamp(38px, 3.3vw, 48px);
  line-height: 1.28 !important;
  letter-spacing: -.03em;
}
.about-identity-intro {
  display: grid;
  gap: 15px;
}
.about-identity-intro p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.about-identity-note {
  max-width: 620px;
  margin-top: 30px;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--yellow);
}
.about-identity-note span {
  display: block;
  margin-bottom: 7px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.about-identity-note p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}
.about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 66px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-principles article {
  position: relative;
  z-index: 0;
  min-height: 168px;
  padding: 31px 34px 30px;
  border-right: 1px solid var(--line);
  transition: transform .3s cubic-bezier(.2,.72,.2,1), background .3s ease, box-shadow .3s ease, border-radius .3s ease;
}
.about-principles article:last-child {
  border-right: 0;
}
.about-principles article:hover {
  z-index: 1;
  transform: translateY(-6px) scale(1.01);
  background: white;
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(32,44,58,.12);
}
.about-principles article > span {
  display: block;
  width: 28px;
  height: 3px;
  margin-bottom: 18px;
  background: var(--yellow);
  border-radius: 99px;
  transition: width .3s ease;
}
.about-principles article:hover > span {
  width: 48px;
}
.about-principles h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2 !important;
  transition: color .3s ease;
}
.about-principles article:hover h3 {
  color: var(--green-dark);
}
.about-principles p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.guarantee {
  width: 100%;
  padding: 0;
  color: white;
  background: linear-gradient(145deg, #202c3a 0%, #17222e 100%);
}
.guarantee-inner {
  padding-top: 76px;
  padding-bottom: 80px;
}
.guarantee .section-kicker {
  --bracket-color: var(--yellow);
  color: var(--yellow);
}
.guarantee-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
  gap: clamp(56px, 7vw, 104px);
  align-items: end;
  max-width: none;
  margin-bottom: 38px;
}
.guarantee-heading h2 {
  max-width: 840px;
  margin-bottom: 22px;
  color: white;
  font-size: clamp(38px, 3.3vw, 46px);
  line-height: 1.3 !important;
  letter-spacing: -.03em;
}
.guarantee-heading-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 5px;
}
.guarantee-heading-action p {
  max-width: 440px;
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 17px;
  line-height: 1.55;
}
.guarantee-heading-action .btn {
  min-height: 52px;
  margin-top: 23px;
  padding: 0 20px;
  color: var(--green-dark);
  background: var(--yellow);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
}
.guarantee-heading-action .btn:hover {
  color: var(--green-dark);
  background: white;
}
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 16px;
}
.guarantee-grid article {
  min-height: 235px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(0,0,0,.12);
  transition: transform .32s cubic-bezier(.2,.72,.2,1), background .32s ease, border-color .32s ease, box-shadow .32s ease;
}
.guarantee-grid article:hover {
  transform: translateY(-7px);
  background: rgba(255,255,255,.085);
  border-color: rgba(var(--yellow-rgb), .58);
  box-shadow: 0 24px 52px rgba(0,0,0,.23), 0 0 32px rgba(var(--yellow-rgb), .1);
}
.guarantee-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 19px;
  color: var(--yellow);
  background: rgba(var(--yellow-rgb), .1);
  border: 1px solid rgba(var(--yellow-rgb), .34);
  border-radius: 14px;
  transition: color .32s ease, background .32s ease, border-color .32s ease, transform .32s ease;
}
.guarantee-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.guarantee-grid article:hover .guarantee-icon {
  color: var(--green-dark);
  background: var(--yellow);
  border-color: var(--yellow);
  transform: scale(1.06);
}
.guarantee-grid h3 {
  margin: 0 0 8px;
  color: white;
  font-size: 21px;
  line-height: 1.25 !important;
}
.guarantee-grid p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.5;
}
.team {
  padding-top: 64px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.team-grid article {
  padding: 16px 16px 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(32, 44, 58, .08);
}
.team-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 22px;
}
.team-grid h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.08;
}
.team-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.4;
}

.facilities-page .about-hero-bg {
  background-image: url("assets/wingspan-facilities-hero-v2.jpg");
  background-position: center;
}
.facilities-page .about-hero p {
  max-width: 720px;
}
.facility-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
  align-items: center;
}
.facility-intro-copy .section-kicker {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: .1em;
  font-weight: 600;
  text-transform: uppercase;
}
.facility-intro-copy h2 {
  max-width: 650px;
  margin: 0 0 26px;
  font-family: var(--font-display);
  font-size: clamp(38px, 3.3vw, 46px);
  line-height: 1.3 !important;
  letter-spacing: -.03em;
  font-weight: 400;
}
.facility-intro-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}
.facility-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.facility-check {
  min-width: 0;
  min-height: 145px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(32, 44, 58, .14);
  border-top: 3px solid var(--yellow);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(32, 44, 58, .08);
  transition: transform .3s cubic-bezier(.2,.72,.2,1), border-color .3s ease, box-shadow .3s ease;
}
.facility-check:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--yellow-rgb), .72);
  box-shadow: 0 20px 42px rgba(32, 44, 58, .14);
}
.facility-check-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  color: var(--yellow);
  background: var(--green);
  border-radius: 11px;
  box-shadow: 0 10px 22px rgba(32, 44, 58, .18);
}
.facility-check-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.facility-check div {
  min-width: 0;
}
.facility-check strong {
  display: block;
  margin: 1px 0 7px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 850;
}
.facility-check p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}
.facility-check:nth-child(2) .facility-check-icon,
.facility-check:nth-child(4) .facility-check-icon {
  color: var(--green);
  background: var(--yellow);
}
.facility-intro-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid rgba(32, 44, 58, .14);
  border-radius: 18px;
  box-shadow: 0 24px 56px rgba(32, 44, 58, .14);
}
.facility-intro-media img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center 43%;
  transition: transform .65s cubic-bezier(.2,.72,.2,1);
}
.facility-intro-media:hover img {
  transform: scale(1.045);
}
.facility-types {
  position: relative;
  isolation: isolate;
  padding-top: 104px;
  padding-bottom: 116px;
  background: #eef1ef;
  box-shadow: 0 0 0 100vmax #eef1ef;
  clip-path: inset(0 -100vmax);
}
.facility-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.facility-type-grid article {
  min-width: 0;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(32,44,58,.14);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(32,44,58,.09);
  transition: transform .32s cubic-bezier(.2,.72,.2,1), border-color .32s ease, box-shadow .32s ease;
}
.facility-type-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(var(--yellow-rgb), .74);
  box-shadow: 0 26px 58px rgba(32,44,58,.16);
}
.facility-type-media {
  position: relative;
  height: 270px;
  flex: 0 0 270px;
  overflow: hidden;
  background: var(--soft);
}
.facility-type-media::after {
  content: "";
  position: absolute;
  inset: 58% 0 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(4,11,17,.24));
}
.facility-type-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.72,.2,1), filter .4s ease;
}
.facility-type-grid article:hover .facility-type-media img {
  transform: scale(1.05);
  filter: saturate(1.04) contrast(1.02);
}
.facility-type-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px;
}
.facility-type-category {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 8px 12px;
  color: var(--green-dark);
  background: rgba(var(--yellow-rgb), .2);
  border: 1px solid rgba(var(--yellow-rgb), .52);
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.facility-type-grid h3 {
  min-height: 42px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(26px, 2vw, 32px);
  line-height: 1.1;
}
.facility-type-summary {
  min-height: 82px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.facility-type-priorities {
  padding-top: 19px;
  margin-bottom: 26px;
  border-top: 1px solid var(--line);
}
.facility-type-priorities > strong {
  display: block;
  margin-bottom: 13px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.facility-type-priorities ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.facility-type-priorities li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.36;
  font-weight: 650;
}
.facility-type-priorities li::before {
  content: "";
  position: absolute;
  top: .48em;
  left: 1px;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(var(--yellow-rgb), .16);
}
.facility-type-cta {
  width: 100%;
  min-height: 56px;
  margin-top: auto;
  padding: 0 20px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 15px;
  font-weight: 800;
}
.facility-type-cta:hover {
  color: white;
  background: var(--green);
}
.facility-type-cta span {
  font-size: 25px;
}
.facility-programs {
  padding-top: 62px;
}
.facility-program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.facility-program-grid article {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(32, 44, 58, .08);
}
.facility-program-grid h3 {
  margin: auto 0 16px;
  color: var(--ink);
  font-size: 29px;
  line-height: 1.08;
}
.facility-program-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}
.facility-process {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 34px;
  align-items: stretch;
  padding-top: 62px;
}
.facility-process-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
  color: white;
  background: var(--green);
  border-radius: 18px;
}
.facility-process-copy .section-kicker,
.facility-process-copy h2 {
  color: white;
}
.facility-process-copy .section-kicker {
  --bracket-color: var(--yellow);
  align-self: flex-start;
  width: max-content;
}
.facility-process-copy p {
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.6;
}
.facility-process-copy .btn {
  align-self: flex-start;
  margin-top: 18px;
  color: var(--green);
  background: var(--yellow);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.16), 0 12px 25px rgba(var(--yellow-rgb), .24);
}
.facility-process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.facility-process-list article {
  min-height: 248px;
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.facility-process-list h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.08;
}
.facility-process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.service-page .about-hero-bg {
  background-image: url("assets/wingspan-services-hero-generated.png");
  background-position: center;
}
.service-page .about-hero p {
  max-width: 760px;
}
.service-overview {
  padding-bottom: 62px;
}
.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.service-overview-grid article {
  min-width: 0;
  min-height: 780px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(32, 44, 58, .14);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(32, 44, 58, .09);
  transition: transform .3s cubic-bezier(.2,.72,.2,1), border-color .3s ease, box-shadow .3s ease;
}
.service-overview-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(var(--yellow-rgb), .74);
  box-shadow: 0 26px 58px rgba(32, 44, 58, .16);
}
.service-card-media {
  position: relative;
  height: 250px;
  flex: 0 0 250px;
  overflow: hidden;
  background: var(--soft);
}
.service-card-media::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(4, 11, 17, .36));
}
.service-overview-grid .service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.72,.2,1);
}
.service-overview-grid article:hover .service-card-media img {
  transform: scale(1.045);
}
.service-card-type {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 20px;
  padding: 9px 13px;
  color: var(--ink);
  background: var(--yellow);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(4, 11, 17, .2);
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.service-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px;
}
.service-overview-grid h3 {
  min-height: 64px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(23px, 1.65vw, 30px);
  line-height: 1.08;
}
.service-card-summary {
  min-height: 102px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}
.service-card-details {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.service-card-details > strong {
  display: block;
  margin-bottom: 13px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.service-card-details ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-card-details li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.36;
  font-weight: 600;
}
.service-card-details li::before {
  content: "";
  position: absolute;
  top: .48em;
  left: 1px;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(var(--yellow-rgb), .16);
}
.service-card-fit {
  min-height: 62px;
  margin: 22px 0 20px;
  padding-top: 17px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.42;
}
.service-card-fit span {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.service-card-cta {
  width: 100%;
  min-height: 56px;
  margin-top: auto;
  padding: 0 20px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 15px;
  font-weight: 800;
}
.service-card-cta:hover {
  color: white;
  background: var(--green);
}
.service-card-cta span {
  font-size: 25px;
}
.service-feature {
  padding-top: 46px;
}
.service-feature-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 0;
  overflow: hidden;
  background: var(--green);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(32, 44, 58, .14);
}
.service-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px;
  color: white;
}
.service-feature-copy .section-kicker,
.service-feature-copy h2 {
  color: white;
}
.service-feature-copy .section-kicker {
  align-self: flex-start;
  width: max-content;
}
.service-feature-copy .section-kicker::before,
.service-feature-copy .section-kicker::after {
  border-color: var(--yellow);
}
.service-feature-copy p {
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.62;
}
.service-feature-copy .btn {
  align-self: flex-start;
  margin-top: 18px;
  color: var(--green);
  background: var(--yellow);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.18), 0 12px 25px rgba(var(--yellow-rgb), .24);
}
.service-feature-media {
  position: relative;
  min-height: 620px;
}
.service-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}
.service-feature-media article {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: min(270px, calc(100% - 60px));
  padding: 26px;
  color: white;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0,0,0,.24);
}
.service-feature-media strong {
  display: block;
  color: var(--yellow);
  font-size: 72px;
  line-height: .9;
  font-weight: 900;
}
.service-feature-media span {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,.86);
  font-size: 19px;
  line-height: 1.22;
  font-weight: 850;
}
.service-process {
  padding-top: 62px;
}
.service-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-process-grid article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.service-process-grid h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 29px;
  line-height: 1.08;
}
.service-process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.contact-page .about-hero-bg {
  background-image: url("assets/wingspan-contact-hero-generated.jpg");
  background-position: 70% center;
}
.contact-page .about-hero p {
  max-width: 740px;
}
.contact-main {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 42px;
  align-items: stretch;
}
.contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px;
  color: white;
  background: var(--green);
  border-radius: 18px;
}
.contact-panel .section-kicker,
.contact-panel h2 {
  color: white;
}
.contact-panel .section-kicker {
  align-self: flex-start;
  width: max-content;
}
.contact-panel .section-kicker::before,
.contact-panel .section-kicker::after {
  border-color: var(--yellow);
}
.contact-panel > p {
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.6;
}
.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.contact-methods a,
.contact-methods article {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 20px;
  color: white;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
}
.contact-methods span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.contact-methods strong {
  font-size: 20px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.contact-methods small {
  color: rgba(255,255,255,.74);
  font-size: 15px;
  line-height: 1.45;
}
.contact-form {
  align-self: center;
  align-content: start;
  gap: 14px;
  padding: 38px;
  font-family: var(--font-body);
}
.contact-form .form-row {
  grid-template-columns: 1fr;
  gap: 10px;
}
.contact-form-heading {
  margin-bottom: 10px;
}
.contact-form-heading h2 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(25px, 2.3vw, 34px);
  line-height: 1.25 !important;
}
.contact-form-heading p {
  max-width: 560px;
  color: var(--muted);
  font-size: 15px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  height: 56px;
  padding: 0 16px;
  color: var(--ink);
  background: #f7f8f7;
  border: 1px solid #dfe5e1;
  border-radius: 9px;
  font: 500 15px/1.2 var(--font-body);
}
.contact-form select {
  appearance: none;
  padding-right: 40px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--green) 50%),
    linear-gradient(135deg, var(--green) 50%, transparent 50%);
  background-position: calc(100% - 19px) 24px, calc(100% - 14px) 24px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}
.contact-form input::placeholder {
  color: #68716e;
  opacity: 1;
}
.contact-form .btn {
  width: 100%;
  justify-self: stretch;
  margin-top: 8px;
  color: var(--green);
  background: var(--yellow);
}
.contact-form .btn:hover,
.contact-form .btn:focus-visible {
  color: white;
  background: var(--green);
}
.contact-support {
  position: relative;
  isolation: isolate;
  margin-top: 20px;
  padding-top: 92px;
  padding-bottom: 108px;
  background: #f2f4f2;
  box-shadow: 0 0 0 100vmax #f2f4f2;
  clip-path: inset(0 -100vmax);
}
.contact-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.contact-steps article {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(32,44,58,.1);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(32,44,58,.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.contact-steps article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--yellow);
}
.contact-steps article:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--yellow-rgb), .55);
  box-shadow: 0 24px 50px rgba(32,44,58,.14);
}
.contact-step-number {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  color: var(--green);
  background: rgba(var(--yellow-rgb), .22);
  border: 1px solid rgba(var(--yellow-rgb), .44);
  border-radius: 13px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .04em;
}
.contact-steps h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(24px, 2vw, 31px);
  line-height: 1.14;
}
.contact-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.contact-steps small {
  margin-top: auto;
  padding-top: 24px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Reference-site typography scale. */
.about-hero h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(36.8px, 3.56vw, 51.2px);
  line-height: 1.22;
  font-weight: 400;
}

.footer {
  width: 100%;
  margin: 0;
  padding: 0;
  color: white;
  background: linear-gradient(145deg, #202c3a 0%, #17222e 100%);
  border-radius: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.4fr) minmax(130px, .52fr) minmax(160px, .62fr) minmax(250px, .9fr);
  gap: clamp(42px, 5vw, 82px);
  width: min(calc(100% - 96px), 1340px);
  margin: 0 auto;
  padding: 72px 0 54px;
}
.footer-brand {
  display: flex !important;
  align-items: center;
  gap: 14px;
  width: max-content;
  max-width: 100%;
  margin: 0 0 18px !important;
  color: white !important;
}
.footer-brand img {
  width: 76px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}
.footer-brand span {
  max-width: 170px;
  font-size: 27px;
  line-height: .92;
  font-weight: 850;
  letter-spacing: -.04em;
}
.footer-tagline {
  margin: 0 0 17px !important;
  color: var(--yellow) !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  font-weight: 750 !important;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-blurb {
  max-width: 390px;
  margin: 0 !important;
  color: rgba(255,255,255,.68);
  font-size: 16px !important;
  line-height: 1.65 !important;
  font-weight: 500;
}
.footer h3 {
  margin-bottom: 22px;
  color: white;
  font-size: 16px;
}
.footer h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 9px;
  background: var(--yellow);
  border-radius: 999px;
}
.footer a {
  display: block;
  margin-bottom: 14px;
  color: rgba(255,255,255,.76);
  font-weight: 500;
  transition: color .18s ease, transform .18s ease;
}
.footer a:not(.footer-brand):hover { color: var(--yellow); transform: translateX(3px); }
.footer-contact a,
.footer-contact address {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 13px 0;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-style: normal;
}
.footer-contact a:first-of-type { padding-top: 0; }
.footer-contact address { border-bottom: 0; }
.footer-contact span {
  color: rgba(255,255,255,.52);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-contact strong {
  color: white;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 650;
  overflow-wrap: anywhere;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 96px), 1340px);
  margin: 0 auto;
  padding: 24px 0 28px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.footer small {
  color: rgba(255,255,255,.56);
  font-size: 13px;
  font-weight: 500;
}
.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.46);
  font-size: 13px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.site-header[data-reveal] {
  transform: translateX(-50%) translateY(24px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1),
              transform .7s cubic-bezier(.2,.7,.2,1),
              top .3s ease,
              width .3s ease,
              height .3s ease,
              padding .3s ease,
              background .3s ease,
              border-radius .3s ease,
              box-shadow .3s ease;
}
.site-header[data-reveal].is-visible { transform: translateX(-50%) translateY(0); }

@keyframes heroScale {
  from { transform: scale(1.09); filter: saturate(.88); }
  to { transform: scale(1.025); filter: saturate(1); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - var(--marquee-shift))); }
}

@media (max-width: 1320px) {
  .site-header { gap: 16px; }
}

@media (max-width: 1180px) {
  :root { --header: 70px; }
  .site-header {
    top: 15px;
    display: grid;
    grid-template-columns: auto auto;
    width: min(calc(100% - 32px), 1100px);
    height: 70px;
    padding: 14px 24px;
  }
  .site-header.is-scrolled {
    top: 0;
    width: 100%;
    height: 70px;
    padding: 14px 24px;
  }
  .brand {
    flex: initial;
  }
  .brand { font-size: 26px; }
  .site-header .brand img { width: 56px; height: 42px; }
  .menu-toggle {
    justify-self: end;
    display: grid;
    gap: 7px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 0;
    border-radius: var(--radius);
    background: #eef5f0;
  }
  .menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); }
  .site-header.is-scrolled .menu-toggle { background: var(--yellow); }
  .nav-links, .phone, .nav-cta {
    display: none;
  }
  .site-header.menu-open .nav-links {
    position: absolute;
    display: grid;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    transform: none;
    gap: 0;
    padding: 12px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 18px 38px rgba(0,0,0,.18);
  }
  .site-header.is-scrolled.menu-open .nav-links { color: var(--green-dark); }
  .site-header.menu-open .nav-links a { padding: 15px; border-bottom: 1px solid var(--line); }
  .site-header.menu-open .nav-links a:last-child { border-bottom: 0; }
  .hero { min-height: 760px; }
  .hero-bg { background-position: 50% center; }
  .hero-content { width: min(100%, 1180px); margin: 0 auto; }
  .lead, .service-layout, .choose, .work-card, .faq-layout, .booking, .facility-intro, .facility-process, .service-feature-card, .contact-main { grid-template-columns: 1fr; }
  .booking {
    gap: 38px;
    text-align: center;
  }
  .booking-copy { margin: 0 auto; }
  .booking-avatars img { width: 128px; height: 128px; }
  .about-hero {
    min-height: 680px;
  }
  .about-hero-bg {
    background-position: 64% center;
  }
  .about-hero-content {
    width: min(calc(100% - 40px), 760px);
    margin-top: 92px;
  }
  .about-hero h1 {
    margin-bottom: 150px;
  }
  .about-proof {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .guarantee-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-proof-image,
  .about-proof-image img {
    min-height: 520px;
  }
  .about-proof-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-proof-stats article {
    min-height: 190px;
  }
  .about-proof-stats article:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
  .about-proof-stats article:nth-child(3) {
    border-bottom: 0;
  }
  .about-proof-stats article:nth-child(odd) {
    border-right: 1px solid var(--line);
  }
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .facility-intro {
    gap: 30px;
  }
  .facility-intro-media {
    min-height: 520px;
  }
  .facility-intro-media img {
    height: 520px;
  }
  .facility-type-grid,
  .facility-program-grid,
  .service-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-feature-media {
    min-height: 520px;
  }
  .service-feature-media img {
    min-height: 520px;
  }
  .service-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .facility-process-copy .btn {
    align-self: flex-start;
  }
  .contact-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .services {
    padding: 88px 0 96px;
  }
  .service-card,
  .service-card:nth-child(n) {
    flex-basis: clamp(470px, 62vw, 610px);
    grid-template-columns: minmax(0, 1fr) 280px;
    height: 340px;
    min-height: 340px;
  }
  .service-card img {
    min-height: 340px;
  }
  .steps-stage { min-height: 0; }
  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
    padding: 180px 28px 38px;
  }
  .step-grid article,
  .step-grid article:nth-child(n) {
    min-height: 330px;
    transform: none;
  }
  .step-grid span { margin-top: 54px; }
  .serve-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .choose-media { position: relative; top: auto; height: 540px; }
  .testimonial-card {
    flex-basis: calc((100% - var(--testimonial-gap)) / 2);
  }
  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px;
    padding: 46px 36px 26px;
  }
  .footer > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .hero {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
  }
  .hero-content {
    align-self: stretch;
    grid-template-columns: minmax(0, 800px);
    align-content: center;
    justify-content: start;
    gap: 36px;
  }
  .hero-quote-form {
    width: min(100%, 520px);
    justify-self: center;
  }
}

@media (max-width: 720px) {
  .section-pad, .footer, .booking { width: min(calc(100% - 28px), var(--max)); }
  .section-pad { padding: 72px 0; }
  .logo-strip { padding: 18px 0; }
  .marquee-track {
    --marquee-gap: 24px;
    --marquee-shift: 12px;
    animation-duration: 62s;
  }
  .marquee span { font-size: 26px; }
  .marquee-divider { width: 16px; height: 20px; flex-basis: 16px; }
  .marquee-divider::before { font-size: 14px; }
  .site-header.menu-open .nav-links {
    width: 100%;
    justify-self: stretch;
  }
  .footer {
    width: 100%;
    padding: 0;
  }
  .hero {
    min-height: 760px;
    height: auto;
  }
  .hero-bg { background-position: 50% center; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5,10,12,.86), rgba(5,10,12,.55)),
      linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.66));
  }
  .hero-content { gap: 32px; padding: 0 20px; }
  .hero-copy-column { padding-left: 0; }
  .hero-desktop-break { display: none; }
  .hero-quote-form {
    width: 100%;
    padding: 20px;
    border-radius: 14px;
  }
  .hero-form-heading h2 { font-size: 21px; }
  .hero-eyebrow {
    gap: 10px;
    margin-bottom: 18px;
    font-size: 13px;
    letter-spacing: .08em;
  }
  .hero-eyebrow::before { width: 28px; flex-basis: 28px; }
  .client-proof {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
    width: 100%;
    height: 107.3px;
    margin-bottom: 20px;
  }
  .avatars img { width: 32px; height: 32px; margin-left: -9.7px; }
  .client-proof > div:last-child { height: 61.3px; }
  .client-proof p { font-size: 20px; line-height: 38.5px; }
  .client-proof strong { display: inline; font-size: 32px; line-height: 38.5px; }
  .client-proof span { font-size: 16px; line-height: 20.8px; }
  .hero h1 { margin-bottom: 18px; font-size: 34px; line-height: 1.14; }
  .hero-copy { font-size: 18px; line-height: 25.2px; }
  .hero-cta { min-height: 52.8px; }
  .about-hero {
    min-height: 720px;
  }
  .about-hero-shade {
    background:
      linear-gradient(90deg, rgba(9,13,17,.88), rgba(9,13,17,.5)),
      linear-gradient(180deg, rgba(0,0,0,.14), rgba(0,0,0,.64));
  }
  .about-hero-content {
    width: min(calc(100% - 28px), var(--max));
    margin-top: 140px;
  }
  .breadcrumb {
    margin-bottom: 22px;
    font-size: 16px;
  }
  .about-hero h1 {
    margin-bottom: 170px;
    font-size: clamp(32px, 9vw, 36px);
  }
  .about-hero p {
    font-size: 19px;
    line-height: 1.35;
  }
  .mission-vision { padding-top: 28px; padding-bottom: 12px; }
  .mission-card { grid-template-columns: 1fr; }
  .about-story { padding-top: 54px; }
  .about-story-sections article { padding: 26px 24px; border-radius: 14px; }
  .about-story-sections h3 { font-size: 22px; }
  .about-proof {
    padding-top: 0;
  }
  .about-proof-image,
  .about-proof-image img {
    min-height: 360px;
    border-radius: 14px;
  }
  .about-proof-stats {
    grid-template-columns: 1fr;
    border-radius: 14px;
  }
  .about-proof-stats article {
    min-height: 150px;
    border-right: 0;
  }
  .about-proof-stats article:nth-child(odd) {
    border-right: 0;
  }
  .about-proof-stats article:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
  .about-proof-stats article:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }
  .about-proof-stats strong {
    font-size: 56px;
  }
  .about-proof-stats span {
    margin-top: 14px;
    font-size: 19px;
  }
  .guarantee { padding-top: 48px; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .guarantee-grid article { min-height: 0; padding: 26px 24px; border-radius: 14px; }
  .mission-card article {
    min-height: 0;
    padding: 26px 24px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .btn { min-height: 58px; width: 100%; font-size: 18px; }
  .hero-cta {
    width: 225.8px;
    max-width: 100%;
    min-height: 52.8px;
    font-size: 16px;
  }
  .section-heading.split { display: block; }
  .lead { gap: 18px; }
  .lead-copy, .lead-form, .contact-panel { padding: 24px; border-radius: 14px; }
  .lead-details a, .lead-details p { font-size: 16px; overflow-wrap: anywhere; }
  .form-row { grid-template-columns: 1fr; }
  .lead-form .btn { width: 100%; }
  .services {
    padding: 72px 0 78px;
  }
  .service-slider {
    padding: 10px 0 24px;
  }
  .service-card,
  .service-card:nth-child(n) {
    flex: 0 0 min(86vw, 390px);
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }
  .service-info { padding: 36px 30px; }
  .service-icon { width: 46px; height: 46px; margin-bottom: 18px; font-size: 22px; }
  .service-card h3 { font-size: 27px; }
  .service-card p { font-size: 18px; }
  .service-card img { height: 240px; min-height: 0; }
  .serve-grid, .step-grid, .footer, .facility-checks, .facility-type-grid, .facility-program-grid, .facility-process-list, .service-overview-grid, .service-process-grid, .contact-steps { grid-template-columns: 1fr; }
  .facility-intro-copy p {
    font-size: 18px;
  }
  .facility-intro-media {
    min-height: 0;
  }
  .facility-intro-media img {
    height: 360px;
    border-radius: 14px;
  }
  .facility-intro-media article {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
  }
  .facility-intro-media strong {
    font-size: 58px;
  }
  .facility-type-grid article {
    min-height: 270px;
  }
  .facility-program-grid article,
  .facility-process-list article {
    min-height: 0;
    padding: 24px;
  }
  .facility-program-grid h3 {
    margin-top: 0;
    font-size: 27px;
  }
  .facility-process-copy {
    padding: 28px 24px;
    border-radius: 14px;
  }
  .facility-process-list h3 {
    margin-top: 0;
    font-size: 27px;
  }
  .service-overview-grid article {
    min-height: 0;
    border-radius: 14px;
  }
  .service-card-media {
    height: 230px;
    flex-basis: 230px;
  }
  .service-card-body {
    padding: 24px;
  }
  .service-overview-grid h3 {
    min-height: 0;
    margin-top: 0;
    font-size: 27px;
  }
  .service-card-summary,
  .service-card-fit {
    min-height: 0;
  }
  .service-feature-copy {
    padding: 28px 24px;
  }
  .service-feature-copy .btn {
    align-self: stretch;
  }
  .service-feature-media {
    min-height: 0;
  }
  .service-feature-media img {
    min-height: 360px;
  }
  .service-feature-media article {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 0;
    border-radius: 0;
  }
  .service-process-grid article {
    min-height: 0;
    padding: 24px;
  }
  .service-process-grid h3 {
    margin-top: 0;
    font-size: 27px;
  }
  .contact-steps article {
    min-height: 0;
    padding: 24px;
  }
  .contact-steps h3 {
    margin-top: 0;
    font-size: 20px;
  }
  .testimonial-card {
    flex-basis: 100%;
    min-height: 360px;
    padding: 28px;
  }
  .serve-grid article { min-height: 240px; padding: 24px; }
  .serve-grid h3 { margin: 0; font-size: 27px; }
  .steps { width: min(calc(100% - 28px), var(--max)); }
  .steps-stage > img { position: absolute; }
  .step-grid { padding: 120px 16px 22px; }
  .step-grid article { min-height: 260px; padding: 24px; }
  .step-grid span { margin-top: 42px; font-size: 64px; }
  .choose-media { min-height: 0; height: 360px; }
  .before-after { min-height: 360px; }
  .panel { font-size: 28px; }
  .work-copy { padding: 28px; }
  .booking { padding: 34px 22px; }
  .booking .btn { width: auto; }
  .booking-avatars img {
    width: 88px;
    height: 88px;
    margin-left: -16px;
    border-width: 3px;
  }
  .booking-stars { font-size: 26px; letter-spacing: 3px; }
  .booking-proof strong { font-size: 17px; }
  .faq-item { min-height: 74px; gap: 14px; font-size: 19px; }
  .faq-answer { padding-left: 0; }
}

@media (max-width: 980px) {
  .services .service-heading.section-pad {
    width: min(calc(100% - 36px), 760px);
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 38px;
  }
  .service-heading-cta {
    justify-self: start;
    margin-bottom: 0;
  }
  .service-heading-copy p {
    max-width: 650px;
  }
  .service-showcase.section-pad {
    width: min(calc(100% - 36px), 760px);
    grid-template-columns: 1fr;
  }
  .service-visual {
    position: relative;
    top: auto;
    height: 500px;
  }
  .service-list {
    gap: 18px;
  }
  .service-row {
    position: relative;
    top: auto;
    grid-template-columns: minmax(0, 58fr) minmax(280px, 42fr);
    height: 230px;
  }
}

@media (max-width: 720px) {
  .services {
    padding: 68px 0 82px;
  }
  .services .service-heading.section-pad,
  .service-showcase.section-pad {
    width: min(calc(100% - 28px), var(--max));
  }
  .services .service-heading.section-pad {
    margin-bottom: 38px;
  }
  .service-kicker {
    margin-bottom: 22px;
    font-size: 16px;
  }
  .service-heading h2 {
    font-size: clamp(32px, 9.2vw, 38px);
    line-height: 1.35 !important;
  }
  .service-heading-copy p {
    margin-top: 17px;
    font-size: 16px;
  }
  .service-heading-cta {
    min-height: 52px;
    font-size: 15px;
  }
  .service-visual {
    height: 300px;
    padding: 9px;
    border-radius: 15px;
  }
  .service-row {
    grid-template-columns: 1fr;
    height: auto;
    border-radius: 14px;
  }
  .service-row-copy {
    gap: 18px;
    padding: 24px;
  }
  .service-row .service-icon {
    width: 48px;
    height: 48px;
    margin: 0;
    flex-basis: 48px;
  }
  .service-row h3 {
    font-size: 28px;
  }
  .service-row p {
    font-size: 15px;
    line-height: 1.4;
  }
  .service-row img {
    order: -1;
    height: 220px;
  }
  .service-row > .service-arrow {
    top: 160px;
    right: 16px;
    bottom: auto;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 460px) {
  .service-heading h2,
  .facilities-heading h2,
  .choose-copy h2,
  .steps-heading h2 {
    font-size: 32px;
  }
  .service-visual {
    height: 260px;
  }
  .service-row img {
    height: 205px;
  }
  .service-row > .service-arrow {
    top: 147px;
  }
  .service-row h3 {
    font-size: 26px;
  }
}

@media (max-width: 1180px) {
  .choose-section {
    padding: 88px 0 96px;
  }
  .choose {
    width: min(calc(100% - 40px), 900px);
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 44px;
  }
  .choose-copy h2 {
    max-width: 760px;
  }
  .choose-copy > p {
    max-width: 760px;
  }
  .choose-media {
    position: relative;
    top: auto;
    height: 560px;
  }
}

@media (max-width: 720px) {
  .choose-section {
    padding: 64px 0 72px;
  }
  .choose {
    width: min(calc(100% - 28px), 620px);
    gap: 32px;
    padding: 28px 20px 20px;
    border-radius: 15px;
  }
  .choose-kicker {
    margin-bottom: 21px;
    font-size: 15px;
  }
  .choose-copy h2 {
    margin-bottom: 20px;
    font-size: clamp(32px, 9.2vw, 38px);
    line-height: 1.35 !important;
  }
  .choose-copy > p {
    font-size: 16px;
    line-height: 1.55;
  }
  .feature-list {
    margin-top: 28px;
  }
  .feature button {
    min-height: 72px;
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 12px;
    padding: 0 12px;
  }
  .feature h3 {
    font-size: 20px;
  }
  .feature-toggle {
    width: 32px;
    height: 32px;
  }
  .feature p {
    padding-right: 54px;
    padding-left: 12px;
    font-size: 15px;
  }
  .feature.active {
    margin: 8px 0;
    border-radius: 10px;
  }
  .feature.active button {
    min-height: 70px;
  }
  .feature.active p {
    padding-bottom: 21px;
  }
  .choose-media {
    height: 390px;
    border-width: 8px;
    border-radius: 12px;
  }
  .steps {
    padding-top: 72px;
    padding-bottom: 60px;
  }
  .testimonials {
    width: min(calc(100% - 28px), 620px);
    padding: 42px 20px 32px;
    border-radius: 15px;
  }
  .testimonials .section-heading {
    margin-bottom: 36px;
  }
  .testimonials .eyebrow {
    margin-bottom: 24px;
  }
  .testimonial-card {
    min-height: 340px;
    padding: 26px 24px;
  }
  .testimonial-card-top {
    align-items: center;
    flex-direction: row;
  }
  .testimonial-card p {
    margin: 26px 0 32px;
    font-size: 16px;
  }
  .steps-heading {
    max-width: 100%;
    margin-bottom: 34px;
  }
  .steps-heading .section-kicker {
    font-size: 15px;
  }
  .steps-heading h2 {
    font-size: clamp(32px, 9.2vw, 38px);
    line-height: 1.35 !important;
  }
  .steps-stage {
    min-height: 0;
    border-radius: 14px;
    background: var(--green);
  }
  .steps-stage > img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center top;
  }
  .steps-stage::after {
    bottom: auto;
    height: 340px;
    background: linear-gradient(180deg, rgba(32,44,58,.02), rgba(32,44,58,.72));
  }
  .step-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 220px 14px 18px;
  }
  .step-grid article,
  .step-grid article:nth-child(n) {
    min-height: 260px;
    padding: 22px;
    border-radius: 12px;
  }
  .step-grid h3 {
    font-size: 23px;
  }
  .step-grid p {
    font-size: 15px;
  }
  .step-grid span {
    margin-top: 32px;
    font-size: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .facility-home-track {
    transition: none;
  }
  .facility-home-card,
  .facility-home-card img,
  .facility-home-arrow {
    transition: none;
  }
  .facility-home-card:hover,
  .facility-home-card:focus-visible,
  .facility-home-card:hover img,
  .facility-home-card:focus-visible img {
    transform: none;
  }
  .service-visual,
  .service-visual img {
    transition: none;
  }
  .service-visual:hover,
  .service-visual:hover img {
    transform: none;
  }
  .marquee {
    overflow-x: auto;
    mask-image: none;
    scrollbar-width: none;
  }
  .marquee::-webkit-scrollbar { display: none; }
  .marquee-track { animation: none; transform: none; }
  .marquee-group[aria-hidden="true"] { display: none; }
  .phone-icon svg,
  .phone-icon i {
    animation: none;
  }
  .steps-stage:not(.is-visible) .step-grid article,
  .steps-stage.is-visible .step-grid article {
    opacity: 1;
    clip-path: none;
    transform: none;
    animation: none;
    will-change: auto;
  }
  .step-grid article,
  .step-grid article:hover {
    translate: none;
    scale: none;
    transition: none;
  }
  .service-row img,
  .service-row .service-arrow {
    transition: none;
  }
  .choose-media img,
  .testimonial-card,
  .testimonial-card:hover,
  .question-card,
  .question-card:hover,
  .question-card-media img,
  .feature,
  .feature p,
  .feature-toggle,
  .feature-toggle::before,
  .feature-toggle::after {
    transition: none;
  }
  .testimonial-card,
  .testimonial-card:hover {
    transform: none;
  }
  .question-card,
  .question-card:hover,
  .question-card:hover .question-card-media img {
    transform: none;
  }
}

/* Unified homepage section typography. */
.service-heading h2,
.facilities-heading h2,
.choose-copy h2,
.steps-heading h2,
.testimonials .section-heading h2,
.faq .section-heading h2,
.booking h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 3.3vw, 46px);
  line-height: 1.3 !important;
  letter-spacing: -.03em;
  font-weight: 400;
}

.service-kicker,
.facilities-kicker,
.choose-kicker,
.steps-heading .section-kicker,
.testimonials .eyebrow,
.faq .eyebrow,
.booking .eyebrow {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: .1em;
  font-weight: 600;
  text-transform: uppercase;
}

.service-kicker::before,
.service-kicker::after,
.facilities-kicker::before,
.facilities-kicker::after,
.choose-kicker::before,
.choose-kicker::after,
.steps-heading .section-kicker::before,
.steps-heading .section-kicker::after,
.testimonials .eyebrow::before,
.testimonials .eyebrow::after,
.faq .eyebrow::before,
.faq .eyebrow::after,
.booking .eyebrow::before,
.booking .eyebrow::after {
  width: 15px;
  height: 15px;
}

.service-kicker::before,
.facilities-kicker::before,
.choose-kicker::before,
.steps-heading .section-kicker::before,
.testimonials .eyebrow::before,
.faq .eyebrow::before,
.booking .eyebrow::before {
  left: -20px;
  bottom: -8px;
}

.service-kicker::after,
.facilities-kicker::after,
.choose-kicker::after,
.steps-heading .section-kicker::after,
.testimonials .eyebrow::after,
.faq .eyebrow::after,
.booking .eyebrow::after {
  right: -20px;
  top: -8px;
}

@media (max-width: 720px) {
  .service-heading h2,
  .facilities-heading h2,
  .choose-copy h2,
  .steps-heading h2,
  .testimonials .section-heading h2,
  .faq .section-heading h2,
  .booking h2 {
    font-size: clamp(32px, 9.2vw, 38px);
    line-height: 1.35 !important;
  }

  .service-kicker,
  .facilities-kicker,
  .choose-kicker,
  .steps-heading .section-kicker,
  .testimonials .eyebrow,
  .faq .eyebrow,
  .booking .eyebrow {
    font-size: 16px;
  }
}

@media (max-width: 460px) {
  .service-heading h2,
  .facilities-heading h2,
  .choose-copy h2,
  .steps-heading h2,
  .testimonials .section-heading h2,
  .faq .section-heading h2,
  .booking h2 {
    font-size: 32px;
  }
}

@media (max-width: 1180px) {
  .faq {
    width: min(calc(100% - 40px), 900px);
    margin: 56px auto;
    padding: 72px 48px 80px;
  }
  .question-card {
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  .faq {
    width: min(calc(100% - 28px), 620px);
    margin: 42px auto;
    padding: 54px 20px 62px;
    border-radius: 15px;
  }
  .faq .section-heading {
    margin-bottom: 38px;
  }
  .faq .eyebrow {
    margin-bottom: 24px;
  }
  .faq-layout {
    gap: 18px;
  }
  .accordion {
    gap: 10px;
  }
  .faq-item {
    min-height: 72px;
    grid-template-columns: 36px minmax(0, 1fr) 16px;
    gap: 10px;
    padding: 0 16px;
    font-size: 17px;
  }
  .faq-answer,
  .faq-answer.open {
    padding-right: 42px;
    padding-left: 62px;
    font-size: 15px;
  }
  .question-card {
    min-height: 500px;
    grid-template-rows: 42% 58%;
  }
  .question-card-copy {
    padding: 26px 22px 28px;
  }
  .question-card h3 {
    font-size: 28px;
  }
  .question-card p {
    font-size: 16px;
  }
  .question-card .btn {
    width: auto;
  }
}

@media (max-width: 1180px) {
  .booking {
    width: min(calc(100% - 40px), 900px);
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 64px 56px;
    text-align: left;
  }
  .booking-copy {
    padding: 0;
  }
  .booking-action {
    padding: 32px 0 0;
    border-top: 1px solid rgba(255,255,255,.16);
    border-left: 0;
  }
  .footer {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }
  .footer-grid {
    grid-template-columns: minmax(280px, 1.2fr) minmax(180px, .8fr);
    width: min(calc(100% - 64px), 900px);
  }
  .footer-bottom {
    width: min(calc(100% - 64px), 900px);
  }
}

@media (max-width: 720px) {
  .booking {
    width: min(calc(100% - 28px), 620px);
    margin-bottom: 60px;
    padding: 46px 24px;
    gap: 30px;
    border-radius: 15px;
  }
  .booking-copy {
    padding: 0;
  }
  .booking .eyebrow {
    margin-bottom: 24px;
  }
  .booking-action {
    padding-top: 28px;
  }
  .booking-action p {
    font-size: 16px;
  }
  .booking .btn {
    width: 100%;
  }
  .footer {
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    width: min(calc(100% - 48px), 620px);
    padding: 52px 0 38px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    width: min(calc(100% - 48px), 620px);
    padding: 22px 0 26px;
  }
}

/* Legal pages */
.legal-page {
  background: var(--paper);
}
.legal-hero {
  padding: 178px 0 78px;
  color: white;
  background: linear-gradient(145deg, #202c3a 0%, #17222e 100%);
}
.legal-hero-inner,
.legal-content {
  width: min(calc(100% - 64px), 1040px);
  margin: 0 auto;
}
.legal-hero .breadcrumb {
  margin-bottom: 24px;
}
.legal-hero h1 {
  max-width: 820px;
  margin: 0 0 20px;
  color: white;
  font-size: clamp(44px, 5.8vw, 74px);
  line-height: 1.08;
}
.legal-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 1.65;
}
.legal-content {
  padding: 76px 0 96px;
}
.legal-content article {
  padding: clamp(32px, 5vw, 58px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 52px rgba(32,44,58,.08);
}
.legal-content h2 {
  margin: 42px 0 14px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.legal-content p { margin: 0 0 16px; }
.legal-content ul { margin: 0 0 20px; padding-left: 22px; }
.legal-content a { color: var(--green-dark); font-weight: 700; text-decoration: underline; }

@media (max-width: 720px) {
  .legal-hero { padding: 138px 0 58px; }
  .legal-hero-inner,
  .legal-content { width: min(calc(100% - 32px), 620px); }
  .legal-hero h1 { font-size: 40px; }
  .legal-content { padding: 54px 0 68px; }
  .legal-content article { padding: 28px 22px; border-radius: 14px; }
  .legal-content p,
  .legal-content li { font-size: 16px; }
}

/* Consistent branded glow for interactive button controls. */
.btn,
.nav-cta,
.hero-walkthrough-cta,
.hero-quote-form .btn,
.service-heading-cta,
.service-arrow,
.facility-home-arrow,
.facility-carousel-controls button:not(:disabled),
.testimonial-controls button:not(:disabled),
.question-card .btn,
.booking .btn {
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.16), 0 12px 26px rgba(var(--yellow-rgb), .3);
}

.btn:hover,
.btn:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible,
.hero-walkthrough-cta:hover,
.hero-walkthrough-cta:focus-visible,
.hero-quote-form .btn:hover,
.hero-quote-form .btn:focus-visible,
.service-heading-cta:hover,
.service-heading-cta:focus-visible,
.service-row:hover .service-arrow,
.service-row:focus-visible .service-arrow,
.facility-home-card:hover .facility-home-arrow,
.facility-home-card:focus-visible .facility-home-arrow,
.facility-carousel-controls button:not(:disabled):hover,
.facility-carousel-controls button:not(:disabled):focus-visible,
.testimonial-controls button:not(:disabled):hover,
.testimonial-controls button:not(:disabled):focus-visible,
.question-card .btn:hover,
.question-card .btn:focus-visible,
.booking .btn:hover,
.booking .btn:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.2), 0 18px 36px rgba(var(--yellow-rgb), .4);
}

.facility-carousel-controls button:disabled,
.testimonial-controls button:disabled {
  box-shadow: none;
}

/* About page service area — intentionally scoped so the homepage is unchanged. */
.about-page .about-service-areas {
  width: min(calc(100% - 64px), 1440px);
  padding-top: 96px;
  padding-bottom: 96px;
  background: #fff;
}
.about-page .about-service-areas-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(580px, 1.18fr);
  gap: clamp(54px, 6vw, 96px);
  align-items: center;
}
.about-page .about-service-areas-copy {
  max-width: 560px;
}
.about-page .about-service-areas-copy .section-kicker {
  margin: 0 0 30px 18px;
  font-size: 18px;
  font-weight: 650;
}
.about-page .about-service-areas-copy h2 {
  max-width: 560px;
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
  font-size: clamp(38px, 3.3vw, 46px);
  line-height: 1 !important;
  letter-spacing: -.03em;
}
.about-page .about-service-areas-copy h2 span {
  display: block;
  line-height: 1.22;
}
.about-page .about-service-areas-copy > p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}
.about-page .about-service-areas-copy .btn {
  min-height: 54px;
  margin-top: 30px;
  padding: 0 22px;
  color: var(--green-dark);
  background: var(--yellow);
  border: 1px solid rgba(var(--yellow-rgb), .55);
  border-radius: 10px;
}
.about-page .about-service-areas-copy .btn:hover {
  color: white;
  background: var(--green-dark);
}
.about-page .about-service-areas-panel {
  padding: clamp(32px, 3vw, 46px);
  background: #f6f7f5;
  border: 1px solid #dfe5e1;
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(32,44,58,.08);
}
.about-page .about-service-areas-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #d9dfdb;
}
.about-page .about-service-areas-panel-heading span {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 850;
}
.about-page .about-service-areas-panel-heading p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  text-align: right;
}
.about-page .about-county-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-page .about-county-grid li {
  color: var(--ink);
  background: #fff;
  border: 1px solid #dfe5e1;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(32,44,58,.035);
  overflow: hidden;
  transition: transform .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.about-page .about-county-grid details {
  width: 100%;
}
.about-page .about-county-grid summary {
  min-height: 64px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 20px;
  gap: 14px;
  align-items: center;
  padding: 0 18px;
  cursor: pointer;
  list-style: none;
}
.about-page .about-county-grid summary::-webkit-details-marker {
  display: none;
}
.about-page .about-county-grid summary strong {
  font-size: 16px;
  font-weight: 750;
}
.about-page .county-pin {
  position: relative;
  width: 28px;
  height: 28px;
  border: 2px solid var(--yellow);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  transition: background .25s ease, transform .25s ease;
}
.about-page .county-pin::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 8px;
  height: 8px;
  background: var(--green-dark);
  border-radius: 50%;
}
.about-page .county-toggle {
  position: relative;
  width: 20px;
  height: 20px;
  justify-self: end;
}
.about-page .county-toggle::before,
.about-page .county-toggle::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: transform .25s ease;
}
.about-page .county-toggle::after {
  transform: rotate(90deg);
}
.about-page .about-county-grid details[open] .county-toggle::after {
  transform: rotate(0);
}
.about-page .about-county-grid details > p {
  margin: 0;
  padding: 0 18px 18px 60px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.about-page .about-county-grid details[open] summary {
  color: var(--green-dark);
}
.about-page .about-county-grid li:hover {
  color: var(--green-dark);
  border-color: rgba(var(--yellow-rgb), .72);
  box-shadow: 0 14px 30px rgba(32,44,58,.09);
  transform: translateY(-3px);
}
.about-page .about-county-grid li:hover .county-pin {
  background: rgba(var(--yellow-rgb), .14);
  transform: rotate(-45deg) scale(1.08);
}

@media (max-width: 980px) {
  .about-identity {
    padding-top: 84px;
    padding-bottom: 84px;
  }
  .about-identity-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-identity-media {
    width: min(100%, 720px);
    justify-self: start;
  }
  .about-identity-copy {
    max-width: 760px;
  }
  .about-principles { margin-top: 52px; }
  .about-page .about-service-areas-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .about-page .about-service-areas-copy {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  .about-identity {
    padding-top: 68px;
    padding-bottom: 68px;
  }
  .about-identity-main { gap: 38px; }
  .about-identity-media { border-radius: 14px; }
  .about-identity-copy .section-kicker {
    margin-bottom: 20px;
  }
  .about-identity-copy h2 {
    margin-bottom: 22px;
    font-size: clamp(34px, 10vw, 40px);
  }
  .about-identity-intro p {
    font-size: 16px;
  }
  .about-identity-note {
    margin-top: 25px;
    padding-left: 18px;
  }
  .about-identity-note p { font-size: 17px; }
  .about-principles {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }
  .about-principles article,
  .about-principles article:first-child,
  .about-principles article:last-child {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .about-principles article:last-child { border-bottom: 0; }
  .about-principles article > span { margin-bottom: 14px; }
  .about-page .about-service-areas {
    width: min(calc(100% - 36px), 680px);
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .about-page .about-service-areas-layout { gap: 34px; }
  .about-page .about-service-areas-copy .section-kicker {
    margin-bottom: 22px;
    font-size: 16px;
  }
  .about-page .about-service-areas-copy h2 {
    gap: 12px;
    margin-bottom: 20px;
    font-size: clamp(34px, 10vw, 40px);
  }
  .about-page .about-service-areas-copy h2 span {
    line-height: 1.32;
  }
  .about-page .about-service-areas-copy > p { font-size: 16px; }
  .about-page .about-service-areas-panel {
    padding: 24px 20px;
    border-radius: 16px;
  }
  .about-page .about-service-areas-panel-heading {
    display: block;
    margin-bottom: 20px;
    padding-bottom: 18px;
  }
  .about-page .about-service-areas-panel-heading span { font-size: 22px; }
  .about-page .about-service-areas-panel-heading p {
    max-width: none;
    margin-top: 8px;
    text-align: left;
  }
  .about-page .about-county-grid { grid-template-columns: 1fr; }
  .about-page .about-county-grid summary { min-height: 58px; }
  .about-page .about-county-grid details > p { padding-left: 60px; }
}

@media (prefers-reduced-motion: reduce) {
  .about-identity-media,
  .about-identity-media img,
  .about-principles article,
  .about-principles article > span,
  .about-principles h3 {
    transition: none;
  }
  .about-identity-media:hover,
  .about-identity-media:hover img,
  .about-principles article:hover {
    transform: none;
  }
  .guarantee-grid article,
  .guarantee-icon {
    transition: none;
  }
  .guarantee-grid article:hover,
  .guarantee-grid article:hover .guarantee-icon {
    transform: none;
  }
  .about-page .about-county-grid li,
  .about-page .county-pin,
  .about-page .county-toggle::before,
  .about-page .county-toggle::after {
    transition: none;
  }
  .about-page .about-county-grid li:hover,
  .about-page .about-county-grid li:hover .county-pin {
    transform: none;
  }
}

@media (max-width: 1180px) {
  .guarantee-inner {
    padding-top: 74px;
    padding-bottom: 80px;
  }
}

@media (max-width: 980px) {
  .guarantee-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .guarantee-heading-action {
    max-width: 620px;
    padding-bottom: 0;
  }
}

@media (max-width: 720px) {
  .guarantee { padding: 0; }
  .guarantee-inner {
    padding-top: 74px;
    padding-bottom: 78px;
  }
  .guarantee-heading {
    margin-bottom: 38px;
  }
  .guarantee-heading h2 {
    font-size: clamp(34px, 10vw, 40px);
  }
  .guarantee-grid { gap: 14px; }
  .guarantee-grid article {
    min-height: 0;
    padding: 23px 22px;
    border-radius: 14px;
  }
  .guarantee-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
  }
}
