:root {
  --ink: #071a2b;
  --ink-2: #0d2942;
  --blue: #2368ff;
  --blue-dark: #174ad1;
  --orange: #ff8a3d;
  --orange-soft: #ffd9bd;
  --cream: #f5f1e8;
  --paper: #fffdf8;
  --white: #ffffff;
  --mist: #dfe7eb;
  --line: #c9d2d7;
  --muted: #536371;
  --max: 1240px;
  --pad: clamp(1.25rem, 4vw, 3.5rem);
  --radius: 1.25rem;
  --shadow: 0 24px 70px rgba(7, 26, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--white);
  background: var(--blue);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand strong,
.footer-brand strong {
  font-family: "Bahnschrift Condensed", "Arial Narrow", "Aptos Display", sans-serif;
  font-stretch: condensed;
}

h1,
h2 {
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.7rem, 8.5vw, 8.7rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.9rem);
}

h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

p {
  color: var(--muted);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  border-radius: 0.5rem;
  color: var(--white);
  background: var(--blue);
}

.skip-link:focus {
  transform: translateY(0);
}

.utility-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 0.45rem var(--pad);
  color: var(--cream);
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.utility-bar p {
  display: flex;
  gap: 0.6rem;
  margin: 0;
  color: inherit;
}

.utility-dot {
  color: var(--orange);
}

.utility-bar a {
  color: var(--orange);
}

.site-header {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 94px;
  padding: 0 var(--pad);
  border-bottom: 1px solid rgba(7, 26, 43, 0.14);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.brand-wordmark {
  color: var(--ink);
  font-size: 1.82rem;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 0.82;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand-logo-crop,
.footer-logo-crop {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 74px;
  height: 58px;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 43, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(7, 26, 43, 0.1);
}

.brand-logo-crop img,
.footer-logo-crop img {
  position: absolute;
  top: -34px;
  left: -29px;
  display: block;
  width: 132px;
  max-width: none;
  height: 132px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.4rem);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav > a:not(.nav-contact) {
  position: relative;
  padding: 0.75rem 0;
}

.site-nav > a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--blue);
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-contact:hover {
  transform: translateY(-2px);
  color: var(--white);
  background: var(--ink);
}

.menu-button {
  display: none;
  width: 48px;
  height: 44px;
  padding: 0.75rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 1.8rem;
  height: 2px;
  margin: 0 0.65rem 0.2rem 0;
  content: "";
  background: var(--orange);
}

.eyebrow-light {
  color: var(--orange-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--ink);
  background: var(--orange);
  box-shadow: 0 13px 30px rgba(255, 138, 61, 0.25);
}

.button-primary:hover {
  box-shadow: 0 18px 36px rgba(255, 138, 61, 0.36);
}

.button-secondary {
  border-color: rgba(7, 26, 43, 0.35);
  background: transparent;
}

.button-secondary:hover {
  color: var(--white);
  background: var(--ink);
}

.button-light {
  color: var(--ink);
  background: var(--cream);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.button-ghost-light:hover {
  color: var(--ink);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(0.25rem);
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  min-height: 690px;
  overflow: hidden;
  border-bottom: 1px solid rgba(7, 26, 43, 0.14);
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4.5rem, 9vw, 8.5rem) var(--pad);
  background:
    radial-gradient(circle at 92% 16%, rgba(35, 104, 255, 0.09), transparent 28%),
    linear-gradient(135deg, var(--paper), var(--cream));
}

.hero-copy::after {
  position: absolute;
  right: -8rem;
  bottom: -13rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(35, 104, 255, 0.17);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 3rem rgba(35, 104, 255, 0.025), inset 0 0 0 6rem rgba(35, 104, 255, 0.025);
}

.hero-copy h1 {
  position: relative;
  z-index: 1;
  max-width: 940px;
  margin-bottom: 1.8rem;
  text-transform: uppercase;
}

.hero-copy h1 span {
  color: var(--blue);
}

.hero-lede {
  position: relative;
  z-index: 1;
  max-width: 690px;
  margin-bottom: 2rem;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
}

.hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.availability-note {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 700;
}

.availability-note span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #22a45a;
  box-shadow: 0 0 0 4px rgba(34, 164, 90, 0.12);
}

