:root {
  --navy: #0e2a5e;
  --navy-deep: #081a3a;
  --navy-ink: #06122a;
  --red: #c8102e;
  --red-deep: #9a0a23;
  --gold: #d4a13f;
  --warm: #fff5e8;
  --bone: #f6f1e6;
  --paper: #fcf9f3;
  --ink: #0f0f10;
  --muted: #5b5544;
  --serif: "Fraunces", ui-serif, Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --shadow-lg: 0 30px 80px -30px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 12px 30px -12px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- ANNOUNCEMENT BAR ---- */
.topbar {
  background: var(--navy-ink);
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid #000;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar .lhs {
  display: flex;
  align-items: center;
  min-width: 0;
  position: relative;
  font-weight: 700;
}
.topbar .status-text {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.topbar .lhs .live {
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 99px;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}
.topbar a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.topbar a:hover {
  color: #ffd;
}

/* ---- NAV ---- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 249, 243, 0.94);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.brand-stack {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
}
.brand {
  display: flex;
  align-items: baseline;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 30px;
  letter-spacing: 0;
}
.brand .navy {
  color: var(--navy);
}
.brand .red {
  color: var(--red);
}
.brand-stack small,
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--navy);
  margin-top: 2px;
  text-transform: uppercase;
}
nav.menu {
  display: flex;
  gap: 32px;
  align-items: center;
}
nav.menu a {
  font-size: 15px;
  font-weight: 500;
  color: #222;
  position: relative;
}
nav.menu a:hover {
  color: var(--red);
}
nav.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
nav.menu a:hover::after {
  transform: scaleX(1);
}
.cta-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  padding: 13px 22px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid var(--red);
  transition: all 0.2s ease;
  box-shadow: 0 6px 18px -6px rgba(200, 16, 46, 0.5);
  position: relative;
}
.cta-call::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 99px;
  background: rgba(200, 16, 46, 0.35);
  z-index: -1;
  animation: ringpulse 2.4s ease-out infinite;
  display: none;
}
@keyframes ringpulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}
.cta-call:hover {
  background: #fff;
  color: var(--red);
  transform: translateY(-1px);
}
.cta-call svg {
  width: 16px;
  height: 16px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 99px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.menu-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  position: absolute;
}

.menu-toggle__bar:nth-child(1) {
  top: 14px;
}

.menu-toggle__bar:nth-child(2) {
  top: 21px;
}

.menu-toggle__bar:nth-child(3) {
  top: 28px;
}

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

@media (max-width: 880px) {
  header.nav {
    position: relative;
    top: auto;
  }

  .menu-toggle {
    display: inline-flex;
    position: fixed;
    top: calc(58px + constant(safe-area-inset-top));
    top: calc(58px + env(safe-area-inset-top));
    right: 24px;
    transform: none;
    z-index: 1000;
    box-shadow: 0 10px 28px -18px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.2s ease;
  }

  .nav-inner {
    position: relative;
    padding: 16px 88px 16px 24px;
  }

  nav.menu {
    display: flex;
    position: fixed;
    top: calc(112px + constant(safe-area-inset-top));
    top: calc(112px + env(safe-area-inset-top));
    left: 24px;
    right: 24px;
    max-height: calc(100vh - 94px);
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
    padding: 12px 0;
    gap: 0;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0.22s ease;
    z-index: 990;
  }

  nav.menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  nav.menu a {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
  }

  nav.menu a:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .cta-call span.label {
    display: none;
  }

  .cta-call {
    padding: 13px 18px;
  }
}

@media (max-width: 680px) {
  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }

  .wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  header.nav {
    width: 100vw;
    max-width: 100vw;
  }

  .topbar {
    padding: 7px 0;
    font-size: 13px;
  }

  .topbar .wrap {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 18px;
  }

  .topbar .lhs {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 0;
  }

  .topbar .lhs::after {
    content: "Open now";
    font-size: 13px;
    font-weight: 700;
  }

  .topbar .status-text {
    display: none;
  }

  .topbar .wrap > div:last-child {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 0;
  }

  .topbar .wrap > div:last-child::before {
    content: "\260E";
    margin-right: 6px;
    font-size: 13px;
    opacity: 0.82;
  }

  .topbar .wrap > div:last-child a {
    font-size: 13px;
    text-decoration: none;
  }

  .nav-inner {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 78px;
    padding: 12px 78px 12px 18px;
    gap: 12px;
  }

  .brand-stack {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .brand {
    max-width: 100%;
    font-size: clamp(19px, 5.8vw, 24px);
    white-space: nowrap;
  }

  .brand-stack small {
    max-width: 100%;
    font-size: 7px;
    letter-spacing: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    top: calc(52px + constant(safe-area-inset-top));
    top: calc(52px + env(safe-area-inset-top));
    right: 18px;
  }

  .cta-call {
    display: none;
  }

  nav.menu {
    top: calc(108px + constant(safe-area-inset-top));
    top: calc(108px + env(safe-area-inset-top));
    left: 18px;
    right: 18px;
    max-height: calc(100vh - 90px);
  }
}

@media (max-width: 420px) {
  .nav-inner {
    padding: 11px 66px 11px 14px;
    gap: 10px;
  }
  .brand {
    font-size: clamp(18px, 5.8vw, 22px);
  }
  .brand-stack small {
    font-size: 6.5px;
    letter-spacing: 0;
  }
  .menu-toggle {
    width: 42px;
    height: 42px;
    right: 14px;
  }

  nav.menu {
    top: calc(104px + constant(safe-area-inset-top));
    top: calc(104px + env(safe-area-inset-top));
  }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      1100px 580px at 88% 0%,
      rgba(212, 161, 63, 0.14),
      transparent 60%
    ),
    radial-gradient(
      800px 600px at 0% 100%,
      rgba(200, 16, 46, 0.05),
      transparent 60%
    ),
    linear-gradient(135deg, rgba(6, 18, 42, 0.045), transparent 42%),
    linear-gradient(180deg, #fffdf8 0%, var(--paper) 100%);
  padding: 88px 0 104px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 42, 94, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 42, 94, 0.026) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 30%,
    transparent 80%
  );
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  gap: 72px;
  align-items: center;
}
@media (max-width: 1000px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(6, 18, 42, 0.12);
  padding: 9px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-ink);
  box-shadow: 0 18px 44px -34px rgba(6, 18, 42, 0.45);
  margin-bottom: 26px;
}
.hero-badge .stars,
.hero-badge .badge-kicker {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}
h1.headline {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--navy-ink);
  max-width: 780px;
  margin: 0 0 34px;
}
.headline-subline {
  display: block;
  margin-top: 16px;
  font-family: var(--sans);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--red);
}
h1 .ital {
  font-style: italic;
  font-weight: 500;
  color: var(--red);
}
h1 .underline {
  display: inline-block;
  background: linear-gradient(transparent 62%, rgba(212, 161, 63, 0.45) 62%);
  padding: 0 4px;
}
.mobile-hero-break {
  display: none;
}
.lede {
  font-size: 19px;
  line-height: 1.65;
  max-width: 640px;
  color: #34322d;
  margin: 0 0 34px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  border-radius: 99px;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 10px 30px -10px rgba(200, 16, 46, 0.5);
}
.btn-primary:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -10px rgba(200, 16, 46, 0.65);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}
.btn svg {
  width: 16px;
  height: 16px;
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  padding-top: 26px;
  border-top: 1px solid rgba(6, 18, 42, 0.12);
}
@media (max-width: 560px) {
  .hero-trust {
    grid-template-columns: 1fr 1fr;
  }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 54px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(6, 18, 42, 0.08);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--navy-ink);
}
.trust-item .check {
  width: 26px;
  height: 26px;
  border-radius: 99px;
  background: rgba(212, 161, 63, 0.18);
  border: 1px solid rgba(212, 161, 63, 0.35);
  color: var(--navy-ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.trust-item .check svg {
  width: 14px;
  height: 14px;
}

/* ---- CALL CARD ---- */
.call-card {
  position: relative;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(6, 18, 42, 0.12);
  border-radius: 8px;
  padding: 42px 36px;
  box-shadow: 0 34px 90px -42px rgba(6, 18, 42, 0.38);
  overflow: hidden;
}
.call-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    400px 200px at 50% 0%,
    rgba(212, 161, 63, 0.14),
    transparent 60%
  );
  pointer-events: none;
}
.cc-stamp {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #e6f4ea;
  color: #1a7a3a;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 99px;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cc-stamp .dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 99px;
  animation: pulse 2s infinite;
}
.cc-eyebrow {
  font-size: 13px;
  letter-spacing: 0;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 800;
  margin: 0 0 12px;
}
.cc-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0 0 10px;
  color: var(--navy-ink);
}
.cc-sub {
  font-size: 15.5px;
  color: #3f3a31;
  margin: 0 0 26px;
  line-height: 1.55;
}
.cc-call {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: linear-gradient(135deg, var(--navy-ink), var(--navy-deep));
  color: #fff;
  padding: 20px 24px;
  border-radius: 10px;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
  position: relative;
  overflow: hidden;
}
.cc-call::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.cc-call:hover {
  background: var(--red);
  transform: translateY(-2px);
}
.cc-call:hover::after {
  transform: translateX(100%);
}
.cc-call .left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cc-call .ico {
  width: 48px;
  height: 48px;
  border-radius: 99px;
  background: var(--red);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cc-call:hover .ico {
  background: #fff;
  color: var(--red);
}
.cc-call .ico svg {
  width: 22px;
  height: 22px;
}
.cc-call .lbl {
  font-size: 12px;
  color: #a39c89;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}
.cc-call .num {
  font-size: 24px;
  font-weight: 800;
  font-family: var(--serif);
  letter-spacing: 0;
}
.cc-call .arrow {
  width: 32px;
  height: 32px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
}
.cc-call .arrow svg {
  width: 14px;
  height: 14px;
}
.cc-note {
  margin: 14px 0 0;
  padding-left: 2px;
  color: #5a5144;
  font-size: 13.5px;
  line-height: 1.55;
}
.cc-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}
.cc-meta div {
  background: #f7f1e6;
  border: 1px solid rgba(6, 18, 42, 0.06);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cc-meta svg {
  width: 18px;
  height: 18px;
  color: var(--navy);
  flex-shrink: 0;
}
.cc-meta b {
  color: var(--navy-ink);
  display: block;
  font-size: 14px;
}

@media (max-width: 480px) {
  .hero-ctas .btn {
    max-width: 100%;
    justify-content: center;
    padding: 16px 20px;
    line-height: 1.2;
    text-align: center;
  }
  .call-card {
    padding: 32px 20px;
    border-radius: 8px;
  }
  .cc-stamp {
    position: static;
    width: max-content;
    margin: 0 auto 16px;
  }
  .cc-call {
    gap: 10px;
    padding: 18px 16px;
  }
  .cc-call .left {
    min-width: 0;
    gap: 10px;
  }
  .cc-call .ico {
    width: 42px;
    height: 42px;
  }
  .cc-call .num {
    font-size: clamp(19px, 6vw, 24px);
    overflow-wrap: anywhere;
  }
  .cc-call .arrow {
    display: none;
  }
  .cc-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .cc-call {
    padding: 16px 14px;
  }
  .cc-call .ico {
    width: 38px;
    height: 38px;
  }
  .cc-call .num {
    font-size: 18px;
  }
}

@media (max-width: 680px) {
  .hero {
    padding: 48px 0 64px;
  }

  .hero::before {
    background-size: 48px 48px;
    opacity: 0.7;
  }

  .hero .wrap {
    gap: 28px;
  }

  .hero-badge {
    display: flex;
    width: fit-content;
    max-width: 100%;
    gap: 7px;
    padding: 8px 12px;
    margin-bottom: 20px;
    box-shadow: 0 12px 32px -20px rgba(0, 0, 0, 0.38);
    font-size: 12px;
    line-height: 1.35;
  }

  .hero-badge .stars,
  .hero-badge .badge-kicker {
    flex-shrink: 0;
    letter-spacing: 0;
  }

  .mobile-hero-break {
    display: block;
  }

  h1.headline {
    max-width: 11.2em;
    font-size: clamp(38px, 11vw, 50px);
    line-height: 1;
    margin-bottom: 24px;
  }

  .headline-subline {
    margin-top: 14px;
    font-size: clamp(17px, 5vw, 22px);
    line-height: 1.28;
  }

  h1 .underline {
    background: none;
    padding: 0;
  }

  .lede {
    max-width: 34ch;
    font-size: 17px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .hero-ctas {
    gap: 10px;
    margin-bottom: 28px;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 15px 18px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 20px;
  }
}

/* ---- VALUE STRIP ---- */
.strip {
  background: var(--navy-ink);
  color: #fff;
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
.strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    800px 200px at 50% 100%,
    rgba(200, 16, 46, 0.25),
    transparent 60%
  );
}
.strip .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
@media (max-width: 880px) {
  .strip .wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
.strip-item h3 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0;
  margin: 0 0 6px;
}
.strip-item h3 .accent {
  color: var(--gold);
}
.strip-item p {
  font-size: 13px;
  color: #cdc6b3;
  margin: 0;
  letter-spacing: 0;
}

/* ---- SECTIONS ---- */
section {
  padding: 96px 0;
  position: relative;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin: 0 0 16px;
}
.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--red);
}
.section-title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0 0 18px;
  color: var(--navy-ink);
}
.section-title .ital {
  font-style: italic;
  font-weight: 500;
  color: var(--red);
}
.section-lede {
  font-size: 18px;
  line-height: 1.65;
  color: #3a3a3a;
  max-width: 680px;
  margin: 0 0 56px;
}

