/* ============================================================
   Orbittas — Site styles (on top of design system foundations)
   ============================================================ */

/* Site-level tokens not defined in the design system foundation.
   Semantic tokens (--site-*) flip between light and dark; anchor
   colors (--orb-*) stay fixed — the brand palette doesn't change,
   only how it maps to surfaces. */
:root {
  --orb-warm-ice: #FFF5EE;
  --warm-navy: #101729; /* warm-ice's dark counterpart — slight warmth shift from deep-navy */

  --site-bg-page: var(--orb-white);
  --site-bg-warm: var(--orb-warm-ice);
  --site-bg-card: var(--orb-white);
  --site-fg-strong: var(--orb-deep-navy);
  --site-fg-body: var(--orb-graphite);
  --site-fg-muted: var(--orb-cool-gray);
  --site-border-subtle: rgba(10, 20, 37, 0.06);
  --site-border-strong: rgba(10, 20, 37, 0.10);
  --site-border-hairline: rgba(10, 20, 37, 0.08);
  --site-input-border: rgba(10, 20, 37, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--orb-white);
  color: var(--orb-graphite);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}
/* Ambient page wallpaper — two very faint radial washes that give the
   single-color page subtle depth without becoming a background. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle 900px at 85% -5%,
                    rgba(219, 82, 39, 0.035) 0%,
                    rgba(219, 82, 39, 0) 60%),
    radial-gradient(circle 1100px at -10% 60%,
                    rgba(2, 54, 97, 0.035) 0%,
                    rgba(2, 54, 97, 0) 60%);
}
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

/* Strip the design-system default underline; emphasis via color, not border. */
a,
.orb-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 0;
}
a:hover,
.orb-link:hover { color: var(--orb-ember); }

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

::selection { background: var(--orb-ember); color: var(--orb-white); }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

/* ---------- Section rhythm ---------- */
.section {
  padding: 140px 0;
  position: relative;
}
.section--tight { padding: 80px 0; }
@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .section--tight { padding: 56px 0; }
}

/* ---------- Eyebrow (kicker) ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orb-ember);
  margin: 0 0 24px;
  display: inline-block;
}

/* ---------- Display type ---------- */
.h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6.4vw, 80px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--orb-deep-navy);
  text-wrap: balance;
}
.h1--inverse { color: var(--orb-white); }

.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  margin: 0;
  color: var(--orb-deep-navy);
  text-wrap: balance;
}
.h2--inverse { color: var(--orb-white); }

.lede {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--orb-graphite);
  margin: 0;
  max-width: 640px;
  text-wrap: pretty;
}
.lede--inverse { color: rgba(255, 255, 255, 0.72); }

.body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--orb-graphite);
  margin: 0;
  text-wrap: pretty;
}
.body p { margin: 0 0 18px; }
.body p:last-child { margin-bottom: 0; }
.body p strong, .body .lead {
  font-weight: 500;
  color: var(--orb-deep-navy);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
              background 200ms ease, border-color 200ms ease, color 200ms ease;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(219, 82, 39, 0.32);
}

.btn--primary {
  background: var(--orb-ember);
  color: var(--orb-white);
}
.btn--primary:hover {
  background: var(--orb-ember-400);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px -10px rgba(219, 82, 39, 0.55),
              0 4px 10px -4px rgba(10, 20, 37, 0.25);
}
.btn--primary:active { transform: translateY(0); background: var(--orb-ember-600); }

.btn--ghost-dark {
  background: transparent;
  color: var(--orb-white);
  border-color: rgba(255, 255, 255, 0.22);
}
.btn--ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.04);
}

.btn--ghost-light {
  background: transparent;
  color: var(--orb-deep-navy);
  border-color: rgba(10, 20, 37, 0.18);
}
.btn--ghost-light:hover {
  border-color: var(--orb-deep-navy);
  transform: translateY(-1px);
  background: rgba(10, 20, 37, 0.03);
  box-shadow: 0 8px 22px -10px rgba(10, 20, 37, 0.18);
}

.btn--ghost-nav {
  background: transparent;
  color: var(--orb-deep-navy);
  height: 38px;
  padding: 0 18px;
  font-size: 14px;
}
.btn--nav-primary {
  background: var(--orb-ember);
  color: var(--orb-white);
  height: 38px;
  padding: 0 18px;
  font-size: 14px;
  border-radius: 6px;
}
.btn--nav-primary:hover {
  background: var(--orb-ember-400);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px -10px rgba(219, 82, 39, 0.5);
}

