/* ─── DESIGN TOKENS ─────────────────────────────────────
   Locked from brand-identity-itfp.md
   ─────────────────────────────────────────────────────── */
:root {
  --c-navy: #002E5D;
  --c-navy-deep: #001E3D;
  --c-navy-darker: #001428;
  --c-ice: #F6FCFF;
  --c-ice-warm: #FAFDFF;
  --c-powder: #BEDCEA;
  --c-powder-soft: #DDEEF5;
  --c-charcoal: #262C2E;
  --c-slate: #4C585D;
  --c-steel: #7A848E;
  --c-mist: #C9D3D9;
  --c-royal: #1173FF;
  --c-gold: #C9A86A;
  --c-white: #FFFFFF;

  --f-display: "Helvetica Neue", "HelveticaNeue", Helvetica, Arial, sans-serif;
  --f-body: "Helvetica Neue", "HelveticaNeue", Helvetica, Arial, sans-serif;
  --f-mono: "SF Mono", "Menlo", "Consolas", monospace;

  --w-light: 200;
  --w-regular: 400;
  --w-medium: 500;
  --w-bold: 700;

  --tr-tight: -0.02em;
  --tr-wide: 0.18em;
  --tr-xwide: 0.28em;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --max-w: 1200px;
  --max-w-text: 720px;
  --topbar-h: 64px;
}

/* ─── RESET & BASE ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-weight: var(--w-regular);
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-charcoal);
  background: var(--c-ice);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-bottom: 0;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--c-navy); color: var(--c-white); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--c-navy); color: var(--c-white);
  padding: 12px 20px; font-size: 13px;
}
.skip-link:focus { left: 12px; top: 12px; z-index: 999; }

/* ─── TYPOGRAPHY UTILITIES ──────────────────────────── */
.eyebrow,
.section__head .eyebrow,
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: var(--w-bold);
  letter-spacing: var(--tr-xwide);
  text-transform: uppercase;
  color: var(--c-slate);
}
.eyebrow__num {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: var(--w-medium);
  color: var(--c-steel);
  letter-spacing: 0;
  font-feature-settings: "tnum";
}
.eyebrow__rule {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}

/* ─── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: var(--w-bold);
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: 0;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
  min-height: 52px;
}
.btn svg { transition: transform 0.3s var(--ease-out); }

.btn--primary {
  background: var(--c-navy-deep);
  color: var(--c-white);
  border-color: var(--c-navy-deep);
}
.btn--primary:hover {
  background: var(--c-white);
  color: var(--c-navy);
  border-color: var(--c-white);
}
.btn--primary:hover svg { transform: translateX(4px); }

.btn--ghost {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--ghost:hover {
  background: var(--c-white);
  color: var(--c-navy);
  border-color: var(--c-white);
}

.btn--lg { padding: 20px 36px; font-size: 13px; min-height: 60px; }

/* 2-line button variant: label + small note */
.btn--with-note { padding: 12px 24px; min-height: 56px; line-height: 1; }
.btn--with-note.btn--lg { padding: 16px 32px; min-height: 66px; }
.btn__text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.btn--primary .btn__text { align-items: center; }
.btn__label {
  font-size: 12px;
  font-weight: var(--w-bold);
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
}
.btn--lg .btn__label { font-size: 13px; }
.btn__note {
  font-size: 10px;
  font-weight: var(--w-regular);
  letter-spacing: 0.04em;
  text-transform: none;
  font-style: italic;
  opacity: 0.72;
  white-space: nowrap;
}
.btn--lg .btn__note { font-size: 11px; }

/* ─── TOPBAR ────────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-navy);
  color: var(--c-white);
  height: var(--topbar-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-white);
}
.topbar__logo {
  height: 38px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.topbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: var(--w-bold);
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: var(--c-white);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  line-height: 1;
}
.topbar__cta:hover { background: var(--c-white); color: var(--c-navy); border-color: var(--c-white); }
.topbar__cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.topbar__cta-label { font-size: 12px; letter-spacing: var(--tr-wide); }
.topbar__cta-note {
  font-size: 9px;
  font-weight: var(--w-regular);
  letter-spacing: 0.02em;
  text-transform: none;
  font-style: italic;
  opacity: 0.7;
  white-space: nowrap;
}

/* ─── SECTION SHELL ─────────────────────────────────── */
.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section__head { margin-bottom: var(--space-7); }
.section__title {
  font-family: var(--f-display);
  font-weight: var(--w-light);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: var(--tr-tight);
  color: var(--c-navy);
  margin: var(--space-4) 0 0;
  max-width: 18ch;
}

