/* ==========================================================================
   Veristar Global Consultants — components
   Depends on base.css for tokens. Ordered: header, buttons, hero, sections,
   cards, process, testimonials, forms, footer, floating action, motion.
   ========================================================================== */

/* ------------------------------------------------------------- header -- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  min-height: 92px;
}

/* Sized so the "GLOBAL CONSULTANTS" line in the wordmark stays legible. */
.brand { flex: none; margin-right: auto; }
.brand img { height: 58px; width: auto; }
@media (max-width: 600px) {
  .site-header__inner { min-height: 78px; }
  .brand img { height: 46px; }
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

/* :not(.btn) matters — this selector out-specifies .btn--primary's own colour,
   and without the guard the mobile CTA renders dark ink on navy. */
.site-nav a:not(.btn) {
  position: relative;
  display: inline-block;
  padding-block: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  transition: color 0.18s var(--ease);
}
.site-nav a:not(.btn):hover { color: var(--navy); }

/* Active page marked with the logo's star rather than a generic underline. */
.site-nav a[aria-current="page"] { color: var(--navy); font-weight: 600; }
.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 9px;
  height: 9px;
  transform: translateX(-50%);
  background: var(--gold);
  -webkit-mask: url("../img/star.svg") center / contain no-repeat;
  mask: url("../img/star.svg") center / contain no-repeat;
}

/* The CTA lives in the nav list only on mobile; on desktop the standalone
   .site-header__cta is used instead, so hide the list copy here. */
.site-nav .btn { display: none; }

.nav-toggle {
  display: none;
  flex: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  margin-inline: auto;
  background: var(--navy);
  transition: transform 0.22s var(--ease), opacity 0.22s var(--ease);
}
.nav-toggle span { position: relative; }
.nav-toggle span::before,
.nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  /* Needs to out-specify .btn's own display, which is declared later. */
  .site-header__inner > .site-header__cta { display: none; }
  .site-nav {
    position: absolute;
    inset: 100% 0 auto;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    padding: var(--sp-4) 0 var(--sp-6);
    display: none;
  }
  .site-nav[data-open="true"] { display: block; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  }
  .site-nav li + li { border-top: 1px solid var(--rule); }
  .site-nav a { padding-block: var(--sp-4); font-size: 1.05rem; }
  .site-nav a[aria-current="page"]::after { left: auto; right: 0; bottom: 50%; transform: translateY(50%); }
  .site-nav .btn { display: inline-flex; margin-top: var(--sp-5); width: 100%; }
  .site-nav li:has(.btn) { border-top: 0; }
}

/* ------------------------------------------------------------ buttons -- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.9rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease),
              border-color 0.18s var(--ease);
}

.btn--primary { background: var(--navy); color: var(--white); }
.btn--primary:hover { background: var(--navy-deep); }

/* Brand gold behind navy text is 4.2:1 — just under AA. --gold-lift clears it
   at 6.3:1, and the hover tone is held at 5.3:1 rather than going darker. */
.btn--gold { background: var(--gold-lift); color: var(--navy); }
.btn--gold:hover { background: var(--gold-hover); }

.btn--outline { border-color: var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }

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

.btn--sm { padding: 0.62rem 1.1rem; font-size: var(--fs-xs); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

/* --------------------------------------------------------------- hero -- */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  padding-block: clamp(4rem, 2rem + 9vw, 8.5rem);
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: saturate(0.65);
}
.hero::after {                       /* deepen toward the text side */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg,
    var(--navy) 8%,
    rgba(0, 31, 72, 0.86) 46%,
    rgba(0, 21, 54, 0.6) 100%);
}

/* The signature: a sparse constellation plus the logo's orbit ellipse. */
/* Painting order inside the hero's stacking context:
   photo (-2) → gradient ::after (-1) → orbit (0) → sparks (0) → text (1).
   The ::after paints as the last child, so decoration must sit at 0 or above
   to clear it, and the text container needs an explicit layer above that. */
.hero .container { position: relative; z-index: 1; }

.hero__orbit {
  position: absolute;
  z-index: 0;
  right: -14%;
  top: 50%;
  width: min(58vw, 640px);
  aspect-ratio: 1.9 / 1;
  transform: translateY(-50%) rotate(-19deg);
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.42;
  pointer-events: none;
}
.hero__orbit::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.5;
}

