/* ==========================================================================
   Your Online Doctor - design system
   Dark canvas + gold accent as premium technology, light bands for reading.
   ========================================================================== */

:root {
  /* canvas */
  --ink:          #07070a;
  --ink-2:        #0d0d13;
  --ink-3:        #15151d;
  --paper:        #faf8f5;
  --paper-2:      #f1ede6;

  /* brand */
  --gold:         #e6b64c;
  --gold-light:   #f9e3a4;
  --gold-deep:    #a9772a;
  --gold-line:    rgba(230, 182, 76, 0.26);

  /* clinical accent - 3D and data only, never body copy */
  --cyan:         #5fd4e4;

  /* type colour */
  --on-dark:      #efe7d8;
  --on-dark-mut:  #9a9184;
  --on-light:     #17171c;
  --on-light-mut: #5c5a63;

  --font-display: 'Marcellus', 'Playfair Display', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shell:        1180px;
  --gutter:       24px;
  --radius:       18px;

  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--on-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, canvas { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0.002em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.3rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.narrow { max-width: 760px; }
.center { text-align: center; }

/* --------------------------------------------------------------- sections */

section { position: relative; }

.band {
  padding: clamp(68px, 9vw, 124px) 0;
}

.band--dark  { background: var(--ink);   color: var(--on-dark); }
.band--dark2 { background: var(--ink-2); color: var(--on-dark); }
.band--light { background: var(--paper); color: var(--on-light); }
.band--light2{ background: var(--paper-2); color: var(--on-light); }

.band--light p,
.band--light2 p { color: var(--on-light-mut); }

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

.band--light .eyebrow,
.band--light2 .eyebrow { color: var(--gold-deep); }

.lede {
  font-size: clamp(1.02rem, 1.9vw, 1.16rem);
  font-weight: 300;
  line-height: 1.72;
  color: var(--on-dark-mut);
  max-width: 58ch;
}

.band--light .lede,
.band--light2 .lede { color: var(--on-light-mut); }

.center .lede { margin-inline: auto; }

.gold-text {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 52%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rule {
  width: 110px; height: 1px;
  margin: 26px 0;
  background: linear-gradient(90deg, var(--gold-line), transparent);
}
.center .rule { margin-inline: auto; background: linear-gradient(90deg, transparent, var(--gold-line), transparent); }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms var(--ease), box-shadow 220ms var(--ease),
              background-color 220ms var(--ease), border-color 220ms var(--ease), color 220ms var(--ease);
}

.btn svg { width: 17px; height: 17px; fill: currentColor; flex: none; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 46%, var(--gold-deep) 100%);
  color: #17110a;
  box-shadow: 0 10px 30px rgba(230, 182, 76, 0.2);
}
.btn--gold:hover, .btn--gold:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(230, 182, 76, 0.32);
}

.btn--ghost {
  border-color: var(--gold-line);
  color: var(--gold-light);
  background: rgba(230, 182, 76, 0.04);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: rgba(230, 182, 76, 0.1);
}

.band--light .btn--ghost,
.band--light2 .btn--ghost {
  color: var(--on-light);
  border-color: rgba(23, 23, 28, 0.2);
  background: transparent;
}
.band--light .btn--ghost:hover,
.band--light2 .btn--ghost:hover {
  border-color: var(--gold-deep);
  background: rgba(230, 182, 76, 0.1);
}

.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn-row {
  display: flex; flex-wrap: wrap; gap: 13px;
  margin-top: 30px;
}
.center .btn-row { justify-content: center; }

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  transition: background-color 300ms var(--ease), backdrop-filter 300ms var(--ease),
              border-color 300ms var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-stuck {
  background: rgba(7, 7, 10, 0.86);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(230, 182, 76, 0.16);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 78px;
}

.brand-link { flex: none; display: block; }
.brand-link img { width: 178px; }

.site-nav { margin-left: auto; }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0; padding: 0;
  list-style: none;
}

.site-nav a {
  display: block;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 500;
  color: var(--on-dark);
  text-decoration: none;
  opacity: 0.86;
  transition: opacity 180ms var(--ease), background-color 180ms var(--ease), color 180ms var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible { opacity: 1; background: rgba(230, 182, 76, 0.1); color: var(--gold-light); }

.site-nav a[aria-current="page"] { color: var(--gold); opacity: 1; }

.has-sub { position: relative; }

.has-sub > .sub {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 226px;
  padding: 8px;
  border: 1px solid rgba(230, 182, 76, 0.18);
  border-radius: 14px;
  background: rgba(13, 13, 19, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  display: block;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 200ms var(--ease), transform 200ms var(--ease), visibility 200ms;
}

.has-sub:hover > .sub,
.has-sub:focus-within > .sub {
  opacity: 1; visibility: visible; transform: none;
}

.sub a { padding: 10px 14px; border-radius: 10px; font-size: 0.89rem; }

.header-cta { flex: none; }
.header-cta .btn { padding: 12px 22px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px; height: 46px;
  padding: 0;
  border: 1px solid var(--gold-line);
  border-radius: 12px;
  background: rgba(230, 182, 76, 0.06);
  color: var(--gold-light);
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; margin: auto; fill: currentColor; }

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

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 132px 0 84px;
  overflow: hidden;
  background: var(--ink);
}

#network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1400ms var(--ease);
}
#network-canvas.is-ready { opacity: 1; }