/* ─── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--c-navy);
  color: var(--c-white);
  overflow: hidden;
  padding: clamp(64px, 12vh, 120px) 0 clamp(72px, 12vh, 120px);
  isolation: isolate;
}

.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='280' height='280'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(17, 115, 255, 0.18), transparent 55%),
              radial-gradient(circle at 10% 90%, rgba(17, 115, 255, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero__crosshair {
  position: absolute;
  top: 18%;
  right: -60px;
  width: clamp(280px, 30vw, 460px);
  color: rgba(190, 220, 234, 0.08);
  pointer-events: none;
  z-index: 0;
}
.hero__crosshair svg { width: 100%; height: auto; display: block; }

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.hero__eyebrow { color: rgba(255, 255, 255, 0.7); }
.hero__eyebrow .eyebrow__num { color: rgba(255, 255, 255, 0.5); }
.hero__eyebrow .eyebrow__rule { background: rgba(255, 255, 255, 0.4); }

.hero__title {
  font-family: var(--f-display);
  font-weight: var(--w-light);
  font-size: clamp(48px, 9vw, 104px);
  line-height: 0.92;
  letter-spacing: var(--tr-tight);
  margin: var(--space-5) 0 var(--space-6);
  color: var(--c-white);
}
.hero__line { display: block; }
.hero__line--accent {
  font-style: italic;
  font-weight: var(--w-light);
  position: relative;
  padding-left: 0.04em;
  color: var(--c-powder);
}

.hero__sub {
  font-family: var(--f-display);
  font-weight: var(--w-light);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.35;
  letter-spacing: var(--tr-tight);
  color: rgba(255, 255, 255, 0.94);
  max-width: 36ch;
  margin: 0 0 var(--space-6);
}
.hero__sub em { font-style: italic; color: var(--c-powder); }

.hero__meta {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 var(--space-5);
  max-width: 56ch;
}

.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-6);
  padding: 10px 0;
}
.hero__rating-text {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
}
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--c-royal);
}
.stars svg { width: 16px; height: 16px; fill: currentColor; }
.stars--small svg { width: 13px; height: 13px; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 var(--space-7);
}

/* Hero pull-quote (Santana) */
.hero__quote {
  position: relative;
  margin: var(--space-5) 0 var(--space-6);
  padding: 32px 28px 28px;
  background: rgba(0, 0, 0, 0.18);
  border-left: 2px solid var(--c-powder);
  isolation: isolate;
  max-width: 520px;
}
.hero__quote-mark {
  position: absolute;
  top: -12px;
  left: 22px;
  font-family: "Times New Roman", Georgia, serif;
  font-size: 96px;
  line-height: 1;
  color: var(--c-powder);
  opacity: 0.4;
  font-weight: var(--w-bold);
  z-index: -1;
  pointer-events: none;
}
.hero__quote-body {
  font-family: var(--f-display);
  font-weight: var(--w-light);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--c-white);
  margin: 0 0 18px;
}
.hero__quote-body strong {
  font-weight: var(--w-medium);
  color: var(--c-powder);
}
.hero__quote-source {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 11px;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.hero__quote-stars {
  display: inline-flex;
  gap: 1px;
  color: var(--c-royal);
}
.hero__quote-stars svg { width: 12px; height: 12px; fill: currentColor; }
.hero__quote-author {
  font-weight: var(--w-bold);
  letter-spacing: var(--tr-wide);
  font-size: 10px;
}

@media (min-width: 1024px) {
  .hero__inner { padding-right: clamp(360px, 32vw, 460px); }
  .hero__quote {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    width: clamp(300px, 28vw, 400px);
    max-width: none;
    margin: 0;
    padding: 36px 32px 32px;
  }
  .hero__quote-body {
    font-size: clamp(18px, 1.5vw, 22px);
  }
}

.call-disclosure {
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--c-steel);
  margin: 0 0 var(--space-6);
}
.call-disclosure--on-navy { color: rgba(255, 255, 255, 0.55); }
.call-disclosure--centered { text-align: center; margin-top: var(--space-4); margin-bottom: 0; }

.hero__proof {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
}
.hero__proof li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.68);
}
.hero__proof li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 8px; height: 1px;
  background: var(--c-powder);
  transform: translateY(-50%);
}

