/* ============ TOKENS ============ */
:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.875rem;
  --radius-full: 9999px;

  --content-narrow: 660px;
  --content-default: 1020px;
  --content-wide: 1280px;

  --font-display: 'Archivo', 'Arial Narrow', sans-serif;
  --font-body: 'Satoshi', 'Inter', 'Helvetica Neue', sans-serif;

  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* brand constants */
  --navy: #032a58;
  --navy-deep: #041c39;
  --aqua: #17dcfd;
}

:root,
[data-theme='light'] {
  --color-bg: #f7f9fb;
  --color-surface: #ffffff;
  --color-surface-2: #eef3f8;
  --color-surface-offset: #e6edf4;
  --color-divider: rgba(3, 42, 88, 0.1);
  --color-border: rgba(3, 42, 88, 0.16);

  --color-text: #032a58;
  --color-text-muted: #52657a;
  --color-text-faint: #8a99a9;
  --color-text-inverse: #ffffff;

  --color-primary: #032a58;
  --color-primary-hover: #06407f;
  --color-on-primary: #ffffff;

  --color-rule: #17dcfd;

  --shadow-sm: 0 1px 2px rgba(3, 42, 88, 0.07);
  --shadow-md: 0 6px 20px rgba(3, 42, 88, 0.09);
  --shadow-lg: 0 18px 44px rgba(3, 42, 88, 0.14);

  --icon-filter: none;
}

[data-theme='dark'] {
  --color-bg: #041c39;
  --color-surface: #062c5a;
  --color-surface-2: #05264c;
  --color-surface-offset: #073366;
  --color-divider: rgba(255, 255, 255, 0.12);
  --color-border: rgba(255, 255, 255, 0.2);

  --color-text: #eaf2f9;
  --color-text-muted: #a8bed4;
  --color-text-faint: #6f8aa6;
  --color-text-inverse: #032a58;

  --color-primary: #17dcfd;
  --color-primary-hover: #6ae8ff;
  --color-on-primary: #032a58;

  --color-rule: #17dcfd;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 18px 44px rgba(0, 0, 0, 0.5);

  --icon-filter: brightness(0) invert(1);
}

/* ============ BASE ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul[role='list'] {
  list-style: none;
}
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
  line-height: 1.05;
  font-family: var(--font-display);
  font-variation-settings:
    'wdth' 88,
    'wght' 800;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

p,
li {
  text-wrap: pretty;
}

::selection {
  background: rgba(23, 220, 253, 0.32);
}

:focus-visible {
  outline: 2px solid var(--color-rule);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

a,
button {
  transition:
    color var(--transition-interactive),
    background var(--transition-interactive),
    border-color var(--transition-interactive),
    box-shadow var(--transition-interactive),
    transform var(--transition-interactive);
}

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

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

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -100px;
  z-index: 200;
  background: var(--aqua);
  color: var(--navy);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  top: var(--space-4);
}

/* ============ SHARED ============ */
.wrap {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-12));
}
.wrap--default {
  max-width: var(--content-default);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 3px;
  background: var(--color-rule);
  flex: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 52px;
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: var(--radius-md);
  white-space: nowrap;
}
.btn--primary {
  background: var(--aqua);
  color: var(--navy);
}
.btn--primary:hover {
  background: #6ae8ff;
  transform: translateY(-1px);
}
.btn--solid {
  background: var(--color-primary);
  color: var(--color-on-primary);
}
.btn--solid:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}
.btn--ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.34);
  color: #fff;
}
.btn--ghost:hover {
  border-color: var(--aqua);
  color: var(--aqua);
}
.btn--outline {
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
}
.btn--outline:hover {
  border-color: var(--color-text);
}

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  min-height: 68px;
  padding-block: var(--space-3);
}
.header__logo {
  flex: none;
  line-height: 0;
}
.header__logo img {
  width: clamp(148px, 20vw, 208px);
}
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(var(--space-4), 2.2vw, var(--space-8));
}
.nav a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav a:hover {
  color: var(--aqua);
}
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: none;
}
.toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.toggle:hover {
  color: var(--aqua);
  border-color: var(--aqua);
}
.header .btn {
  min-height: 44px;
  padding-inline: var(--space-5);
}
@media (max-width: 900px) {
  .nav {
    display: none;
  }
}
@media (max-width: 560px) {
  .header__call-label {
    display: none;
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 50%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(4, 22, 44, 0.97) 0%, rgba(4, 22, 44, 0.86) 42%, rgba(4, 22, 44, 0.4) 74%, rgba(4, 22, 44, 0.34) 100%),
    linear-gradient(to top, rgba(4, 22, 44, 0.9) 0%, rgba(4, 22, 44, 0) 45%);
}
@media (max-width: 760px) {
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(4, 22, 44, 0.88) 0%, rgba(4, 22, 44, 0.6) 62%, rgba(4, 22, 44, 0.8) 100%),
      linear-gradient(90deg, rgba(4, 22, 44, 0.55) 0%, rgba(4, 22, 44, 0.05) 100%);
  }
  .hero__bg img {
    object-position: 62% 50%;
  }
}
.hero__inner {
  padding-block: clamp(var(--space-16), 11vw, var(--space-32));
  max-width: 44rem;
}
.hero .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}
.hero h1 {
  margin-top: var(--space-5);
  font-size: var(--text-3xl);
  font-variation-settings:
    'wdth' 84,
    'wght' 850;
  color: #fff;
}
.hero h1 em {
  font-style: normal;
  color: var(--aqua);
}
.hero__lede {
  margin-top: var(--space-6);
  font-size: var(--text-lg);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  max-width: 34rem;
}
.hero__cta {
  margin-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.hero__facts {
  margin-top: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-8);
  list-style: none;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.82);
}
.hero__facts li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.hero__facts li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--aqua);
  border-radius: 50%;
  flex: none;
}

