/* ------------------------------------------------------------------- fonts */
/* Gotham is the brand typeface (wordmark). Bold leads, Book reads, Medium labels. */
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/gotham-light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/gotham-book.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/gotham-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/gotham-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/gotham-black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ------------------------------------------------------------------ tokens */
:root {
  /* Brand: taken from the Quick Ashford seal (navy ring, gold and steel bars) */
  --navy-950: #020d22;
  --navy-900: #051a40;
  --navy-800: #0a2f6b;
  --navy-700: #123f88;
  --navy-600: #24509a;
  --gold: #f5b90f;
  --gold-hi: #ffd45c;
  --gold-soft: #fbe39a;
  --steel: #8c929c;

  --paper: #f3f6fb;
  --white: #ffffff;
  --rule: #dde4ef;
  --ink: #0a1630;
  --ink-soft: #4a5670;
  --whatsapp: #128c4a;
  --danger: #b3261e;

  --glass: rgb(255 255 255 / 0.07);
  --glass-line: rgb(255 255 255 / 0.16);
  --on-navy-soft: rgb(255 255 255 / 0.74);

  --font: 'Gotham', 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --step--1: clamp(0.75rem, 0.73rem + 0.1vw, 0.8125rem);
  --step-0: clamp(0.9688rem, 0.94rem + 0.14vw, 1.0313rem);
  --step-1: clamp(1.0625rem, 1rem + 0.3vw, 1.25rem);
  --step-2: clamp(1.375rem, 1.2rem + 0.8vw, 1.875rem);
  --step-3: clamp(2rem, 1.45rem + 2.4vw, 3.5rem);
  --step-4: clamp(2.5rem, 1.5rem + 4.4vw, 5.25rem);

  --gutter: clamp(1.25rem, 0.6rem + 3vw, 3rem);
  --section: clamp(4.5rem, 3rem + 7vw, 9rem);
  --maxw: 84rem;
  --radius: 20px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.76, 0, 0.24, 1);
  --shadow: 0 2px 4px rgb(5 26 64 / 0.04), 0 24px 48px -20px rgb(5 26 64 / 0.22);
  --shadow-lg: 0 40px 80px -32px rgb(2 13 34 / 0.55);
  --header-h: 4.75rem;
}

/* -------------------------------------------------------------------- base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 2rem);
}

html:not(.lenis) {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
dd,
figure,
blockquote {
  margin: 0;
}

ul[class],
ol[class] {
  padding: 0;
  list-style: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--navy-600);
  outline-offset: 3px;
  border-radius: 6px;
}

.on-navy :focus-visible {
  outline-color: var(--gold);
}

::selection {
  background: var(--gold);
  color: var(--navy-950);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 300;
  padding: 0.75rem 1rem;
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-sm);
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 1rem;
}

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

/* ------------------------------------------------------------------ layout */
.container {
  width: min(100% - var(--gutter) * 2, var(--maxw));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section);
}

.on-navy {
  background: var(--navy-900);
  color: var(--white);
}

/* Full-bleed photo layer behind a section, with a navy wash on top. */
.bg-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-photo img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  will-change: transform;
}

.bg-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(5 26 64 / 0.94), rgb(2 13 34 / 0.9));
}

/* -------------------------------------------------------------------- type */
.display {
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.06;
  text-wrap: balance;
}

.h-xl {
  font-size: var(--step-4);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.h-lg {
  font-size: var(--step-3);
}

.h-md {
  font-size: var(--step-2);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* Gold emphasis inside headlines */
.display em {
  font-style: normal;
  color: var(--navy-700);
}

.on-navy .display em {
  color: var(--gold);
}

/* The gold full stop from the wordmark closes display headlines. */
.dot {
  color: var(--gold);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-700);
}

.eyebrow::before {
  content: '';
  width: 2.25rem;
  height: 2px;
  background: var(--gold);
}

.on-navy .eyebrow {
  color: var(--gold-soft);
}

.lede {
  font-size: var(--step-1);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 40em;
  text-wrap: pretty;
}

.on-navy .lede {
  color: var(--on-navy-soft);
}

.section-head {
  display: grid;
  gap: 1.25rem;
  max-width: 52rem;
  margin-bottom: clamp(2.5rem, 2rem + 3vw, 4.5rem);
}

.section-head--center {
  margin-inline: auto;
  justify-items: center;
  text-align: center;
}

/* ----------------------------------------------------------------- buttons */
.btn {
  --btn-bg: var(--navy-800);
  --btn-fg: var(--white);
  --btn-fill: var(--navy-950);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3.5rem;
  padding: 0.75rem 1.75rem;
  border: 1.5px solid var(--btn-bg);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 500;
  font-size: 0.9688rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    color 0.4s var(--ease),
    border-color 0.4s var(--ease),
    transform 0.3s var(--ease),
    box-shadow 0.4s var(--ease);
}

/* Hover fill rises from the bottom of the pill. */
.btn::before {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: var(--btn-fill);
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-io);
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: translateY(0);
}

.btn svg {
  width: 1.2rem;
  height: 1.2rem;
  flex: none;
}

.btn .btn__arrow {
  transition: transform 0.4s var(--ease);
}

.btn:hover .btn__arrow {
  transform: translateX(5px);
}

.btn:active {
  transform: scale(0.97);
}

.btn--gold {
  --btn-bg: var(--gold);
  --btn-fg: var(--navy-950);
  --btn-fill: var(--white);
  box-shadow: 0 14px 32px -14px rgb(245 185 15 / 0.7);
}

.btn--ghost {
  --btn-fill: var(--navy-800);
  background: transparent;
  color: var(--navy-800);
  border-color: var(--rule);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  color: var(--white);
  border-color: var(--navy-800);
}

.btn--ghost .wa {
  color: var(--whatsapp);
  transition: color 0.4s var(--ease);
}

.btn--ghost:hover .wa {
  color: #6ff0a8;
}

.on-navy .btn--ghost {
  --btn-fill: var(--white);
  color: var(--white);
  border-color: rgb(255 255 255 / 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.on-navy .btn--ghost:hover,
.on-navy .btn--ghost:focus-visible {
  color: var(--navy-950);
  border-color: var(--white);
}

.on-navy .btn--ghost .wa {
  color: #6ff0a8;
}

.on-navy .btn--ghost:hover .wa {
  color: var(--whatsapp);
}

.btn--sm {
  min-height: 2.875rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.9063rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 500;
  color: var(--navy-800);
  background: linear-gradient(var(--gold), var(--gold)) left bottom / 100% 2px no-repeat;
  padding-bottom: 5px;
  transition: background-size 0.5s var(--ease);
}

.link-arrow svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.4s var(--ease);
}

.link-arrow:hover {
  background-size: 35% 2px;
}

.link-arrow:hover svg {
  transform: translateX(5px);
}

.on-navy .link-arrow {
  color: var(--white);
}

/* GSAP drives the transform on magnetic buttons, so CSS must not transition it too. */
.btn[data-magnetic] {
  transition-property: color, border-color, box-shadow;
}

/* Glass card used on dark sections; --mx/--my follow the pointer for a soft spotlight. */
.glass {
  position: relative;
  border: 1px solid var(--glass-line);
  border-radius: var(--radius);
  background:
    radial-gradient(22rem circle at var(--mx, 50%) var(--my, -20%), rgb(245 185 15 / 0.13), transparent 55%),
    var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Image frame: rounded, clipped, image scales inside on reveal and hover. */
.frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-900);
}

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

/* ------------------------------------------------------------------ motion */
/* Hidden start states apply only once JS has confirmed motion is on, so the
   page is fully readable without JavaScript and for crawlers. */
html.motion [data-reveal] {
  opacity: 0;
  transform: translateY(36px);
}

html.motion [data-reveal-group]:not(.is-revealed) > * {
  opacity: 0;
  transform: translateY(32px);
}

html.motion [data-split],
html.motion [data-lines] {
  visibility: hidden;
}

html.motion [data-ledger],
html.motion [data-hero-fade] {
  opacity: 0;
}

html.motion [data-img-reveal] {
  clip-path: inset(100% 0 0 0);
}

.split-line {
  padding-bottom: 0.08em;
}

@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;
  }
}

/* ------------------------------------------------------- section utilities */
.section--white {
  background: var(--white);
}

/* Navy section with the soft blue and gold glows used across the site */
.glow {
  overflow: clip;
}

.glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40rem 26rem at 12% 0%, rgb(36 80 154 / 0.55), transparent 65%),
    radial-gradient(34rem 22rem at 92% 100%, rgb(245 185 15 / 0.12), transparent 65%);
  pointer-events: none;
}

.glow > .container {
  position: relative;
}

/* Long-form text: legal pages and blog articles */
.prose {
  max-width: 46rem;
  font-size: var(--step-1);
  line-height: 1.75;
  color: var(--ink-soft);
}

.prose > * + * {
  margin-top: 1.25em;
}

.prose h2,
.prose h3,
.prose h4 {
  color: var(--navy-900);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: balance;
  scroll-margin-top: calc(var(--header-h) + 2rem);
}

.prose h2 {
  margin-top: 2.25em;
  font-size: var(--step-2);
}

.prose h2::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 3px;
  margin-bottom: 1rem;
  background: var(--gold);
}

.prose h3 {
  margin-top: 1.75em;
  font-size: 1.25em;
}

.prose a {
  color: var(--navy-700);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.prose a:hover {
  color: var(--navy-950);
}

.prose strong,
.prose b {
  color: var(--ink);
  font-weight: 700;
}

.prose ul,
.prose ol {
  padding-left: 1.25em;
}

.prose li + li {
  margin-top: 0.5em;
}

.prose li::marker {
  color: var(--gold);
  font-weight: 700;
}

.prose img {
  height: auto;
  border-radius: var(--radius);
}

.prose blockquote {
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 500;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375em;
}

.prose th,
.prose td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--rule);
  text-align: left;
}

.prose th {
  color: var(--navy-900);
}

