/* Destiny Coaching — site styles
   Palette: near-black ground, cyan/violet accents, warm amber for CTAs. */

:root {
  --bg:            #06070c;
  --bg-raise:      #0c0e16;
  --bg-card:       #10131e;
  --line:          #1e2233;
  --line-bright:   #2c3247;

  --text:          #eef1f8;
  --text-soft:     #a7afc4;
  --text-dim:      #767f96;

  --cyan:          #35d6f5;
  --violet:        #8b7bff;
  --amber:         #ffb545;

  --glow-cyan:     rgba(53, 214, 245, .35);
  --glow-violet:   rgba(139, 123, 255, .30);

  --maxw:          1180px;
  --pad:           clamp(1.15rem, 4vw, 2.5rem);
  --radius:        14px;

  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;

  --shadow: 0 18px 50px -18px rgba(0,0,0,.9);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  line-height: 1.14;
  margin: 0 0 .55em;
  letter-spacing: -.022em;
  font-weight: 700;
}
h1 { font-size: clamp(2.3rem, 5.6vw, 4.1rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.85rem, 3.9vw, 2.9rem); letter-spacing: -.03em; }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1.15em; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--cyan); color: #04121a; padding: .8rem 1.2rem;
  font-weight: 700; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

section { position: relative; }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--raise { background: var(--bg-raise); }

.section-head { max-width: 62ch; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: .765rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.lede { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--text-soft); }

/* hairline divider between sections */
.section + .section::before {
  content: ""; position: absolute; inset-inline: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-bright) 22%, var(--line-bright) 78%, transparent);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .92rem 1.7rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: .98rem;
  letter-spacing: .01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn--primary {
  background: linear-gradient(135deg, var(--amber), #ff9c2e);
  color: #22140a;
  box-shadow: 0 10px 32px -10px rgba(255,181,69,.6);
}
.btn--primary:hover { box-shadow: 0 16px 40px -12px rgba(255,181,69,.75); }

.btn--ghost {
  background: rgba(255,255,255,.035);
  border-color: var(--line-bright);
  color: var(--text);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--cyan); background: rgba(53,214,245,.09); }

.btn--block { width: 100%; }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.03rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,7,12,.72);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}
.site-header.is-stuck {
  background: rgba(6,7,12,.94);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  min-height: 74px;
}

.brand { display: flex; align-items: center; gap: .62rem; flex-shrink: 0; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 36px; height: 36px; flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(53,214,245,.42));
}
.brand-text {
  font-weight: 750; font-size: 1.06rem; color: var(--text);
  letter-spacing: -.02em; line-height: 1.1;
}
.brand-text span { color: var(--cyan); }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  color: var(--text-soft);
  font-size: .935rem;
  font-weight: 500;
  padding: .5rem .72rem;
  border-radius: 8px;
  transition: color .18s ease, background .18s ease;
}
.nav a:hover, .nav a:focus-visible { color: var(--text); background: rgba(255,255,255,.055); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--cyan); }

.header-cta { flex-shrink: 0; }
.header-cta .btn { padding: .66rem 1.3rem; font-size: .92rem; }

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--line-bright);
  border-radius: 9px; width: 42px; height: 42px;
  cursor: pointer; align-items: center; justify-content: center;
  color: var(--text);
}
.nav-toggle svg { width: 21px; height: 21px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 1000px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .nav {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(8,9,16,.985);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: .8rem var(--pad) 1.6rem;
    max-height: calc(100dvh - 74px);
    overflow-y: auto;
    transform: translateY(-14px);
    opacity: 0; visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: .85rem .3rem; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav .btn { margin-top: 1.1rem; }
}
@media (min-width: 1001px) { .nav .btn { display: none; } }

/* ---------- hero ---------- */
.hero { position: relative; isolation: isolate; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,7,12,.62) 0%, rgba(6,7,12,.80) 46%, var(--bg) 99%),
    linear-gradient(100deg, rgba(6,7,12,.94) 8%, rgba(6,7,12,.45) 58%, rgba(11,20,40,.35) 100%);
}
/* accent glow behind hero copy */
.hero::before {
  content: ""; position: absolute; z-index: -1;
  width: 46rem; height: 46rem; left: -14rem; top: -16rem;
  background: radial-gradient(circle, var(--glow-violet), transparent 66%);
  filter: blur(30px); pointer-events: none;
}

