/* =============================================
   VLUMIS — Brand Style Sheet 2026
   Fonts: Cormorant Garamond + Outfit (Google)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,700;1,400;1,700&family=Outfit:wght@200;300;400;500&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --ink:        #1E1408;
  --gold:       #B8853A;
  --gold-light: #C99A52;
  --cream:      #FAF6F0;
  --sand:       #F3EBE0;
  --teal:       #4A8B7E;
  --teal-light: #EAF3F1;
  --rose:       #B86A52;
  --rose-light: #F5EAE6;
  --sage:       #6A8B6A;
  --sage-light: #EAF0EA;
  --gold-fill:  #F5EDD8;

  --font-heading: 'Cormorant Garamond', serif;
  --font-body:    'Outfit', sans-serif;

  --radius: 8px;
  --transition: 0.25s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }
h3 { font-size: 1.5rem; font-weight: 400; }
p  { font-family: var(--font-body); font-weight: 300; }

.label {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Layout ---------- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 100px 0; }
.section--dark { background: var(--ink); color: var(--cream); }
.section--sand { background: var(--sand); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(30, 20, 8, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 133, 58, 0.2);
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.nav__logo-text { display: flex; flex-direction: column; gap: 0; }
.nav__logo-name { line-height: 1; }
.nav__logo-slogan {
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  color: rgba(250,246,240,0.45);
  text-transform: uppercase;
  line-height: 1;
  margin-top: 3px;
}
.nav__logo-img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.8;
  transition: opacity var(--transition), color var(--transition);
}
.nav__links a:hover { opacity: 1; color: var(--gold); }

.nav__cta {
  background: var(--gold) !important;
  color: var(--ink) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  opacity: 1 !important;
  font-weight: 500 !important;
  transition: background var(--transition) !important;
}
.nav__cta:hover { background: var(--gold-light) !important; }

.nav__portal {
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  opacity: 1 !important;
  transition: background var(--transition) !important;
}
.nav__portal:hover { background: rgba(184, 133, 58, 0.12) !important; }

/* Mobile nav toggle */
.nav__toggle { display: none; background: none; border: none; cursor: pointer; }
.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--cream); margin: 5px 0;
  transition: var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  background: var(--ink);
  display: flex;
  align-items: center;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,133,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero__content { position: relative; z-index: 1; }
.hero__eyebrow {
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: hero-fade-up 1s ease both;
  animation-delay: 0.2s;
}
.hero__title {
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__sub {
  font-size: 1.125rem;
  color: rgba(250,246,240,0.7);
  max-width: 560px;
  margin-bottom: 2.5rem;
  animation: hero-fade-up 1.4s ease both;
  animation-delay: 1.2s;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: hero-fade-up 1.2s ease both;
  animation-delay: 1.6s;
}

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Letter-by-letter hero title */
.hero-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.hero-letter.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero__title em .hero-letter {
  color: var(--gold);
  font-style: italic;
}

/* Hero Video */
.hero__video-wrap {
  margin-top: 3rem;
  width: 100%;
  max-width: 860px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(184,133,58,0.2);
  box-shadow: 0 24px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(184,133,58,0.08);
  animation: hero-fade-up 1.2s ease both;
  animation-delay: 2s;
}
.hero__video {
  width: 100%;
  display: block;
  border-radius: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-light); }