/* ---- components/About.astro ---- */
.about__grid {
    display: grid;
    gap: clamp(4rem, 7vw, 6rem);
    align-items: center;
  }

  /* ---- collage ---- */
  .about__media {
    position: relative;
    padding: 0 12% 14% 0;
  }

  .about__img--main {
    aspect-ratio: 4 / 5;
  }

  .about__img--main img,
  .about__img--side img {
    height: 120%;
  }

  .about__img--side {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48%;
    aspect-ratio: 1;
    border: 8px solid var(--paper);
    border-radius: calc(var(--radius) + 8px);
    box-shadow: var(--shadow);
  }

  .about__badge {
    position: absolute;
    top: -2.25rem;
    right: 2%;
    display: grid;
    place-items: center;
    width: clamp(7rem, 12vw, 9.500rem);
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--navy-900);
    box-shadow: var(--shadow);
  }

  .about__ring {
    position: absolute;
    inset: 0;
    animation: spin 22s linear infinite;
  }

  .about__ring text {
    fill: var(--gold-soft);
    font-size: 13.5px;
    font-weight: 500;
  }

  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }

  .about__badge .about__seal {
    width: 46%;
  }

  .about__card {
    position: absolute;
    left: clamp(-1.25rem, -2vw, -0.5rem);
    bottom: 22%;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1.25rem 0.875rem 0.875rem;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
    font-size: 0.8125rem;
    line-height: 1.35;
    color: var(--ink-soft);
  }

  .about__card strong {
    display: block;
    font-size: 0.9688rem;
    font-weight: 700;
    color: var(--navy-900);
  }

  .about__card-icon {
    display: grid;
    place-items: center;
    width: 2.875rem;
    height: 2.875rem;
    border-radius: 14px;
    background: var(--gold);
    color: var(--navy-950);
  }

  .about__card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  /* ---- copy ---- */
  .about__copy {
    display: grid;
    gap: 1.5rem;
    justify-items: start;
  }

  .about__points {
    display: grid;
    gap: 0.875rem 1.5rem;
    width: 100%;
    margin: 0.5rem 0;
    font-weight: 500;
    color: var(--navy-900);
  }

  .about__points li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .about__check {
    flex: none;
    display: grid;
    place-items: center;
    width: 1.625rem;
    height: 1.625rem;
    border-radius: 50%;
    background: var(--navy-800);
    color: var(--gold);
  }

  .about__check svg {
    width: 0.9375rem;
    height: 0.9375rem;
    stroke-width: 2.6;
  }

  .about__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 2rem;
    margin-top: 0.5rem;
  }

  .about__call {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--navy-900);
  }

  .about__call small {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }

  .about__call-icon {
    display: grid;
    place-items: center;
    width: 3.25rem;
    height: 3.25rem;
    border: 1.5px solid var(--rule);
    border-radius: 50%;
    color: var(--navy-800);
    transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease);
  }

  .about__call:hover .about__call-icon {
    background: var(--gold);
    border-color: var(--gold);
  }

  .about__call-icon svg {
    width: 1.125rem;
    height: 1.125rem;
  }

  @media (min-width: 40rem) {
    .about__points {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (min-width: 66rem) {
    .about__grid {
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    }
  }

/* ---- components/AuditAnswer.astro ---- */
.answer {
    overflow: clip;
    background: var(--navy-900);
  }

  .answer__glow {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(40rem 26rem at 12% 0%, rgb(36 80 154 / 0.55), transparent 65%),
      radial-gradient(34rem 22rem at 92% 100%, rgb(245 185 15 / 0.12), transparent 65%);
  }

  .answer .container {
    position: relative;
  }

  .answer__list {
    display: grid;
    gap: 1.25rem;
    margin: 0;
  }

  .answer__item {
    display: grid;
    gap: 1rem;
    align-content: start;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    overflow: hidden;
    transition: transform 0.6s var(--ease), border-color 0.6s var(--ease);
  }

  .answer__item::before {
    content: '';
    position: absolute;
    left: clamp(1.75rem, 3vw, 2.5rem);
    top: -1px;
    width: 3rem;
    height: 3px;
    background: var(--gold);
    transition: width 0.6s var(--ease);
  }

  .answer__item:hover {
    transform: translateY(-8px);
    border-color: rgb(245 185 15 / 0.5);
  }

  .answer__item:hover::before {
    width: 7rem;
  }

  .answer__icon {
    display: grid;
    place-items: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 0.5rem;
    border-radius: 16px;
    background: rgb(245 185 15 / 0.14);
    color: var(--gold);
    transition: background-color 0.5s var(--ease), color 0.5s var(--ease);
  }

  .answer__item:hover .answer__icon {
    background: var(--gold);
    color: var(--navy-950);
  }

  .answer__icon svg {
    width: 1.625rem;
    height: 1.625rem;
  }

  .answer__item p {
    color: var(--on-navy-soft);
  }

  .answer__foot {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 1rem;
    margin-top: clamp(2rem, 4vw, 3rem);
    color: var(--on-navy-soft);
  }

  @media (min-width: 56rem) {
    .answer__list {
      grid-template-columns: repeat(3, 1fr);
    }
  }

/* ---- components/BlogStyles.astro ---- */
/* ---- post hero ---- */
  .blog-hero {
    position: relative;
    padding-block: calc(var(--header-h) + clamp(3.5rem, 7vw, 6rem)) clamp(3rem, 6vw, 5rem);
    overflow: clip;
    background: var(--navy-950);
  }

  .blog-hero__media {
    position: absolute;
    inset: 0;
  }

  .blog-hero__media img {
    width: 100%;
    height: 112%;
    object-fit: cover;
  }

  .blog-hero__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgb(2 13 34 / 0.95) 0%, rgb(5 26 64 / 0.84) 55%, rgb(5 26 64 / 0.6) 100%),
      linear-gradient(0deg, rgb(2 13 34 / 0.9) 0%, transparent 50%);
  }

  .blog-hero__inner {
    position: relative;
    display: grid;
    gap: 1.5rem;
    justify-items: start;
  }

  .blog-hero__title {
    max-width: 20em;
    font-size: clamp(2rem, 1.4rem + 2.8vw, 3.75rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
  }

  .blog-crumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.375rem;
    margin: 0 0 0.5rem;
    padding: 0.4375rem 1rem;
    list-style: none;
    border: 1px solid var(--glass-line);
    border-radius: 999px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 0.8125rem;
    font-weight: 500;
  }

  .blog-crumbs li {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--on-navy-soft);
  }

  .blog-crumbs a:hover {
    color: var(--gold);
  }

  .blog-crumbs [aria-current] {
    max-width: 24ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--white);
  }

  .blog-crumbs svg {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--gold);
  }

  .blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.75rem;
    margin: 0.5rem 0 0;
    padding: 0;
    list-style: none;
    font-size: 0.9063rem;
    font-weight: 500;
    color: var(--on-navy-soft);
  }

  .blog-meta li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .blog-meta svg {
    width: 1.125rem;
    height: 1.125rem;
    color: var(--gold);
  }

  /* ---- article layout ---- */
  .blog-layout {
    display: grid;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
  }

  .blog-article {
    max-width: 48rem;
  }

  .blog-article > :first-child {
    margin-top: 0;
    font-size: 1.1em;
    color: var(--ink);
  }

  .blog-note {
    margin-top: 3rem;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-sm);
    background: var(--white);
    border: 1px solid var(--rule);
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .blog-note strong {
    display: block;
    margin-bottom: 0.25rem;
  }

  .blog-side__sticky {
    display: grid;
    gap: 1.25rem;
  }

  .blog-toc {
    padding: 1.5rem;
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    background: var(--white);
  }

  .blog-toc p {
    margin-bottom: 0.875rem;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--steel);
  }

  .blog-toc ol {
    display: grid;
    gap: 0.125rem;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: toc;
  }

  .blog-toc a {
    display: block;
    padding: 0.5rem 0 0.5rem 0.875rem;
    border-left: 2px solid var(--rule);
    font-size: 0.9063rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--ink-soft);
    transition: color 0.3s var(--ease), border-color 0.3s var(--ease), padding-left 0.4s var(--ease);
  }

  .blog-toc a:hover {
    padding-left: 1.125rem;
    border-left-color: var(--gold);
    color: var(--navy-900);
  }

  .blog-cta {
    display: grid;
    gap: 0.875rem;
    justify-items: start;
    padding: 1.75rem;
    border-radius: var(--radius);
    background:
      radial-gradient(18rem 12rem at 100% 0%, rgb(36 80 154 / 0.7), transparent 70%),
      var(--navy-900);
    color: var(--white);
  }

  .blog-cta__title {
    font-size: 1.375rem;
    line-height: 1.2;
  }

  .blog-cta p:not(.blog-cta__title) {
    font-size: 0.9375rem;
    color: var(--on-navy-soft);
  }

  .blog-cta__wa {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--on-navy-soft);
  }

  .blog-cta__wa:hover {
    color: var(--white);
  }

  .blog-cta__wa svg {
    width: 1.125rem;
    height: 1.125rem;
    color: #6ff0a8;
  }

  /* ---- cards ---- */
  .blog-grid {
    display: grid;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .blog-card {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    background: var(--white);
    transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.6s var(--ease);
  }

  .blog-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: var(--shadow);
  }

  .blog-card__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--navy-900);
  }

  .blog-card__media img,
  .blog-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
  }

  .blog-card:hover img,
  .blog-feature:hover img {
    transform: scale(1.06);
  }

  .blog-card__body {
    display: grid;
    gap: 0.75rem;
    align-content: start;
    justify-items: start;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
  }

  .blog-card__meta {
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    background: var(--paper);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy-800);
  }

  .blog-card h3,
  .blog-feature h2 {
    color: var(--navy-900);
    letter-spacing: -0.02em;
    text-wrap: balance;
  }

  .blog-card h3 {
    font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
    line-height: 1.25;
  }

  .blog-card p,
  .blog-feature p {
    font-size: 0.9375rem;
    color: var(--ink-soft);
  }

  .blog-card__more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    font-weight: 500;
    color: var(--navy-800);
  }

  .blog-card__go {
    display: grid;
    place-items: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--paper);
    transition: background-color 0.4s var(--ease), transform 0.5s var(--ease);
  }

  .blog-card__go svg {
    width: 1rem;
    height: 1rem;
  }

  .blog-card:hover .blog-card__go,
  .blog-feature:hover .blog-card__go {
    background: var(--gold);
    transform: rotate(-45deg);
  }

  /* ---- featured post ---- */
  .blog-feature {
    display: grid;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--rule);
    transition: box-shadow 0.6s var(--ease), border-color 0.6s var(--ease);
  }

  .blog-feature:hover {
    border-color: transparent;
    box-shadow: var(--shadow);
  }

  .blog-feature__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--navy-900);
  }

  .blog-feature__body {
    display: grid;
    gap: 1rem;
    align-content: center;
    justify-items: start;
    padding: clamp(1.5rem, 4vw, 3.5rem);
  }

  .blog-feature h2 {
    font-size: var(--step-2);
    font-weight: 700;
    line-height: 1.15;
  }

  .blog-feature p {
    font-size: var(--step-0);
  }

  .blog-feature__flag {
    padding: 0.3125rem 0.75rem;
    border-radius: 999px;
    background: var(--gold);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy-950);
  }

  /* ---- pagination ---- */
  .blog-pages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: clamp(2.5rem, 5vw, 4rem);
  }

  .blog-pages a,
  .blog-pages span {
    display: grid;
    place-items: center;
    min-width: 3rem;
    height: 3rem;
    padding-inline: 1rem;
    border: 1.5px solid var(--rule);
    border-radius: 999px;
    font-weight: 500;
    color: var(--navy-800);
    transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  }

  .blog-pages a:hover,
  .blog-pages [aria-current] {
    background: var(--navy-800);
    border-color: var(--navy-800);
    color: var(--white);
  }

  .blog-empty {
    padding: 3rem;
    border: 1px dashed var(--rule);
    border-radius: var(--radius);
    text-align: center;
    color: var(--ink-soft);
  }

  @media (min-width: 40rem) {
    .blog-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 64rem) {
    .blog-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .blog-feature {
      grid-template-columns: 1.15fr 1fr;
    }

    .blog-feature__media {
      aspect-ratio: auto;
      min-height: 24rem;
    }

    .blog-layout {
      grid-template-columns: minmax(0, 48rem) minmax(0, 21rem);
      justify-content: space-between;
    }

    .blog-side__sticky {
      position: sticky;
      top: calc(var(--header-h) + 2.5rem);
    }
  }