.hero-inner {
  padding-block: clamp(5.5rem, 15vw, 10.5rem);
  max-width: 46rem;
}
.hero h1 { margin-bottom: .5em; text-wrap: balance; }
.hero h1 .accent {
  background: linear-gradient(100deg, var(--cyan), var(--violet));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero p.lede { font-size: clamp(1.05rem, 1.9vw, 1.29rem); max-width: 40rem; color: #c3cbdd; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.1rem; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: clamp(1.6rem, 5vw, 3.4rem);
  margin-top: clamp(2.8rem, 6vw, 4.2rem);
  padding-top: 1.9rem;
  border-top: 1px solid var(--line-bright);
}
.hero-stats div strong {
  display: block; font-size: 1.62rem; font-weight: 750; color: var(--text);
  letter-spacing: -.02em;
}
.hero-stats div span { font-size: .845rem; color: var(--text-dim); letter-spacing: .05em; text-transform: uppercase; }

/* ---------- generic grids ---------- */
.grid { display: grid; gap: 1.35rem; align-items: stretch; }
.grid > .card { height: 100%; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 21rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 18.5rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }

/* ---------- cards ---------- */
.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset-inline: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0; transition: opacity .25s ease;
}
.card:hover { border-color: var(--line-bright); transform: translateY(-3px); box-shadow: var(--shadow); }
.card:hover::before { opacity: .75; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--text-soft); font-size: .955rem; margin-bottom: 0; }

.card-icon {
  width: 42px; height: 42px; margin-bottom: 1.05rem;
  display: grid; place-items: center;
  border-radius: 11px;
  background: linear-gradient(140deg, rgba(53,214,245,.16), rgba(139,123,255,.13));
  border: 1px solid rgba(53,214,245,.24);
  color: var(--cyan);
}
.card-icon svg { width: 21px; height: 21px; }

/* image-topped card */
.card--photo { padding: 0; display: flex; flex-direction: column; }
.card--photo .card-photo { aspect-ratio: 16/10; overflow: hidden; background: #0a0c14; }
.card--photo .card-photo img {
  display: block;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.card--photo .card-photo { aspect-ratio: 16/10; }
.card--photo:hover .card-photo img { transform: scale(1.045); }
.card--photo .card-body { padding: 1.5rem 1.55rem 1.7rem; flex: 1; }

/* ---------- split (text + image) ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split-media { position: relative; border-radius: var(--radius); overflow: hidden; }
.split-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,7,12,.42));
  pointer-events: none;
}
.split-media--glow::before {
  content: ""; position: absolute; inset: -2px; z-index: -1;
  background: linear-gradient(130deg, var(--cyan), var(--violet));
  filter: blur(22px); opacity: .30; border-radius: var(--radius);
}
.split--reverse .split-text { order: 2; }

/* ---------- checklist ---------- */
.checklist { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .72rem; }
.checklist li {
  position: relative; padding-left: 1.9rem; color: var(--text-soft); font-size: .96rem;
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .46em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 11px var(--glow-cyan);
}

/* ---------- topic pills ---------- */
.pills { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.9rem; }
.pill {
  padding: .52rem 1.02rem;
  border: 1px solid var(--line-bright);
  border-radius: 999px;
  font-size: .875rem;
  color: var(--text-soft);
  background: rgba(255,255,255,.022);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.pill:hover { border-color: var(--cyan); color: var(--text); background: rgba(53,214,245,.07); }

/* ---------- steps ---------- */
.steps { counter-reset: step; display: grid; gap: 1.3rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr)); }
.step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem 1.7rem;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute; top: 1.15rem; left: 1.5rem;
  font-size: .95rem; font-weight: 750;
  color: var(--cyan);
  letter-spacing: .06em;
}
.step h3 { font-size: 1.09rem; margin-bottom: .42rem; }
.step p { color: var(--text-soft); font-size: .93rem; margin: 0; }

/* ---------- testimonials ---------- */
.quote {
  background: var(--bg-card);
  border: 1px dashed var(--line-bright);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
}
.quote-badge {
  display: inline-block;
  font-size: .69rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(255,181,69,.36);
  background: rgba(255,181,69,.08);
  border-radius: 5px; padding: .2rem .55rem;
  margin-bottom: 1rem;
}
.quote blockquote { margin: 0 0 1.1rem; font-size: 1.02rem; color: var(--text-soft); font-style: italic; }
.quote figcaption { font-size: .87rem; color: var(--text-dim); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .75rem; max-width: 54rem; }
.faq details {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 11px;
  transition: border-color .2s ease;
}
.faq details[open] { border-color: var(--line-bright); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.15rem 3rem 1.15rem 1.4rem;
  font-weight: 620; font-size: 1.01rem;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 1.4rem; top: 50%;
  width: 10px; height: 10px; margin-top: -5px;
  border-right: 2px solid var(--cyan); border-bottom: 2px solid var(--cyan);
  transform: rotate(45deg); transform-origin: center;
  transition: transform .22s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq .faq-body { padding: 0 1.4rem 1.35rem; color: var(--text-soft); font-size: .96rem; }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* ---------- pricing ---------- */
.price-card { display: flex; flex-direction: column; }
.price-card .price-value {
  font-size: 1.95rem; font-weight: 750; color: var(--text); letter-spacing: -.025em;
  margin: .2rem 0 .1rem;
}
.price-card .price-value small { font-size: .88rem; font-weight: 500; color: var(--text-dim); letter-spacing: 0; }
.price-card .checklist { margin-top: 1.15rem; margin-bottom: 1.7rem; flex: 1; }
.price-card.is-featured { border-color: rgba(53,214,245,.42); }
.price-card.is-featured::before { opacity: .85; }
.tag {
  position: absolute; top: 1.15rem; right: 1.15rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cyan); background: rgba(53,214,245,.1);
  border: 1px solid rgba(53,214,245,.3); border-radius: 5px; padding: .2rem .5rem;
}
.note {
  font-size: .875rem; color: var(--text-dim);
  border-left: 2px solid var(--line-bright); padding-left: 1rem; margin-top: 2rem;
}