/* ---- SERVICES ---- */
.services {
  background: var(--paper);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}
.svc {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 32px 28px 30px;
  border-radius: 18px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  overflow: hidden;
}
.svc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--navy);
  transform-origin: left;
  transform: scaleX(0.18);
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}
.svc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 0, 0, 0.14);
}
.svc:hover::before {
  transform: scaleX(1);
  background: var(--red);
}
.svc-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.svc-icon svg {
  width: 26px;
  height: 26px;
}
.svc h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: 0;
  margin: 0 0 10px;
  color: var(--navy-ink);
}
.svc p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #444;
  margin: 0 0 18px;
}
.svc .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
}
.svc .more svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}
.svc:hover .more svg {
  transform: translateX(4px);
}

/* ---- HOW IT WORKS ---- */
.how {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}
@media (max-width: 880px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
}
.step {
  position: relative;
  padding: 32px 28px;
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  transition: transform 0.25s ease;
}
.step:hover {
  transform: translateY(-3px);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 99px;
  background: var(--red);
  color: #fff;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 16px;
}
.step h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0;
  margin: 0 0 10px;
  color: var(--navy-ink);
}
.step p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

/* ---- WHY US ---- */
.why {
  background: var(--paper);
}
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 980px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.why-list li {
  padding: 24px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
}
.why-list li:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.why-list .ico {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  border-radius: 99px;
}
.why-list .ico svg {
  width: 20px;
  height: 20px;
}
.why-list h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0;
  margin: 0 0 6px;
  color: var(--navy-ink);
}
.why-list p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}
.why-cta {
  margin-top: 32px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 28px;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}