/* ---- components/CheckList.astro ---- */
.checks {
    display: grid;
    gap: 0.875rem 1.5rem;
    width: 100%;
    margin: 0;
    font-weight: 500;
  }

  .checks li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .checks__mark {
    flex: none;
    display: grid;
    place-items: center;
    width: 1.625rem;
    height: 1.625rem;
    margin-top: 0.0625rem;
    border-radius: 50%;
    background: var(--navy-800);
    color: var(--gold);
  }

  .on-navy .checks__mark {
    background: var(--gold);
    color: var(--navy-950);
  }

  .checks__mark svg {
    width: 0.9375rem;
    height: 0.9375rem;
    stroke-width: 2.6;
  }

  @media (min-width: 40rem) {
    .checks--2 {
      grid-template-columns: 1fr 1fr;
    }
  }

/* ---- components/Contact.astro ---- */
.contact {
    overflow: clip;
    background: var(--navy-950);
  }

  .contact .bg-photo::after {
    background: linear-gradient(90deg, rgb(2 13 34 / 0.95) 0%, rgb(5 26 64 / 0.86) 55%, rgb(5 26 64 / 0.7) 100%);
  }

  .contact__grid {
    position: relative;
    display: grid;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
  }

  .contact__head {
    display: grid;
    gap: 1.5rem;
  }

  .contact__ways {
    display: grid;
    gap: 0;
    margin: 0;
    border-top: 1px solid rgb(255 255 255 / 0.18);
  }

  .contact__ways a,
  .contact__ways div {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-block: 1rem;
    border-bottom: 1px solid rgb(255 255 255 / 0.18);
    font-size: 1.0625rem;
  }

  .contact__ways svg {
    flex: none;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold);
  }

  .contact__ways small {
    display: block;
    font-weight: 500;
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgb(255 255 255 / 0.6);
  }

  .contact__ways a {
    transition: padding-left 0.35s var(--ease);
  }

  .contact__ways a:hover {
    padding-left: 0.5rem;
  }

  .form {
    display: grid;
    gap: 1.125rem;
    padding: clamp(1.5rem, 4vw, 2.75rem);
    border-radius: calc(var(--radius) + 6px);
    border-top: 4px solid var(--gold);
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 30px 60px -30px rgb(0 0 0 / 0.5);
  }

  .form h3 {
    color: var(--navy-900);
    margin-bottom: 0.25rem;
  }

  .form__row {
    display: grid;
    gap: 1.125rem;
  }

  .field {
    display: grid;
    gap: 0.375rem;
  }

  .field label {
    font-size: 0.9063rem;
    font-weight: 600;
  }

  .field__opt {
    font-weight: 400;
    color: var(--ink-soft);
  }

  .field input,
  .field select,
  .field textarea {
    width: 100%;
    min-height: 3.125rem;
    padding: 0.75rem 0.875rem;
    border: 1.5px solid var(--rule);
    border-radius: var(--radius-sm);
    background: var(--paper);
    font-size: 1rem;
    transition:
      border-color 0.2s var(--ease),
      background-color 0.2s var(--ease);
  }

  .field textarea {
    resize: vertical;
    min-height: 5.5rem;
  }

  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    outline: none;
    border-color: var(--navy-800);
    background: var(--white);
    box-shadow: 0 0 0 3px rgb(36 80 154 / 0.18);
  }

  .field__error {
    display: none;
    font-size: 0.8438rem;
    color: var(--danger);
  }

  .field.is-invalid input,
  .field.is-invalid select {
    border-color: var(--danger);
  }

  .field.is-invalid .field__error {
    display: block;
  }

  .form__trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  .form__submit {
    width: 100%;
    margin-top: 0.375rem;
  }

  .form__submit[disabled] {
    opacity: 0.7;
    cursor: progress;
  }

  .form__status {
    padding: 0.75rem 0.875rem;
    border-radius: var(--radius-sm);
    background: #fdecea;
    color: var(--danger);
    font-size: 0.9375rem;
  }

  .form__status a {
    font-weight: 600;
    text-decoration: underline;
  }

  .form__note {
    font-size: 0.8438rem;
    color: var(--ink-soft);
  }

  .form :focus-visible {
    outline-color: var(--navy-600);
  }

  @media (min-width: 36rem) {
    .form__row {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (min-width: 64rem) {
    .contact__grid {
      grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
      grid-template-rows: auto 1fr;
      row-gap: 2.5rem;
    }

    .form {
      grid-column: 2;
      grid-row: 1 / span 2;
    }

    .contact__ways {
      grid-column: 1;
      grid-row: 2;
      align-self: start;
    }
  }

/* ---- components/Coverage.astro ---- */
.coverage {
    background: var(--white);
    overflow: clip;
  }

  .coverage .section-head {
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  .coverage__marquees {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    transform: rotate(-1.5deg) scale(1.02);
  }

  .marquee {
    padding-block: clamp(0.75rem, 1.5vw, 1.25rem);
    background: var(--navy-900);
  }

  .marquee__track {
    display: flex;
    width: max-content;
    will-change: transform;
  }

  .marquee__set {
    display: flex;
    flex: none;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .marquee__set li {
    display: flex;
    align-items: center;
    font-size: clamp(2rem, 1.2rem + 3.6vw, 4.25rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    white-space: nowrap;
  }

  .marquee__set li.is-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--gold);
  }

  .marquee__set li::after {
    content: '';
    width: 0.28em;
    height: 0.28em;
    margin-inline: 0.6em;
    background: var(--gold);
    transform: rotate(45deg);
  }

  .coverage__note {
    max-width: 44rem;
    margin: 0 auto clamp(2rem, 4vw, 3rem);
    text-align: center;
    color: var(--ink-soft);
  }

/* ---- components/Faq.astro ---- */
.faq {
    background: var(--white);
  }

  .faq--paper {
    background: var(--paper);
  }

  .faq--paper .faq__item {
    background: var(--white);
  }

  .faq__grid {
    display: grid;
    gap: clamp(2.5rem, 5vw, 5rem);
  }

  .faq__sticky {
    display: grid;
    gap: 1.5rem;
  }

  .faq__card {
    aspect-ratio: 4 / 3;
    margin-top: 1rem;
    color: var(--white);
  }

  .faq__card img {
    height: 118%;
  }

  .faq__card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgb(2 13 34 / 0.92) 0%, rgb(5 26 64 / 0.35) 55%, transparent 100%);
  }

  .faq__card-body {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 1;
    display: grid;
    gap: 1rem;
    justify-items: start;
    padding: clamp(1.25rem, 3vw, 2rem);
    font-weight: 500;
  }

  @media (min-width: 66rem) {
    .faq__grid {
      grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    }

    .faq__sticky {
      position: sticky;
      top: calc(var(--header-h) + 3rem);
    }
  }

/* ---- components/FaqList.astro ---- */
.faq__list {
    display: grid;
    gap: 0.75rem;
    align-content: start;
  }

  .faq__item {
    border: 1px solid var(--rule);
    border-radius: var(--radius-sm);
    background: var(--paper);
    transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  }

  .faq__item[open] {
    background: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow);
  }

  .faq__item summary {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.25rem 1.25rem 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
  }

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

  .faq__item h3 {
    font-size: clamp(1rem, 0.95rem + 0.3vw, 1.1875rem);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.35;
    color: var(--navy-900);
  }

  .faq__icon {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--white);
    color: var(--navy-800);
    box-shadow: inset 0 0 0 1.5px var(--rule);
    transition: transform 0.5s var(--ease), background-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  }

  .faq__icon svg {
    width: 1rem;
    height: 1rem;
  }

  .faq__item summary:hover .faq__icon {
    box-shadow: inset 0 0 0 1.5px var(--navy-800);
  }

  .faq__item[open] .faq__icon {
    transform: rotate(135deg);
    background: var(--gold);
    box-shadow: none;
  }

  .faq__answer {
    padding: 0 4.5rem 1.5rem 1.5rem;
    color: var(--ink-soft);
  }

  /* Smooth open/close where the browser supports animating details content. */
  @supports (interpolate-size: allow-keywords) {
    .faq__item {
      interpolate-size: allow-keywords;
    }

    .faq__item::details-content {
      block-size: 0;
      overflow: clip;
      opacity: 0;
      transition: block-size 0.5s var(--ease), opacity 0.4s var(--ease), content-visibility 0.5s allow-discrete;
    }

    .faq__item[open]::details-content {
      block-size: auto;
      opacity: 1;
    }
  }

  @media (max-width: 40rem) {
    .faq__answer {
      padding-right: 1.5rem;
    }
  }

/* ---- components/FeatureGrid.astro ---- */
.fgrid {
    display: grid;
    gap: 1.25rem;
    margin: 0;
  }

  .fcard {
    position: relative;
    display: grid;
    gap: 0.75rem;
    align-content: start;
    padding: clamp(1.5rem, 2.5vw, 2.125rem);
    overflow: hidden;
    border-radius: var(--radius);
    transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.6s var(--ease);
  }

  .fcard::before {
    content: '';
    position: absolute;
    left: clamp(1.5rem, 2.5vw, 2.125rem);
    top: -1px;
    width: 2.5rem;
    height: 3px;
    background: var(--gold);
    transition: width 0.6s var(--ease);
  }

  .fcard:hover {
    transform: translateY(-8px);
  }

  .fcard:hover::before {
    width: 6rem;
  }

  .fgrid--light .fcard {
    border: 1px solid var(--rule);
    background: var(--white);
  }

  .fgrid--light .fcard:hover {
    border-color: transparent;
    box-shadow: var(--shadow);
  }

  .fgrid--navy .fcard:hover {
    border-color: rgb(245 185 15 / 0.5);
  }

  .fcard__icon {
    display: grid;
    place-items: center;
    width: 3.25rem;
    height: 3.25rem;
    margin-bottom: 0.5rem;
    border-radius: 14px;
    transition: background-color 0.5s var(--ease), color 0.5s var(--ease), transform 0.6s var(--ease);
  }

  .fgrid--light .fcard__icon {
    background: var(--navy-800);
    color: var(--gold);
  }

  .fgrid--navy .fcard__icon {
    background: rgb(245 185 15 / 0.14);
    color: var(--gold);
  }

  .fcard:hover .fcard__icon {
    background: var(--gold);
    color: var(--navy-950);
    transform: rotate(-8deg);
  }

  .fcard__icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .fcard h3 {
    font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .fgrid--light h3 {
    color: var(--navy-900);
  }

  .fcard p {
    font-size: 0.9688rem;
  }

  .fgrid--light p {
    color: var(--ink-soft);
  }

  .fgrid--navy p {
    color: var(--on-navy-soft);
  }

  @media (min-width: 40rem) {
    .fgrid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 64rem) {
    .fgrid--3 {
      grid-template-columns: repeat(3, 1fr);
    }

    .fgrid--4 {
      grid-template-columns: repeat(4, 1fr);
    }
  }

/* ---- components/FloatingActions.astro ---- */
.fab {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 90;
    display: none;
    place-items: center;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    background: #1fa855;
    color: #fff;
    box-shadow: 0 12px 28px -8px rgb(18 140 74 / 0.6);
    transition: transform 0.3s var(--ease);
  }

  .fab::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #1fa855;
    animation: fab-ring 2.8s var(--ease) infinite;
  }

  .fab:hover {
    transform: scale(1.08);
  }

  .fab svg {
    width: 1.875rem;
    height: 1.875rem;
  }

  @keyframes fab-ring {
    0% {
      transform: scale(1);
      opacity: 0.7;
    }
    70%,
    100% {
      transform: scale(1.55);
      opacity: 0;
    }
  }

  .bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 0.5rem;
    padding: 0.625rem 0.75rem calc(0.625rem + env(safe-area-inset-bottom));
    background: rgb(255 255 255 / 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--rule);
    transform: translateY(110%);
    transition: transform 0.45s var(--ease);
  }

  .bar.is-visible {
    transform: none;
  }

  .bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4375rem;
    min-height: 3rem;
    border: 1.5px solid var(--rule);
    border-radius: 999px;
    font-size: 0.9063rem;
    font-weight: 600;
    color: var(--navy-800);
  }

  .bar svg {
    width: 1.125rem;
    height: 1.125rem;
  }

  .bar__wa svg {
    color: var(--whatsapp);
  }

  .bar .bar__cta {
    background: var(--navy-800);
    border-color: var(--navy-800);
    color: var(--white);
  }

  @media (min-width: 64rem) {
    .fab {
      display: grid;
    }

    .bar {
      display: none;
    }
  }