.hero-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5.5rem);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-panel::before {
  position: absolute;
  inset: -10%;
  background-image: repeating-radial-gradient(circle at 50% 50%, transparent 0 32px, rgba(35, 104, 255, 0.13) 33px 34px);
  content: "";
  opacity: 0.75;
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.drain-mark {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.4rem;
  width: 9rem;
  height: 9rem;
  margin-bottom: 3rem;
  padding: 1.3rem;
  border: 7px solid var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--ink), 0 0 0 2px var(--orange);
}

.drain-mark i {
  display: block;
  border-radius: 99px;
  background: var(--orange);
}

.panel-kicker {
  margin-bottom: 0.6rem;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-panel h2 {
  max-width: 420px;
  margin-bottom: 2.2rem;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.quick-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-list li {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.quick-list li > span {
  color: var(--orange);
  font-family: "Bahnschrift Condensed", "Arial Narrow", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.quick-list strong,
.quick-list small {
  display: block;
}

.quick-list strong {
  color: var(--white);
  font-size: 0.92rem;
}

.quick-list small {
  color: #b8c6d2;
  font-size: 0.75rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-strip > div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 82px;
  padding: 1rem var(--pad);
  border-right: 1px solid var(--line);
}

.proof-strip > div:last-child {
  border-right: 0;
}

.proof-strip span {
  color: var(--blue);
  font-family: "Bahnschrift Condensed", "Arial Narrow", sans-serif;
  font-weight: 800;
}

.proof-strip strong {
  font-size: 0.78rem;
  line-height: 1.3;
}

.photo-story {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
}

.photo-story-heading {
  position: sticky;
  top: 2rem;
}

.photo-story-heading h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.photo-story-heading > p:last-child {
  max-width: 480px;
  font-size: 0.92rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.photo-card {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.photo-card-tall {
  grid-row: span 2;
  min-height: 736px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.photo-card-tall img {
  object-position: 52% 45%;
}

.photo-card:hover img {
  transform: scale(1.025);
}

.photo-card::after {
  position: absolute;
  inset: 42% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(4, 17, 29, 0.88));
}

.photo-card figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.4rem;
}

.photo-card figcaption span,
.photo-card figcaption strong {
  display: block;
}

.photo-card figcaption span {
  margin-bottom: 0.35rem;
  color: var(--orange-soft);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.photo-card figcaption strong {
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.35;
}

.section {
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
  padding-block: clamp(5rem, 10vw, 9rem);
}

.section-tight {
  padding-top: 0;
}

.split-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 4rem;
  padding-bottom: 3.5rem;
}

.split-intro h2,
.section-heading h2 {
  max-width: 800px;
  margin-bottom: 0;
}

.split-intro > p {
  max-width: 540px;
  margin-bottom: 0.5rem;
  font-size: 1.06rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--paper);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.service-card::after {
  position: absolute;
  right: -5.5rem;
  bottom: -5.5rem;
  width: 11rem;
  height: 11rem;
  border: 1px solid rgba(35, 104, 255, 0.24);
  border-radius: 50%;
  content: "";
  transition: transform 300ms ease;
}

.service-card:hover {
  z-index: 2;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card:hover::after {
  transform: scale(1.55);
}

.service-card:hover p,
.service-card:hover .eyebrow,
.service-card:hover .text-link {
  color: var(--white);
}

.service-card:hover .service-number {
  color: var(--orange);
}

.service-number {
  margin-bottom: 5rem;
  color: var(--blue);
  font-family: "Bahnschrift Condensed", "Arial Narrow", sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
}

.service-card .eyebrow {
  font-size: 0.62rem;
  transition: color 220ms ease;
}

.service-card .eyebrow::before {
  display: none;
}

.service-card h3 {
  max-width: 220px;
  font-size: 2rem;
}

.service-card p:not(.eyebrow) {
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.service-card .text-link {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.78rem;
}

.symptom-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 7vw, 7rem);
  width: 100%;
  padding-inline: var(--pad);
  color: var(--white);
  background: var(--ink);
}

.symptom-copy {
  align-self: center;
  max-width: 500px;
}

.symptom-copy h2 {
  color: var(--white);
}

.symptom-copy p:not(.eyebrow) {
  color: #b9c7d2;
}

.symptom-copy .text-link {
  color: var(--orange-soft);
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.symptom {
  min-height: 210px;
  padding: 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.symptom > span {
  display: block;
  width: 2.8rem;
  height: 0.5rem;
  margin-bottom: 2.7rem;
  border-radius: 999px;
  background: var(--orange);
}

.symptom h3 {
  color: var(--white);
}

.symptom p {
  margin: 0;
  color: #aebdca;
  font-size: 0.9rem;
}

.section-heading.centered {
  text-align: center;
}

.section-heading.centered h2 {
  margin-inline: auto;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 4rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 280px;
  padding: 2.2rem 2rem 1rem 0;
  border-right: 1px solid var(--line);
}

.process-list li:not(:first-child) {
  padding-left: 2rem;
}

.process-list li:last-child {
  border-right: 0;
}

.process-list li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 4.3rem;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
}

.process-list p {
  margin: 0;
  font-size: 0.9rem;
}

.area-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  width: 100%;
  padding-inline: var(--pad);
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
}

.area-preview-copy {
  max-width: 570px;
}

.area-preview h2 {
  color: var(--white);
}

.area-preview p:not(.eyebrow) {
  margin-bottom: 2rem;
  color: #dce6ff;
}

.area-cloud {
  position: relative;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  min-height: 370px;
}

.area-cloud::before,
.area-cloud::after {
  position: absolute;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 48% 52% 66% 34% / 42% 37% 63% 58%;
  content: "";
}

.area-cloud::after {
  width: 20rem;
  height: 20rem;
  transform: rotate(35deg);
}

.area-cloud span {
  position: relative;
  z-index: 1;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(7, 26, 43, 0.13);
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  width: 100%;
  padding: 0;
  background: var(--line);
}

.about-card,
.principle-card {
  min-height: 520px;
  margin: 0;
  padding: clamp(3rem, 7vw, 7rem) var(--pad);
  background: var(--paper);
}

.about-card h2 {
  max-width: 680px;
}

.about-card p:not(.eyebrow) {
  max-width: 620px;
}

.principle-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background: var(--orange);
}

.principle-card p {
  max-width: 650px;
  margin-bottom: 2rem;
  color: var(--ink);
  font-family: "Bahnschrift Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.principle-card footer {
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.6rem 0;
  cursor: pointer;
  font-weight: 750;
  line-height: 1.35;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-plus {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 1.4rem;
  font-weight: 500;
}

.faq-item p {
  max-width: 690px;
  padding: 0 3rem 1.8rem 0;
}

.contact-band {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 4rem;
  width: 100%;
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
  color: var(--white);
  background: var(--ink);
}

.contact-band h2 {
  max-width: 840px;
  margin-bottom: 1.4rem;
  color: var(--white);
}

.contact-band p:not(.eyebrow) {
  max-width: 750px;
  margin-bottom: 0;
  color: #b8c7d2;
}

.contact-band-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.breadcrumbs {
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.breadcrumbs ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.6rem;
  content: "/";
  color: var(--orange);
}

.breadcrumbs a:hover {
  color: var(--blue);
}

.inner-hero {
  position: relative;
  min-height: 590px;
  padding: clamp(2rem, 4vw, 3.5rem) var(--pad) clamp(5rem, 9vw, 8rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 80%, rgba(35, 104, 255, 0.13), transparent 24%),
    linear-gradient(145deg, var(--paper), var(--cream));
}

.inner-hero::after {
  position: absolute;
  right: -9rem;
  bottom: -14rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(35, 104, 255, 0.19);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 5rem rgba(35, 104, 255, 0.025), inset 0 0 0 10rem rgba(35, 104, 255, 0.025);
}

.inner-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: clamp(3rem, 7vw, 7rem);
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.inner-hero h1 {
  max-width: 860px;
  margin-bottom: 0;
  font-size: clamp(3.6rem, 7.2vw, 7.8rem);
  text-transform: uppercase;
}

.inner-hero-aside {
  padding-bottom: 0.7rem;
}

.inner-hero-aside > p {
  margin-bottom: 2rem;
  font-size: 1.08rem;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(4rem, 9vw, 9rem);
}

.sticky-heading {
  align-self: start;
  position: sticky;
  top: 2rem;
}

.sticky-heading h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.4rem);
}

.sticky-heading > p:last-child {
  max-width: 440px;
}

.sign-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.sign-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.65rem 0;
  border-bottom: 1px solid var(--line);
}

.sign-list span {
  color: var(--blue);
  font-family: "Bahnschrift Condensed", "Arial Narrow", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
}

.sign-list p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 650;
  line-height: 1.35;
}

.safety-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 8rem);
  width: 100%;
  padding-inline: var(--pad);
  color: var(--ink);
  background: var(--orange);
}