.hero__fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 72% 42%, rgba(95, 212, 228, 0.12) 0%, transparent 62%),
    radial-gradient(ellipse 60% 50% at 24% 58%, rgba(230, 182, 76, 0.16) 0%, transparent 64%);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7, 7, 10, 0.94) 0%, rgba(7, 7, 10, 0.72) 42%, rgba(7, 7, 10, 0.24) 100%);
}

.hero .shell { position: relative; z-index: 2; }
.hero__copy { max-width: 640px; }

.hero h1 {
  font-size: clamp(2.2rem, 5.6vw, 3.9rem);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.012em;
  margin-bottom: 22px;
}

.hero h1 span { display: block; }

.hero__sub {
  font-size: clamp(1.05rem, 2.1vw, 1.25rem);
  font-weight: 300;
  color: var(--on-dark);
  opacity: 0.94;
  margin-bottom: 14px;
}

.hero__support {
  margin-top: 34px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-dark-mut);
}

.scroll-hint {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--on-dark-mut);
}
.scroll-hint::after {
  content: "";
  width: 1px; height: 38px;
  background: linear-gradient(180deg, var(--gold-line), transparent);
  animation: drip 2.4s ease-in-out infinite;
}
@keyframes drip {
  0%, 100% { opacity: 0.35; transform: scaleY(0.72); transform-origin: top; }
  50%      { opacity: 1;    transform: scaleY(1);    transform-origin: top; }
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  background: rgba(230, 182, 76, 0.16);
  border: 1px solid rgba(230, 182, 76, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat {
  padding: 34px 26px;
  background: var(--ink-2);
  text-align: center;
}

.stat__figure {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.25rem);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.84rem;
  color: var(--on-dark-mut);
  line-height: 1.5;
}

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

.grid {
  display: grid;
  gap: 20px;
  margin-top: 46px;
}
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }

.card {
  position: relative;
  padding: 32px 28px;
  border: 1px solid rgba(23, 23, 28, 0.1);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease), border-color 300ms var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-line);
  box-shadow: 0 22px 50px rgba(23, 23, 28, 0.09);
}

.band--dark .card,
.band--dark2 .card {
  background: var(--ink-3);
  border-color: rgba(230, 182, 76, 0.14);
}
.band--dark .card:hover,
.band--dark2 .card:hover { box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5); }

.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.95rem; }

.card__icon {
  width: 46px; height: 46px;
  margin-bottom: 20px;
  display: grid; place-items: center;
  border-radius: 13px;
  border: 1px solid var(--gold-line);
  background: rgba(230, 182, 76, 0.09);
  color: var(--gold-deep);
}
.band--dark .card__icon,
.band--dark2 .card__icon { color: var(--gold); }
.card__icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.6; }

.card__list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
}
.card__list li {
  position: relative;
  padding: 7px 0 7px 20px;
  color: var(--on-light-mut);
  border-top: 1px solid rgba(23, 23, 28, 0.07);
}
.card__list li:first-child { border-top: 0; }
.card__list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 15px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.band--dark .card__list li,
.band--dark2 .card__list li {
  color: var(--on-dark-mut);
  border-top-color: rgba(230, 182, 76, 0.1);
}

/* ------------------------------------------------------------- ecosystem */

.flow {
  display: grid;
  gap: 14px;
  margin-top: 44px;
}

.flow__row {
  padding: 26px 24px;
  border: 1px solid rgba(230, 182, 76, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(230, 182, 76, 0.05), transparent);
  text-align: center;
}

.flow__row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.flow__row span {
  font-size: 0.9rem;
  color: var(--on-dark-mut);
}

.flow__arrow {
  justify-self: center;
  width: 1px; height: 30px;
  background: linear-gradient(180deg, var(--gold-line), rgba(95, 212, 228, 0.34));
}

.flow__row--patient strong { color: #fff; }
.flow__row--hub {
  border-color: rgba(230, 182, 76, 0.42);
  background: linear-gradient(180deg, rgba(230, 182, 76, 0.14), rgba(230, 182, 76, 0.02));
}

/* ---------------------------------------------------------------- split */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.split__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ink-3);
  border: 1px solid var(--gold-line);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