.btn--outline {
  background: transparent;
  border: 1px solid var(--cream);
  color: var(--cream);
}
.btn--outline:hover { background: rgba(250,246,240,0.08); }
.btn--teal { background: var(--teal); color: var(--cream); }
.btn--teal:hover { background: #3d7870; }
.btn--full { width: 100%; text-align: center; }

/* ---------- Section Header ---------- */
.section__header { margin-bottom: 60px; }
.section__header h2 { margin-top: 0.5rem; }
.section__header p {
  max-width: 560px;
  margin-top: 1rem;
  color: rgba(30,20,8,0.7);
}
.section--dark .section__header p { color: rgba(250,246,240,0.7); }

/* ---------- Cards Grid ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--sand);
  border-radius: 12px;
  padding: 2rem;
  border-top: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(30,20,8,0.12); }
.card--dark { background: rgba(255,255,255,0.04); border-color: var(--gold); }
.card--teal { border-color: var(--teal); }
.card--rose { border-color: var(--rose); }
.card--sage { border-color: var(--sage); }

.card__icon { font-size: 1.75rem; margin-bottom: 1rem; }
.card__label { font-size: 0.625rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.card__title { font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: 0.75rem; }
.card--dark .card__title { color: var(--cream); }
.card__body { font-size: 0.9rem; color: rgba(30,20,8,0.7); }
.card--dark .card__body { color: rgba(250,246,240,0.65); }

/* ---------- Values ---------- */
.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.value { background: var(--teal-light); border-radius: 12px; padding: 2rem; }
.value:nth-child(2) { background: var(--gold-fill); }
.value:nth-child(3) { background: var(--rose-light); }
.value:nth-child(4) { background: var(--sage-light); }
.value h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.value p  { font-size: 0.875rem; color: rgba(30,20,8,0.7); }

/* ---------- Process Steps ---------- */
.process { counter-reset: steps; display: grid; gap: 2rem; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.step__num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step__title { font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: 0.4rem; color: var(--cream); }
.step__body  { font-size: 0.9rem; color: rgba(250,246,240,0.65); }

/* ---------- Divider ---------- */
.divider { width: 60px; height: 2px; background: var(--gold); margin: 1rem 0 2rem; }

/* ---------- Calendly Embed ---------- */
.calendly-inline-widget { min-width: 320px; height: 700px; border-radius: 12px; overflow: hidden; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(184,133,58,0.2);
}

/* Centered vlumis.com-style footer */
.footer--centered { text-align: center; }
.footer__logo {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 400;
  letter-spacing: 10px;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.footer__tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(250,246,240,0.45);
  margin-bottom: 0;
}
.footer__divider {
  width: 48px;
  height: 1px;
  background: rgba(184,133,58,0.35);
  margin: 1.75rem auto;
}
.footer__nav {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 2rem;
  margin-bottom: 2.5rem;
}
.footer__nav a {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250,246,240,0.5);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--gold); }

/* Legacy grid footer (kept for fallback) */
.footer__grid { display: grid; grid-template-columns: 1fr auto; gap: 2rem; margin-bottom: 40px; }
.footer__brand { font-family: var(--font-heading); font-size: 1.75rem; letter-spacing: 4px; color: var(--gold); margin-bottom: 0.75rem; }
.footer__tag  { font-size: 0.85rem; color: rgba(250,246,240,0.55); font-style: italic; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; text-align: right; }
.footer__links a { font-size: 0.8rem; color: rgba(250,246,240,0.6); transition: color var(--transition); }
.footer__links a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(250,246,240,0.08);
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(250,246,240,0.35);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.footer__bottom--centered {
  justify-content: center;
  gap: 1.5rem;
}

/* ---------- Auth Pages (login.html, portal.html) ---------- */
.auth-page {
  min-height: 100vh;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.auth-box {
  background: rgba(250,246,240,0.04);
  border: 1px solid rgba(184,133,58,0.25);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 440px;
  text-align: center;
}
.auth-box h2 { color: var(--cream); margin-bottom: 0.5rem; }
.auth-box p  { color: rgba(250,246,240,0.55); margin-bottom: 2rem; font-size: 0.9rem; }

.auth-divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 1.5rem 0;
  color: rgba(250,246,240,0.3);
  font-size: 0.75rem;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1;
  height: 1px; background: rgba(250,246,240,0.12);
}