/* ============ SECTION ============ */
.section {
  padding-block: clamp(var(--space-16), 9vw, var(--space-24));
}
.section--tight {
  padding-block: clamp(var(--space-12), 6vw, var(--space-16));
}
.section--surface {
  background: var(--color-surface-2);
}
.section__head {
  max-width: 40rem;
}
.section__head h2 {
  margin-top: var(--space-4);
  font-size: var(--text-xl);
}
.section__head p {
  margin-top: var(--space-4);
  color: var(--color-text-muted);
  max-width: 46ch;
}

/* ============ SERVICES ============ */
.services {
  margin-top: clamp(var(--space-10), 5vw, var(--space-16));
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(6, 1fr);
}
.svc {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-6), 3vw, var(--space-10));
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  box-shadow: var(--shadow-sm);
}
.svc--lead {
  grid-column: span 3;
}
.svc--wide {
  grid-column: span 3;
}
.svc__icon {
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: var(--icon-filter);
}
.svc--lead .svc__icon {
  width: 92px;
  height: 92px;
}
.svc h3 {
  font-size: var(--text-lg);
  font-variation-settings:
    'wdth' 92,
    'wght' 780;
}
.svc p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin: 0;
}
.svc--list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.svc--list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.svc--list li::before {
  content: '';
  flex: none;
  width: 7px;
  height: 7px;
  background: var(--color-rule);
  border-radius: 50%;
}

.svc__price {
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}
@media (max-width: 900px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc,
  .svc--lead,
  .svc--wide {
    grid-column: span 1;
  }
  .svc--list {
    grid-column: span 2;
  }
  .svc--list ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-3) var(--space-6);
  }
}
@media (max-width: 560px) {
  .services {
    grid-template-columns: 1fr;
  }
  .svc--list {
    grid-column: span 1;
  }
  .svc--list ul {
    flex-direction: column;
  }
}

/* ============ SPLIT (why soft wash) ============ */
.split {
  display: grid;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}
@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
  }
}
.prose h2 {
  margin-top: var(--space-4);
  font-size: var(--text-xl);
}
.prose h2 + p {
  margin-top: var(--space-6);
}
.prose p + p {
  margin-top: var(--space-5);
}
.prose p {
  max-width: 60ch;
}
.prose strong {
  color: var(--color-text);
}
.pullquote {
  border-left: 3px solid var(--color-rule);
  padding-left: var(--space-6);
}
.pullquote p {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-variation-settings:
    'wdth' 90,
    'wght' 760;
  font-size: var(--text-lg);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.pullquote cite {
  display: block;
  margin-top: var(--space-4);
  font-style: normal;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-faint);
}

