:root {
  --ink: #070d12;
  --ink-2: #0d1b25;
  --paper: #0a1219;
  --white: #ffffff;
  --blue: #0098d8;
  --blue-dark: #006ea8;
  --blue-light: #98e8ff;
  --silver: #9da8b2;
  --steel: #d6dde2;
  --surface: #101c26;
  --surface-2: #142735;
  --surface-soft: rgba(255, 255, 255, 0.055);
  --line: rgba(152, 232, 255, 0.18);
  --text: #edf6fb;
  --muted: #9fb3bf;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --snap: cubic-bezier(0.2, 0, 0.1, 1);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

[id] {
  scroll-margin-top: 5rem;
}

body {
  margin: 0;
  width: 100%;
  min-width: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 82% 6%, rgba(0, 152, 216, 0.16), transparent 26rem),
    linear-gradient(180deg, #070d12 0%, #0a1219 38%, #081017 100%);
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 54%, rgba(0, 152, 216, 0.12) 54.2% 54.5%, transparent 54.8%),
    linear-gradient(132deg, transparent 0 72%, rgba(214, 221, 226, 0.12) 72.1% 72.35%, transparent 72.6%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 22%, transparent 78%, rgba(152, 232, 255, 0.035));
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 40;
  transform: translateY(-180%);
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(8rem, 1fr);
  align-items: center;
  gap: 1.25rem;
  padding: 0.8rem clamp(1rem, 4vw, 4.5rem);
  border-bottom: 1px solid rgba(152, 232, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(0, 152, 216, 0.18), transparent 18rem),
    rgba(7, 13, 18, 0.9);
  backdrop-filter: blur(18px);
}

.site-header::after {
  position: absolute;
  left: clamp(1rem, 4vw, 4.5rem);
  right: clamp(1rem, 4vw, 4.5rem);
  bottom: -1px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue), transparent 18rem);
  pointer-events: none;
}

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

.brand-mark {
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(152, 232, 255, 0.24);
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 10px 30px rgba(0, 152, 216, 0.14);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 900;
}

.brand small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
}

.nav-links a:hover,
.phone-link:hover {
  color: var(--blue-light);
}

.phone-link {
  justify-self: end;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(152, 232, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-weight: 850;
  box-shadow: inset 0 -2px 0 var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.7rem;
}

.language-switch {
  display: inline-flex;
  border: 1px solid rgba(152, 232, 255, 0.22);
  background: rgba(255, 255, 255, 0.045);
}

.language-switch a {
  display: grid;
  min-width: 2.45rem;
  min-height: 2.45rem;
  place-items: center;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
  transition: background-color 160ms ease, color 160ms ease;
}

.language-switch a:hover,
.language-switch a:focus-visible {
  color: var(--white);
}

.language-switch a[aria-current="page"] {
  background: var(--blue);
  color: #00151f;
}

.hero {
  --hero-scroll-opacity: 1;
  position: relative;
  display: grid;
  min-height: calc(100svh - 4.4rem);
  place-items: end start;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(2rem, 6vw, 5.5rem) clamp(1rem, 5vw, 5.5rem) clamp(7.5rem, 13vh, 10rem);
  background: #03080c;
  opacity: var(--hero-scroll-opacity);
  will-change: opacity;
}

.hero-video-layer,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-video-layer {
  z-index: -2;
  overflow: hidden;
  background: #03080c;
}

.hero-video-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  transition: transform 120ms linear;
  will-change: transform;
}

.hero-scrim {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 8, 12, 0.88) 0%, rgba(3, 8, 12, 0.58) 43%, rgba(3, 8, 12, 0.08) 78%),
    linear-gradient(0deg, rgba(3, 8, 12, 0.94) 0%, rgba(3, 8, 12, 0.18) 54%, rgba(3, 8, 12, 0.28) 100%);
}