.why-cta p {
  margin: 0 0 16px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}
.why-cta strong {
  color: var(--navy-ink);
}
.why-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--red) 0%, #9a0c28 100%);
  color: #fff;
  padding: 16px 24px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid rgba(200, 16, 46, 0.9);
  box-shadow: 0 18px 40px -20px rgba(200, 16, 46, 0.55);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.25s ease;
}
.why-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.22),
    rgba(255, 255, 255, 0) 55%
  );
  opacity: 0.24;
  pointer-events: none;
  transform: translateX(-100%);
  transition: transform 0.45s ease;
}
.why-cta-btn svg {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
}
.why-cta-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #d22339 0%, #a10b24 100%);
  box-shadow: 0 22px 46px -20px rgba(200, 16, 46, 0.7);
}
.why-cta-btn:hover::before {
  transform: translateX(0);
}

/* ---- TESTIMONIALS ---- */
.testimonial {
  background: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -40px;
  left: -10px;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 380px;
  line-height: 1;
  color: rgba(14, 42, 94, 0.05);
  pointer-events: none;
}
.testimonial .wrap {
  position: relative;
  z-index: 2;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 980px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}
.testi {
  background: var(--paper);
  padding: 32px 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}
.testi-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0;
  margin-bottom: 14px;
}
.testi blockquote {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--navy-ink);
  margin: 0 0 24px;
  flex-grow: 1;
}
.testi .who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.testi .avatar {
  width: 42px;
  height: 42px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--red) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 18px;
}
.testi .name {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-ink);
}
.testi .role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ---- AREAS ---- */
.areas {
  background: linear-gradient(180deg, var(--bone) 0%, #f8f4ea 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.areas .wrap {
  max-width: 1120px;
}
.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 0;
  row-gap: 0;
  align-items: start;
}
.areas-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 8px;
}
.areas-copy .section-lede {
  max-width: 66ch;
}
.areas-featured {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 14px;
  margin-top: 12px;
  max-width: none;
  width: 100%;
}
.areas-copy .section-lede {
  margin-bottom: 18px;
}
.areas-featured > span {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(6, 18, 42, 0.09);
  padding: 8px 16px 8px 9px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  min-height: 46px;
  min-width: 0;
  width: 100%;
  white-space: nowrap;
  box-shadow:
    0 18px 36px -30px rgba(6, 18, 42, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: all 0.2s ease;
}
.areas-featured > span:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -28px rgba(6, 18, 42, 0.8);
}
.areas-featured .pin {
  color: var(--red);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(6, 18, 42, 0.1);
  border-radius: 99px;
  background: #fff;
  line-height: 1;
  box-shadow: inset 0 0 0 7px rgba(200, 16, 46, 0.04);
  flex: 0 0 30px;
  overflow: hidden;
}
.areas-featured .pin svg {
  display: block;
  width: 13px;
  height: 13px;
  margin: 0;
  transform: none;
}
.areas-featured .pin svg path {
  fill: currentColor;
}
.areas-featured .pin svg circle {
  fill: #fff;
}
.areas-featured > span:hover .pin {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: var(--red);
}
.areas-featured > span:hover .pin svg circle {
  fill: var(--red);
}
.areas-side {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 52px;
}
.coverage-card,
.service-radius {
  border-radius: 20px;
  overflow: hidden;
}
.coverage-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(6, 18, 42, 0.1);
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 26px 64px -44px rgba(6, 18, 42, 0.72);
}
.coverage-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}
.coverage-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}
.coverage-label span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12);
}
.coverage-card h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  color: var(--navy-ink);
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: 0;
}
.coverage-card p:not(.coverage-label) {
  margin: 0;
  color: #49443a;
  font-size: 15.5px;
  line-height: 1.55;
}
.coverage-points {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(6, 18, 42, 0.08);
}
.coverage-points span {
  position: relative;
  display: block;
  padding-left: 18px;
}
.coverage-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 161, 63, 0.14);
}
.coverage-points strong,
.coverage-points small {
  display: block;
}
.coverage-points strong {
  color: var(--navy-ink);
  font-size: 13.5px;
  line-height: 1.25;
}
.coverage-points small {
  margin-top: 2px;
  color: #645e52;
  font-size: 12.5px;
  line-height: 1.35;
}
.coverage-call {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding: 16px 18px;
  width: 100%;
  border-radius: 16px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 18px 34px -18px rgba(200, 16, 46, 0.75);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.coverage-call:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 22px 42px -18px rgba(200, 16, 46, 0.85);
}
.coverage-call-icon {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.16);
}
.coverage-call-icon svg {
  width: 19px;
  height: 19px;
}
.coverage-call small,
.coverage-call strong {
  display: block;
}
.coverage-call small {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.coverage-call strong {
  margin-top: 2px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
}
.service-radius {
  background: linear-gradient(145deg, var(--navy-ink), var(--navy));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 26px 64px -44px rgba(6, 18, 42, 0.9);
}
.radius-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  margin-bottom: 12px;
}
.radius-head span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.radius-head strong {
  color: var(--gold);
  font-size: 13px;
}
.radius-map {
  display: block;
  width: 100%;
  height: auto;
  flex: 1;
  min-height: 0;
}
.map-grid {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}
.map-road {
  stroke: var(--gold);
  stroke-width: 3;
  stroke-linecap: round;
}
.map-road-soft {
  stroke: rgba(255, 255, 255, 0.32);
  stroke-width: 2;
}
.map-range {
  fill: rgba(212, 161, 63, 0.05);
  stroke: rgba(212, 161, 63, 0.42);
  stroke-width: 1.5;
}
.map-range-wide {
  fill: none;
  stroke: rgba(255, 255, 255, 0.22);
  stroke-dasharray: 5 8;
}
.map-node circle {
  fill: var(--gold);
  stroke: #fff;
  stroke-width: 2;
}
.map-node text {
  fill: rgba(255, 255, 255, 0.78);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
}
.map-node-primary circle:first-child {
  fill: var(--red);
  stroke: #fff;
  stroke-width: 3;
}
.map-node-primary circle:last-child {
  fill: none;
  stroke: rgba(200, 16, 46, 0.55);
  stroke-width: 2;
}
.service-radius p {
  margin: auto 0 0;
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.45;
}
.areas-directory {
  grid-column: 1 / -1;
  margin-top: 64px;
  padding: 34px;
  border: 1px solid rgba(6, 18, 42, 0.1);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff 0%, #fdfaf4 100%);
  box-shadow: 0 26px 70px -52px rgba(6, 18, 42, 0.68);
}
.directory-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(6, 18, 42, 0.1);
}
.directory-head p {
  margin: 0 0 7px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}