/* ============ STEPS ============ */
.steps {
  margin-top: clamp(var(--space-10), 5vw, var(--space-16));
  display: grid;
  gap: var(--space-8);
  grid-template-columns: repeat(3, 1fr);
  counter-reset: step;
}
.step {
  border-top: 3px solid var(--color-rule);
  padding-top: var(--space-5);
}
.step__num {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-variation-settings:
    'wdth' 90,
    'wght' 820;
  color: var(--color-text-faint);
}
.step h3 {
  margin-top: var(--space-2);
  font-size: var(--text-lg);
  font-variation-settings:
    'wdth' 92,
    'wght' 780;
}
.step p {
  margin-top: var(--space-3);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
@media (max-width: 780px) {
  .steps {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

/* ============ FLEET BAND ============ */
.fleet {
  background: var(--navy);
  color: #fff;
}
.fleet__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: stretch;
  gap: 0;
}
.fleet__media {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}
.fleet__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 22%;
  filter: brightness(1.18) saturate(1.05);
}
.fleet__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 42, 88, 0.3) 0%, rgba(3, 42, 88, 0.05) 40%, rgba(3, 42, 88, 0.72) 88%, rgba(3, 42, 88, 0.96) 100%);
}
.fleet__body {
  padding: clamp(var(--space-10), 6vw, var(--space-24)) clamp(var(--space-5), 5vw, var(--space-16));
}
.fleet .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}
.fleet h2 {
  margin-top: var(--space-4);
  font-size: var(--text-xl);
  color: #fff;
}
.fleet p {
  margin-top: var(--space-5);
  color: rgba(255, 255, 255, 0.86);
  max-width: 52ch;
}
.fleet__list {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
}
.fleet__list li {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.9);
}
.fleet .btn {
  margin-top: var(--space-8);
}
@media (max-width: 860px) {
  .fleet__grid {
    grid-template-columns: 1fr;
  }
  .fleet__media {
    min-height: 200px;
  }
}

/* ============ AREAS ============ */
.areas {
  margin-top: var(--space-10);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-3);
  list-style: none;
}
.areas li {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-variation-settings:
    'wdth' 90,
    'wght' 720;
  font-size: var(--text-lg);
  line-height: 1.1;
  color: var(--color-text);
}
.areas li:not(:last-child)::after {
  content: '·';
  margin-left: var(--space-3);
  color: var(--color-rule);
}
.areas__note {
  margin-top: var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* ============ BEFORE / AFTER GALLERY ============ */
.ba-grid {
  margin-top: clamp(var(--space-10), 5vw, var(--space-16));
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(var(--space-5), 2.5vw, var(--space-8));
}
.ba {
  margin: 0;
  min-width: 0;
}

.ba__frame {
  position: relative;
  aspect-ratio: var(--ba-ratio, 4 / 5);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-surface-offset);
  box-shadow: 0 1px 2px rgba(3, 42, 88, 0.12), 0 18px 40px -28px rgba(3, 42, 88, 0.5);
  --pos: 50%;
}
.ba__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.ba__img--tall {
  object-position: 50% 28%;
}
.ba__img--walk {
  object-position: 34% 62%;
}
.ba__img--drive {
  object-position: 50% 50%;
}
.ba__img--after {
  clip-path: inset(0 0 0 var(--pos));
}

.ba__tag {
  position: absolute;
  top: var(--space-3);
  z-index: 3;
  padding: 0.3em 0.7em;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  font-stretch: 100%;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
}
.ba__tag--l {
  left: var(--space-3);
  background: rgba(4, 28, 57, 0.82);
  color: #fff;
}
.ba__tag--r {
  right: var(--space-3);
  background: var(--aqua);
  color: var(--navy);
}

.ba__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  z-index: 4;
  width: 2px;
  margin-left: -1px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(4, 28, 57, 0.28);
  pointer-events: none;
}
.ba__grip {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-full);
  background: #fff;
  box-shadow: 0 2px 10px rgba(4, 28, 57, 0.35);
}
.ba__grip::before,
.ba__grip::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 0.4rem;
  height: 0.4rem;
  border-top: 2px solid var(--navy);
  border-right: 2px solid var(--navy);
}
.ba__grip::before {
  left: 0.72rem;
  rotate: -135deg;
  translate: 0 -50%;
}
.ba__grip::after {
  right: 0.72rem;
  rotate: 45deg;
  translate: 0 -50%;
}