.hero-scrim::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 152, 216, 0.11));
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: min(52rem, 74vw);
  color: var(--white);
  opacity: 0;
  transform: translateY(1.4rem);
}

.hero.is-media-ready .hero-copy {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 900ms ease 180ms, transform 900ms var(--snap) 180ms;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: var(--blue-light);
}

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

h1 {
  max-width: 13ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  font-weight: 950;
  line-height: 0.92;
}

h2 {
  margin-bottom: 0;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-weight: 930;
  line-height: 0.98;
}

h3 {
  margin-bottom: 0.55rem;
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.12;
}

.intro {
  max-width: 37rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  font-weight: 900;
}

.button.primary {
  background: var(--blue);
  color: #00151f;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.button.full {
  width: 100%;
}

.service-card p,
.contact-routes p {
  color: var(--muted);
  line-height: 1.55;
}

.section,
.split-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4.5rem);
  background:
    linear-gradient(180deg, rgba(8, 16, 24, 0.94), rgba(10, 18, 25, 0.98));
}

.service-strip {
  position: relative;
  z-index: 4;
  margin-top: clamp(-8rem, -11vh, -5rem);
  padding-top: clamp(8rem, 13vw, 11rem);
  border-top: 1px solid rgba(152, 232, 255, 0.28);
  box-shadow: 0 -2.5rem 5rem rgba(0, 0, 0, 0.42);
}

.service-strip::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--blue-light), var(--blue), transparent);
  opacity: 0.72;
}

.section-heading {
  display: grid;
  max-width: 54rem;
  gap: 0.75rem;
  align-items: start;
  margin-bottom: 1.6rem;
}

.section-heading h2 {
  max-width: 13ch;
  font-size: clamp(2.2rem, 4.8vw, 4.1rem);
}

.section-heading > p:not(.eyebrow) {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.55;
}

.service-grid {
  display: flex;
  min-height: 32rem;
  gap: 0;
  perspective: 1200px;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 9.8rem;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: var(--ink);
  box-shadow: inset 1px 0 rgba(255, 255, 255, 0.22), inset -1px 0 rgba(0, 152, 216, 0.22);
  transition: flex-grow 120ms var(--snap), transform 100ms var(--snap), box-shadow 100ms var(--snap);
  will-change: flex-grow, transform;
}

.service-card::before {
  position: absolute;
  inset: 0 0 9.8rem;
  z-index: 1;
  content: "";
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.32) 0%, transparent 18%, transparent 54%, rgba(152, 232, 255, 0.2) 72%, transparent 100%),
    linear-gradient(0deg, rgba(16, 24, 32, 0.3), rgba(16, 24, 32, 0.02) 58%);
  opacity: 0.9;
  pointer-events: none;
}

.service-card::after {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 10px 0 28px rgba(152, 232, 255, 0.24);
  pointer-events: none;
}

.service-card:hover,
.service-card:focus-visible {
  z-index: 1;
  flex-grow: 2.15;
  transform: translateY(-0.3rem);
  box-shadow: 0 28px 70px rgba(13, 30, 42, 0.28);
}

.service-card img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 120ms var(--snap), filter 90ms linear;
  will-change: transform, filter;
  filter: saturate(0.9) contrast(1.05);
}

.service-card:hover img,
.service-card:focus-visible img {
  transform: scale(1.01);
  filter: saturate(1.04) contrast(1.02);
}

.service-card div {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: start;
  min-height: 9.8rem;
  padding: 0.85rem 1rem 1rem;
  border-top: 1px solid rgba(152, 232, 255, 0.24);
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.96), rgba(16, 24, 32, 0.9));
  color: var(--white);
  transform: translateY(0);
  transition: none;
}

.service-card:hover div,
.service-card:focus-visible div {
  transform: translateY(0);
}