.btn--full { width: 100%; }

/* ---------- Reveal-on-scroll: opacity + 12px lift, stagger via JS hook ---------- */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--orb-white);
  border-bottom: 1px solid transparent;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}
.nav.is-scrolled {
  border-bottom-color: rgba(10, 20, 37, 0.07);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--orb-deep-navy);
}
.nav__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.22em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--orb-graphite);
  transition: color 180ms ease;
}
.nav__link:hover { color: var(--orb-ember); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(10, 20, 37, 0.05);
  border: 1px solid rgba(10, 20, 37, 0.08);
  border-radius: 999px;
  padding: 3px;
  height: 32px;
}
.lang-toggle__btn {
  background: transparent;
  border: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--orb-cool-gray);
  padding: 0 10px;
  height: 24px;
  border-radius: 999px;
  transition: all 180ms ease;
}
.lang-toggle__btn.is-active {
  background: var(--orb-white);
  color: var(--orb-deep-navy);
  box-shadow: 0 1px 2px rgba(10, 20, 37, 0.08);
}
.lang-toggle--dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.10);
}
.lang-toggle--dark .lang-toggle__btn {
  color: rgba(255, 255, 255, 0.55);
}
.lang-toggle--dark .lang-toggle__btn.is-active {
  background: rgba(255, 255, 255, 0.94);
  color: var(--orb-deep-navy);
}

.nav__menu-btn { display: none; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    background: transparent;
    border: 1px solid rgba(10, 20, 37, 0.1);
    border-radius: 8px;
    color: var(--orb-deep-navy);
  }
  .nav__cta-text { display: none; }
}

.nav-mobile {
  position: fixed;
  inset: 72px 0 0 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 49;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}
.nav-mobile.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-mobile__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--orb-deep-navy);
  padding: 14px 0;
  border-bottom: 1px solid rgba(10, 20, 37, 0.06);
}

/* ============================================================
   HERO  (light surface — matches page)
   ============================================================ */
.hero {
  position: relative;
  background: var(--orb-white);
  color: var(--orb-deep-navy);
  overflow: hidden;
  padding: 180px 0 100px;
  isolation: isolate;
}
@media (max-width: 720px) {
  .hero { padding: 140px 0 100px; }
}

.hero__orbital {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__halo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle 640px at 72% 28%,
                    rgba(219, 82, 39, 0.10) 0%,
                    rgba(219, 82, 39, 0.04) 35%,
                    rgba(219, 82, 39, 0) 70%),
    radial-gradient(circle 900px at 8% 90%,
                    rgba(2, 54, 97, 0.05) 0%,
                    rgba(2, 54, 97, 0) 60%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.hero__eyebrow {
  color: var(--orb-ember);
}

.hero__sub {
  margin-top: 28px;
  color: var(--orb-graphite);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  max-width: 640px;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 44px;
}

/* Hero credentials band */
.hero__credentials {
  margin-top: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hero__credential {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__credential-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.018em;
  color: var(--orb-deep-navy);
  line-height: 1;
}
.hero__credential-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--orb-cool-gray);
  letter-spacing: 0.02em;
}
.hero__credential-div {
  width: 1px;
  height: 36px;
  background: rgba(10, 20, 37, 0.12);
}
@media (max-width: 600px) {
  .hero__credentials { gap: 20px; }
  .hero__credential-value { font-size: 22px; }
  .hero__credential-label { font-size: 12px; }
}

.hero__scroll-hint { display: none; }
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.6); opacity: 0.3; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 0.7; transform-origin: top; }
}

/* Accent word — ember-colored emphasis (no underline highlight) */
.accent-word {
  color: var(--orb-ember);
  white-space: nowrap;
}

/* Orbital animation */
@keyframes orbit-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.orbital-rotate {
  transform-origin: center;
  animation: orbit-rotate 120s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .orbital-rotate { animation: none; }
}

/* ============================================================
   PARTNERS BAND (real client names)
   ============================================================ */
.partners {
  padding: 96px 0 80px;
  background: var(--orb-white);
  position: relative;
}
.partners::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(to right,
                              rgba(10, 20, 37, 0) 0%,
                              rgba(10, 20, 37, 0.10) 50%,
                              rgba(10, 20, 37, 0) 100%);
}
.partners__label {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orb-cool-gray);
  margin: 0 0 40px;
}
.partners__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 64px;
}
.partner-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.02em;
  color: var(--orb-graphite);
  opacity: 0.6;
  transition: opacity 220ms ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.partner-logo:hover { opacity: 1; }