.portrait-placeholder {
  display: grid;
  place-content: center;
  gap: 10px;
  height: 100%;
  padding: 32px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 34%, rgba(230, 182, 76, 0.14), transparent 62%),
    var(--ink-3);
  color: var(--on-dark-mut);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.portrait-placeholder svg { width: 54px; height: 54px; margin-inline: auto; stroke: var(--gold); fill: none; stroke-width: 1.2; opacity: 0.8; }

.quote {
  margin: 30px 0 0;
  padding: 26px 30px;
  border-left: 2px solid var(--gold);
  background: rgba(230, 182, 76, 0.06);
  border-radius: 0 14px 14px 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.34rem);
  line-height: 1.5;
  color: var(--on-dark);
}
.band--light .quote, .band--light2 .quote { color: var(--on-light); }
.quote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.band--dark .quote cite, .band--dark2 .quote cite { color: var(--gold); }

/* ------------------------------------------------------------- cta band */

.cta-band {
  position: relative;
  padding: clamp(64px, 8vw, 104px) 0;
  background:
    radial-gradient(ellipse 60% 120% at 50% 0%, rgba(230, 182, 76, 0.18), transparent 70%),
    var(--ink-2);
  border-top: 1px solid rgba(230, 182, 76, 0.18);
  border-bottom: 1px solid rgba(230, 182, 76, 0.18);
  text-align: center;
}

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

.field { margin-bottom: 18px; }
.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-light-mut);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(23, 23, 28, 0.16);
  border-radius: 12px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--on-light);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(230, 182, 76, 0.18);
}
.field textarea { min-height: 128px; resize: vertical; }

.consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin: 22px 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--on-light-mut);
}
.consent input { margin-top: 3px; flex: none; width: 17px; height: 17px; accent-color: var(--gold-deep); }

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