.spark {
  position: absolute;
  z-index: 0;
  display: block;
  background: var(--gold-lift);
  -webkit-mask: url("../img/star.svg") center / contain no-repeat;
  mask: url("../img/star.svg") center / contain no-repeat;
  pointer-events: none;
}
/* Below this width the headline spans the full column, so the constellation
   would sit on top of the type. */
@media (max-width: 900px) {
  .spark { display: none; }
  .hero__orbit { right: -40%; opacity: 0.28; }
}

.hero h1 { margin-bottom: var(--sp-5); }
.hero h1 em {
  font-style: normal;
  color: var(--gold-lift);
}
.hero__text { max-width: 46rem; }

/* .hero is a navy ground but is not tagged .on-navy, so it needs the same
   colour corrections that class applies — without these the eyebrow lands at
   2.97:1 and the lead at 2.74:1. */
.hero .eyebrow { color: var(--gold-lift); }
.hero .lead { max-width: 44ch; color: rgba(255, 255, 255, 0.74); }

.hero__note {
  margin-top: var(--sp-6);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------------------------------------------------------- page hero -- */

/* Compact counterpart to .hero for interior pages: same navy ground and orbit,
   without the photograph or the full-height type. */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  padding-block: clamp(2.75rem, 1.5rem + 5vw, 5rem);
  isolation: isolate;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .lead { color: rgba(255, 255, 255, 0.74); max-width: 54ch; }
.page-hero .eyebrow { color: var(--gold-lift); }
.page-hero__orbit {
  position: absolute;
  z-index: 0;
  right: -18%;
  top: 50%;
  width: min(52vw, 520px);
  aspect-ratio: 2 / 1;
  transform: translateY(-50%) rotate(-16deg);
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.34;
  pointer-events: none;
}
@media (max-width: 760px) { .page-hero__orbit { display: none; } }

/* --------------------------------------------------------------- prose -- */

.prose > * + * { margin-top: var(--sp-4); }
.prose h3 { margin-top: var(--sp-6); color: var(--navy); }

/* Star-bulleted list, reusing the logo glyph rather than a generic disc. */
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li {
  position: relative;
  padding-left: 1.85rem;
  margin-top: var(--sp-3);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  background: var(--gold);
  -webkit-mask: url("../img/star.svg") center / contain no-repeat;
  mask: url("../img/star.svg") center / contain no-repeat;
}
.on-navy .checklist li::before { background: var(--gold-lift); }

/* -------------------------------------------------------------- people -- */

.person {
  padding: var(--sp-5);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.person__avatar {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: var(--sp-4);
  background: var(--paper-deep);
  border: 1px solid var(--rule);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
}
.person h3 { margin-bottom: var(--sp-1); color: var(--navy); }
.person__role {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.person p { margin-top: var(--sp-3); font-size: var(--fs-sm); color: var(--ink-muted); }

/* ------------------------------------------------------ service detail -- */

.service-detail {
  display: grid;
  gap: var(--sp-5);
  padding-block: var(--sp-7);
  border-top: 1px solid var(--rule);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 860px) {
  .service-detail { grid-template-columns: minmax(0, 7rem) minmax(0, 1.1fr) minmax(0, 1fr); gap: var(--sp-6); }
}
.service-detail__no {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--gold-ink);
}
.service-detail h3 { color: var(--navy); }
.service-detail p { color: var(--ink-muted); margin-top: var(--sp-3); }

/* --------------------------------------------------------------- stats -- */

.stat-band {
  border-block: 1px solid var(--rule);
  background: var(--paper-deep);
}
.stat-band ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}
.stat {
  padding: var(--sp-6) var(--sp-5);
  text-align: center;
  border-right: 1px solid var(--rule);
}
.stat:last-child { border-right: 0; }
.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.4rem + 2vw, 2.9rem);
  line-height: 1;
  color: var(--navy);
}
.stat__label {
  display: block;
  margin-top: var(--sp-3);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
@media (max-width: 720px) {
  .stat { border-right: 0; border-bottom: 1px solid var(--rule); }
  .stat:last-child { border-bottom: 0; }
}

/* ------------------------------------------------------ section header -- */

.section-head { margin-bottom: var(--sp-7); }
.section-head--center { text-align: center; }
.section-head--center .lead { margin-inline: auto; }
.section-head--center p { margin-inline: auto; }

.section-head--split {
  display: grid;
  gap: var(--sp-5);
  align-items: end;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 860px) {
  .section-head--split { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); }
  .section-head--split .lead { margin-bottom: 0.4rem; }
}