.partner-logo__dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orb-ember);
}

/* ============================================================
   APPROACH
   ============================================================ */
.approach {
  background: var(--orb-white);
}
.approach__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.approach__title-col .eyebrow { margin-bottom: 20px; }
.approach__title-col .h2 { max-width: 420px; }

@media (max-width: 880px) {
  .approach__grid { grid-template-columns: 1fr; gap: 32px; }
  .approach__title-col .h2 { max-width: none; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--orb-white);
  position: relative;
  padding: 96px 0 120px;
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(10, 20, 37, 0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: 0 0;
  opacity: 0.18;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 75%);
}
.services__head {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .services__grid { grid-template-columns: 1fr; }
}
.service-card {
  position: relative;
  background: var(--orb-white);
  border: 1px solid rgba(10, 20, 37, 0.06);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow:
    0 1px 0 rgba(10, 20, 37, 0.02),
    0 8px 24px -16px rgba(10, 20, 37, 0.10);
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 280ms ease;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orb-ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(10, 20, 37, 0.10);
  box-shadow:
    0 1px 0 rgba(10, 20, 37, 0.03),
    0 28px 52px -22px rgba(10, 20, 37, 0.22),
    0 8px 16px -8px rgba(10, 20, 37, 0.06);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 36px;
  height: 36px;
  color: var(--orb-ember);
  margin-bottom: 28px;
}
.service-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.012em;
  color: var(--orb-deep-navy);
  margin: 0 0 10px;
}
.service-card__desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--orb-cool-gray);
  margin: 0 0 18px;
}
.service-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(10, 20, 37, 0.06);
}
.service-card__tag {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: var(--orb-graphite);
  background: rgba(10, 20, 37, 0.04);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ============================================================
   METHOD  (light section · navy cards)
   ============================================================ */
.method {
  position: relative;
  background: var(--orb-white);
  overflow: hidden;
  padding: 120px 0 140px;
}
@media (max-width: 720px) {
  .method { padding: 72px 0 80px; }
}
/* very subtle dot texture in the empty space around the cards */
.method::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(10, 20, 37, 0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.12;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 100%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 100%, black 20%, transparent 70%);
  pointer-events: none;
}
.method__orbital { display: none; }
.method__head {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 72px;
}
.method__head .h2 { max-width: 780px; margin-inline: auto; }
.method__head .lede { margin-inline: auto; color: var(--orb-graphite); }

.method__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* --- card --- */
.method__step {
  position: relative;
  background: var(--orb-white);
  color: var(--orb-deep-navy);
  border: 1px solid rgba(10, 20, 37, 0.06);
  border-radius: 18px;
  padding: 36px 32px 32px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(10, 20, 37, 0.02),
    0 12px 28px -20px rgba(10, 20, 37, 0.12);
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 280ms ease;
  isolation: isolate;
}
.method__step::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(10, 20, 37, 0.05);
  pointer-events: none;
}
.method__step:hover {
  transform: translateY(-3px);
  border-color: rgba(10, 20, 37, 0.10);
  box-shadow:
    0 1px 0 rgba(10, 20, 37, 0.03),
    0 28px 52px -22px rgba(10, 20, 37, 0.20),
    0 8px 16px -8px rgba(10, 20, 37, 0.06);
}

/* huge ghost number in background */
/* (ghost background number removed — kept as no-op for older markup) */
.method__step-ghost { display: none; }

.method__step-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}
.method__step-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(219, 82, 39, 0.12);
  border: 1px solid rgba(219, 82, 39, 0.35);
  color: var(--orb-ember);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 11px 5px 9px;
  border-radius: 999px;
  line-height: 1;
}
.method__step-chip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orb-ember);
  box-shadow: 0 0 0 3px rgba(219, 82, 39, 0.22);
  flex-shrink: 0;
}
.method__step-arrow {
  font-family: var(--font-display);
  font-size: 18px;
  color: rgba(10, 20, 37, 0.22);
  transition: color 220ms ease, transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.method__step:hover .method__step-arrow {
  color: var(--orb-ember);
  transform: translateX(4px);
}

.method__step-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.018em;
  color: var(--orb-deep-navy);
  margin: 0 0 14px;
}
.method__step-desc {
  position: relative;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--orb-cool-gray);
  margin: 0 0 28px;
}