/* ---- components/Footer.astro ---- */
.footer {
    background: var(--navy-950);
    padding-block: clamp(3.5rem, 6vw, 5.5rem) 6.5rem;
    font-size: 0.9688rem;
  }

  .footer__top {
    display: grid;
    gap: 2.5rem;
  }

  .footer__brand {
    display: grid;
    gap: 1.25rem;
    align-content: start;
    max-width: 24rem;
    color: rgb(255 255 255 / 0.7);
  }

  .footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    font-weight: 900;
    font-size: 1.375rem;
    letter-spacing: -0.01em;
    color: var(--white);
  }

  .footer__logo .footer__seal {
    width: 3.5rem;
    height: 3.5rem;
  }

  .footer h2 {
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-soft);
  }

  .footer .footer__sub {
    margin-top: 1.75rem;
  }

  .footer ul {
    display: grid;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    color: rgb(255 255 255 / 0.78);
  }

  .footer address {
    margin-bottom: 0.875rem;
    font-style: normal;
    color: rgb(255 255 255 / 0.78);
  }

  .footer a {
    transition: color 0.2s var(--ease);
  }

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

  /* Outlined wordmark, as wide as the footer */
  .footer__word {
    margin-top: clamp(2.5rem, 5vw, 4rem);
    font-size: clamp(2.25rem, 9.6vw, 9.25rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.03em;
    white-space: nowrap;
    color: transparent;
    -webkit-text-stroke: 1.5px rgb(255 255 255 / 0.2);
    transition: -webkit-text-stroke-color 0.8s var(--ease);
  }

  .footer__word:hover {
    -webkit-text-stroke-color: rgb(255 255 255 / 0.55);
  }

  .footer__word span {
    color: var(--gold);
    -webkit-text-stroke: 0;
  }

  .footer__areas {
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
    padding-block: 1.25rem;
    border-block: 1px solid rgb(255 255 255 / 0.14);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgb(255 255 255 / 0.6);
  }

  .footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem 2rem;
    padding-top: 1.5rem;
    font-size: 0.875rem;
    color: rgb(255 255 255 / 0.6);
  }

  .footer__bottom ul {
    display: flex;
    gap: 1.5rem;
  }

  @media (min-width: 40rem) {
    .footer__top {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 64rem) {
    .footer {
      padding-bottom: 2.5rem;
    }

    .footer__top {
      grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    }
  }

/* ---- components/Header.astro ---- */
/* A floating pill that sits over the hero photo and tightens once you scroll. */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0.875rem var(--gutter) 0;
    transition: padding 0.5s var(--ease), transform 0.5s var(--ease);
  }

  .header.is-hidden {
    transform: translateY(-120%);
  }

  .header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: var(--maxw);
    height: 4.25rem;
    margin-inline: auto;
    padding: 0 0.625rem 0 1.375rem;
    border: 1px solid rgb(255 255 255 / 0.7);
    border-radius: 999px;
    background: rgb(255 255 255 / 0.92);
    backdrop-filter: saturate(1.5) blur(18px);
    -webkit-backdrop-filter: saturate(1.5) blur(18px);
    box-shadow: 0 18px 40px -22px rgb(2 13 34 / 0.55);
    transition: height 0.5s var(--ease), box-shadow 0.5s var(--ease);
  }

  .header.is-stuck {
    padding-top: 0.5rem;
  }

  .header.is-stuck .header__bar {
    height: 3.75rem;
    box-shadow: 0 14px 34px -18px rgb(2 13 34 / 0.45);
  }

  .header__logo img {
    width: clamp(160px, 13vw, 200px);
    height: auto;
  }

  .header__nav {
    display: none;
  }

  .header__links {
    display: flex;
    gap: clamp(1.25rem, 2vw, 2.25rem);
    margin: 0;
  }

  .header__link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .header__link .header__caret {
    width: 0.875rem;
    height: 0.875rem;
    transform: rotate(90deg);
    transition: transform 0.4s var(--ease);
  }

  .has-menu:hover .header__caret,
  .has-menu:focus-within .header__caret {
    transform: rotate(-90deg);
  }

  /* Label rolls up and is replaced by a navy copy on hover. */
  .header__label {
    display: block;
    overflow: hidden;
    height: 1.5em;
    font-size: 0.9063rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--ink);
  }

  .header__link [data-label] {
    position: relative;
    display: block;
    transition: transform 0.5s var(--ease-io);
  }

  .header__link [data-label]::after {
    content: attr(data-label);
    position: absolute;
    left: 0;
    top: 100%;
    color: var(--navy-700);
  }

  .header__link:hover [data-label],
  .header__link:focus-visible [data-label] {
    transform: translateY(-100%);
  }

  /* ---- dropdown panels ---- */
  .has-menu {
    position: relative;
  }

  .menu {
    position: absolute;
    top: 100%;
    left: 50%;
    width: max-content;
    max-width: min(44rem, 90vw);
    padding-top: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 12px);
    transition: opacity 0.35s var(--ease), transform 0.45s var(--ease), visibility 0s 0.35s;
  }

  .has-menu:hover .menu,
  .has-menu:focus-within .menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    transition: opacity 0.35s var(--ease), transform 0.45s var(--ease);
  }

  .menu ul {
    display: grid;
    gap: 0.25rem;
    margin: 0;
    padding: 0.75rem;
    list-style: none;
    border-radius: 24px 24px 0 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
  }

  .menu--services ul {
    grid-template-columns: repeat(2, minmax(0, 17rem));
  }

  .menu--setup ul {
    grid-template-columns: minmax(0, 22rem);
  }

  .menu li a {
    display: grid;
    gap: 0.125rem;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    transition: background-color 0.3s var(--ease), padding-left 0.4s var(--ease);
  }

  .menu li a:hover,
  .menu li a:focus-visible {
    background: var(--paper);
    padding-left: 1.375rem;
  }

  .menu strong {
    font-size: 0.9688rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--navy-900);
  }

  .menu small {
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--ink-soft);
  }

  .menu__all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9375rem 1.75rem;
    border-radius: 0 0 24px 24px;
    background: var(--navy-800);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.3s var(--ease);
  }

  .menu__all:hover {
    background: var(--navy-950);
  }

  .menu__all svg {
    width: 1rem;
    height: 1rem;
    color: var(--gold);
  }

  .header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .header__phone {
    display: none;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-800);
  }

  .header__phone small {
    display: block;
    font-size: 0.6563rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }

  .header__phone-icon {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--paper);
    color: var(--navy-800);
    transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
  }

  .header__phone:hover .header__phone-icon {
    background: var(--gold);
  }

  .header__phone-icon svg {
    width: 1rem;
    height: 1rem;
  }

  .header__cta {
    display: none;
  }

  .header__toggle {
    display: grid;
    place-items: center;
    width: 2.875rem;
    height: 2.875rem;
    border: 0;
    border-radius: 50%;
    background: var(--navy-800);
    cursor: pointer;
  }

  .header__burger {
    position: relative;
    width: 1.125rem;
    height: 0.625rem;
  }

  .header__burger i {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--white);
    transition: transform 0.4s var(--ease), top 0.4s var(--ease);
  }

  .header__burger i:first-child {
    top: 0;
  }

  .header__burger i:last-child {
    top: calc(100% - 2px);
  }

  .header__toggle[aria-expanded='true'] i:first-child {
    top: calc(50% - 1px);
    transform: rotate(45deg);
  }

  .header__toggle[aria-expanded='true'] i:last-child {
    top: calc(50% - 1px);
    transform: rotate(-45deg);
  }

  .mobile-menu {
    max-width: var(--maxw);
    margin: 0.5rem auto 0;
    padding: 1rem 1.5rem 1.5rem;
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    max-height: calc(100dvh - 6.5rem);
    overflow-y: auto;
    animation: menu-in 0.45s var(--ease);
  }

  @keyframes menu-in {
    from {
      opacity: 0;
      transform: translateY(-12px) scale(0.98);
    }
  }

  .mobile-menu__links > li > a,
  .mobile-menu__links summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--rule);
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--navy-900);
  }

  .mobile-menu__links summary {
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu__links summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu__links details[open] summary svg {
    transform: rotate(45deg);
  }

  .mobile-menu__sub {
    display: grid;
    margin: 0;
    padding: 0.5rem 0 0.75rem;
    list-style: none;
    border-bottom: 1px solid var(--rule);
  }

  .mobile-menu__sub a {
    display: block;
    padding: 0.625rem 0 0.625rem 1rem;
    border-left: 2px solid var(--gold);
    font-weight: 500;
    color: var(--ink-soft);
  }

  .mobile-menu__links svg {
    transition: transform 0.4s var(--ease);
    width: 1.125rem;
    height: 1.125rem;
    color: var(--gold);
  }

  .mobile-menu__actions {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  @media (min-width: 40rem) {
    .header__cta {
      display: inline-flex;
    }
  }

  @media (min-width: 66rem) {
    .header__nav {
      display: block;
    }

    .header__toggle,
    .mobile-menu {
      display: none;
    }
  }

  @media (min-width: 80rem) {
    .header__phone {
      display: inline-flex;
    }
  }

/* ---- components/Hero.astro ---- */
.hero {
    position: relative;
    display: grid;
    align-content: space-between;
    gap: clamp(2.5rem, 5vw, 4rem);
    min-height: min(100svh, 62rem);
    padding-block: calc(var(--header-h) + clamp(3rem, 6vw, 5.5rem)) clamp(1.5rem, 3vw, 2.5rem);
    overflow: clip;
    background: var(--navy-950);
  }

  .hero__media {
    position: absolute;
    inset: 0;
    animation: hero-zoom 20s ease-out both;
  }

  .hero__media img {
    width: 100%;
    height: 112%;
    object-fit: cover;
    object-position: 60% 40%;
  }

  @keyframes hero-zoom {
    from {
      transform: scale(1.14);
    }
  }

  .hero__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgb(2 13 34 / 0.93) 0%, rgb(5 26 64 / 0.72) 45%, rgb(5 26 64 / 0.22) 100%),
      linear-gradient(0deg, rgb(2 13 34 / 0.92) 0%, transparent 38%);
  }

  /* Phones: frame the towers, and wash top to bottom because the copy spans the full width. */
  @media (max-width: 65.99rem) {
    .hero__media img {
      object-position: 28% 50%;
    }

    .hero__media::after {
      background: linear-gradient(180deg, rgb(2 13 34 / 0.9) 0%, rgb(5 26 64 / 0.74) 45%, rgb(2 13 34 / 0.92) 100%);
    }
  }

  @media (max-width: 30rem) {
    .hero__pill i {
      display: none;
    }
  }

  /* Faint ledger columns over the photo */
  .hero__grid-lines {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-evenly;
    pointer-events: none;
  }

  .hero__grid-lines i {
    width: 1px;
    background: linear-gradient(180deg, transparent, rgb(255 255 255 / 0.09) 30%, rgb(255 255 255 / 0.09) 70%, transparent);
  }

  .hero__inner {
    position: relative;
    display: grid;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
  }

  .hero__copy {
    display: grid;
    gap: 1.75rem;
    justify-items: start;
  }

  .hero__pill {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--glass-line);
    border-radius: 999px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  .hero__pill i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
  }

  .hero__pill-stars {
    display: inline-flex;
    color: var(--gold);
  }

  .hero__pill-stars svg {
    width: 0.875rem;
    height: 0.875rem;
  }

  .hero__title {
    max-width: 12.5em;
  }

  .hero__mark {
    position: relative;
    display: inline-block;
    color: var(--gold);
    white-space: nowrap;
  }

  .hero__mark svg {
    position: absolute;
    left: -2%;
    bottom: -0.16em;
    width: 104%;
    height: 0.22em;
    overflow: visible;
  }

  .hero__mark path {
    fill: none;
    stroke: var(--gold);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 0;
    vector-effect: non-scaling-stroke;
  }

  .hero__lede {
    max-width: 35em;
  }

  .hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
  }

  /* ---- floating working paper ---- */
  .hero__visual {
    position: relative;
    width: min(100%, 27.500rem);
    margin-inline: auto;
  }

  .paper {
    position: relative;
    z-index: 1;
    padding: clamp(1.25rem, 3vw, 1.875rem);
    background: var(--white);
    border-radius: var(--radius);
    color: var(--ink);
    box-shadow: var(--shadow-lg);
  }

  .paper::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: rgb(255 255 255 / 0.35);
    transform: rotate(4deg) translate(12px, 10px);
    backdrop-filter: blur(6px);
  }

  .paper__head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.875rem;
    border-bottom: 2px solid var(--navy-800);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy-800);
  }

  .paper__client {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    padding-block: 0.875rem;
    font-size: 1.1875rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--navy-900);
  }

  .paper__client span,
  .paper__label {
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--steel);
  }

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

  .paper__row {
    display: grid;
    grid-template-columns: 1fr auto 1.75rem;
    align-items: center;
    gap: 0.75rem;
    padding-block: 0.75rem;
    border-bottom: 1px solid var(--rule);
    font-size: 0.9063rem;
    font-weight: 500;
  }

  .paper__status {
    padding: 0.1875rem 0.5rem;
    border-radius: 999px;
    background: var(--paper);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }

  .paper__tick {
    width: 1.625rem;
    height: 1.625rem;
  }

  .paper__tick path {
    stroke: var(--gold);
    stroke-width: 3.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 0;
  }

  .paper__foot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    padding-top: 1.125rem;
    min-height: 5rem;
  }

  .paper__foot > div {
    display: grid;
    gap: 0.25rem;
  }

  .paper__opinion {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--navy-800);
  }

  .paper__sign {
    margin-right: clamp(4.5rem, 12vw, 6rem);
  }

  .paper__sign svg {
    width: 7.5rem;
    height: auto;
  }

  .paper__sign path {
    stroke: var(--navy-800);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 0;
  }

  .paper__seal {
    position: absolute;
    right: clamp(-1.5rem, -2vw, -0.5rem);
    bottom: clamp(-2rem, -3vw, -1rem);
    width: clamp(6.5rem, 12vw, 8.5rem);
    transform: rotate(-9deg);
    filter: drop-shadow(0 12px 20px rgb(2 13 34 / 0.4));
  }

  .chip {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 20px 40px -18px rgb(2 13 34 / 0.6);
    font-size: 0.8125rem;
    line-height: 1.3;
  }

  .chip small {
    display: block;
    font-size: 0.6875rem;
    color: var(--ink-soft);
  }

  .chip strong {
    display: block;
    font-weight: 700;
    color: var(--navy-900);
  }

  .chip--rating {
    top: -1.75rem;
    left: clamp(-2.5rem, -4vw, -0.75rem);
  }

  .chip--deadline {
    left: clamp(-3.5rem, -5vw, -0.75rem);
    bottom: -2rem;
    display: none;
  }

  .chip__g {
    display: grid;
    place-items: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--paper);
    font-weight: 900;
    font-size: 1.125rem;
    color: var(--navy-800);
  }

  .chip__stars {
    display: flex;
    color: var(--gold);
  }

  .chip__stars svg {
    width: 0.9375rem;
    height: 0.9375rem;
  }

  .chip__icon {
    display: grid;
    place-items: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy-950);
  }

  .chip__icon svg {
    width: 1.125rem;
    height: 1.125rem;
  }

  /* ---- stat strip ---- */
  .hero__stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
    overflow: hidden;
  }

  .hero__stat {
    display: grid;
    gap: 0.25rem;
    padding: clamp(1rem, 2.5vw, 1.625rem) clamp(1rem, 2.5vw, 2rem);
    border-color: var(--glass-line);
    border-style: solid;
    border-width: 0 1px 1px 0;
  }

  .hero__stat:nth-child(2n) {
    border-right-width: 0;
  }

  .hero__stat:nth-last-child(-n + 2) {
    border-bottom-width: 0;
  }

  .hero__stat dt {
    order: 2;
    font-size: 0.8125rem;
    color: var(--on-navy-soft);
  }

  .hero__stat dd {
    font-size: clamp(1.875rem, 1.4rem + 2vw, 2.875rem);
    font-variant-numeric: tabular-nums;
    color: var(--white);
  }

  .hero__stat dd::after {
    content: '';
    display: inline-block;
    width: 0.18em;
    height: 0.18em;
    margin-left: 0.08em;
    border-radius: 50%;
    background: var(--gold);
  }

  @media (min-width: 48rem) {
    .hero__stats {
      grid-template-columns: repeat(4, 1fr);
    }

    .hero__stat,
    .hero__stat:nth-child(2n) {
      border-width: 0 1px 0 0;
    }

    .hero__stat:last-child {
      border-right-width: 0;
    }

    .chip--deadline {
      display: flex;
    }
  }

  @media (min-width: 66rem) {
    .hero__inner {
      grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.8fr);
    }

    .hero__visual {
      margin-inline: auto 2rem;
    }
  }