.service-card span {
  display: block;
  min-height: 1rem;
  margin-bottom: 0.65rem;
  color: var(--blue-light);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3 {
  min-height: 2.4em;
  margin-bottom: 0.55rem;
  color: var(--white);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
}

.service-card p {
  max-width: 22rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  opacity: 0;
  transform: translateY(0.35rem);
  transition: opacity 90ms linear, transform 90ms var(--snap);
}

.service-card:hover p,
.service-card:focus-visible p {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover,
  .service-card:focus-visible {
    z-index: 1;
    flex-grow: 2.15;
    transform: translateY(-0.3rem);
    box-shadow: 0 28px 70px rgba(13, 30, 42, 0.28);
  }
}

@media (hover: none) {
  .service-card {
    transition: none;
    will-change: auto;
  }

  .service-card:hover,
  .service-card:focus-visible {
    flex-grow: 1;
    transform: none;
    box-shadow: none;
  }
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(1rem, 4vw, 4.5rem);
  background: var(--line);
  box-shadow: var(--shadow);
}

.proof-band div {
  display: grid;
  gap: 0.25rem;
  padding: 1.2rem;
  background: linear-gradient(180deg, var(--surface), var(--ink));
  color: var(--white);
}

.proof-band strong {
  font-size: 1.05rem;
}

.proof-band span {
  color: rgba(255, 255, 255, 0.68);
}

.contact-prep {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4.5rem);
  background:
    linear-gradient(180deg, rgba(8, 16, 24, 0.98), rgba(10, 18, 25, 0.98)),
    var(--paper);
}

.prep-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.prep-card {
  position: relative;
  display: grid;
  min-height: 18rem;
  align-content: space-between;
  overflow: hidden;
  padding: clamp(1rem, 2.2vw, 1.35rem);
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    var(--surface);
}

.prep-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 0.35rem;
  content: "";
  background: linear-gradient(90deg, var(--blue), rgba(152, 232, 255, 0.55));
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 280ms ease;
}

.prep-card:hover::after {
  transform: scaleX(1);
}

.prep-card span {
  display: block;
  color: var(--blue-light);
  font-size: 0.9rem;
  font-weight: 950;
}

.prep-card h3 {
  max-width: 13rem;
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
}

.prep-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.split-section {
  background:
    linear-gradient(180deg, rgba(10, 18, 25, 0.98), rgba(7, 13, 18, 0.98));
}

.split-section > .section-heading {
  max-width: none;
}

.split-section > .section-heading h2 {
  max-width: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.45fr) minmax(24rem, 0.55fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}

.contact-routes {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: transparent;
}

.contact-routes article {
  display: grid;
  grid-template-columns: minmax(7.5rem, 0.28fr) minmax(0, 1fr);
  gap: 1.1rem;
  align-items: center;
  min-height: auto;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid var(--line);
  border-bottom: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(0, 152, 216, 0.035)),
    var(--surface);
}

.contact-routes article:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-routes span {
  display: block;
  margin-bottom: 0;
  color: var(--blue-light);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-routes p {
  margin-bottom: 0.7rem;
  line-height: 1.56;
}

.contact-routes a {
  display: inline-flex;
  width: max-content;
  color: var(--blue-light);
  font-weight: 950;
}

.contact-routes h3 {
  margin-bottom: 0.45rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1rem, 2.4vw, 1.45rem);
  background:
    linear-gradient(145deg, rgba(16, 24, 32, 0.97), rgba(13, 47, 65, 0.94)),
    var(--ink);
  box-shadow: var(--shadow);
  color: var(--white);
}