.method__step-actions {
  position: relative;
  z-index: 2;
  list-style: none;
  padding: 22px 0 0;
  margin: 0;
  border-top: 1px solid rgba(10, 20, 37, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.method__step-action {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--orb-graphite);
  line-height: 1.4;
}
.method__step-action-mark {
  width: 16px; height: 1.5px;
  background: var(--orb-ember);
  flex-shrink: 0;
}

@media (max-width: 880px) {
  .method__grid { grid-template-columns: 1fr; gap: 16px; }
  .method__head { margin-bottom: 56px; }
  .method__step { padding: 30px 26px 28px; }
  .method__step-ghost { font-size: 180px; top: -30px; }
  .method__step-arrow { display: none; }
}

/* ============================================================
   TESTIMONIALS / CASES  (Warm Ice editorial band — the one warm
   moment in the system; bookended by white→ice and ice→white
   linear transitions so the color shift reads as intentional)
   ============================================================ */
.testimonials {
  background: var(--site-bg-warm);
  position: relative;
  padding: 140px 0 160px;
  isolation: isolate;
}
.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0; right: 0;
  height: 100px;
  background: linear-gradient(180deg, var(--site-bg-page) 0%, var(--site-bg-warm) 100%);
  pointer-events: none;
  z-index: 0;
}
.testimonials::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 100px;
  background: linear-gradient(180deg, var(--site-bg-warm) 0%, var(--site-bg-page) 100%);
  pointer-events: none;
  z-index: 0;
}
.testimonials > .container {
  position: relative;
  z-index: 1;
}
@media (max-width: 720px) {
  .testimonials { padding: 96px 0 110px; }
  .testimonials::before,
  .testimonials::after { height: 72px; }
}
.testimonials__head {
  margin-bottom: 64px;
  max-width: 720px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}
.testimonial {
  position: relative;
  background: var(--orb-white);
  border: 1px solid rgba(10, 20, 37, 0.06);
  border-radius: 16px;
  padding: 36px 32px 32px;
  box-shadow:
    0 1px 0 rgba(10, 20, 37, 0.02),
    0 12px 28px -20px rgba(10, 20, 37, 0.12);
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(10, 20, 37, 0.03),
    0 28px 52px -22px rgba(10, 20, 37, 0.20),
    0 8px 16px -8px rgba(10, 20, 37, 0.06);
}
.testimonial__quote-mark {
  display: block;
  width: 40px;
  height: 32px;
  color: var(--orb-ember);
  opacity: 0.5;
  margin-bottom: 18px;
}
.testimonial__quote {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17.5px;
  line-height: 1.55;
  color: var(--orb-deep-navy);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.testimonial__divider {
  width: 28px;
  height: 1.5px;
  background: var(--orb-ember);
  margin-bottom: 16px;
}
.testimonial__person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--orb-deep-navy);
}
.testimonial__role {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--orb-cool-gray);
  margin-top: 2px;
}
.testimonial__flag {
  font-size: 18px;
  line-height: 1;
  filter: saturate(0.92);
}

/* ============================================================
   ABOUT / NOSOTROS
   ============================================================ */