/* ---- components/Insights.astro ---- */
.insights__head {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
  }

  .insights__head .section-head {
    margin-bottom: 0;
  }

  .insights__grid {
    display: grid;
    gap: 1.5rem;
    margin: 0;
  }

  .post {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    background: var(--white);
    transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.6s var(--ease);
  }

  .post:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: var(--shadow);
  }

  .post__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--navy-900);
  }

  .post__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
  }

  .post:hover .post__media img {
    transform: scale(1.08);
  }

  .post__body {
    display: grid;
    gap: 0.75rem;
    align-content: start;
    justify-items: start;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
  }

  .post time {
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    background: var(--paper);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy-800);
  }

  .post h3 {
    font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--navy-900);
  }

  .post p {
    font-size: 0.9375rem;
    color: var(--ink-soft);
  }

  .post__more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    font-weight: 500;
    color: var(--navy-800);
  }

  .post__go {
    display: grid;
    place-items: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--paper);
    transition: background-color 0.4s var(--ease), transform 0.5s var(--ease);
  }

  .post__go svg {
    width: 1rem;
    height: 1rem;
  }

  .post:hover .post__go {
    background: var(--gold);
    transform: rotate(-45deg);
  }

  @media (min-width: 56rem) {
    .insights__grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

/* ---- components/LinkCards.astro ---- */
.lcards {
    display: grid;
    gap: 1.25rem;
    margin: 0;
  }

  .lcard {
    position: relative;
    display: grid;
    align-content: end;
    min-height: 22rem;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--navy-900);
    color: var(--white);
    isolation: isolate;
  }

  .lcard__media {
    position: absolute;
    inset: 0;
    z-index: -1;
  }

  .lcard__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease);
  }

  .lcard__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgb(2 13 34 / 0.96) 0%, rgb(5 26 64 / 0.72) 50%, rgb(5 26 64 / 0.12) 100%);
  }

  .lcard:hover .lcard__media img,
  .lcard:focus-visible .lcard__media img {
    transform: scale(1.08);
  }

  .lcard__body {
    display: grid;
    gap: 0.625rem;
    padding: clamp(1.5rem, 2.5vw, 2rem);
    padding-right: 4.5rem;
  }

  .lcard__tag {
    justify-self: start;
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-soft);
  }

  .lcard h3 {
    font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.625rem);
    line-height: 1.15;
  }

  .lcard h3::before {
    content: '';
    display: block;
    width: 2.5rem;
    height: 3px;
    margin-bottom: 1rem;
    background: var(--gold);
    transition: width 0.6s var(--ease);
  }

  .lcard:hover h3::before {
    width: 5.5rem;
  }

  .lcard p {
    font-size: 0.9375rem;
    color: var(--on-navy-soft);
  }

  .lcard__go {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1.5px solid var(--glass-line);
    border-radius: 50%;
    transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease), transform 0.5s var(--ease);
  }

  .lcard__go svg {
    width: 1.125rem;
    height: 1.125rem;
  }

  .lcard:hover .lcard__go {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-950);
    transform: rotate(-45deg);
  }

  @media (min-width: 40rem) {
    .lcards {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 64rem) {
    .lcards--3 {
      grid-template-columns: repeat(3, 1fr);
    }

    .lcards--4 {
      grid-template-columns: repeat(4, 1fr);
    }
  }

/* ---- components/PageHero.astro ---- */
.phero {
    position: relative;
    padding-block: calc(var(--header-h) + clamp(3.5rem, 7vw, 6.5rem)) clamp(3rem, 6vw, 5rem);
    overflow: clip;
    background: var(--navy-950);
  }

  .phero__media {
    position: absolute;
    inset: 0;
    animation: phero-zoom 18s ease-out both;
  }

  @keyframes phero-zoom {
    from {
      transform: scale(1.12);
    }
  }

  .phero__media img {
    width: 100%;
    height: 112%;
    object-fit: cover;
  }

  .phero__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgb(2 13 34 / 0.95) 0%, rgb(5 26 64 / 0.82) 50%, rgb(5 26 64 / 0.45) 100%),
      linear-gradient(0deg, rgb(2 13 34 / 0.9) 0%, transparent 45%);
  }

  /* The seal's three bars, bottom right */
  .phero__bars {
    position: absolute;
    right: clamp(1rem, 6vw, 7rem);
    bottom: 0;
    display: flex;
    align-items: flex-end;
    gap: clamp(0.5rem, 1vw, 1rem);
    height: 62%;
    opacity: 0.16;
    pointer-events: none;
  }

  .phero__bars i {
    width: clamp(2rem, 5vw, 5rem);
  }

  .phero__bars i:nth-child(1) {
    height: 45%;
    background: var(--gold);
    clip-path: polygon(0 0, 100% 12%, 100% 100%, 0 100%);
  }

  .phero__bars i:nth-child(2) {
    height: 72%;
    background: var(--white);
    clip-path: polygon(0 0, 100% 9%, 100% 100%, 0 100%);
  }

  .phero__bars i:nth-child(3) {
    height: 100%;
    background: var(--steel);
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  }

  .phero__inner {
    position: relative;
    display: grid;
    gap: 1.5rem;
    justify-items: start;
  }

  .crumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.375rem;
    margin: 0 0 0.5rem;
    padding: 0.4375rem 1rem;
    list-style: none;
    border: 1px solid var(--glass-line);
    border-radius: 999px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 0.8125rem;
    font-weight: 500;
  }

  .crumbs li {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--on-navy-soft);
  }

  .crumbs a:hover {
    color: var(--gold);
  }

  .crumbs [aria-current] {
    color: var(--white);
  }

  .crumbs svg {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--gold);
  }

  .phero__title {
    max-width: 17em;
    font-size: clamp(2.25rem, 1.5rem + 3.4vw, 4.25rem);
    line-height: 1.04;
    letter-spacing: -0.032em;
  }

  .phero__lede {
    max-width: 44em;
  }

  .phero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-top: 0.5rem;
  }

  .phero__facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
    width: 100%;
    margin: clamp(1.5rem, 3vw, 2.5rem) 0 0;
    overflow: hidden;
  }

  .phero__facts div {
    display: grid;
    gap: 0.25rem;
    padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.75rem);
    border-right: 1px solid var(--glass-line);
  }

  .phero__facts div:last-child {
    border-right: 0;
  }

  .phero__facts dt {
    order: 2;
    font-size: 0.8125rem;
    color: var(--on-navy-soft);
  }

  .phero__facts dd {
    font-size: clamp(1.375rem, 1.1rem + 1.2vw, 2rem);
    color: var(--white);
  }

  @media (max-width: 40rem) {
    .phero__facts div {
      border-right: 0;
      border-bottom: 1px solid var(--glass-line);
    }

    .phero__facts div:last-child {
      border-bottom: 0;
    }
  }