/* ─── REVIEWS ───────────────────────────────────────── */
.reviews {
  background: var(--c-ice);
  padding: var(--space-9) 0;
  border-bottom: 1px solid var(--c-mist);
}
.section__rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--space-4);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--c-slate);
}
.section__rating strong { color: var(--c-navy); }

.reviews__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 1px;
  background: var(--c-mist);
  border: 1px solid var(--c-mist);
}
.review {
  background: var(--c-white);
  padding: 36px 32px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.review--featured {
  background: var(--c-navy);
  color: var(--c-white);
}
.review--featured .review__source { color: rgba(255, 255, 255, 0.7); }
.review--featured .review__author { color: var(--c-white); }

.review__quote {
  font-family: "Times New Roman", Georgia, serif;
  font-size: 88px;
  line-height: 0.6;
  font-weight: var(--w-bold);
  color: var(--c-powder);
  display: block;
  height: 30px;
}
.review--featured .review__quote { color: rgba(190, 220, 234, 0.4); }

.review__body {
  font-family: var(--f-display);
  font-weight: var(--w-light);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0;
  margin: 0;
  flex: 1;
  color: inherit;
}
.review--featured .review__body { font-size: 19px; }
.review__body strong { font-weight: var(--w-medium); }

.review__source {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--c-steel);
  padding-top: 18px;
  border-top: 1px solid var(--c-mist);
}
.review--featured .review__source { border-top-color: rgba(255, 255, 255, 0.15); }

.review__author {
  font-weight: var(--w-bold);
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: var(--c-navy);
  font-size: 11px;
}
.review__meta { font-size: 11px; letter-spacing: 0.04em; }

.reviews__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-6);
  font-size: 12px;
  font-weight: var(--w-bold);
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: var(--c-navy);
  border-bottom: 1px solid var(--c-navy);
  padding-bottom: 4px;
  transition: gap 0.3s var(--ease-out);
}
.reviews__all:hover { gap: 14px; }

/* ─── ABOUT ─────────────────────────────────────────── */
.about {
  background: var(--c-powder-soft);
  padding: var(--space-9) 0;
  position: relative;
}
.about__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 1.4fr;
  gap: var(--space-8);
  align-items: start;
}
.about__photo-wrap {
  position: relative;
  background: var(--c-navy);
}
.about__photo {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(15%) contrast(1.05);
  transition: filter 0.6s var(--ease-out);
}
.about__photo:hover { filter: grayscale(0%) contrast(1); }

.about__photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(0, 30, 61, 0.95), transparent);
  color: var(--c-white);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.caption__name {
  font-size: 13px;
  font-weight: var(--w-bold);
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
}
.caption__title {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
}

.about__content { padding-top: 8px; }
.about__lede {
  font-family: var(--f-display);
  font-weight: var(--w-light);
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: var(--tr-tight);
  color: var(--c-navy);
  margin: var(--space-6) 0 var(--space-5);
}
.about__lede strong { font-weight: var(--w-medium); }

.about__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-charcoal);
  margin: 0 0 var(--space-6);
  max-width: 56ch;
}
.about__body strong { color: var(--c-navy); font-weight: var(--w-bold); }

.credentials {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--c-mist);
}
.credentials li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-mist);
  font-size: 14px;
  color: var(--c-charcoal);
  letter-spacing: 0.01em;
}
.credentials__bullet {
  color: var(--c-steel);
  font-weight: var(--w-bold);
}

/* ─── SPECIALTIES ───────────────────────────────────── */
.specialties {
  background: var(--c-ice);
  padding: var(--space-9) 0;
}
.specialty-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--c-mist);
}
.specialty {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--space-7);
  padding: var(--space-7) 0;
  border-bottom: 1px solid var(--c-mist);
  align-items: baseline;
  transition: background 0.3s var(--ease-out);
}
.specialty:hover { background: var(--c-ice-warm); }
.specialty__num {
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: var(--w-medium);
  letter-spacing: 0;
  color: var(--c-steel);
  font-feature-settings: "tnum";
}
.specialty__title {
  font-family: var(--f-display);
  font-weight: var(--w-light);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
  letter-spacing: var(--tr-tight);
  color: var(--c-navy);
  margin: 0 0 var(--space-3);
}
.specialty__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-charcoal);
  max-width: 64ch;
  margin: 0;
}
.specialty__desc strong { color: var(--c-navy); font-weight: var(--w-bold); }