.about-transition { display: none; }
.about {
  background: var(--orb-white);
  padding: 120px 0 140px;
}
@media (max-width: 720px) {
  .about { padding: 72px 0 80px; }
}
.about__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}
@media (max-width: 880px) {
  .about__layout { grid-template-columns: 1fr; gap: 48px; }
  .about__aside { order: -1; max-width: 280px; margin: 0 auto; }
}
.about__head { max-width: 560px; }
.about__aside {
  position: relative;
  width: 100%;
  max-width: 420px;
  justify-self: center;
}
.about__quote-card {
  position: relative;
  background: var(--orb-white);
  color: var(--orb-deep-navy);
  border: 1px solid rgba(10, 20, 37, 0.06);
  border-radius: 18px;
  padding: 44px 36px 36px;
  box-shadow:
    0 1px 0 rgba(10, 20, 37, 0.02),
    0 24px 48px -24px rgba(10, 20, 37, 0.14),
    0 8px 16px -8px rgba(10, 20, 37, 0.05);
  overflow: hidden;
}
.about__quote-card::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(10, 20, 37, 0.05);
  pointer-events: none;
}
.about__quote-mark {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 72px;
  line-height: 0.5;
  color: var(--orb-ember);
  opacity: 0.7;
  margin-bottom: 18px;
}
.about__quote-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.018em;
  color: var(--orb-deep-navy);
  margin: 0 0 28px;
  text-wrap: balance;
  position: relative;
  z-index: 1;
}
.about__quote-divider {
  width: 32px;
  height: 1.5px;
  background: var(--orb-ember);
  margin-bottom: 14px;
}
.about__quote-meta {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--orb-cool-gray);
  margin: 0;
}
.about__head { max-width: 760px; margin-bottom: 56px; }
.about__intro {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--orb-graphite);
  max-width: 700px;
  margin: 24px 0 0;
  text-wrap: pretty;
}
.about__team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 80px;
}
@media (max-width: 880px) {
  .about__team { grid-template-columns: 1fr; gap: 40px; }
}
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.partner-card__avatar {
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: var(--orb-deep-navy);
  border: 2px solid var(--orb-ember);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orb-ember);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  position: relative;
}
.partner-card__avatar::after {
  /* tiny ember orbit dot, echoing isotype */
  content: "";
  position: absolute;
  top: 10px; right: 14px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--orb-ember);
  box-shadow: 0 0 0 4px rgba(255, 245, 238, 0.0);
}
.partner-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--orb-deep-navy);
  margin: 0 0 4px;
}
.partner-card__role {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--orb-cool-gray);
  margin: 0 0 16px;
}
.partner-card__bio {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--orb-graphite);
  margin: 0;
  max-width: 320px;
  text-wrap: pretty;
}

/* ============================================================
   CONTACT  (light section)
   ============================================================ */
.contact {
  position: relative;
  background: var(--orb-white);
  color: var(--orb-deep-navy);
  overflow: hidden;
  padding: 120px 0 140px;
}
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(to right,
                              rgba(10, 20, 37, 0) 0%,
                              rgba(10, 20, 37, 0.08) 50%,
                              rgba(10, 20, 37, 0) 100%);
}
@media (max-width: 720px) {
  .contact { padding: 72px 0 80px; }
}
.contact__orbital { display: none; }
.contact__inner {
  position: relative;
  z-index: 2;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.contact__sub {
  margin: 24px auto 0;
  color: var(--orb-graphite);
  font-size: 18px;
  line-height: 1.6;
}
.contact__form {
  margin-top: 48px;
  display: grid;
  gap: 20px;
  text-align: left;
  background: var(--orb-white);
  color: var(--orb-deep-navy);
  border: 1px solid rgba(10, 20, 37, 0.06);
  border-radius: 20px;
  padding: 40px;
  box-shadow:
    0 1px 0 rgba(10, 20, 37, 0.02),
    0 28px 56px -26px rgba(10, 20, 37, 0.18),
    0 10px 20px -10px rgba(10, 20, 37, 0.06);
}
@media (max-width: 600px) {
  .contact__form { padding: 28px; }
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--orb-cool-gray);
  text-transform: uppercase;
}
.field__input,
.field__textarea {
  width: 100%;
  background: var(--orb-white);
  border: 1px solid rgba(10, 20, 37, 0.12);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--orb-deep-navy);
  transition: border 200ms ease, background 200ms ease, box-shadow 200ms ease;
  resize: vertical;
}
.field__input::placeholder,
.field__textarea::placeholder { color: var(--orb-cool-gray); opacity: 0.7; }
.field__input:focus,
.field__textarea:focus {
  outline: none;
  border-color: var(--orb-ember);
  background: var(--orb-white);
  box-shadow: 0 0 0 4px rgba(219, 82, 39, 0.16);
}
.field__textarea { min-height: 96px; line-height: 1.5; }

.contact__row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) {
  .contact__row-2 { grid-template-columns: 1fr; }
}
.contact__submit {
  height: 52px;
  font-size: 15px;
  margin-top: 8px;
}

/* Inline error shown below the submit button when the network call fails.
   Form stays filled so the user can retry without re-typing. */