/* ---- components/Process.astro ---- */
.process--white {
    background: var(--white);
  }

  .process--white .step__card {
    background: var(--paper);
  }

  .steps {
    position: relative;
    display: grid;
    gap: 1.25rem;
    margin: 0;
    padding: 0 0 0 2.5rem;
    list-style: none;
  }

  .steps__line {
    position: absolute;
    left: 0.5rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: var(--rule);
  }

  .steps__line span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transform-origin: top left;
  }

  .step {
    position: relative;
  }

  .step__dot {
    position: absolute;
    left: -2.5rem;
    top: 2rem;
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 50%;
    background: var(--paper);
    border: 2px solid var(--navy-800);
    transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  }

  /* Without the motion layer every step shows as complete. */
  html:not(.motion) .step__dot,
  .step.is-done .step__dot {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 0 6px rgb(245 185 15 / 0.2);
  }

  .step__card {
    position: relative;
    display: grid;
    gap: 0.75rem;
    justify-items: start;
    align-content: start;
    height: 100%;
    padding: clamp(1.5rem, 2.5vw, 2rem);
    overflow: hidden;
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    background: var(--white);
    transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.6s var(--ease);
  }

  .step__card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: var(--shadow);
  }

  .step__num {
    position: absolute;
    right: 1rem;
    top: 0.25rem;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--rule);
    transition: -webkit-text-stroke-color 0.5s var(--ease);
  }

  .step__card:hover .step__num {
    -webkit-text-stroke-color: var(--gold);
  }

  .step__icon {
    display: grid;
    place-items: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 0.75rem;
    border-radius: 16px;
    background: var(--navy-800);
    color: var(--gold);
    transition: transform 0.6s var(--ease);
  }

  .step__card:hover .step__icon {
    transform: rotate(-8deg) scale(1.06);
  }

  .step__icon svg {
    width: 1.625rem;
    height: 1.625rem;
  }

  .step h3 {
    color: var(--navy-900);
  }

  .step p {
    color: var(--ink-soft);
  }

  .step__time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    background: var(--paper);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy-800);
  }

  .step__time svg {
    width: 0.875rem;
    height: 0.875rem;
  }

  @media (min-width: 62rem) {
    .steps {
      grid-template-columns: repeat(4, 1fr);
      padding: 3.25rem 0 0;
    }

    .steps__line {
      left: 0;
      right: 0;
      top: 0.5rem;
      bottom: auto;
      width: auto;
      height: 2px;
    }

    .step__dot {
      left: 2rem;
      top: -3.25rem;
    }
  }

/* ---- components/Reviews.astro ---- */
.reviews {
    overflow: clip;
    background: var(--navy-950);
  }

  .reviews__glow {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(36rem 24rem at 85% 0%, rgb(36 80 154 / 0.5), transparent 65%),
      radial-gradient(30rem 20rem at 0% 100%, rgb(245 185 15 / 0.1), transparent 65%);
  }

  .reviews .container {
    position: relative;
  }

  .reviews__head {
    display: grid;
    gap: 1.5rem;
    align-items: end;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
  }

  .reviews__head .section-head {
    margin-bottom: 0;
  }

  .reviews__badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    justify-self: start;
    padding: 1rem 1.5rem;
    transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
  }

  .reviews__badge:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
  }

  .reviews__score {
    font-size: 3rem;
    line-height: 1;
  }

  .reviews__stars,
  .review__stars {
    display: flex;
    color: var(--gold);
  }

  .reviews__stars svg,
  .review__stars svg {
    width: 1.0625rem;
    height: 1.0625rem;
  }

  .reviews__source {
    font-size: 0.8125rem;
    color: var(--on-navy-soft);
  }

  .reviews__rail {
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }

  .reviews__rail .marquee__track {
    display: flex;
    width: max-content;
    will-change: transform;
  }

  /* Static fallback: a swipeable row when the marquee script is not running. */
  html:not(.motion) .reviews__rail {
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  html:not(.motion) .reviews__set[aria-hidden='true'] {
    display: none;
  }

  .reviews__set {
    display: flex;
    flex: none;
    gap: 1.25rem;
    margin: 0;
    padding: 0 0.625rem;
    list-style: none;
  }

  .review {
    position: relative;
    display: grid;
    gap: 1.25rem;
    align-content: space-between;
    width: clamp(18rem, 28vw, 25rem);
    height: 100%;
    padding: clamp(1.5rem, 2.5vw, 2.25rem);
    overflow: hidden;
  }

  .review__quote {
    position: absolute;
    right: 1.25rem;
    top: -0.75rem;
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    color: rgb(245 185 15 / 0.16);
  }

  .review blockquote {
    font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.01em;
    text-wrap: pretty;
  }

  .review figcaption {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--glass-line);
    font-size: 0.9375rem;
  }

  .review figcaption strong {
    display: block;
    font-weight: 700;
  }

  .review figcaption small {
    font-size: 0.75rem;
    color: var(--on-navy-soft);
  }

  .review__avatar {
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy-950);
    font-weight: 700;
    font-size: 1.125rem;
  }

  @media (min-width: 64rem) {
    .reviews__head {
      grid-template-columns: 1fr auto;
    }
  }