/* --------------------------------------------------------------- grids -- */

.grid {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }
/* 1fr rows keep every destination card the same height across all rows, not
   just within one. */
.grid--wide { gap: var(--sp-6); grid-auto-rows: 1fr; }

/* --------------------------------------------------------------- cards -- */

.card {
  display: flex;
  flex-direction: column;
  padding: var(--sp-6) var(--sp-5);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.card:hover { border-color: var(--gold); transform: translateY(-3px); }
.card h3 { margin-bottom: var(--sp-3); color: var(--navy); }
.card p { color: var(--ink-muted); font-size: var(--fs-sm); }

.card__star {
  width: 20px;
  height: 20px;
  margin-bottom: var(--sp-4);
  background: var(--gold);
  -webkit-mask: url("../img/star.svg") center / contain no-repeat;
  mask: url("../img/star.svg") center / contain no-repeat;
}

/* Destination card — a photograph of the country, with the text sitting in a
   navy scrim heavy enough at the base to hold white type well past AA. */
.dest-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 340px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--navy);
  isolation: isolate;
}

.dest-card__media { position: absolute; inset: 0; z-index: -2; }
/* <picture> is inline by default, so a percentage height on the <img> has no
   resolvable containing block and the photo collapses to its own aspect ratio. */
.dest-card__media picture { display: block; width: 100%; height: 100%; }
.dest-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.dest-card:hover .dest-card__media img { transform: scale(1.045); }

.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Ramps to near-opaque before the body starts (~40% down), so white text
     stays legible whatever the photograph does underneath. */
  background: linear-gradient(180deg,
    rgba(0, 31, 72, 0.16) 0%,
    rgba(0, 29, 68, 0.44) 22%,
    rgba(0, 26, 62, 0.74) 36%,
    rgba(0, 23, 57, 0.90) 48%,
    rgba(0, 21, 54, 0.96) 62%,
    rgba(0, 21, 54, 0.97) 100%);
}

/* Countries with no photograph supplied fall back to the line-art glyph. */
.dest-card--art .dest-card__media {
  display: grid;
  place-items: center;
  padding: var(--sp-7) var(--sp-6) 42%;
  background: var(--navy);
  color: var(--gold-lift);
}
.dest-card--art .dest-card__media svg { width: min(58%, 170px); height: auto; }

.dest-card__body { padding: var(--sp-6) var(--sp-5) var(--sp-5); }
.dest-card__flag { display: block; font-size: 1.6rem; line-height: 1; margin-bottom: var(--sp-3); }
.dest-card__body h3 {
  margin-bottom: var(--sp-3);
  color: var(--white);
  font-size: clamp(1.45rem, 1.25rem + 0.7vw, 1.85rem);
}
.dest-card__body p {
  margin-bottom: var(--sp-4);
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.tags { display: flex; flex-wrap: wrap; gap: var(--sp-2); list-style: none; margin: 0; padding: 0; }
.tags li {
  padding: 0.32rem 0.7rem;
  border: 1px solid rgba(199, 154, 46, 0.55);
  border-radius: 999px;
  background: rgba(0, 21, 54, 0.5);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-lift);
}

@media (prefers-reduced-motion: reduce) {
  .dest-card:hover .dest-card__media img { transform: none; }
}

/* ----------------------------------------------------- destination rows -- */

/* Full-width alternating rows. The photograph stretches to the row height, so
   a short entry never leaves a column of dead space beside it. */
/* grid-auto-rows:1fr in an auto-height grid resolves every row to the tallest,
   so all fourteen country entries end up the same size regardless of how much
   copy each one carries. */
.dest-rows {
  display: grid;
  gap: var(--sp-6);
  grid-auto-rows: 1fr;
}

/* Split card: a fixed image rail beside a body of stat ledgers. The rail is a
   fixed 340px rather than a fraction so the photograph is exactly the same size
   on all fourteen; the side alternates, which only swaps the two grid columns —
   the track sizes never change. */