.contact-form-heading {
  display: grid;
  grid-template-columns: minmax(15rem, 0.48fr) minmax(16rem, 0.52fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: end;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(152, 232, 255, 0.18);
}

.contact-form-heading .eyebrow {
  margin-bottom: 0.55rem;
}

.contact-form-heading > p {
  max-width: 31rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.contact-form h3 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.contact-form label {
  display: grid;
  gap: 0.42rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(152, 232, 255, 0.26);
  border-radius: 0;
  padding: 0.85rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.contact-form select option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.form-note {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  line-height: 1.45;
}

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

.form-actions .button {
  background: var(--blue);
  color: #00151f;
  transition: background-color 180ms ease, box-shadow 180ms ease, filter 180ms ease, transform 180ms var(--snap);
}

.form-actions .button.secondary {
  border-color: transparent;
  background: var(--blue);
  color: #00151f;
}

.form-actions .button:hover,
.form-actions .button:focus-visible {
  background: #22b9f2;
  box-shadow: 0 0.75rem 2rem rgba(0, 152, 216, 0.38);
  filter: brightness(1.08);
  transform: translateY(-0.18rem);
}

.form-actions .button:active {
  box-shadow: 0 0.3rem 0.9rem rgba(0, 152, 216, 0.28);
  transform: translateY(0);
}

.location-panel {
  display: grid;
  grid-template-columns: minmax(18rem, 0.42fr) minmax(0, 0.58fr);
  gap: 1px;
  margin-top: clamp(1rem, 3vw, 2rem);
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.location-photo,
.location-map {
  min-height: 24rem;
  background: var(--ink);
}

.location-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-map {
  display: grid;
  grid-template-columns: minmax(16rem, 0.42fr) minmax(0, 0.58fr);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(0, 152, 216, 0.035)),
    var(--surface);
}

.location-copy {
  display: grid;
  align-content: center;
  padding: clamp(1rem, 2.4vw, 1.45rem);
}

.location-copy h3 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.location-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.58;
}

.location-copy .button.secondary {
  width: max-content;
  border-color: rgba(152, 232, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  border: 0;
  filter: grayscale(0.18) contrast(1.02);
}

.mobile-cta {
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) auto minmax(18rem, 0.8fr);
  align-items: start;
  gap: clamp(1.2rem, 4vw, 3rem);
  padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 4.5rem);
  border-top: 1px solid rgba(152, 232, 255, 0.18);
  background:
    linear-gradient(115deg, rgba(0, 152, 216, 0.16), transparent 28rem),
    var(--ink);
  color: rgba(255, 255, 255, 0.76);
}

.site-footer p {
  margin-bottom: 0;
}

.footer-brand {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.footer-brand strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--white);
  font-size: 1.1rem;
}

.footer-brand p {
  max-width: 24rem;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.5;
}

.site-footer .brand-mark {
  border-color: rgba(152, 232, 255, 0.28);
  background: #000;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.3rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 850;
}

.footer-contact {
  display: grid;
  justify-items: end;
  gap: 0.45rem;
}

.footer-contact a:first-child {
  color: var(--white);
  font-weight: 950;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.58);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--blue-light);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(20rem, 0.52fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: stretch;
  padding: clamp(1rem, 4vw, 3.5rem) clamp(1rem, 4vw, 4.5rem) clamp(3rem, 6vw, 5rem);
}

.detail-hero-media {
  min-height: 34rem;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.detail-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(0, 152, 216, 0.04)),
    var(--surface);
  box-shadow: var(--shadow);
}

.detail-hero-copy h1 {
  max-width: 10ch;
  color: var(--text);
  font-size: clamp(3rem, 6.5vw, 6rem);
}

.detail-hero-copy .intro {
  color: var(--muted);
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(18rem, 0.36fr);
  gap: clamp(1rem, 4vw, 3rem);
  padding: 0 clamp(1rem, 4vw, 4.5rem) clamp(4rem, 8vw, 7rem);
}

.detail-main,
.detail-aside {
  display: grid;
  gap: 1px;
  align-content: start;
  background: var(--line);
  border: 1px solid var(--line);
}

.detail-block,
.detail-cta {
  padding: clamp(1rem, 3vw, 1.4rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    var(--surface);
}

.detail-block h2,
.detail-block h3,
.detail-cta h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
}

.detail-block p,
.detail-block li,
.detail-cta p {
  color: var(--muted);
  line-height: 1.6;
}