.contact__error {
  margin: 14px 0 0;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.45;
  color: var(--orb-ember);
  text-align: center;
}
[data-theme="dark"] .contact__error { color: #FF7A3F; }

.contact__success {
  background: var(--orb-warm-ice);
  border-radius: 14px;
  padding: 36px 32px;
  text-align: left;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border: 1px solid rgba(219, 82, 39, 0.18);
}
.contact__success-check {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--orb-ember);
  color: var(--orb-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact__success-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--orb-deep-navy);
  margin: 0 0 4px;
}
.contact__success-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--orb-graphite);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   FOOTER  (light, sits flush with contact)
   ============================================================ */
.footer {
  background: var(--orb-white);
  color: var(--orb-graphite);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(10, 20, 37, 0.06);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer__brand-block { max-width: 340px; }
.footer__tagline {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--orb-cool-gray);
  margin-top: 16px;
}
.footer__col-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orb-cool-gray);
  margin: 0 0 16px;
}
.footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__list a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--orb-deep-navy);
  transition: color 180ms ease;
}
.footer__list a:hover { color: var(--orb-ember); }
.footer__social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}
.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(10, 20, 37, 0.14);
  border-radius: 8px;
  color: var(--orb-deep-navy);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}
.footer__social:hover {
  color: var(--orb-ember);
  border-color: var(--orb-ember);
  background: rgba(219, 82, 39, 0.04);
}
.footer__legal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer__legal a {
  color: var(--orb-cool-gray);
  transition: color 180ms ease;
}
.footer__legal a:hover { color: var(--orb-ember); }
.footer__divider {
  height: 1px;
  background: rgba(10, 20, 37, 0.08);
  margin: 56px 0 24px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--orb-cool-gray);
}

/* ============================================================
   Logo (inline SVG)
   ============================================================ */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.logo__mark {
  width: 28px; height: 28px;
  flex-shrink: 0;
  display: block;
  /* The ember dot sits at the top-right of the ring, pulling optical
     mass above the geometric center. Nudge the mark down 1px so its
     visual center matches the wordmark's cap-mid. */
  transform: translateY(1px);
}
.logo__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.22em;
  color: currentColor;
  line-height: 1;
}
.logo--lg .logo__mark { width: 32px; height: 32px; }
.logo--lg .logo__text { font-size: 17px; }

/* Logo color comes from currentColor so it follows context. Light theme
   = deep navy; explicit .logo--inverse forces white (used in dark hero
   chips, navy CTA backgrounds, etc.). */
.logo { color: var(--site-fg-strong); }
.logo--inverse { color: var(--orb-white); }

/* ============================================================
   SCROLL PROGRESS BAR
   Hairline ember strip pinned to the top edge. Driven by a
   scaleX transform (no layout thrash), updated via rAF.
   Sits one z-layer above the nav so it reads as a global signal,
   not part of the nav chrome.
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 60;
  background: linear-gradient(90deg,
                              rgba(219, 82, 39, 0.85) 0%,
                              var(--orb-ember) 60%,
                              #FF7A3F 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 80ms linear;
  pointer-events: none;
  will-change: transform;
}
[data-theme="dark"] .scroll-progress {
  box-shadow: 0 0 10px rgba(219, 82, 39, 0.45);
}
@media (prefers-reduced-motion: reduce) {
  .scroll-progress { transition: none; }
}

/* ============================================================
   THEME TOGGLE BUTTON
   ============================================================ */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid var(--site-border-strong);
  border-radius: 999px;
  color: var(--site-fg-muted);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease,
              transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
  flex-shrink: 0;
}
.theme-toggle:hover {
  color: var(--site-fg-strong);
  border-color: var(--site-fg-strong);
}
.theme-toggle:active { transform: scale(0.94); }

/* ============================================================
   DARK THEME OVERRIDES
   The site is light-first. Dark inverts surfaces and text, keeps
   ember/warm-ice as semantic accents (warm-ice becomes warm-navy),
   and tones down borders/shadows since navy already provides depth.
   ============================================================ */
[data-theme="dark"] {
  --site-bg-page: var(--orb-deep-navy);
  --site-bg-warm: var(--warm-navy);
  --site-bg-card: #10182A; /* one step lighter than deep navy — card lift via density, not borders */
  --site-fg-strong: var(--orb-white);
  --site-fg-body: rgba(255, 255, 255, 0.78);
  --site-fg-muted: rgba(255, 255, 255, 0.50);
  --site-border-subtle: rgba(255, 255, 255, 0.06);
  --site-border-strong: rgba(255, 255, 255, 0.14);
  --site-border-hairline: rgba(255, 255, 255, 0.10);
  --site-input-border: rgba(255, 255, 255, 0.16);
}