/* ---------- CTA band ---------- */
.cta-band { position: relative; isolation: isolate; overflow: hidden; text-align: center; }
.cta-band .cta-media { position: absolute; inset: 0; z-index: -2; }
.cta-band .cta-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .cta-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,7,12,.90), rgba(6,7,12,.80));
}
.cta-band h2 { text-wrap: balance; }
.cta-band p { max-width: 44rem; margin-inline: auto; color: var(--text-soft); }
.cta-band .hero-actions { justify-content: center; }

/* ---------- form ---------- */
.form-shell {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3.5vw, 2.5rem);
}
.field-grid { display: grid; gap: 1.05rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); }
.field { display: flex; flex-direction: column; gap: .42rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .875rem; font-weight: 600; color: var(--text-soft); }
.field .req { color: var(--amber); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .96rem;
  color: var(--text);
  background: #080a11;
  border: 1px solid var(--line-bright);
  border-radius: 9px;
  padding: .78rem .9rem;
  width: 100%;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; min-height: 7.5rem; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(53,214,245,.16);
}
.field input::placeholder, .field textarea::placeholder { color: #5a6379; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%2335d6f5' d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .95rem center; background-size: 11px;
  padding-right: 2.4rem;
}
.form-footer { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 1rem; }
.form-note { font-size: .83rem; color: var(--text-dim); margin: 0; }
.form-status { font-size: .93rem; border-radius: 9px; padding: .85rem 1rem; display: none; }
.form-status.is-visible { display: block; }
.form-status.is-error   { background: rgba(255,90,90,.10); border: 1px solid rgba(255,90,90,.36); color: #ffb0b0; }
.form-status.is-success { background: rgba(53,214,245,.09); border: 1px solid rgba(53,214,245,.34); color: #b7ecfa; }
.field-error { font-size: .82rem; color: #ff9c9c; min-height: 0; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] {
  border-color: rgba(255,120,120,.6);
}

/* contact aside */
.contact-layout { display: grid; gap: clamp(1.8rem, 4vw, 3rem); grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); align-items: start; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
.aside-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem 1.5rem;
}
.aside-card + .aside-card { margin-top: 1.15rem; }
.aside-card h3 { font-size: 1.03rem; }
.aside-card p, .aside-card li { color: var(--text-soft); font-size: .93rem; }
.aside-card .checklist { margin-top: .9rem; }

/* ---------- footer ---------- */
.site-footer {
  background: #04050a;
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: .92rem;
}
.footer-grid {
  display: grid; gap: 2.4rem;
  grid-template-columns: minmax(0, 1.6fr) repeat(auto-fit, minmax(9.5rem, 1fr));
  margin-bottom: 2.8rem;
}
.footer-brand p { color: var(--text-dim); font-size: .9rem; max-width: 30ch; margin-top: 1rem; }
.footer-col h4 {
  font-size: .78rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 1rem; font-weight: 700;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .58rem; }
.footer-col a { color: var(--text-soft); font-size: .92rem; }
.footer-col a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.8rem;
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between;
  color: var(--text-dim); font-size: .845rem;
}
.disclaimer {
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: #626b80; font-size: .8rem; line-height: 1.6; max-width: 76ch;
}

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- legal pages ---------- */
.prose { max-width: 68ch; }
.prose h2 { font-size: 1.42rem; margin-top: 2.6rem; }
.prose h3 { font-size: 1.08rem; margin-top: 1.8rem; }
.prose ul { color: var(--text-soft); padding-left: 1.15rem; }
.prose li { margin-bottom: .5rem; }
.prose p { color: var(--text-soft); }
.page-head { padding-block: clamp(3.5rem, 8vw, 5.5rem) clamp(1.5rem, 3vw, 2.5rem); }

/* ---------- photo band (How It Works) ---------- */
.photo-band {
  display: grid; gap: 1.15rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  margin-top: clamp(2.2rem, 4vw, 3.2rem);
}
.photo-band-item { margin: 0; }
.photo-band-item picture { display: block; border-radius: var(--radius); overflow: hidden; }
.photo-band-item img {
  display: block;
  width: 100%; height: auto; aspect-ratio: 3/2; object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.photo-band-item:hover img { transform: scale(1.04); }
.photo-band-item figcaption {
  margin-top: .8rem; font-size: .875rem; color: var(--text-dim); line-height: 1.5;
}

/* ---------- section background image ---------- */
.has-bg { isolation: isolate; overflow: hidden; }
.section-bg { position: absolute; inset: 0; z-index: -1; }
.section-bg img { width: 100%; height: 100%; object-fit: cover; }
.section-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,14,22,.93), rgba(12,14,22,.97));
}