.dest-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  scroll-margin-top: 110px;
}
/* 1040px, not 900px: below that the 340px rail squeezes the three-column money
   ledger until both its labels and its figures wrap, and the card reads worse
   split than stacked. */
@media (min-width: 1040px) {
  .dest-row { grid-template-columns: 340px minmax(0, 1fr); }
  .dest-row__media { grid-area: 1 / 1; }
  .dest-row__body { grid-area: 1 / 2; }
  .dest-row:nth-of-type(even) { grid-template-columns: minmax(0, 1fr) 340px; }
  .dest-row:nth-of-type(even) .dest-row__media { grid-area: 1 / 2; }
  .dest-row:nth-of-type(even) .dest-row__body { grid-area: 1 / 1; }
}

.dest-row__media { position: relative; min-height: 250px; background: var(--navy); }
.dest-row__media picture { display: block; height: 100%; }
.dest-row__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dest-row__media--art { display: grid; place-items: center; color: var(--gold-lift); padding: var(--sp-7); }
.dest-row__media--art svg { width: min(70%, 190px); height: auto; }

/* space-between, not a spacer element: every card is forced to the tallest
   card's height by grid-auto-rows, and the leftover is shared out between the
   five blocks instead of pooling into one void at the bottom. */
.dest-row__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--sp-5);
  padding: var(--sp-6);
}

.dest-row__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-3) var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--rule);
}
.dest-row__head h2 {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin: 0;
  color: var(--navy);
  font-size: var(--fs-h3);
}
.dest-row__head h2 .flag { font-size: 1.25em; line-height: 1; }
.dest-row__head h2 .code {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gold-ink);
}
.dest-row__blurb { margin: 0; font-size: var(--fs-sm); color: var(--ink-muted); }

.spec-tags { display: flex; flex-wrap: wrap; gap: var(--sp-2); list-style: none; margin: 0; padding: 0; }
.spec-tags li {
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(0, 31, 72, 0.16);
  border-radius: 999px;
  background: rgba(0, 31, 72, 0.045);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.spec-tags .is-gold {
  border-color: rgba(169, 121, 19, 0.34);
  background: rgba(169, 121, 19, 0.09);
  color: var(--gold-ink);
}

/* Stat ledger. One hairline grid, drawn with left borders on the cells so the
   outer rule is never doubled. */
.ledger {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin: 0;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
}
.ledger > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-1);
  min-width: 0;
  padding: var(--sp-3) var(--sp-4);
  border-top: 1px solid var(--rule);
}
.ledger > div:first-child { border-top: 0; }
.ledger dt {
  font-size: var(--fs-xs);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.ledger dd { margin: 0; font-size: 1rem; font-weight: 600; color: var(--navy); }
/* The money row is set in the display face — the figures are what the eye is
   hunting for, and Marcellus separates them from the labels without bolding. */
.ledger--fill > div { background: var(--paper); }
.ledger--fill dd {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
}
@media (min-width: 560px) {
  .ledger--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ledger--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ledger--2 > div, .ledger--3 > div { border-top: 0; border-left: 1px solid var(--rule); }
  .ledger--2 > div:first-child, .ledger--3 > div:first-child { border-left: 0; }
}

.dest-row__note {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  margin: 0;
  /* it is a band, not a column of prose — opt out of the global p measure */
  max-width: none;
  padding: var(--sp-3) var(--sp-4);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--paper-deep);
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: var(--ink-muted);
}
.dest-row__note b {
  flex: none;
  padding-top: 0.15em;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold-ink);
}

/* Provenance for the destination figures — they are planning ranges, not quotes. */
.figures-note {
  max-width: 74ch;
  margin-bottom: var(--sp-6);
  padding: var(--sp-4) var(--sp-5);
  border-left: 3px solid var(--gold);
  background: var(--white);
  font-size: var(--fs-sm);
  color: var(--ink-muted);
}
.figures-note em { color: var(--navy); font-style: italic; }

/* ------------------------------------------------------------- process -- */

.process {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  counter-reset: step;
}
.step {
  position: relative;
  counter-increment: step;
  padding-top: var(--sp-6);
  border-top: 1px solid var(--rule-on-navy);
}
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: var(--sp-3);
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--gold-lift);
}
.step h3 { margin-bottom: var(--sp-2); color: var(--white); }
.step p { font-size: var(--fs-sm); color: rgba(255, 255, 255, 0.72); }