.form-group { margin-bottom: 1rem; text-align: left; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.form-group input {
  width: 100%;
  background: rgba(250,246,240,0.06);
  border: 1px solid rgba(184,133,58,0.2);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus { border-color: var(--gold); }
.form-group input::placeholder { color: rgba(250,246,240,0.3); }

.btn--google {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  background: #fff;
  color: #1E1408;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background var(--transition);
}
.btn--google:hover { background: #f0f0f0; }
.btn--google img { width: 18px; height: 18px; }

.auth-footer {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(250,246,240,0.4);
}
.auth-footer a { color: var(--gold); transition: opacity var(--transition); }
.auth-footer a:hover { opacity: 0.8; }

.auth-error {
  background: var(--rose-light);
  color: var(--rose);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: none;
}
.auth-error.show { display: block; }

/* ---------- Portal Page ---------- */
.portal-header {
  background: var(--ink);
  border-bottom: 1px solid rgba(184,133,58,0.2);
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.portal-logo { font-family: var(--font-heading); font-size: 1.25rem; letter-spacing: 4px; color: var(--gold); }
.portal-user { display: flex; align-items: center; gap: 1rem; }
.portal-user__name { font-size: 0.85rem; color: var(--cream); }
.portal-user__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--ink);
  font-weight: 700;
}
.btn--signout {
  background: transparent;
  border: 1px solid rgba(184,133,58,0.3);
  color: rgba(250,246,240,0.6);
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}
.btn--signout:hover { border-color: var(--rose); color: var(--rose); }

.portal-main { background: var(--sand); min-height: calc(100vh - 70px); padding: 60px 2rem; }
.portal-welcome { text-align: center; margin-bottom: 50px; }
.portal-welcome h1 { font-size: 2.5rem; }
.portal-welcome h1 em { color: var(--gold); font-style: italic; }
.portal-welcome p { color: rgba(30,20,8,0.6); margin-top: 0.5rem; }

/* ---------- Orbital Timeline ---------- */
.orbital {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

/* Central orb */
.orbital__center {
  position: absolute;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
}
.orbital__ping {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(184,133,58,0.25);
  animation: orb-ping 2.5s cubic-bezier(0,0,0.2,1) infinite;
}
.orbital__ping--1 { width: 80px; height: 80px; }
.orbital__ping--2 { width: 110px; height: 110px; animation-delay: 0.7s; opacity: 0.6; }
.orbital__core {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #C99A52, #B8853A, #7A5520);
  box-shadow: 0 0 24px rgba(184,133,58,0.45), 0 0 60px rgba(184,133,58,0.15);
  animation: orb-pulse 3s ease-in-out infinite;
}

/* Orbit ring */
.orbital__ring {
  position: absolute;
  width: 460px; height: 194px;
  border-radius: 50%;
  border: 1px solid rgba(250,246,240,0.07);
  pointer-events: none;
}

/* Nodes */
.orbital__node {
  position: absolute;
  top: 50%; left: 50%;
  cursor: pointer;
  transition: opacity 0.45s ease;
  will-change: transform, opacity;
}
.orbital__btn {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid;
  background: rgba(30,20,8,0.92);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 14px rgba(184,133,58,0.25);
}
.orbital__btn:hover  { transform: scale(1.12); }
.orbital__btn.active { transform: scale(1.3); background: rgba(250,246,240,0.08); box-shadow: 0 0 20px rgba(184,133,58,0.45); }
.orbital__icon { line-height: 1; }

.orbital__tagline {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  font-style: normal;
  color: #FAF6F0;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  z-index: 4;
}

.orbital-letter {
  display: inline-block;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.orbital-letter.visible {
  opacity: 1;
  transform: translateX(0);
}

.orbital__nlabel {
  position: absolute;
  top: 88px; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: rgba(250,246,240,0.65);
  pointer-events: none;
}


/* Central info card — subscription style, fully opaque */
.orbital__center-card {
  display: none;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  background: #120A02;
  border: 1px solid rgba(184,133,58,0.5);
  border-top: 3px solid var(--gold);
  border-radius: 16px;
  overflow: hidden;
  z-index: 60;
  animation: card-in 0.25s ease;
  box-shadow: 0 8px 48px rgba(0,0,0,0.9), 0 0 0 1px rgba(184,133,58,0.08);
}
.orbital__center-card.active { display: block; }

/* Header strip */
.orbital__center-card-inner {
  padding: 0;
}
.orbital__center-card-header {
  background: rgba(184,133,58,0.1);
  border-bottom: 1px solid rgba(184,133,58,0.15);
  padding: 1rem 1.5rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.orbital__center-card-cat {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 2.5px;
  font-weight: 600;
  display: block;
}
.orbital__center-card-badge {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 1.5px;
  font-weight: 500;
  background: rgba(184,133,58,0.15);
  color: var(--gold);
  border: 1px solid rgba(184,133,58,0.3);
  border-radius: 20px;
  padding: 0.2rem 0.65rem;
}

/* Body */
.orbital__center-card-body-wrap {
  padding: 1.25rem 1.5rem;
}
.orbital__center-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.65rem;
  line-height: 1.25;
}
.orbital__center-card-body {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(250,246,240,0.6);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(250,246,240,0.07);
}

/* Expanded card (legacy — kept for safety) */
.orbital__card { display: none; }
.orbital__card-top { margin-bottom: 0.4rem; }
.orbital__card-cat {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 2.5px;
  font-weight: 500;
}
.orbital__card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.orbital__card-body {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(250,246,240,0.58);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.orbital__energy { margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid rgba(250,246,240,0.08); }
.orbital__energy-row {
  display: flex; justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: rgba(250,246,240,0.45);
  margin-bottom: 0.35rem;
}
.orbital__energy-track {
  width: 100%; height: 3px;
  background: rgba(250,246,240,0.1);
  border-radius: 2px; overflow: hidden;
}
.orbital__energy-fill { height: 100%; border-radius: 2px; }
.orbital__card-cta {
  display: block;
  width: 100%;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  background: var(--gold);
  color: var(--ink);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: background 0.2s;
  cursor: pointer;
}
.orbital__card-cta:hover { background: var(--gold-light); }

/* Animated tagline above orbit */
.orbital__tagline {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(250,246,240,0.38);
  margin: 0 0 1.75rem;
  min-height: 1.4em;
}
.orbital-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.orbital-letter.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Orbital keyframes */
@keyframes orb-ping {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes orb-pulse {
  0%, 100% { box-shadow: 0 0 24px rgba(184,133,58,0.45), 0 0 60px rgba(184,133,58,0.15); }
  50%       { box-shadow: 0 0 36px rgba(184,133,58,0.7), 0 0 80px rgba(184,133,58,0.25); }
}
@keyframes card-in {
  from { opacity: 0; transform: translateX(-50%) translateY(6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--sand);
  border-top: 1px solid rgba(30,20,8,0.08);
  border-bottom: 1px solid rgba(30,20,8,0.08);
  padding: 1.5rem 0;
}
.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 2.5rem;
  text-align: center;
}
.stats-bar__num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stats-bar__label {
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(30,20,8,0.5);
  font-weight: 500;
}
.stats-bar__sep {
  width: 1px;
  height: 40px;
  background: rgba(30,20,8,0.12);
  flex-shrink: 0;
}

/* ---------- Card icon SVG support ---------- */
.card__icon { display: block; width: fit-content; margin-bottom: 1rem; }
.card__icon svg { display: block; }

/* ---------- Mobile Services Grid ---------- */
.services-mobile { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .nav__links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--ink); padding: 1.5rem 2rem; gap: 1.25rem; border-bottom: 1px solid rgba(184,133,58,0.15); }
  .nav__links.open { display: flex; }
  .nav__toggle { display: block; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__links { text-align: left; }
  .step { grid-template-columns: 48px 1fr; }
  .stats-bar__item { padding: 0.5rem 1.25rem; }
  .stats-bar__sep { display: none; }
  .orbital { display: none; }
  .orbital__tagline { display: none; }
  .services-mobile { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
}

@media (max-width: 480px) {
  .services-mobile { grid-template-columns: 1fr; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow, .hero__sub, .hero__actions, .hero__video-wrap { animation: none; opacity: 1; transform: none; }
  .hero-letter { transition: none; }
  .orbital__ping { animation: none; }
  .orbital__core { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* =============================================
   Motion System — Scroll Reveals & Micro-interactions
   ============================================= */

/* ── Section Header: children stagger in ── */
.section__header.reveal .label,
.section__header.reveal h2,
.section__header.reveal > p {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.section__header.reveal .divider {
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.5s ease-out;
}
.section__header.is-visible .label {
  opacity: 1; transform: translateY(0); transition-delay: 0ms;
}
.section__header.is-visible h2 {
  opacity: 1; transform: translateY(0); transition-delay: 90ms;
}
.section__header.is-visible .divider {
  transform: scaleX(1); transition-delay: 160ms;
}
.section__header.is-visible > p {
  opacity: 1; transform: translateY(0); transition-delay: 220ms;
}

/* ── Stagger Reveal Animation ── */
@keyframes vlm-reveal-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* Children start hidden */
.stagger > .card,
.stagger > .step,
.stagger > .stats-bar__item {
  opacity: 0;
}

/* Animate in when container is visible */
.stagger.is-visible > .card {
  animation: vlm-reveal-up 0.6s ease-out both;
}
.stagger.is-visible > .step {
  animation: vlm-reveal-up 0.6s ease-out both;
}
.stagger.is-visible > .stats-bar__item {
  animation: vlm-reveal-up 0.5s ease-out both;
}

/* ── Button micro-interactions ── */
.btn {
  transition: background var(--transition), transform 0.18s ease-out, box-shadow 0.18s ease-out;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30,20,8,0.18);
}
.btn:active {
  transform: translateY(0) scale(0.97) !important;
  transition-duration: 0.08s !important;
}
.btn--gold:hover {
  box-shadow: 0 8px 24px rgba(184,133,58,0.35);
}
.btn--outline:hover {
  box-shadow: 0 6px 20px rgba(250,246,240,0.1);
}

/* ── Card hover refinement ── */
.card {
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(30,20,8,0.13);
}

/* ── Reduced motion overrides for new system ── */
@media (prefers-reduced-motion: reduce) {
  .section__header.reveal .label,
  .section__header.reveal h2,
  .section__header.reveal .divider,
  .section__header.reveal > p { opacity: 1 !important; transform: none !important; transition: none !important; }
  .stagger > .card,
  .stagger > .step,
  .stagger > .stats-bar__item { opacity: 1 !important; animation: none !important; }
}

/* =============================================
   Extended Motion — More Animations
   ============================================= */

/* ── Scroll Progress Bar ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 2000;
  pointer-events: none;
}

/* ── Nav link slide underline ── */
.nav__links a { position: relative; }
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.28s ease-out;
}
.nav__links a:hover::after { width: 100%; }
.nav__cta::after, .nav__portal::after { display: none !important; }

/* ── Card gold shimmer on hover ── */
.card { position: relative; overflow: hidden; }
.card::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent 35%, rgba(184,133,58,0.1) 50%, transparent 65%);
  pointer-events: none;
  transition: left 0.6s ease;
  z-index: 0;
}
.card:hover::before { left: 140%; }
.card > * { position: relative; z-index: 1; }

/* ── Process step number spring entrance ── */
@keyframes step-num-pop {
  0%   { opacity: 0; transform: scale(0.35) rotate(-10deg); }
  65%  { transform: scale(1.2) rotate(3deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
.stagger.is-visible > .step .step__num {
  animation: step-num-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.stagger.is-visible > .step:nth-child(1) .step__num { animation-delay: 60ms; }
.stagger.is-visible > .step:nth-child(2) .step__num { animation-delay: 135ms; }
.stagger.is-visible > .step:nth-child(3) .step__num { animation-delay: 210ms; }
.stagger.is-visible > .step:nth-child(4) .step__num { animation-delay: 285ms; }

/* ── Stats gold glow after count-up ── */
@keyframes stat-glow {
  0%   { text-shadow: none; }
  40%  { text-shadow: 0 0 18px rgba(184,133,58,0.65); }
  100% { text-shadow: none; }
}
.stats-bar__num.counted { animation: stat-glow 1s ease-out forwards; }

/* ── Footer nav stagger ── */
.footer__nav.stagger > li { opacity: 0; }
.footer__nav.stagger.is-visible > li { animation: vlm-reveal-up 0.5s ease-out both; }

/* ── Hero floating particles ── */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,133,58,0.2), transparent 70%);
  pointer-events: none;
  animation: particle-float linear infinite;
}
@keyframes particle-float {
  0%   { transform: translateY(0) scale(1);   opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 0.3; }
  100% { transform: translateY(-180px) scale(0.5); opacity: 0; }
}

/* ── Reduced motion for extended system ── */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
  .hero-particle { display: none; }
  .card::before { display: none; }
  .stagger.is-visible > .step .step__num { animation: none !important; opacity: 1 !important; }
  .footer__nav.stagger > li { opacity: 1 !important; animation: none !important; }
  .stats-bar__num.counted { animation: none !important; }
}