.safety-card h2 {
  max-width: 600px;
}

.safety-card .eyebrow {
  color: var(--ink);
}

.safety-card .eyebrow::before {
  background: var(--ink);
}

.safety-card ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(7, 26, 43, 0.35);
  list-style: none;
}

.safety-card li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(7, 26, 43, 0.35);
}

.safety-card li span {
  font-family: "Bahnschrift Condensed", "Arial Narrow", sans-serif;
  font-weight: 800;
}

.safety-card li p {
  margin: 0;
  color: var(--ink);
  font-weight: 650;
}

.related-services .service-grid {
  margin-top: 3.5rem;
}

.related-services .service-grid:has(.service-card:nth-child(3):last-child) {
  grid-template-columns: repeat(3, 1fr);
}

.area-directory {
  padding-top: 5rem;
}

.area-group {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 3rem;
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--line);
}

.area-group:first-child {
  border-top: 1px solid var(--line);
}

.area-group > div {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.area-group > div span {
  color: var(--blue);
  font-family: "Bahnschrift Condensed", "Arial Narrow", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.area-group h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.area-group ul {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-group li {
  padding: 0.48rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 650;
}

.area-notes,
.who-we-help,
.enquiry-guide {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.note-grid,
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.note-grid article,
.who-grid article {
  min-height: 240px;
  padding: 1.8rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.note-grid p,
.who-grid p {
  margin: 0;
  font-size: 0.9rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 9vw, 9rem);
}

.story-copy {
  max-width: 720px;
  font-size: 1.1rem;
}

.story-copy p:first-child::first-letter {
  float: left;
  margin: 0.05em 0.12em 0 0;
  color: var(--blue);
  font-family: "Bahnschrift Condensed", "Arial Narrow", sans-serif;
  font-size: 4.8rem;
  font-weight: 800;
  line-height: 0.8;
}

.values-section {
  width: 100%;
  padding-inline: var(--pad);
  color: var(--white);
  background: var(--ink);
}

.values-section h2 {
  color: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 4rem auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.values-grid article {
  min-height: 310px;
  padding: 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.values-grid span {
  display: block;
  margin-bottom: 6rem;
  color: var(--orange);
  font-family: "Bahnschrift Condensed", "Arial Narrow", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.values-grid h3 {
  color: var(--white);
}

.values-grid p {
  margin: 0;
  color: #aebdca;
  font-size: 0.88rem;
}

.contact-hero {
  padding: clamp(2rem, 4vw, 3.5rem) var(--pad) clamp(5rem, 10vw, 9rem);
  color: var(--white);
  background: var(--blue);
}

.contact-hero .breadcrumbs a,
.contact-hero .breadcrumbs span {
  color: #dce6ff;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.contact-hero h1 {
  max-width: 790px;
  margin-bottom: 2rem;
  color: var(--white);
  font-size: clamp(4rem, 8vw, 8rem);
  text-transform: uppercase;
}

.contact-hero p:not(.eyebrow) {
  max-width: 650px;
  color: #dce6ff;
  font-size: 1.07rem;
}

.contact-cards {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.contact-card {
  display: flex;
  flex-direction: column;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.contact-card span {
  margin-bottom: 0.7rem;
  color: var(--orange-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card strong {
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: clamp(1.35rem, 2.7vw, 2rem);
}

.contact-card small {
  color: #cdd9ff;
}

.enquiry-guide ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.enquiry-guide li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.enquiry-guide li > span {
  color: var(--blue);
  font-family: "Bahnschrift Condensed", "Arial Narrow", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.enquiry-guide li h3,
.enquiry-guide li p {
  margin: 0;
}

.enquiry-guide li p {
  font-size: 0.9rem;
}

.contact-safety {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 8vw, 8rem);
  width: 100%;
  padding-inline: var(--pad);
  color: var(--ink);
  background: var(--orange);
}

.contact-safety .eyebrow {
  color: var(--ink);
}

.contact-safety .eyebrow::before {
  background: var(--ink);
}

.contact-safety p:not(.eyebrow) {
  align-self: end;
  max-width: 720px;
  margin-bottom: 0.8rem;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 650;
}

.area-mini {
  display: grid;
  grid-template-columns: 0.8fr 1fr auto;
  align-items: end;
  gap: 3rem;
}

.area-mini h2,
.area-mini p {
  margin-bottom: 0;
}

.not-found {
  min-height: 65vh;
  padding: clamp(5rem, 12vw, 10rem) var(--pad);
}

.not-found h1 {
  max-width: 900px;
  margin-bottom: 2rem;
  font-size: clamp(3.5rem, 7vw, 7rem);
}

.not-found > p:not(.eyebrow) {
  max-width: 620px;
  font-size: 1.1rem;
}

.site-footer {
  padding: clamp(4rem, 8vw, 7rem) var(--pad) 1.5rem;
  color: var(--white);
  background: #04111d;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.6fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  max-width: var(--max);
  margin-inline: auto;
}

.footer-logo-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo-crop {
  width: 98px;
  height: 76px;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.footer-logo-crop img {
  top: -45px;
  left: -38px;
  width: 174px;
  height: 174px;
}

.footer-brand .brand-wordmark {
  color: var(--white);
  font-size: 2.15rem;
}

.footer-brand p {
  max-width: 340px;
  color: #9fb0bd;
  font-size: 0.9rem;
}

.footer-main h2 {
  margin-bottom: 1.2rem;
  color: var(--orange);
  font-family: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-main ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-main li {
  margin-bottom: 0.6rem;
}

.footer-main li a {
  color: #c8d2da;
  font-size: 0.84rem;
}

.footer-main a:hover {
  color: var(--orange);
}

.footer-contact > a {
  display: block;
  margin-bottom: 0.35rem;
  overflow-wrap: anywhere;
  color: var(--white);
  font-weight: 750;
}

.footer-contact p {
  margin-top: 1.3rem;
  color: #9fb0bd;
  font-size: 0.82rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  max-width: var(--max);
  margin: 5rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #7e929f;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-call {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease var(--delay, 0ms), transform 560ms ease var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .home-hero {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    min-height: 380px;
  }

  .symptom-section,
  .photo-story,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .photo-story-heading {
    position: static;
  }

  .symptom-copy {
    max-width: 760px;
  }

  .sticky-heading {
    position: static;
  }

  .faq-section {
    grid-template-columns: 1fr;
  }

  .area-notes,
  .who-we-help {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --pad: 1.25rem;
  }

  body {
    padding-bottom: 72px;
  }

  .utility-bar p span:not(:first-child) {
    display: none;
  }

  .site-header {
    height: 80px;
  }

  .brand-tag {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 80px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 1.2rem var(--pad) 1.5rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a,
  .nav-contact {
    padding: 0.9rem 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .nav-contact:hover {
    color: var(--ink);
    background: transparent;
    transform: none;
  }

  .home-hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 600px;
    padding-block: 5rem;
  }

  .hero-copy::after {
    right: -15rem;
  }

  .hero-panel {
    padding-block: 4rem;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip > div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .split-intro,
  .symptom-section,
  .area-preview,
  .about-preview,
  .contact-band,
  .inner-hero-grid,
  .safety-card,
  .story-grid,
  .contact-hero-grid,
  .enquiry-guide,
  .contact-safety {
    grid-template-columns: 1fr;
  }

  .split-intro,
  .contact-band,
  .inner-hero-grid,
  .safety-card,
  .story-grid,
  .contact-hero-grid,
  .enquiry-guide,
  .contact-safety {
    gap: 2.5rem;
  }

  .about-preview {
    gap: 1px;
  }

  .service-grid,
  .related-services .service-grid:has(.service-card:nth-child(3):last-child) {
    grid-template-columns: 1fr;
  }

  .photo-card,
  .photo-card-tall {
    min-height: 420px;
  }

  .service-card {
    min-height: 340px;
  }

  .service-number {
    margin-bottom: 3.5rem;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .area-preview {
    gap: 1.5rem;
  }

  .area-cloud {
    min-height: 300px;
  }

  .about-card,
  .principle-card {
    min-height: 430px;
  }

  .contact-band-actions {
    align-items: flex-start;
  }

  .contact-band-actions .button {
    width: min(100%, 360px);
  }

  .inner-hero {
    min-height: auto;
  }

  .inner-hero h1 {
    font-size: clamp(3.4rem, 14vw, 6.5rem);
  }

  .area-group {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .note-grid,
  .who-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .note-grid article,
  .who-grid article {
    min-height: 180px;
  }

  .values-grid article {
    min-height: 260px;
  }

  .values-grid span {
    margin-bottom: 3.5rem;
  }

  .area-mini {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.5rem;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .mobile-call {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 0.6rem 1rem;
    background: var(--orange);
    box-shadow: 0 -10px 35px rgba(7, 26, 43, 0.18);
  }

  .mobile-call a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
  }

  .mobile-call span {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .mobile-call strong {
    font-size: 1.05rem;
  }
}

@media (max-width: 540px) {
  .utility-bar {
    font-size: 0.7rem;
  }

  .brand-logo-crop {
    width: 62px;
    height: 49px;
  }

  .brand-logo-crop img {
    top: -29px;
    left: -24px;
    width: 111px;
    height: 111px;
  }

  .brand-wordmark {
    font-size: 1.45rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.45rem, 17vw, 5.5rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .drain-mark {
    width: 7.5rem;
    height: 7.5rem;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .symptom-grid,
  .process-list,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-card,
  .photo-card-tall {
    grid-row: auto;
    min-height: 460px;
  }

  .symptom {
    min-height: 180px;
  }

  .process-list li,
  .process-list li:not(:first-child) {
    min-height: 230px;
    padding: 1.8rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list li > span {
    margin-bottom: 2.5rem;
  }

  .area-cloud span {
    font-size: 0.7rem;
  }

  .faq-item summary {
    padding-block: 1.3rem;
  }

  .area-group ul {
    gap: 0.45rem;
  }

  .area-group li {
    font-size: 0.75rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main > * {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.why-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 7vw, 7rem);
  background: #f3efe6;
}

.why-heading {
  align-self: start;
}

.why-heading h2,
.reviews-heading h2,
.map-copy h2 {
  max-width: 760px;
  font-size: clamp(2.7rem, 5.4vw, 5.4rem);
}

.why-heading > p:not(.eyebrow):not(.updated-note),
.reviews-heading > div > p:not(.eyebrow),
.map-copy > p:not(.eyebrow):not(.updated-note) {
  max-width: 680px;
  color: var(--muted);
}

.updated-note {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.why-card {
  min-height: 260px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.7);
}

.why-card > span,
.review-index {
  display: block;
  margin-bottom: 2.8rem;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.why-card h3,
.review-card h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.reviews-section {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.reviews-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.reviews-heading .eyebrow,
.review-status {
  color: var(--orange);
}

.reviews-heading > div > p:not(.eyebrow) {
  color: #b4c1cb;
}

.reviews-controls {
  display: flex;
  gap: 0.5rem;
}

.reviews-controls button {
  min-width: 74px;
  min-height: 44px;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  background: transparent;
  cursor: pointer;
}

.reviews-controls button:hover,
.reviews-controls button:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
}

.reviews-viewport {
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--orange) rgba(255, 255, 255, 0.12);
}

.reviews-track {
  display: grid;
  grid-auto-columns: minmax(300px, 42vw);
  grid-auto-flow: column;
  gap: 1rem;
}

.review-card {
  min-height: 330px;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: #0b2437;
  scroll-snap-align: start;
}

.review-card > p:last-of-type {
  max-width: 540px;
  color: #c7d1d8;
}

.review-card blockquote {
  min-height: 128px;
  margin: 0;
}

.review-card blockquote p {
  max-width: 560px;
  color: var(--white);
  font-family: "Bahnschrift Condensed", "Arial Narrow", "Aptos Display", sans-serif;
  font-size: clamp(1.75rem, 3.4vw, 3.2rem);
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.review-avatar {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  background: var(--orange);
}

.review-person {
  display: grid;
  gap: 0.16rem;
}

.review-card footer strong {
  font-size: 0.92rem;
}

.review-card footer small {
  color: #b4c1cb;
  font-size: 0.72rem;
}

.review-status {
  margin-bottom: 0.7rem;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-card .text-link {
  margin-top: 1.5rem;
  color: var(--orange);
}

.map-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  background: #f3efe6;
}

.map-copy .text-link {
  margin-top: 1.5rem;
}

.map-frame {
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #d9e2e5;
  box-shadow: 0 22px 55px rgba(7, 26, 43, 0.14);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
}

.entity-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 1.5rem 4rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  background: var(--ink);
}

.entity-card .eyebrow {
  grid-column: 1 / -1;
  color: var(--orange);
}

.entity-card h2 {
  font-size: clamp(3rem, 6vw, 6rem);
}

.entity-card dl {
  margin: 0;
}

.entity-card dl > div {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.entity-card dt {
  color: #9fb0bd;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.entity-card dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.entity-card a {
  color: var(--orange);
}

@media (max-width: 980px) {
  .why-section,
  .map-section {
    grid-template-columns: 1fr;
  }

  .reviews-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .reviews-track {
    grid-auto-columns: minmax(300px, 72vw);
  }
}

@media (max-width: 640px) {
  .why-grid,
  .entity-card {
    grid-template-columns: 1fr;
  }

  .why-card {
    min-height: auto;
  }

  .reviews-controls {
    width: 100%;
  }

  .reviews-controls button {
    flex: 1;
    min-width: 0;
  }

  .reviews-track {
    grid-auto-columns: 88vw;
  }

  .review-card {
    min-height: 300px;
  }

  .review-card footer {
    align-items: center;
    flex-direction: row;
    gap: 0.85rem;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 360px;
    height: 360px;
  }

  .entity-card dl > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}