/* ---- page-level surfaces ---- */
[data-theme="dark"] body {
  background: var(--orb-deep-navy);
  color: var(--site-fg-body);
}
[data-theme="dark"] body::before {
  background:
    radial-gradient(circle 900px at 85% -5%,
                    rgba(219, 82, 39, 0.08) 0%,
                    rgba(219, 82, 39, 0) 60%),
    radial-gradient(circle 1100px at -10% 60%,
                    rgba(2, 54, 97, 0.35) 0%,
                    rgba(2, 54, 97, 0) 60%);
}
[data-theme="dark"] ::selection {
  background: var(--orb-ember);
  color: var(--orb-white);
}

/* ---- nav ---- */
[data-theme="dark"] .nav {
  background: rgba(10, 20, 37, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
[data-theme="dark"] .nav.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .nav__brand { color: var(--orb-white); }
[data-theme="dark"] .nav__link { color: rgba(255, 255, 255, 0.72); }
[data-theme="dark"] .nav__link:hover { color: var(--orb-ember); }

[data-theme="dark"] .lang-toggle {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.10);
}
[data-theme="dark"] .lang-toggle__btn { color: rgba(255, 255, 255, 0.55); }
[data-theme="dark"] .lang-toggle__btn.is-active {
  background: rgba(255, 255, 255, 0.94);
  color: var(--orb-deep-navy);
}
[data-theme="dark"] .nav__menu-btn {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--orb-white);
}
[data-theme="dark"] .nav-mobile {
  background: rgba(10, 20, 37, 0.98);
}
[data-theme="dark"] .nav-mobile__link {
  color: var(--orb-white);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

/* ---- hero ---- */
[data-theme="dark"] .hero { background: var(--orb-deep-navy); }
[data-theme="dark"] .hero__halo {
  background:
    radial-gradient(circle 640px at 72% 28%,
                    rgba(219, 82, 39, 0.18) 0%,
                    rgba(219, 82, 39, 0.06) 35%,
                    rgba(219, 82, 39, 0) 70%),
    radial-gradient(circle 900px at 8% 90%,
                    rgba(2, 54, 97, 0.25) 0%,
                    rgba(2, 54, 97, 0) 60%);
}
[data-theme="dark"] .h1,
[data-theme="dark"] .h2 { color: var(--orb-white); }
[data-theme="dark"] .hero__sub { color: rgba(255, 255, 255, 0.72); }
[data-theme="dark"] .lede { color: rgba(255, 255, 255, 0.72); }
[data-theme="dark"] .hero__credential-value { color: var(--orb-white); }
[data-theme="dark"] .hero__credential-label { color: rgba(255, 255, 255, 0.55); }
[data-theme="dark"] .hero__credential-div { background: rgba(255, 255, 255, 0.18); }
[data-theme="dark"] .btn--ghost-light {
  color: var(--orb-white);
  border-color: rgba(255, 255, 255, 0.22);
}
[data-theme="dark"] .btn--ghost-light:hover {
  color: var(--orb-white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.04);
}

/* ---- partners ---- */
[data-theme="dark"] .partners { background: var(--orb-deep-navy); }
[data-theme="dark"] .partners::before {
  background: linear-gradient(to right,
                              rgba(255, 255, 255, 0) 0%,
                              rgba(255, 255, 255, 0.12) 50%,
                              rgba(255, 255, 255, 0) 100%);
}
[data-theme="dark"] .partners__label { color: rgba(255, 255, 255, 0.50); }
[data-theme="dark"] .partner-logo { color: rgba(255, 255, 255, 0.72); }

/* ---- services ---- */
[data-theme="dark"] .services { background: var(--orb-deep-navy); }
[data-theme="dark"] .services::before {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
}
[data-theme="dark"] .service-card {
  background: var(--site-bg-card);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}
[data-theme="dark"] .service-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: #131C2F;
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .service-card__title { color: var(--orb-white); }
[data-theme="dark"] .service-card__desc { color: rgba(255, 255, 255, 0.62); }
[data-theme="dark"] .service-card__meta { border-top-color: rgba(255, 255, 255, 0.08); }
[data-theme="dark"] .service-card__tag {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
}

/* ---- method ---- */
[data-theme="dark"] .method { background: var(--orb-deep-navy); }
[data-theme="dark"] .method::before {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
}
[data-theme="dark"] .method__step {
  background: var(--site-bg-card);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}
[data-theme="dark"] .method__step:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: #131C2F;
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .method__step::after { border-color: rgba(255, 255, 255, 0.05); }
[data-theme="dark"] .method__step-title { color: var(--orb-white); }
[data-theme="dark"] .method__step-desc { color: rgba(255, 255, 255, 0.62); }
[data-theme="dark"] .method__step-arrow { color: rgba(255, 255, 255, 0.32); }
[data-theme="dark"] .method__step-actions { border-top-color: rgba(255, 255, 255, 0.10); }
[data-theme="dark"] .method__step-action { color: rgba(255, 255, 255, 0.78); }

/* ---- testimonials (Warm Ice band → warm-navy band) ---- */
[data-theme="dark"] .testimonial {
  background: var(--site-bg-card);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}
[data-theme="dark"] .testimonial:hover {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .testimonial__quote { color: var(--orb-white); }
[data-theme="dark"] .testimonial__name { color: var(--orb-white); }
[data-theme="dark"] .testimonial__role { color: rgba(255, 255, 255, 0.55); }

/* ---- about ---- */
[data-theme="dark"] .about { background: var(--orb-deep-navy); }
[data-theme="dark"] .about__intro { color: rgba(255, 255, 255, 0.78); }
[data-theme="dark"] .about__quote-card {
  background: var(--site-bg-card);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}
[data-theme="dark"] .about__quote-card::after { border-color: rgba(255, 255, 255, 0.05); }
[data-theme="dark"] .about__quote-text { color: var(--orb-white); }
[data-theme="dark"] .about__quote-meta { color: rgba(255, 255, 255, 0.50); }

/* ---- contact ---- */
[data-theme="dark"] .contact { background: var(--orb-deep-navy); }
[data-theme="dark"] .contact::before {
  background: linear-gradient(to right,
                              rgba(255, 255, 255, 0) 0%,
                              rgba(255, 255, 255, 0.10) 50%,
                              rgba(255, 255, 255, 0) 100%);
}
[data-theme="dark"] .contact__sub { color: rgba(255, 255, 255, 0.72); }
[data-theme="dark"] .contact__form {
  background: var(--site-bg-card);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}
[data-theme="dark"] .field__label { color: rgba(255, 255, 255, 0.55); }
[data-theme="dark"] .field__input,
[data-theme="dark"] .field__textarea {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--orb-white);
}
[data-theme="dark"] .field__input::placeholder,
[data-theme="dark"] .field__textarea::placeholder { color: rgba(255, 255, 255, 0.30); }
[data-theme="dark"] .field__input:focus,
[data-theme="dark"] .field__textarea:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--orb-ember);
  box-shadow: 0 0 0 4px rgba(219, 82, 39, 0.22);
}
[data-theme="dark"] .contact__success {
  background: rgba(219, 82, 39, 0.10);
  border-color: rgba(219, 82, 39, 0.28);
}
[data-theme="dark"] .contact__success-title { color: var(--orb-white); }
[data-theme="dark"] .contact__success-desc { color: rgba(255, 255, 255, 0.72); }