.ba__range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: ew-resize;
}
.ba__range:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 3px;
}
.ba__range::-webkit-slider-runnable-track {
  height: 100%;
  background: transparent;
}
.ba__range::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 3rem;
  height: 100vh;
  background: transparent;
  border: 0;
  cursor: ew-resize;
}
.ba__range::-moz-range-track {
  height: 100%;
  background: transparent;
  border: 0;
}
.ba__range::-moz-range-thumb {
  width: 3rem;
  height: 100vh;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: ew-resize;
}

.ba--still .ba__frame {
  cursor: default;
}

.ba figcaption {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: 52ch;
}

@media (max-width: 620px) {
  .ba-grid {
    grid-template-columns: 1fr;
  }
  .ba__grip {
    width: 2.25rem;
    height: 2.25rem;
  }
}

/* ============ FAQ ============ */
.faq {
  margin-top: clamp(var(--space-8), 4vw, var(--space-12));
  border-top: 1px solid var(--color-divider);
}
.faq details {
  border-bottom: 1px solid var(--color-divider);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding-block: var(--space-5);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-variation-settings:
    'wdth' 92,
    'wght' 760;
  font-size: var(--text-base);
  letter-spacing: -0.005em;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: '';
  margin-left: auto;
  flex: none;
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-right: 2.5px solid var(--color-rule);
  border-bottom: 2.5px solid var(--color-rule);
  transform: rotate(45deg);
  transition: transform var(--transition-interactive);
}
.faq details[open] summary::after {
  transform: rotate(-135deg);
}
.faq summary:hover {
  color: var(--color-text-muted);
}
.faq__a {
  padding-bottom: var(--space-6);
  color: var(--color-text-muted);
  max-width: 66ch;
}
.faq__a p + p {
  margin-top: var(--space-4);
}

/* ============ CONTACT ============ */
.contact {
  background: var(--navy);
  color: #fff;
  text-align: center;
}
.contact__inner {
  padding-block: clamp(var(--space-16), 9vw, var(--space-24));
}
.contact .eyebrow {
  justify-content: center;
  color: rgba(255, 255, 255, 0.78);
}
.contact h2 {
  margin-top: var(--space-5);
  font-size: var(--text-xl);
  color: #fff;
}
.contact__phone {
  display: inline-block;
  margin-top: var(--space-6);
  font-family: var(--font-display);
  font-variation-settings:
    'wdth' 82,
    'wght' 860;
  font-size: var(--text-3xl);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
}
.contact__phone:hover {
  color: var(--aqua);
}
.contact__cta {
  margin-top: var(--space-8);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.contact__trust {
  margin-top: var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aqua);
}

.contact__avail {
  max-width: 42ch;
  margin-inline: auto;
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: var(--text-sm);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}
.contact__avail strong {
  color: #fff;
  font-weight: 700;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.68);
  padding-block: var(--space-12);
  font-size: var(--text-sm);
}
.footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.footer__logo img {
  width: 180px;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  list-style: none;
}
.footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}
.footer a:hover {
  color: var(--aqua);
}
.footer__services {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-variation-settings:
    'wdth' 90,
    'wght' 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-sm);
}
.footer__legal {
  margin-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-6);
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--text-xs);
}

/* ============ MOBILE CALL BAR ============ */
.callbar {
  display: none;
}
@media (max-width: 700px) {
  .callbar {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: var(--space-3);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    background: var(--navy);
    border-top: 2px solid var(--aqua);
    padding: var(--space-3) var(--space-4);
  }
  .callbar__text {
    font-size: var(--text-xs);
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.72);
  }
  .callbar__text strong {
    display: block;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-variation-settings:
      'wdth' 90,
      'wght' 780;
    font-size: var(--text-base);
    color: #fff;
    letter-spacing: 0;
  }
  .callbar .btn {
    min-height: 46px;
  }
  body {
    padding-bottom: 82px;
  }
}

/* Satoshi's uppercase T carries a wide right sidebearing, so small tracked
   uppercase labels read as "EST IMATE" / "CONT RACT". Archivo sets them clean. */
.eyebrow,
.svc__price,
.contact__trust,
.ba__tag,
.callbar__text strong {
  font-family: var(--font-display);
  font-stretch: 100%;
  font-variant-ligatures: none;
}