/* ─── PROCESS ───────────────────────────────────────── */
.process {
  background: var(--c-navy);
  color: var(--c-white);
  padding: var(--space-9) 0;
  position: relative;
}
.process .section__title { color: var(--c-white); }
.process .eyebrow { color: rgba(255, 255, 255, 0.7); }
.process .eyebrow__num { color: rgba(255, 255, 255, 0.5); }
.process .eyebrow__rule { background: rgba(255, 255, 255, 0.4); }

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.step {
  padding: var(--space-7) var(--space-5) var(--space-7) 0;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.step:last-child { border-right: none; padding-right: 0; }
.step:not(:first-child) { padding-left: var(--space-5); }
.step__num {
  font-family: var(--f-display);
  font-weight: var(--w-light);
  font-size: 56px;
  line-height: 1;
  color: var(--c-powder);
  letter-spacing: 0;
  margin-bottom: var(--space-3);
}
.step__title {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: var(--w-bold);
  letter-spacing: var(--tr-xwide);
  text-transform: uppercase;
  color: var(--c-white);
  margin: 0;
}
.step__desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* ─── LOCATION ──────────────────────────────────────── */
.location {
  background: var(--c-ice);
  padding: var(--space-9) 0;
}
.location__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: stretch;
}
.location__info { padding-top: 8px; display: flex; flex-direction: column; }
.location__address {
  font-style: normal;
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: var(--w-light);
  line-height: 1.55;
  color: var(--c-charcoal);
  margin: var(--space-6) 0 var(--space-6);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--c-mist);
}
.location__address strong { font-weight: var(--w-bold); color: var(--c-navy); letter-spacing: var(--tr-wide); text-transform: uppercase; font-size: 12px; display: block; margin-bottom: 6px; }

.location__hours,
.location__contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: var(--space-5);
}
.location__hours { flex-direction: row; gap: 12px; align-items: baseline; flex-wrap: wrap; }
.location__label {
  font-size: 11px;
  letter-spacing: var(--tr-xwide);
  text-transform: uppercase;
  color: var(--c-steel);
  font-weight: var(--w-bold);
}
.location__contact a {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: var(--w-light);
  color: var(--c-navy);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.location__contact a:hover { border-bottom-color: var(--c-navy); }
.location__contact span { color: var(--c-steel); }
.location__contact { flex-direction: row; gap: 14px; align-items: baseline; flex-wrap: wrap; }

.location__directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-3);
  font-size: 12px;
  font-weight: var(--w-bold);
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: var(--c-navy);
  border-bottom: 1px solid var(--c-navy);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: gap 0.3s var(--ease-out);
}
.location__directions:hover { gap: 14px; }

.location__map {
  background: var(--c-navy);
  min-height: 380px;
  position: relative;
  display: block;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
}
.map-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
}
.map-card__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.location__map:hover .map-card__svg { transform: scale(1.04); }
.map-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px 28px;
  background: linear-gradient(to top, rgba(0, 30, 61, 0.92) 0%, transparent 100%);
  color: var(--c-white);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.map-card__label {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: var(--w-bold);
  letter-spacing: var(--tr-xwide);
  text-transform: uppercase;
  color: var(--c-powder);
}
.map-card__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: var(--w-medium);
  letter-spacing: 0.04em;
  color: var(--c-white);
  transition: gap 0.3s var(--ease-out);
}
.location__map:hover .map-card__action { gap: 12px; }

/* ─── FAQ ───────────────────────────────────────────── */
.faq {
  background: var(--c-ice);
  padding: var(--space-9) 0;
  border-top: 1px solid var(--c-mist);
}
.faq__list {
  max-width: 880px;
  border-top: 1px solid var(--c-navy);
}
.faq__item {
  border-bottom: 1px solid var(--c-mist);
}
.faq__item summary {
  font-family: var(--f-display);
  font-weight: var(--w-light);
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: var(--tr-tight);
  color: var(--c-navy);
  padding: 26px 48px 26px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: var(--w-light);
  color: var(--c-steel);
  line-height: 1;
  transition: transform 0.3s var(--ease-out), color 0.3s;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); color: var(--c-navy); }
.faq__item summary:hover { color: var(--c-royal); }

.faq__answer {
  padding: 0 56px 28px 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-charcoal);
  max-width: 64ch;
}
.faq__answer a { color: var(--c-navy); border-bottom: 1px solid var(--c-navy); }
.faq__answer strong { color: var(--c-navy); }