/* ---- footer ---- */
[data-theme="dark"] .footer {
  background: var(--orb-deep-navy);
  color: rgba(255, 255, 255, 0.55);
  border-top-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .footer__tagline { color: rgba(255, 255, 255, 0.55); }
[data-theme="dark"] .footer__col-title { color: rgba(255, 255, 255, 0.50); }
[data-theme="dark"] .footer__list a { color: var(--orb-white); }
[data-theme="dark"] .footer__list a:hover { color: var(--orb-ember); }
[data-theme="dark"] .footer__social {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--orb-white);
}
[data-theme="dark"] .footer__social:hover {
  color: var(--orb-ember);
  border-color: var(--orb-ember);
  background: rgba(219, 82, 39, 0.06);
}
[data-theme="dark"] .footer__divider { background: rgba(255, 255, 255, 0.08); }
[data-theme="dark"] .footer__bottom { color: rgba(255, 255, 255, 0.50); }
[data-theme="dark"] .footer__legal a { color: rgba(255, 255, 255, 0.50); }

/* ---- theme toggle in dark ---- */
[data-theme="dark"] .theme-toggle {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.55);
}
[data-theme="dark"] .theme-toggle:hover {
  color: var(--orb-white);
  border-color: rgba(255, 255, 255, 0.30);
}