/* ---------------------------------------------------------- logo wall -- */

/* Column counts divide evenly into the eight entries, so rows are always
   complete. Top and left rules come from the container, right and bottom from
   each cell — together they close the rectangle with no doubled or stray edge. */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--white);
}
@media (min-width: 760px) {
  .logo-wall { grid-template-columns: repeat(4, 1fr); }
}
.logo-wall li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: var(--sp-4);
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-muted);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

/* -------------------------------------------------------- testimonials -- */

.quote {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding: var(--sp-6) var(--sp-5);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--navy);
}
.quote figcaption {
  margin-top: auto;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--rule);
  font-size: var(--fs-sm);
}
.quote figcaption strong { display: block; color: var(--navy); }
.quote figcaption span { color: var(--ink-muted); font-size: var(--fs-xs); }

/* --------------------------------------------------------------- forms -- */

.form-grid {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
}
.field { display: flex; flex-direction: column; gap: var(--sp-2); }
.field--full { grid-column: 1 / -1; }

.field label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.field :is(input, select, textarea) {
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--rule-on-navy);
  border-radius: var(--radius);
  color: var(--white);
  transition: border-color 0.18s var(--ease), background-color 0.18s var(--ease);
}
.field :is(input, select, textarea):hover { border-color: rgba(255, 255, 255, 0.32); }
.field :is(input, select, textarea):focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-lift);
}
.field textarea { min-height: 130px; resize: vertical; }
.field select option { color: var(--ink); }
.field ::placeholder { color: rgba(255, 255, 255, 0.42); }

.field__error {
  font-size: var(--fs-xs);
  color: #FFB4A8;
  min-height: 1.2em;
}
.field :is(input, select, textarea)[aria-invalid="true"] { border-color: #FFB4A8; }

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

.form-status {
  margin-top: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border: 1px solid var(--gold-lift);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
}
.form-status[hidden] { display: none; }
.form-status--error { border-color: #FFB4A8; color: #FFD9D2; }

/* ----------------------------------------------------------- accordion -- */

.accordion { border-top: 1px solid var(--rule); }
.accordion details { border-bottom: 1px solid var(--rule); }
.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-block: var(--sp-5);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  color: var(--navy);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "";
  flex: none;
  width: 14px;
  height: 14px;
  background: var(--gold);
  -webkit-mask: url("../img/star.svg") center / contain no-repeat;
  mask: url("../img/star.svg") center / contain no-repeat;
  transition: transform 0.25s var(--ease);
}
.accordion details[open] summary::after { transform: rotate(45deg) scale(1.15); }
.accordion details > p { padding-bottom: var(--sp-5); color: var(--ink-muted); }

/* -------------------------------------------------------------- footer -- */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.74);
  padding-block: var(--sp-8) var(--sp-6);
  font-size: var(--fs-sm);
}
.site-footer__grid {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid var(--rule-on-navy);
}
.site-footer img { height: 62px; width: auto; margin-bottom: var(--sp-4); }
.site-footer h2 {
  margin-bottom: var(--sp-4);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-lift);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li + li { margin-top: var(--sp-2); }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.site-footer p { max-width: 34ch; }

.site-footer__base {
  padding-top: var(--sp-5);
  text-align: center;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.55);
}
.site-footer__base p { max-width: none; margin: 0; }

/* ------------------------------------------------------------ whatsapp -- */

.whatsapp-fab {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 0.85rem 1.15rem;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 999px;
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 31, 72, 0.24);
  transition: background-color 0.18s var(--ease);
}
.whatsapp-fab:hover { background: var(--whatsapp-hover); }
.whatsapp-fab svg { width: 22px; height: 22px; flex: none; fill: currentColor; }
@media (max-width: 560px) {
  .whatsapp-fab__label { display: none; }
  .whatsapp-fab { padding: 0.9rem; }
}

/* -------------------------------------------------------------- motion -- */

/* Gated on the .js class, which an inline script in <head> adds. If the
   scripts fail to load, .reveal never hides and the page still reads —
   content must never depend on JavaScript to become visible. */
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}