.site-footer {
  padding: 72px 0 32px;
  background: var(--ink);
  border-top: 1px solid rgba(230, 182, 76, 0.14);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-grid h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-grid ul { margin: 0; padding: 0; list-style: none; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a {
  color: var(--on-dark-mut);
  text-decoration: none;
  transition: color 180ms var(--ease);
}
.footer-grid a:hover, .footer-grid a:focus-visible { color: var(--gold-light); }

.footer-brand img { width: 196px; margin-bottom: 18px; }
.footer-brand p { color: var(--on-dark-mut); font-size: 0.89rem; max-width: 34ch; }

.footer-legal {
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid rgba(230, 182, 76, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(154, 145, 132, 0.8);
}

.disclaimer {
  margin-top: 22px;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(154, 145, 132, 0.75);
  max-width: 82ch;
}

/* ------------------------------------------------------- floating actions */

.fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 55;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.fab a {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.42);
  transition: transform 200ms var(--ease);
}
.fab a:hover { transform: scale(1.07); }
.fab svg { width: 25px; height: 25px; fill: currentColor; }
.fab__wa   { background: #25d366; }
.fab__call { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #17110a; }

/* -------------------------------------------------------- consent banner */

.consent-bar {
  position: fixed;
  left: 18px; right: 18px; bottom: 18px;
  z-index: 70;
  display: none;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 780px;
  margin-inline: auto;
  padding: 20px 24px;
  border: 1px solid rgba(230, 182, 76, 0.28);
  border-radius: 16px;
  background: rgba(13, 13, 19, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55);
  font-size: 0.86rem;
  color: var(--on-dark-mut);
}
.consent-bar.is-open { display: flex; }
.consent-bar p { flex: 1 1 320px; margin: 0; }
.consent-bar a { color: var(--gold-light); }
.consent-bar .btn { padding: 11px 20px; font-size: 0.85rem; }

/* ------------------------------------------------------------- reveal */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ------------------------------------------------------------ responsive */

@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 880px) {
  .nav-toggle { display: grid; }
  .header-cta { display: none; }

  .site-nav {
    position: fixed;
    inset: 78px 0 auto;
    margin: 0;
    padding: 18px var(--gutter) 30px;
    background: rgba(7, 7, 10, 0.98);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(230, 182, 76, 0.18);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 240ms var(--ease), transform 240ms var(--ease), visibility 240ms;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }

  .site-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .site-nav a { padding: 13px 14px; font-size: 1rem; }

  .has-sub > .sub {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    min-width: 0;
    margin: 4px 0 8px 12px;
    padding: 4px;
    border: 0;
    border-left: 1px solid var(--gold-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .split { grid-template-columns: 1fr; }
  .split__media { aspect-ratio: 3 / 4; max-width: 420px; }
}

@media (max-width: 880px) {
  .hero__veil {
    background: linear-gradient(180deg, rgba(7, 7, 10, 0.5) 0%, rgba(7, 7, 10, 0.86) 46%, rgba(7, 7, 10, 0.96) 100%);
  }
  #network-canvas.is-ready { opacity: 0.85; }
  .hero { padding-bottom: 110px; }
  .scroll-hint { display: none; }
  /* Keep the hero CTAs clear of the floating call/WhatsApp buttons. */
  .hero .btn-row { max-width: 440px; }
  .consent-bar { padding: 16px 18px; gap: 12px; font-size: 0.82rem; }
  .consent-bar .btn { flex: 1 1 auto; justify-content: center; padding: 10px 16px; }
}

@media (max-width: 560px) {
  :root { --gutter: 18px; }
  .brand-link img { width: 146px; }
  .site-header__inner { height: 68px; }
  .site-nav { inset-block-start: 68px; }
  .hero { padding-top: 112px; }
  .btn { padding: 14px 22px; font-size: 0.9rem; }
  .btn-row { gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .fab a { width: 48px; height: 48px; }
}

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

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

/* ========================================================== service pages */

/* wide Services dropdown */
.has-sub--wide > .sub {
  min-width: 520px;
  column-count: 2;
  column-gap: 6px;
  left: auto;
  right: 0;
}
.has-sub--wide > .sub li { break-inside: avoid; }

/* how it works */
.step { position: relative; padding-top: 34px; }
.step__num {
  position: absolute;
  top: 26px; right: 26px;
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.32;
}
.step h3 { padding-right: 56px; }

/* checked lists on service pages */
.check-list li { padding-left: 27px; }
.check-list li::before {
  content: "";
  left: 2px; top: 13px;
  width: 11px; height: 6px;
  border: 2px solid var(--gold-deep);
  border-top: 0;
  border-right: 0;
  border-radius: 0;
  background: none;
  transform: rotate(-45deg);
}
.band--dark .check-list li::before,
.band--dark2 .check-list li::before { border-color: var(--gold); }

/* FAQ accordion */
.faqs {
  max-width: 820px;
  margin: 46px auto 0;
  border-top: 1px solid rgba(23, 23, 28, 0.1);
}

.faq {
  border-bottom: 1px solid rgba(23, 23, 28, 0.1);
}

.faq summary {
  position: relative;
  padding: 22px 46px 22px 0;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  line-height: 1.4;
  color: var(--on-light);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "";
  position: absolute;
  right: 8px; top: 50%;
  width: 11px; height: 11px;
  margin-top: -7px;
  border-right: 1.6px solid var(--gold-deep);
  border-bottom: 1.6px solid var(--gold-deep);
  transform: rotate(45deg);
  transition: transform 260ms var(--ease);
}
.faq[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }

.faq summary:hover { color: var(--gold-deep); }
.faq summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.faq__a {
  padding: 0 46px 24px 0;
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--on-light-mut);
}

/* linked cards */
.card--link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.card--link h3 { color: var(--on-light); }
.card__more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-deep);
}
.card__more svg { width: 15px; height: 15px; fill: currentColor; transition: transform 220ms var(--ease); }
.card--link:hover .card__more svg { transform: translateX(4px); }

/* service links inside the hub cards */
.card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(23, 23, 28, 0.08);
}
.card__links a {
  padding: 6px 13px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 500;
  color: var(--gold-deep);
  text-decoration: none;
  transition: background-color 180ms var(--ease), border-color 180ms var(--ease);
}
.card__links a:hover,
.card__links a:focus-visible {
  background: rgba(230, 182, 76, 0.12);
  border-color: var(--gold-deep);
}
.band--dark .card__links a,
.band--dark2 .card__links a { color: var(--gold); }
.band--dark .card__links,
.band--dark2 .card__links { border-top-color: rgba(230, 182, 76, 0.14); }

@media (max-width: 880px) {
  .has-sub--wide > .sub { min-width: 0; column-count: 1; }
  .step__num { top: 22px; right: 20px; font-size: 1.7rem; }
}

/* ========================================================= location pages */

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.area-list li { margin: 0; }
.area-list span {
  display: inline-block;
  padding: 8px 15px;
  border: 1px solid rgba(23, 23, 28, 0.12);
  border-radius: 999px;
  background: #fff;
  font-size: 0.85rem;
  color: var(--on-light-mut);
}
.band--dark .area-list span,
.band--dark2 .area-list span {
  background: var(--ink-3);
  border-color: rgba(230, 182, 76, 0.14);
  color: var(--on-dark-mut);
}

.footer-areas {
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid rgba(230, 182, 76, 0.12);
}
.footer-areas h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.footer-areas a {
  display: inline-block;
  margin: 0 18px 8px 0;
  font-size: 0.87rem;
  color: var(--on-dark-mut);
  text-decoration: none;
  transition: color 180ms var(--ease);
}
.footer-areas a:hover,
.footer-areas a:focus-visible { color: var(--gold-light); }