/* ---- components/Services.astro ---- */
.services {
    background: var(--white);
  }

  .services__head {
    display: grid;
    gap: 1.5rem;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
  }

  .services__head .section-head {
    margin-bottom: 0;
  }

  .showcase {
    display: grid;
    gap: 1.5rem;
  }

  /* ---- tabs ---- */
  .showcase__tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    margin-inline: calc(var(--gutter) * -1);
    padding: 0.25rem var(--gutter) 0.5rem;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .showcase__tabs::-webkit-scrollbar {
    display: none;
  }

  .tab {
    position: relative;
    flex: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    border: 1.5px solid var(--rule);
    border-radius: 999px;
    background: transparent;
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--ink-soft);
    white-space: nowrap;
    cursor: pointer;
    scroll-snap-align: start;
    transition: color 0.4s var(--ease), background-color 0.4s var(--ease), border-color 0.4s var(--ease);
  }

  .tab.is-active {
    background: var(--navy-800);
    border-color: var(--navy-800);
    color: var(--white);
  }

  .tab__go,
  .tab__progress {
    display: none;
  }

  /* ---- panels ---- */
  .showcase__panels {
    display: grid;
  }

  .panel {
    grid-area: 1 / 1;
    display: grid;
    align-content: start;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--navy-900);
    color: var(--white);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s var(--ease), visibility 0s 0.5s;
  }

  .panel.is-active {
    visibility: visible;
    opacity: 1;
    z-index: 1;
    transition: opacity 0.5s var(--ease);
  }

  /* Until the script is ready every panel is laid out in order, so nothing is unreachable without JS. */
  .showcase:not(.is-ready) .panel {
    grid-area: auto;
    visibility: visible;
    opacity: 1;
    margin-bottom: 1.5rem;
  }

  .showcase:not(.is-ready) .showcase__tabs {
    display: none;
  }

  .panel__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }

  .panel__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.18);
    transition: transform 1.4s var(--ease);
  }

  .panel.is-active .panel__media img {
    transform: scale(1);
  }

  .panel__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--navy-900) 0%, transparent 45%);
  }

  .panel__body {
    display: grid;
    gap: 1rem;
    justify-items: start;
    padding: 0.5rem clamp(1.25rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.5rem);
  }

  .panel__body > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  }

  .panel.is-active .panel__body > *,
  .showcase:not(.is-ready) .panel__body > * {
    opacity: 1;
    transform: none;
  }

  .panel.is-active .panel__body > :nth-child(1) { transition-delay: 0.18s; }
  .panel.is-active .panel__body > :nth-child(2) { transition-delay: 0.26s; }
  .panel.is-active .panel__body > :nth-child(3) { transition-delay: 0.34s; }
  .panel.is-active .panel__body > :nth-child(4) { transition-delay: 0.42s; }

  .panel__body p {
    max-width: 42em;
    color: var(--on-navy-soft);
  }

  .panel__points {
    display: grid;
    gap: 0.5rem 1.5rem;
    margin: 0.25rem 0 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
  }

  .panel__points li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
  }

  .panel__points svg {
    flex: none;
    width: 1.125rem;
    height: 1.125rem;
    color: var(--gold);
    stroke-width: 2.6;
  }

  .panel .link-arrow {
    color: var(--white);
  }

  @media (min-width: 36rem) {
    .panel__points {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (min-width: 66rem) {
    .services__head {
      grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
      align-items: end;
      gap: 4rem;
    }

    .showcase {
      grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
      gap: clamp(2rem, 4vw, 4rem);
      align-items: stretch;
    }

    .showcase__tabs {
      flex-direction: column;
      gap: 0;
      margin: 0;
      padding: 0;
      overflow: visible;
      border-top: 1px solid var(--rule);
    }

    .tab {
      flex: 1;
      justify-content: space-between;
      padding: 1.125rem 0.25rem;
      border: 0;
      border-bottom: 1px solid var(--rule);
      border-radius: 0;
      font-size: clamp(1.25rem, 1rem + 0.9vw, 1.75rem);
      font-weight: 700;
      letter-spacing: -0.025em;
      text-align: left;
      color: #a9b3c6;
      transition: color 0.4s var(--ease), padding-left 0.5s var(--ease);
    }

    .tab:hover {
      color: var(--navy-700);
    }

    .tab.is-active {
      padding-left: 1.25rem;
      background: transparent;
      color: var(--navy-900);
    }

    .tab__go {
      display: grid;
      place-items: center;
      width: 2.75rem;
      height: 2.75rem;
      border-radius: 50%;
      background: var(--gold);
      color: var(--navy-950);
      opacity: 0;
      transform: scale(0.5) rotate(-45deg);
      transition: opacity 0.4s var(--ease), transform 0.5s var(--ease);
    }

    .tab__go svg {
      width: 1.125rem;
      height: 1.125rem;
    }

    .tab.is-active .tab__go {
      opacity: 1;
      transform: none;
    }

    /* Gold progress line doubles as the auto-advance timer. */
    .tab__progress {
      display: block;
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 2px;
    }

    .tab__progress i {
      display: block;
      width: 100%;
      height: 100%;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
    }

    .tab.is-active .tab__progress i {
      transform: scaleX(1);
    }

    .showcase.is-playing .tab.is-active .tab__progress i {
      animation: tab-progress 6.5s linear both;
    }

    .showcase.is-playing:hover .tab.is-active .tab__progress i {
      animation-play-state: paused;
    }

    @keyframes tab-progress {
      from {
        transform: scaleX(0);
      }
    }

    .panel {
      position: relative;
      min-height: 34rem;
      height: 100%;
      align-content: end;
    }

    .panel__media {
      position: absolute;
      inset: 0;
      aspect-ratio: auto;
      clip-path: inset(0 0 100% 0);
      transition: clip-path 0.9s var(--ease-io);
    }

    .panel.is-active .panel__media,
    .showcase:not(.is-ready) .panel__media {
      clip-path: inset(0);
    }

    .panel__media::after {
      background:
        linear-gradient(0deg, rgb(2 13 34 / 0.96) 0%, rgb(5 26 64 / 0.7) 45%, rgb(5 26 64 / 0.1) 100%);
    }

    .panel__body {
      position: relative;
      align-self: end;
      padding: clamp(2rem, 3vw, 3rem);
    }
  }

/* ---- components/Setup.astro ---- */
.setup__head {
    display: grid;
    gap: 1.5rem;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
  }

  .setup__head .section-head {
    margin-bottom: 0;
  }

  .setup__cards {
    display: grid;
    gap: 1.25rem;
  }

  .setup__card {
    position: relative;
    display: grid;
    align-content: end;
    min-height: clamp(30rem, 44vw, 38rem);
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--navy-900);
    color: var(--white);
    isolation: isolate;
  }

  .setup__media {
    position: absolute;
    inset: 0;
    z-index: -1;
  }

  .setup__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease);
  }

  .setup__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgb(2 13 34 / 0.97) 0%, rgb(5 26 64 / 0.82) 48%, rgb(5 26 64 / 0.15) 100%);
    transition: opacity 0.6s var(--ease);
  }

  .setup__card:hover .setup__media img,
  .setup__card:focus-within .setup__media img {
    transform: scale(1.08);
  }

  .setup__body {
    display: grid;
    gap: 0.75rem;
    padding: clamp(1.5rem, 3vw, 2.25rem);
  }

  .setup__body h3::before {
    content: '';
    display: block;
    width: 3rem;
    height: 3px;
    margin-bottom: 1.25rem;
    background: var(--gold);
    transition: width 0.6s var(--ease);
  }

  .setup__card:hover h3::before,
  .setup__card:focus-within h3::before {
    width: 6rem;
  }

  .setup__lead {
    color: var(--on-navy-soft);
  }

  .setup__more {
    margin-top: 0.5rem;
  }

  .setup__more-inner {
    display: grid;
    gap: 1.25rem;
    justify-items: start;
  }

  .setup__rows {
    width: 100%;
    margin: 0;
    border-top: 1px solid var(--glass-line);
  }

  .setup__rows div {
    display: grid;
    gap: 0.125rem;
    padding-block: 0.6875rem;
    border-bottom: 1px solid var(--glass-line);
  }

  .setup__rows dt {
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-soft);
  }

  .setup__rows dd {
    font-size: 0.9375rem;
    font-weight: 500;
  }

  .setup__card .link-arrow {
    color: var(--white);
  }

  @media (min-width: 56rem) {
    .setup__cards {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (min-width: 66rem) {
    .setup__head {
      grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
      align-items: end;
      gap: 4rem;
    }
  }

  /* Pointer devices: the detail table stays folded until the card is hovered or focused. */
  @media (hover: hover) and (min-width: 56rem) {
    .setup__more {
      display: grid;
      grid-template-rows: 0fr;
      margin-top: 0;
      opacity: 0;
      transition: grid-template-rows 0.7s var(--ease), opacity 0.5s var(--ease), margin-top 0.7s var(--ease);
    }

    .setup__more-inner {
      min-height: 0;
      overflow: hidden;
      padding-bottom: 6px;
    }

    .setup__card:hover .setup__more,
    .setup__card:focus-within .setup__more {
      grid-template-rows: 1fr;
      margin-top: 0.5rem;
      opacity: 1;
    }

    .setup__media::after {
      opacity: 0.72;
    }

    .setup__card:hover .setup__media::after,
    .setup__card:focus-within .setup__media::after {
      opacity: 1;
    }
  }

/* ---- components/SplitMedia.astro ---- */
.split {
    display: grid;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
  }

  .split__media {
    position: relative;
    isolation: isolate;
  }

  .split__img img {
    height: 120%;
  }

  /* Gold bracket tucked behind the photo */
  .split__corner {
    position: absolute;
    left: -1rem;
    bottom: -1rem;
    z-index: -1;
    width: 40%;
    height: 40%;
    border-left: 4px solid var(--gold);
    border-bottom: 4px solid var(--gold);
    border-bottom-left-radius: calc(var(--radius) + 1rem);
  }

  .split--reverse .split__corner {
    left: auto;
    right: -1rem;
    border-left: 0;
    border-right: 4px solid var(--gold);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: calc(var(--radius) + 1rem);
  }

  .split__badge {
    position: absolute;
    right: clamp(-1.5rem, -2vw, -0.5rem);
    bottom: 12%;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    max-width: 17rem;
    padding: 0.875rem 1.25rem 0.875rem 0.875rem;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
    font-size: 0.8125rem;
    line-height: 1.35;
    color: var(--ink-soft);
  }

  .split--reverse .split__badge {
    right: auto;
    left: clamp(-1.5rem, -2vw, -0.5rem);
  }

  .split__badge strong {
    display: block;
    font-size: 0.9688rem;
    font-weight: 700;
    color: var(--navy-900);
  }

  .split__badge-icon {
    flex: none;
    display: grid;
    place-items: center;
    width: 2.875rem;
    height: 2.875rem;
    border-radius: 14px;
    background: var(--gold);
    color: var(--navy-950);
  }

  .split__badge-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .split__copy {
    display: grid;
    gap: 1.5rem;
    justify-items: start;
  }

  .split__copy .section-head {
    margin-bottom: 0;
  }

  @media (min-width: 66rem) {
    .split {
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }

    .split--reverse .split__media {
      order: 2;
    }
  }

/* ---- components/TrustMarquee.astro ---- */
.trust {
    padding-block: clamp(1.75rem, 3vw, 2.5rem);
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    overflow: clip;
  }

  .trust__label {
    margin-bottom: 1rem;
    font-size: var(--step--1);
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
    color: var(--steel);
  }

  .trust__marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  }

  .trust .marquee__track {
    display: flex;
    width: max-content;
    will-change: transform;
  }

  .trust__set {
    display: flex;
    flex: none;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .trust__set li {
    display: flex;
    align-items: center;
    font-size: clamp(1.375rem, 1.1rem + 1.2vw, 2rem);
    font-weight: 900;
    letter-spacing: -0.01em;
    color: #b9c2d2;
    white-space: nowrap;
    transition: color 0.3s var(--ease);
  }

  .trust__set li::after {
    content: '';
    width: 0.3em;
    height: 0.3em;
    margin-inline: clamp(1.5rem, 3vw, 3rem);
    background: var(--gold);
    transform: rotate(45deg);
  }

/* ---- components/Why.astro ---- */
.why {
    overflow: clip;
  }

  /* The three bars from the seal, scaled up as a quiet backdrop. */
  .why__bars {
    position: absolute;
    left: -1rem;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    gap: clamp(0.75rem, 1.5vw, 1.5rem);
    height: 70%;
    opacity: 0.1;
    pointer-events: none;
  }

  .why__bars span {
    width: clamp(3rem, 7vw, 7rem);
    transform-origin: bottom;
  }

  .why__bars span:nth-child(1) {
    height: 45%;
    background: var(--gold);
    clip-path: polygon(0 0, 100% 12%, 100% 100%, 0 100%);
  }

  .why__bars span:nth-child(2) {
    height: 72%;
    background: var(--white);
    clip-path: polygon(0 0, 100% 9%, 100% 100%, 0 100%);
  }

  .why__bars span:nth-child(3) {
    height: 100%;
    background: var(--steel);
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  }

  .why__grid {
    position: relative;
    display: grid;
    gap: clamp(3rem, 6vw, 5rem);
  }

  .why__sticky {
    display: grid;
    gap: 1.5rem;
  }

  .why__img {
    aspect-ratio: 16 / 10;
    margin-top: 1rem;
    box-shadow: var(--shadow-lg);
  }

  .why__img img {
    height: 118%;
  }

  .why__list {
    display: grid;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .why__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    align-items: start;
    padding: clamp(1.25rem, 2.5vw, 1.875rem);
    overflow: hidden;
    transition: transform 0.6s var(--ease), border-color 0.6s var(--ease);
  }

  .why__item:hover {
    transform: translateX(10px);
    border-color: rgb(245 185 15 / 0.5);
  }

  .why__icon {
    display: grid;
    place-items: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 14px;
    background: rgb(245 185 15 / 0.14);
    color: var(--gold);
    transition: background-color 0.5s var(--ease), color 0.5s var(--ease), transform 0.6s var(--ease);
  }

  .why__item:hover .why__icon {
    background: var(--gold);
    color: var(--navy-950);
    transform: rotate(-8deg);
  }

  .why__icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .why__item h3 {
    margin-bottom: 0.5rem;
    font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  }

  .why__item p {
    font-size: 0.9688rem;
    color: var(--on-navy-soft);
  }

  .why__index {
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 1px rgb(255 255 255 / 0.12);
    pointer-events: none;
  }

  @media (min-width: 66rem) {
    .why__grid {
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      align-items: start;
    }

    .why__sticky {
      position: sticky;
      top: calc(var(--header-h) + 3rem);
    }
  }

/* ---- components/ZoneTiles.astro ---- */
.zones {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr));
    gap: 0.875rem;
    margin: 0;
  }

  .zone {
    position: relative;
    display: grid;
    gap: 0.25rem;
    align-content: start;
    height: 100%;
    padding: 1.25rem 3rem 1.375rem 1.375rem;
    overflow: hidden;
    border: 1px solid var(--rule);
    border-radius: var(--radius-sm);
    background: var(--paper);
    isolation: isolate;
    transition: color 0.5s var(--ease), border-color 0.5s var(--ease), transform 0.5s var(--ease);
  }

  /* Navy fill wipes up from the bottom on hover. */
  .zone::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--navy-800);
    transform: translateY(101%);
    transition: transform 0.55s var(--ease-io);
  }

  .zone:hover,
  .zone:focus-visible {
    color: var(--white);
    border-color: var(--navy-800);
    transform: translateY(-4px);
  }

  .zone:hover::before,
  .zone:focus-visible::before {
    transform: none;
  }

  .zone__emirate {
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--steel);
    transition: color 0.5s var(--ease);
  }

  .zone:hover .zone__emirate {
    color: var(--gold);
  }

  .zone__code {
    font-size: 1.5rem;
    color: var(--navy-900);
    transition: color 0.5s var(--ease);
  }

  .zone:hover .zone__code {
    color: var(--white);
  }

  .zone__name {
    font-size: 0.875rem;
    line-height: 1.45;
    color: var(--ink-soft);
    transition: color 0.5s var(--ease);
  }

  .zone:hover .zone__name {
    color: var(--on-navy-soft);
  }

  .zone__go {
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: var(--gold);
    opacity: 0;
    transform: translate(-6px, 6px);
    transition: opacity 0.4s var(--ease), transform 0.5s var(--ease);
  }

  .zone:hover .zone__go {
    opacity: 1;
    transform: none;
  }

  .zone__go svg {
    width: 1.125rem;
    height: 1.125rem;
  }