/* ─── CTA FINAL ─────────────────────────────────────── */
.cta-final {
  background: var(--c-navy-deep);
  color: var(--c-white);
  padding: clamp(80px, 14vh, 140px) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-final__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='280' height='280'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.7;
  pointer-events: none;
  z-index: -1;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(17, 115, 255, 0.12), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.cta-final__inner { text-align: center; }
.cta-final__eyebrow {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: var(--w-bold);
  letter-spacing: var(--tr-xwide);
  text-transform: uppercase;
  color: var(--c-powder);
  margin: 0 0 var(--space-5);
}
.cta-final__title {
  font-family: var(--f-display);
  font-weight: var(--w-light);
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1;
  letter-spacing: var(--tr-tight);
  color: var(--c-white);
  margin: 0 0 var(--space-7);
}
.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ─── FOOTER ────────────────────────────────────────── */
.footer {
  background: var(--c-navy-darker);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-7) 0;
  font-size: 13px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-5);
  align-items: start;
}
.footer__brand {
  display: flex;
  align-items: center;
}
.footer__logo {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer__contact p,
.footer__meta p { margin: 0 0 6px; }
.footer a {
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, color 0.3s;
}
.footer a:hover { color: var(--c-white); border-bottom-color: var(--c-powder); }
.footer__meta { text-align: right; }
.footer__meta p:first-child { color: rgba(255, 255, 255, 0.5); }

/* ─── STICKY MOBILE CTA BAR ─────────────────────────── */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  z-index: 90;
  background: var(--c-navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta__btn {
  flex: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 12px 8px;
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: var(--w-bold);
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: var(--c-white);
  background: transparent;
  border: 0;
  line-height: 1.1;
}
.mobile-cta__row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mobile-cta__note {
  font-size: 9px;
  font-weight: var(--w-regular);
  letter-spacing: 0.02em;
  text-transform: none;
  font-style: italic;
  opacity: 0.7;
  white-space: nowrap;
}
.mobile-cta__btn--primary {
  background: var(--c-royal);
}

/* ─── ANIMATIONS ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .review--featured { grid-column: 1 / -1; }
  .about__inner { grid-template-columns: 280px 1fr; gap: var(--space-7); }
  .location__inner { gap: var(--space-7); }
}

@media (max-width: 768px) {
  body { padding-bottom: 64px; }
  .topbar__logo { height: 32px; }

  .hero { padding: 64px 0 80px; }
  .hero__crosshair { right: -120px; opacity: 0.7; }
  .hero__title { font-size: clamp(40px, 11vw, 56px); }
  .hero__sub { font-size: 19px; max-width: 100%; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__proof { flex-direction: column; gap: 6px; }

  .reviews { padding: var(--space-8) 0; }
  .reviews__grid { grid-template-columns: 1fr; }
  .review--featured { grid-column: auto; }
  .review { padding: 28px 24px; }
  .review--featured .review__body { font-size: 17px; }

  .about__inner {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .about__photo-wrap { max-width: 320px; margin: 0 auto; }
  .about__lede { font-size: 19px; }

  .specialty {
    grid-template-columns: 1fr;
    gap: var(--space-3);
    padding: var(--space-6) 0;
  }
  .specialty__num { font-size: 13px; }

  .steps { grid-template-columns: 1fr; }
  .step {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: var(--space-6) 0;
  }
  .step:not(:first-child) { padding-left: 0; }
  .step:last-child { border-bottom: none; }
  .step__num { font-size: 44px; }

  .location__inner { grid-template-columns: 1fr; }
  .location__map { min-height: 280px; order: -1; }
  .map-card { min-height: 280px; }

  .faq__item summary { font-size: 17px; padding: 22px 40px 22px 0; }

  .cta-final { padding: 80px 0; }
  .cta-final__title { font-size: clamp(36px, 9vw, 56px); }
  .cta-final__actions { flex-direction: column; align-items: stretch; }
  .cta-final__actions .btn { width: 100%; }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: left;
    gap: var(--space-5);
  }
  .footer__meta { text-align: left; }

  .mobile-cta { display: flex; }
}

@media (max-width: 480px) {
  .topbar__inner { padding: 0 16px; }
  .section__inner { padding: 0 16px; }
  .hero__title { font-size: 44px; }
  .hero__sub { font-size: 17px; }
  .review { padding: 24px 20px; }
}

@media (min-width: 1400px) {
  .hero__crosshair { right: 4vw; }
}