.detail-block ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding-left: 1.15rem;
}

.detail-cta {
  background:
    linear-gradient(145deg, rgba(0, 152, 216, 0.12), rgba(255, 255, 255, 0.035)),
    var(--ink);
  color: var(--white);
}

.detail-cta h2 {
  color: var(--white);
}

.detail-cta p {
  color: rgba(255, 255, 255, 0.74);
}

.detail-cta .button.secondary {
  color: var(--white);
}

.detail-cta .button.primary {
  margin-bottom: 0.7rem;
}

.back-link {
  display: inline-flex;
  width: max-content;
  margin-bottom: 1rem;
  color: var(--blue-light);
  font-weight: 900;
}

.reveal {
  transform: translateY(22px);
  opacity: 0;
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.service-card.reveal.is-visible:hover,
.service-card.reveal.is-visible:focus-visible {
  transform: translateY(-0.3rem);
}

.prep-card.reveal:nth-child(2),
.contact-routes article.reveal:nth-child(2) {
  transition-delay: 90ms;
}

.prep-card.reveal:nth-child(3),
.contact-routes article.reveal:nth-child(3) {
  transition-delay: 180ms;
}

.prep-card.reveal:nth-child(4) {
  transition-delay: 270ms;
}

@media (max-width: 1180px) {
  .detail-hero,
  .detail-content {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: min(48rem, 82vw);
  }

  .service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-routes {
    grid-template-rows: none;
  }

  .service-card {
    display: grid;
    grid-template-rows: 14rem 1fr;
    min-height: 27rem;
    border-color: var(--line);
    background: var(--surface);
    box-shadow: none;
  }

  .service-card::before,
  .service-card::after {
    display: none;
  }

  .service-card:hover,
  .service-card:focus-visible {
    transform: translateY(-0.35rem);
    box-shadow: var(--shadow);
  }

  .service-card img {
    position: static;
    height: 100%;
    transform: none;
    filter: none;
  }

  .service-card div {
    position: static;
    min-height: auto;
    border-top: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
      var(--surface);
    color: var(--text);
    transform: none;
  }

  .service-card span {
    margin-bottom: 3.4rem;
    color: var(--blue-light);
  }

  .service-card h3 {
    color: var(--text);
    font-size: 1.2rem;
  }

  .service-card p {
    color: var(--muted);
    opacity: 1;
    transform: none;
  }

  .detail-hero-media {
    min-height: 28rem;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .footer-contact {
    justify-items: start;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    padding-block: 0.62rem;
  }

  .site-header::after {
    left: 1rem;
    right: 1rem;
  }

  .nav-links {
    display: none;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 2.2rem;
    height: 2.2rem;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .language-switch a {
    min-width: 2.2rem;
    min-height: 2.2rem;
  }

  .hero {
    display: grid;
    min-height: calc(100svh - 3.8rem);
    padding: 2rem 1rem 7rem;
  }

  .hero-copy {
    max-width: min(38rem, 92vw);
  }

  .hero-video-media {
    transform: none !important;
    object-position: 55% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(3, 8, 12, 0.7), rgba(3, 8, 12, 0.12)),
      linear-gradient(0deg, rgba(3, 8, 12, 0.96) 0%, rgba(3, 8, 12, 0.3) 62%, rgba(3, 8, 12, 0.18) 100%);
  }

  h1 {
    max-width: 11ch;
    margin-bottom: 0.85rem;
    font-size: clamp(2.7rem, 10vw, 4.3rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3.4rem);
  }

  .intro {
    font-size: 1rem;
    line-height: 1.48;
  }

  .section,
  .split-section,
  .contact-prep {
    padding: 3.6rem 1rem;
  }

  .service-strip {
    margin-top: -3.8rem;
    padding-top: 6.3rem;
  }

  .section-heading {
    gap: 0.8rem;
    margin-bottom: 1.2rem;
  }

  .section-heading,
  .proof-band,
  .service-grid,
  .contact-routes,
  .prep-grid,
  .location-panel,
  .location-map {
    grid-template-columns: 1fr;
  }

  .proof-band {
    margin-inline: 1rem;
  }

  .proof-band div {
    padding: 1rem;
  }

  .prep-card,
  .contact-routes article {
    min-height: auto;
    gap: 1rem;
  }

  .contact-form {
    padding: 1rem;
  }

  .contact-form-heading {
    grid-template-columns: 1fr;
  }

  .form-actions {
    grid-template-columns: 1fr;
  }

  .location-photo,
  .location-map,
  .location-map iframe {
    min-height: 18rem;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 35;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: var(--ink);
  }

  .mobile-cta a {
    display: grid;
    min-height: 3.4rem;
    place-items: center;
    color: var(--white);
    font-weight: 950;
  }

  .mobile-cta a:first-child {
    background: var(--blue);
    color: #00151f;
  }

  body {
    padding-bottom: 3.4rem;
  }

  .site-footer {
    padding-bottom: calc(3rem + 3.4rem);
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 0.85rem;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .phone-link {
    min-height: 2.65rem;
    padding: 0.68rem 0.72rem;
    font-size: 0.86rem;
  }

  .language-switch a {
    min-width: 2rem;
    min-height: 2.65rem;
    font-size: 0.7rem;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .hero {
    min-height: calc(100svh - 3.7rem);
    padding: 1.5rem 0.85rem 6.25rem;
  }

  h1 {
    margin-bottom: 0.75rem;
    font-size: clamp(2.25rem, 11.7vw, 3.35rem);
    line-height: 0.94;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy .eyebrow {
    margin-bottom: 0.55rem;
    font-size: 0.68rem;
  }

  .hero-copy .intro {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.42;
  }

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

  .hero-actions {
    gap: 0.55rem;
    margin-top: 0.9rem;
  }

  .button {
    min-height: 3rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .service-card {
    grid-template-columns: 7.2rem minmax(0, 1fr);
    grid-template-rows: auto;
    min-height: auto;
  }

  .service-card img {
    min-height: 8.7rem;
    aspect-ratio: 1;
  }

  .service-card div {
    display: grid;
    min-height: 8.7rem;
    align-content: center;
    padding: 0.85rem;
  }

  .service-card h3 {
    min-height: auto;
    margin-bottom: 0.35rem;
    font-size: 1.08rem;
  }

  .service-card p {
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .service-card span,
  .contact-routes span {
    min-height: auto;
    margin-bottom: 0.45rem;
    font-size: 0.68rem;
  }

  .prep-card h3 {
    max-width: none;
    font-size: 1.45rem;
  }

  .contact-routes article {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .contact-form h3 {
    font-size: 1.7rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 3rem;
    padding: 0.78rem;
  }

  .location-copy .button.secondary {
    width: 100%;
  }

  .detail-hero {
    padding-inline: 0.85rem;
  }

  .detail-hero-media {
    min-height: 18rem;
  }

  .detail-hero-copy h1 {
    font-size: clamp(2.55rem, 13vw, 3.8rem);
  }

  .detail-content {
    padding-inline: 0.85rem;
  }
}

@media (max-width: 390px) {
  .site-header {
    gap: 0.55rem;
  }

  .site-header .brand-mark {
    display: none;
  }

  .phone-link {
    font-size: 0;
  }

  .phone-link::after {
    content: "Bel";
    font-size: 0.9rem;
  }

  html[lang="en"] .phone-link::after {
    content: "Call";
  }

  h1 {
    font-size: clamp(2rem, 11vw, 2.85rem);
  }

  .service-card {
    grid-template-columns: 6.3rem minmax(0, 1fr);
  }

  .service-card img {
    min-height: 8rem;
  }

  .service-card div {
    min-height: 8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

  .hero-video-media {
    transform: none;
  }
}