/* ---- layouts/Base.astro ---- */
.intro {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: none;
    place-content: center;
    justify-items: center;
    gap: 1.5rem;
    background: var(--navy-950);
    color: var(--white);
  }

  html.motion .intro {
    display: grid;
  }

  html.motion.intro-done .intro {
    display: none;
  }

  .intro__bars {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 4.5rem;
  }

  .intro__bars i {
    width: 1.125rem;
    transform-origin: bottom;
    animation: intro-bar 0.9s var(--ease) both;
  }

  .intro__bars i:nth-child(1) {
    height: 50%;
    background: var(--gold);
    clip-path: polygon(0 0, 100% 14%, 100% 100%, 0 100%);
  }

  .intro__bars i:nth-child(2) {
    height: 78%;
    background: var(--white);
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
    animation-delay: 0.1s;
  }

  .intro__bars i:nth-child(3) {
    height: 100%;
    background: var(--steel);
    clip-path: polygon(0 9%, 100% 0, 100% 100%, 0 100%);
    animation-delay: 0.2s;
  }

  @keyframes intro-bar {
    from {
      transform: scaleY(0);
    }
  }

  .intro__word {
    font-size: 1.125rem;
    font-weight: 900;
    letter-spacing: 0.32em;
    padding-left: 0.32em;
    animation: intro-word 0.9s 0.25s var(--ease) both;
  }

  .intro__word span {
    color: var(--gold);
  }

  @keyframes intro-word {
    from {
      opacity: 0;
      letter-spacing: 0.6em;
    }
  }

  /* Reading progress along the top edge */
  .progress {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 120;
    height: 3px;
    pointer-events: none;
  }

  .progress i {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-hi));
    transform: scaleX(0);
    transform-origin: left;
  }

  /* Pages without a full-bleed hero clear the floating header. */
  .page-top {
    padding-top: calc(var(--header-h) + 4rem);
  }

/* ---- pages/404.astro ---- */
.missing__inner {
    display: grid;
    gap: 1.5rem;
    justify-items: start;
    align-content: center;
    min-height: 50vh;
    max-width: 44rem;
  }

  .missing__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

/* ---- pages/about/index.astro ---- */
.p-body {
    color: var(--ink-soft);
    max-width: 42em;
  }

/* ---- pages/business-setup/[slug].astro ---- */
.p-body {
    color: var(--ink-soft);
    max-width: 42em;
  }

/* ---- pages/contact/index.astro ---- */
.ways {
    display: grid;
    gap: 1.25rem;
    margin: 0;
  }

  .way {
    position: relative;
    display: grid;
    gap: 0.375rem;
    height: 100%;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    overflow: hidden;
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    background: var(--white);
    isolation: isolate;
    transition: color 0.5s var(--ease), transform 0.6s var(--ease), border-color 0.5s var(--ease), box-shadow 0.6s var(--ease);
  }

  .way::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--navy-800);
    transform: translateY(101%);
    transition: transform 0.6s var(--ease-io);
  }

  .way:hover,
  .way:focus-visible {
    color: var(--white);
    border-color: var(--navy-800);
    transform: translateY(-8px);
    box-shadow: var(--shadow);
  }

  .way:hover::before,
  .way:focus-visible::before {
    transform: none;
  }

  .way__icon {
    display: grid;
    place-items: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1rem;
    border-radius: 16px;
    background: var(--gold);
    color: var(--navy-950);
  }

  .way__icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .way__label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--steel);
  }

  .way strong {
    font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.625rem);
    color: var(--navy-900);
    overflow-wrap: anywhere;
    transition: color 0.5s var(--ease);
  }

  .way:hover strong {
    color: var(--white);
  }

  .way small {
    font-size: 0.875rem;
    color: var(--ink-soft);
    transition: color 0.5s var(--ease);
  }

  .way:hover small {
    color: var(--on-navy-soft);
  }

  .way__go {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    color: var(--gold);
    transition: transform 0.5s var(--ease);
  }

  .way:hover .way__go {
    transform: rotate(-45deg);
  }

  .way__go svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .office {
    display: grid;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
  }

  .office__copy {
    display: grid;
    gap: 1.5rem;
    justify-items: start;
  }

  .office__copy .section-head {
    margin-bottom: 0;
  }

  .office address {
    font-style: normal;
    font-size: var(--step-1);
    line-height: 1.6;
    color: var(--ink-soft);
  }

  .office address strong {
    color: var(--navy-900);
  }

  .office__hours {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 500;
    color: var(--navy-900);
  }

  .office__hours svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold);
  }

  .office__map {
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow);
  }

  .office__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }

  @media (min-width: 48rem) {
    .ways {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (min-width: 66rem) {
    .office {
      grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    }
  }

/* ---- pages/free-zones/[slug].astro ---- */
.p-body {
    color: var(--ink-soft);
    max-width: 42em;
  }

  .meta {
    display: grid;
    width: 100%;
    margin: 0;
    border-top: 1px solid var(--rule);
  }

  .meta div {
    display: grid;
    gap: 0.125rem;
    padding-block: 0.875rem;
    border-bottom: 1px solid var(--rule);
  }

  .meta dt {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--steel);
  }

  .meta dd {
    font-weight: 500;
    color: var(--navy-900);
  }

  .sub {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--navy-700);
  }

  .note {
    max-width: 44rem;
    margin: clamp(2rem, 4vw, 3rem) auto 0;
    text-align: center;
    font-size: 0.9375rem;
    color: var(--on-navy-soft);
  }

/* ---- pages/free-zones/index.astro ---- */
.group + .group {
    margin-top: clamp(2.5rem, 5vw, 4rem);
  }

  .group__title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: var(--step-2);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--navy-900);
  }

  .group__title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--rule);
  }

/* ---- pages/locations/[slug].astro ---- */
.p-body {
    color: var(--ink-soft);
    max-width: 42em;
  }

  .sub {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--navy-700);
  }

/* ---- pages/services/[slug].astro ---- */
.p-body {
    color: var(--ink-soft);
    max-width: 42em;
  }

/* ---- pages/thank-you/index.astro ---- */
.thanks__inner {
    display: grid;
    gap: 1.5rem;
    justify-items: start;
    max-width: 48rem;
    min-height: 50vh;
    align-content: center;
  }

  .thanks__inner .thanks__seal {
    width: 6.5rem;
    transform: rotate(-9deg);
  }

  .thanks__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

/* ---- testimonials page ---- */
.tm-head {
  display: grid;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.tm-head .section-head {
  margin-bottom: 0;
}

.tm-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  justify-self: start;
  padding: 1rem 1.5rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy-900);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.tm-badge:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.tm-badge .reviews__source {
  color: var(--ink-soft);
}

.tm-grid {
  display: grid;
  gap: 1.25rem;
  margin: 0;
}

.tm-card {
  position: relative;
  display: grid;
  gap: 1.25rem;
  align-content: space-between;
  height: 100%;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.6s var(--ease);
}

.tm-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.tm-card__quote {
  position: absolute;
  right: 1.25rem;
  top: -0.75rem;
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  color: rgb(245 185 15 / 0.18);
}

.tm-card__stars {
  display: flex;
  color: var(--gold);
}

.tm-card__stars svg {
  width: 1.0625rem;
  height: 1.0625rem;
}

.tm-card blockquote {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  text-wrap: pretty;
}

.tm-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
  font-size: 0.9375rem;
}

.tm-card figcaption strong {
  display: block;
  font-weight: 700;
  color: var(--navy-900);
}

.tm-card figcaption small {
  font-size: 0.75rem;
  color: var(--ink-soft);
}

@media (min-width: 40rem) {
  .tm-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  .tm-head {
    grid-template-columns: 1fr auto;
  }

  .tm-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---- blog: key takeaways and related links ---- */
.blog-takeaways {
  margin-bottom: 2rem;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--gold);
  background: var(--white);
}

.blog-takeaways p {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-700);
}

.blog-takeaways ul {
  display: grid;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
}

.blog-takeaways li {
  display: flex;
  gap: 0.75rem;
}

.blog-takeaways li svg {
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  color: var(--gold);
  stroke-width: 2.6;
}

.blog-related {
  display: grid;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.blog-related > p {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

.blog-related a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-weight: 500;
  color: var(--navy-900);
  text-decoration: none;
  transition: border-color 0.3s var(--ease), transform 0.4s var(--ease);
}

.blog-related a:hover {
  border-color: var(--navy-800);
  transform: translateX(6px);
}

.blog-related a svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--gold);
}

/* ---- footer credit ---- */
.footer__credit {
  flex-basis: 100%;
  margin: 0;
  font-size: 0.8125rem;
  color: rgb(255 255 255 / 0.5);
}

.footer__credit a {
  color: rgb(255 255 255 / 0.75);
  font-weight: 500;
}

.footer__credit a:hover {
  color: var(--gold);
}