.directory-head h3 {
  margin: 0;
  font-family: var(--serif);
  color: var(--navy-ink);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: 0;
}
.directory-head span {
  max-width: 300px;
  color: #5b5544;
  font-size: 14px;
  line-height: 1.45;
  text-align: right;
}
.area-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
}
.area-group {
  min-width: 0;
  padding: 0 28px;
  border-left: 1px solid rgba(6, 18, 42, 0.09);
}
.area-group:first-child {
  padding-left: 0;
  border-left: 0;
}
.area-group:last-child {
  padding-right: 0;
}
.area-group h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--navy-ink);
}
.area-group h3::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--red);
}
.area-group ul {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.area-group li {
  position: relative;
  padding-left: 17px;
  color: #3f3a31;
  font-size: 14.5px;
  line-height: 1.35;
}
.area-group li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5.5px;
  height: 5.5px;
  border-radius: 99px;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 161, 63, 0.16);
}
@media (max-width: 1180px) {
  .areas-grid {
    grid-template-columns: 1fr;
    row-gap: 0;
    align-items: start;
  }
  .areas-featured {
    margin-top: 16px;
  }
  .areas-directory {
    margin-top: 64px;
  }
  .areas-side {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    align-items: stretch;
    margin-top: 48px;
  }
}
@media (max-width: 920px) {
  .areas-featured {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 820px) {
  .areas-featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .areas-side {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }
  .area-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 36px;
  }
  .area-group {
    padding: 0;
    border-left: 0;
  }
  .directory-head {
    align-items: start;
  }
}
@media (max-width: 640px) {
  .areas-featured {
    grid-template-columns: 1fr;
  }
  .areas-directory {
    padding: 22px;
  }
  .directory-head {
    display: block;
  }
  .directory-head span {
    display: block;
    max-width: none;
    margin-top: 10px;
    text-align: left;
  }
  .area-groups {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .coverage-card {
    padding: 26px;
  }
  .coverage-call strong {
    font-size: 22px;
  }
}

/* ---- FAQ ---- */
.faq {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 980px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
details.q {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding: 22px 0;
}
details.q:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
details.q[open] summary::after {
  transform: rotate(45deg);
  background: var(--red);
}
details.q[open] summary {
  color: var(--red);
}
details.q summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0;
  color: var(--navy-ink);
  transition: color 0.2s ease;
}
details.q summary::-webkit-details-marker {
  display: none;
}
details.q summary::after {
  content: "+";
  color: #fff;
  background: var(--navy);
  width: 32px;
  height: 32px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 22px;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
  line-height: 1;
  flex-shrink: 0;
}
details.q .ans {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.65;
  color: #444;
  max-width: 62ch;
}

/* ---- FINAL CTA ---- */
.finalcta {
  background: linear-gradient(
    135deg,
    var(--navy-deep) 0%,
    var(--navy-ink) 100%
  );
  color: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.finalcta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      700px 400px at 50% 0%,
      rgba(200, 16, 46, 0.32),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 50% 120%,
      rgba(212, 161, 63, 0.18),
      transparent 60%
    );
}
.finalcta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 30%,
    transparent 80%
  );
}
.finalcta .wrap {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.finalcta h2 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
  margin: 0 0 22px;
}
.finalcta h2 .ital {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.finalcta p.sub {
  font-size: 19px;
  line-height: 1.6;
  color: #e8e3d4;
  margin: 0 auto 36px;
  max-width: 560px;
}
.finalcta .megacall {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--red);
  color: #fff;
  padding: 24px 36px 24px 28px;
  border-radius: 99px;
  box-shadow: 0 20px 60px -20px rgba(200, 16, 46, 0.7);
  transition: all 0.25s ease;
  position: relative;
}
.finalcta .megacall::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 99px;
  background: rgba(200, 16, 46, 0.4);
  z-index: -1;
  animation: ringpulse 2.4s ease-out infinite;
  display: none;
}
.finalcta .megacall:hover {
  transform: translateY(-3px) scale(1.02);
  background: #fff;
  color: var(--red);
}
.finalcta .megacall .ico {
  width: 54px;
  height: 54px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
}
.finalcta .megacall:hover .ico {
  background: var(--red);
  color: #fff;
}
.finalcta .megacall .ico svg {
  width: 24px;
  height: 24px;
}
.finalcta .megacall .txt {
  text-align: left;
}
.finalcta .megacall .lbl {
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #ffd9a3;
  font-weight: 600;
}
.finalcta .megacall:hover .lbl {
  color: var(--red);
}
.finalcta .megacall .num {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: 0;
}
.finalcta .alt {
  margin-top: 28px;
  font-size: 15px;
  color: #cdc6b3;
}
.finalcta .alt a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.finalcta .alt a:hover {
  color: var(--gold);
}

@media (max-width: 480px) {
  .finalcta .megacall {
    width: 100%;
    justify-content: center;
    gap: 14px;
    padding: 20px;
  }
  .finalcta .megacall .ico {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }
  .finalcta .megacall .num {
    font-size: clamp(24px, 7vw, 30px);
  }
}

@media (max-width: 360px) {
  .finalcta .megacall {
    gap: 10px;
    padding: 18px 16px;
  }
  .finalcta .megacall .ico {
    width: 42px;
    height: 42px;
  }
  .finalcta .megacall .num {
    font-size: 22px;
  }
}

/* ---- FOOTER ---- */
footer {
  background: #06122a;
  color: #a39c89;
  padding: 56px 0 40px;
  font-size: 14px;
}
footer .wrap {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}
@media (max-width: 880px) {
  footer .wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
footer .brand {
  font-size: 32px;
  color: #fff;
  margin-bottom: 6px;
}
footer .brand .navy {
  color: #fff;
}
footer .tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 18px;
  margin: 8px 0 18px;
}
footer h5 {
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
  font-weight: 700;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer a:hover {
  color: #fff;
}
footer .legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0;
  color: #807968;
}

/* ---- STICKY MOBILE CTA ---- */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--red);
  color: #fff;
  padding: 16px 20px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-bottom: calc(16px + constant(safe-area-inset-bottom));
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.25);
  text-align: center;
}
.mobile-cta::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--gold);
}
@keyframes shimmer {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.mobile-cta svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 680px) {
  .mobile-cta {
    display: flex;
  }
  body {
    padding-bottom: 64px;
    padding-bottom: calc(64px + constant(safe-area-inset-bottom));
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }
}

/* ---- SCROLL REVEAL ---- */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.9s ease,
      transform 0.9s ease;
  }
  .js .reveal.on {
    opacity: 1;
    transform: none;
  }
}

/* ---- ACCESSIBILITY ---- */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}
