/* ============================================================
   Cosmic Balance — Spec Preview by Woodcrest
   Palette: cosmic indigo / warm cream / gold
   Design language: mystical, dark, emblem-forward, typographic
   ============================================================ */

:root {
  /* color */
  --ink:        #120c26;   /* deepest night */
  --ink-2:      #16102e;
  --indigo:     #241a44;   /* brand primary */
  --indigo-2:   #2e2154;   /* raised indigo */
  --plum:       #6a5896;
  --cream:      #f5f0e7;   /* brand secondary */
  --cream-2:    #efe7d9;
  --gold:       #cba766;   /* brand accent */
  --gold-soft:  #ddc493;
  --paper:      #fbf8f2;
  --text-dark:  #2b2438;   /* body on light */
  --text-mut:   #625a72;
  --on-dark:    #ece5f4;
  --on-dark-mut:#b3a8c8;
  --line:       rgba(203,167,102,.28);

  /* type */
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --sans:  ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* fluid type scale */
  --step--1: clamp(.82rem, .79rem + .15vw, .92rem);
  --step-0:  clamp(1rem, .96rem + .2vw, 1.12rem);
  --step-1:  clamp(1.2rem, 1.12rem + .4vw, 1.45rem);
  --step-2:  clamp(1.5rem, 1.35rem + .75vw, 2rem);
  --step-3:  clamp(1.95rem, 1.7rem + 1.25vw, 2.9rem);
  --step-4:  clamp(2.5rem, 2rem + 2.5vw, 4.3rem);
  --step-5:  clamp(2.15rem, 1.05rem + 4.05vw, 4.9rem);

  /* space */
  --space-section: clamp(4.5rem, 3rem + 6vw, 9rem);
  --wrap: 1180px;
  --radius: 16px;

  --shadow: 0 30px 70px -30px rgba(10,6,26,.7);
  --shadow-soft: 0 16px 46px -24px rgba(10,6,26,.5);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.01em;
  font-variant-ligatures: common-ligatures;
}

::selection { background: var(--gold); color: var(--ink); }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

.skip-link {
  position: absolute; left: 50%; transform: translateX(-50%) translateY(-140%);
  top: .5rem; z-index: 200; background: var(--gold); color: var(--ink);
  padding: .6rem 1.1rem; border-radius: 8px; font-weight: 600; transition: transform .2s;
}
.skip-link:focus { transform: translateX(-50%) translateY(0); }

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

/* ---------- buttons ---------- */
.btn {
  --btn-bg: linear-gradient(135deg, #e0c485 0%, #cba766 55%, #b48f4e 100%);
  --btn-fg: #2a1e08;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--sans); font-weight: 650; font-size: var(--step--1);
  letter-spacing: .02em;
  padding: .85rem 1.5rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  cursor: pointer;
  transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s, filter .28s;
  box-shadow: 0 12px 30px -14px rgba(203,167,102,.9);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -16px rgba(203,167,102,1); filter: brightness(1.04); }
.btn:active { transform: translateY(-1px); }
.btn-lg { padding: 1rem 1.9rem; font-size: var(--step-0); }

.btn-ghost {
  --btn-bg: transparent; --btn-fg: var(--on-dark);
  border-color: rgba(236,229,244,.42);
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(236,229,244,.08); border-color: var(--gold); color: #fff; box-shadow: none; filter: none; }

.btn-header { padding: .68rem 1.25rem; }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 1.15rem 0;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease, border-color .35s;
  border-bottom: 1px solid transparent;
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand-mark { border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 1px rgba(203,167,102,.5), 0 6px 18px -8px rgba(0,0,0,.7); }
.brand-name {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 600;
  color: #fff; letter-spacing: .01em;
  text-shadow: 0 1px 16px rgba(0,0,0,.55);
}
.site-nav { display: flex; gap: 1.7rem; }
.site-nav a {
  color: rgba(255,255,255,.86); font-size: var(--step--1); font-weight: 550;
  letter-spacing: .01em; position: relative; padding: .25rem 0;
  text-shadow: 0 1px 10px rgba(0,0,0,.5);
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--gold); transition: width .3s ease;
}
.site-nav a:hover { color: #fff; }
.site-nav a:hover::after { width: 100%; }

/* scrolled state */
.site-header.scrolled {
  background: rgba(18,12,38,.86);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  padding: .72rem 0;
  box-shadow: 0 14px 34px -22px rgba(0,0,0,.9);
  border-color: rgba(203,167,102,.22);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: clamp(660px, 100svh, 1040px);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding-block: clamp(7rem, 14vh, 9rem) clamp(4.5rem, 9vh, 7rem);
  color: var(--on-dark);
  background: radial-gradient(140% 100% at 50% -10%, #2a1e50 0%, #1a1236 42%, var(--ink) 78%);
  isolation: isolate;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-nebula {
  position: absolute; inset: -8%; width: 116%; height: 116%;
  object-fit: cover; object-position: center 32%;
  opacity: 1;
  filter: brightness(1.42) saturate(1.28) contrast(1.06);
  animation: nebulaDrift 46s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes nebulaDrift {
  from { transform: scale(1.08) translate3d(-1.6%, -1.2%, 0); }
  to   { transform: scale(1.16) translate3d(1.6%, 1.4%, 0); }
}
@media (prefers-reduced-motion: reduce) { .hero-nebula { animation: none; transform: scale(1.08); } }

/* animated aurora — gives the upper sky colour + motion so it reads as space, not a black box */
.hero-aurora {
  position: absolute; inset: -25% -12% 30% -12%;
  background:
    radial-gradient(46% 60% at 26% 26%, rgba(120,96,178,.5), transparent 70%),
    radial-gradient(42% 52% at 74% 18%, rgba(203,167,102,.22), transparent 70%),
    radial-gradient(60% 66% at 52% 2%, rgba(78,56,140,.55), transparent 72%);
  filter: blur(34px);
  animation: auroraShift 30s ease-in-out infinite alternate;
  will-change: transform, opacity;
}
@keyframes auroraShift {
  from { transform: translate3d(-3%, 0, 0) scale(1); opacity: .85; }
  to   { transform: translate3d(4%, 2%, 0) scale(1.12); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .hero-aurora { animation: none; } }

.hero-veil {
  position: absolute; inset: 0;
  background:
    /* focus pool behind the copy — softer so the sky stays visible */
    radial-gradient(66% 52% at 50% 64%, rgba(9,6,20,.6), transparent 72%),
    /* edge vignette for depth */
    radial-gradient(128% 100% at 50% 40%, transparent 54%, rgba(9,6,20,.66) 100%),
    /* top-to-bottom legibility + seam into the next section (light at top, sky shows) */
    linear-gradient(180deg, rgba(18,12,38,.24) 0%, rgba(18,12,38,.06) 26%, rgba(18,12,38,.34) 62%, rgba(18,12,38,.88) 90%, var(--ink) 100%);
}
.hero-glow {
  position: absolute; left: 50%; top: 60%; transform: translate(-50%,-50%);
  width: min(920px, 98vw); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(203,167,102,.32), rgba(203,167,102,.07) 42%, transparent 64%);
  filter: blur(12px);
}
.hero-stars {
  position: absolute; inset: 0; opacity: .9;
  animation: twinkle 7s ease-in-out infinite alternate;
  background-image:
    radial-gradient(1.6px 1.6px at 12% 22%, rgba(255,255,255,1), transparent),
    radial-gradient(1.3px 1.3px at 78% 16%, rgba(255,255,255,.85), transparent),
    radial-gradient(1.9px 1.9px at 62% 34%, rgba(221,196,147,1), transparent),
    radial-gradient(1.2px 1.2px at 30% 50%, rgba(255,255,255,.8), transparent),
    radial-gradient(1.4px 1.4px at 88% 58%, rgba(255,255,255,.85), transparent),
    radial-gradient(1.3px 1.3px at 46% 12%, rgba(255,255,255,.8), transparent),
    radial-gradient(1.7px 1.7px at 20% 74%, rgba(221,196,147,.9), transparent),
    radial-gradient(1.2px 1.2px at 70% 70%, rgba(255,255,255,.7), transparent),
    radial-gradient(1.1px 1.1px at 8% 44%, rgba(255,255,255,.7), transparent),
    radial-gradient(1.5px 1.5px at 94% 34%, rgba(255,255,255,.8), transparent);
}
@keyframes twinkle { from { opacity: .55; } to { opacity: .95; } }
@media (prefers-reduced-motion: reduce) { .hero-stars { animation: none; opacity: .8; } }
.hero-content { position: relative; max-width: 860px; }
.hero-crest {
  display: inline-flex; align-items: center; justify-content: center;
  width: clamp(96px, 13vw, 138px); aspect-ratio: 1; padding: 1.05rem;
  border-radius: 50%; margin-bottom: 1.9rem;
  background: radial-gradient(circle at 50% 42%, #fff 0%, #f5f0e7 74%, #e6dbc4 100%);
  box-shadow:
    0 0 0 1px rgba(203,167,102,.6),
    0 0 0 10px rgba(203,167,102,.09),
    0 0 0 11px rgba(203,167,102,.18),
    0 0 90px -6px rgba(203,167,102,.6),
    0 26px 54px -22px rgba(0,0,0,.7);
  animation: crestFloat 7s ease-in-out infinite;
  will-change: transform;
}
@keyframes crestFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: reduce) { .hero-crest { animation: none; } }
.hero-crest img { width: 100%; height: auto; }
.hero-eyebrow {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: .34em;
  font-size: var(--step--1); font-weight: 600; color: var(--gold-soft);
  margin-bottom: 1.15rem;
  display: inline-flex; align-items: center; gap: .85em;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: ""; width: clamp(18px, 5vw, 46px); height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-title {
  font-size: var(--step-5);
  max-width: 15ch; margin-inline: auto;
  color: #fff;
  letter-spacing: -.018em;
  text-wrap: balance; overflow-wrap: break-word;
  text-shadow: 0 6px 44px rgba(0,0,0,.55);
}
.hero-lead {
  font-size: var(--step-1); line-height: 1.55; color: var(--on-dark);
  max-width: 50ch; margin: 1.6rem auto 0; font-weight: 400;
  text-wrap: pretty;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; justify-content: center; }
.hero-note {
  margin-top: 2.1rem; font-size: var(--step--1); letter-spacing: .16em;
  color: var(--on-dark-mut); text-transform: uppercase;
}
/* scroll cue — pulls the eye past the tall hero */
.hero-cue {
  position: absolute; left: 50%; bottom: clamp(1.4rem, 4vh, 2.6rem);
  transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .64rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--on-dark-mut); z-index: 2;
}
.hero-cue span {
  width: 1px; height: 42px;
  background: linear-gradient(180deg, transparent, var(--gold-soft));
  transform-origin: top;
  animation: cueSlide 2.4s ease-in-out infinite;
}
@keyframes cueSlide { 0%,100% { transform: scaleY(.4); opacity: .35; } 50% { transform: scaleY(1); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .hero-cue span { animation: none; } }
@media (max-width: 560px) { .hero-cue { display: none; } }

/* ---------- marquee strip ---------- */
.strip {
  background: var(--ink-2); color: var(--gold-soft);
  border-block: 1px solid rgba(203,167,102,.22);
  overflow: hidden; padding: .95rem 0;
}
.strip-track {
  display: inline-flex; align-items: center; gap: 1.6rem; white-space: nowrap;
  font-family: var(--serif); font-style: italic; font-size: 1.12rem;
  animation: marquee 38s linear infinite;
}
.strip-track .dot { color: var(--gold); font-style: normal; font-size: .7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip-track { animation: none; } }

/* ---------- section basics ---------- */
.eyebrow {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: .26em;
  font-size: var(--step--1); font-weight: 650; color: var(--plum);
  margin-bottom: 1rem;
}
.eyebrow-gold { color: var(--gold); }
.section-head { max-width: 42ch; margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.section-head h2 { font-size: var(--step-3); }
.section-head-center { max-width: 46ch; margin-inline: auto; text-align: center; }

/* ---------- cosmic emblem panel (reusable) ---------- */
.cosmic-panel {
  position: relative; border-radius: 20px; overflow: hidden;
  background: radial-gradient(130% 120% at 50% 0%, #362763 0%, #241a44 46%, #140e2c 100%);
  border: 1px solid rgba(203,167,102,.28);
  box-shadow: var(--shadow);
  display: grid; place-items: center;
  aspect-ratio: 1/1; min-height: 340px;
}
.cosmic-panel::before {
  content: ""; position: absolute; inset: 0;
  background: url("photo-1.jpg") center/cover;
  opacity: .5; mix-blend-mode: screen;
}
.cosmic-panel::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 46%, rgba(203,167,102,.22), transparent 58%);
}
.cosmic-panel-tall { aspect-ratio: 4/5; }
.cosmic-emblem {
  position: relative; z-index: 3; width: 56%; aspect-ratio: 1;
  display: grid; place-items: center; padding: clamp(.8rem, 2.4vw, 1.3rem);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, #fff 0%, #f5f0e7 74%, #e6dbc4 100%);
  box-shadow:
    0 0 0 1px rgba(203,167,102,.55),
    0 0 0 8px rgba(203,167,102,.08),
    0 0 64px -12px rgba(203,167,102,.55),
    0 22px 48px -20px rgba(0,0,0,.7);
}
.cosmic-emblem img { width: 100%; height: auto; }
.orbit {
  position: absolute; border-radius: 50%; z-index: 2;
  border: 1px solid rgba(203,167,102,.24);
}
.orbit-1 { width: 62%; aspect-ratio: 1; }
.orbit-2 {
  width: 86%; aspect-ratio: 1; border-style: dashed; border-color: rgba(203,167,102,.16);
  animation: spin 44s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .orbit-2 { animation: none; } }

/* ---------- approach ---------- */
.approach { background: var(--paper); padding-block: var(--space-section); }
.approach-grid {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}
.approach-visual { position: relative; }
.approach-copy h2 { font-size: var(--step-3); margin-bottom: 1.3rem; color: var(--indigo); }
.approach-copy p { color: var(--text-mut); margin-bottom: 1.1rem; max-width: 46ch; }
.approach-points {
  list-style: none; padding: 0; margin-top: 1.8rem;
  display: grid; gap: .85rem;
}
.approach-points li {
  position: relative; padding-left: 2rem; font-weight: 500; color: var(--text-dark);
}
.approach-points li::before {
  content: "✦"; position: absolute; left: 0; top: 0; color: var(--gold); font-size: 1rem;
}

/* ---------- feature ---------- */
.feature {
  position: relative; color: var(--on-dark);
  padding-block: clamp(6rem, 12vw, 11rem);
  display: flex; align-items: center; isolation: isolate; overflow: hidden;
  background:
    radial-gradient(90% 120% at 78% 50%, #2e2154 0%, #1c1439 48%, var(--ink) 100%);
}
.feature-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.feature-bg::before {
  content: ""; position: absolute; inset: 0;
  background: url("photo-1.jpg") center/cover; opacity: .32; mix-blend-mode: screen;
}
.feature-emblem {
  position: absolute; right: -7%; top: 50%; transform: translateY(-50%);
  width: min(40%, 400px); aspect-ratio: 1; display: grid; place-items: center;
  padding: 2rem; border-radius: 50%; opacity: .92;
  background: radial-gradient(circle at 50% 42%, #fff 0%, #f5f0e7 72%, #e6dbc4 100%);
  box-shadow:
    0 0 0 1px rgba(203,167,102,.5),
    0 0 90px -10px rgba(203,167,102,.5),
    0 30px 60px -24px rgba(0,0,0,.7);
}
.feature-emblem img { width: 100%; height: auto; }
.feature-inner { display: flex; position: relative; }
.feature-card { max-width: 560px; }
.feature-card h2 { font-size: var(--step-3); color: #fff; margin-bottom: 1.2rem; }
.feature-card p { color: var(--on-dark); margin-bottom: 2rem; max-width: 48ch; }

/* ---------- services ---------- */
.services { background: var(--indigo); color: var(--on-dark); padding-block: var(--space-section); }
.services .eyebrow { color: var(--gold); }
.services .section-head h2 { color: #fff; max-width: 24ch; }
.svc-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}
.svc {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(52,39,94,.7), rgba(28,20,54,.55));
  border: 1px solid rgba(203,167,102,.16);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .4s, background .4s;
}
.svc::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold-soft), transparent);
  transition: width .5s cubic-bezier(.2,.7,.2,1);
}
.svc:hover {
  transform: translateY(-5px); border-color: rgba(203,167,102,.5);
  background: linear-gradient(180deg, rgba(60,46,108,.8), rgba(32,23,62,.6));
}
.svc:hover::before { width: 100%; }
.svc-index {
  font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: rgba(221,196,147,.55); line-height: 1; display: block; margin-bottom: 1rem;
  letter-spacing: .02em;
}
.svc-top { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: .35rem 1.5rem; margin-bottom: .9rem; }
.svc h3 { font-size: var(--step-2); color: #fff; }
.svc-price { color: var(--gold-soft); font-family: var(--sans); font-weight: 600; font-size: var(--step--1); letter-spacing: .02em; }
.svc p { color: var(--on-dark-mut); }

/* ---------- about olga ---------- */
.olga { background: var(--cream); padding-block: var(--space-section); }
.olga-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.olga-visual { position: relative; padding-bottom: 2rem; }
.olga-badge {
  position: absolute; right: -1.2rem; bottom: -.6rem;
  background: linear-gradient(160deg, #2e2154, #1c1439);
  color: var(--on-dark);
  padding: 1.2rem 1.5rem; border-radius: 14px; box-shadow: var(--shadow);
  display: grid; gap: .2rem; max-width: 210px;
  border: 1px solid rgba(203,167,102,.35);
}
.badge-num { font-family: var(--serif); font-size: 1.7rem; color: var(--gold-soft); line-height: 1; }
.badge-label { font-size: .8rem; color: var(--on-dark-mut); line-height: 1.35; }
.olga-copy h2 { font-size: var(--step-3); margin-bottom: 1.2rem; color: var(--indigo); }
.olga-lead { font-size: var(--step-1); line-height: 1.5; color: var(--text-dark); margin-bottom: 1.2rem; font-family: var(--serif); }
.olga-copy p { color: var(--text-mut); margin-bottom: 1.1rem; max-width: 60ch; }
.creds { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.8rem; }
.creds span {
  font-size: var(--step--1); font-weight: 600; color: var(--indigo);
  background: rgba(36,26,68,.06); border: 1px solid rgba(36,26,68,.14);
  padding: .5rem .95rem; border-radius: 999px;
}
/* honest credentials proof (real scanned certificates) */
.cert-row { margin-top: 2.4rem; padding-top: 2rem; border-top: 1px solid rgba(36,26,68,.12); }
.cert-lead { font-size: var(--step--1); color: var(--text-mut); margin-bottom: 1.1rem; letter-spacing: .01em; }
.cert-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 560px; }
.cert { display: grid; gap: .55rem; }
.cert img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center;
  background: #fff; border-radius: 10px;
  border: 1px solid rgba(36,26,68,.14);
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease;
}
.cert:hover img { transform: translateY(-3px); }
.cert figcaption { font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; color: var(--text-mut); font-weight: 650; }

/* ---------- voices / testimonials ---------- */
.voices { background: var(--ink-2); color: var(--on-dark); padding-block: var(--space-section); }
.voices .eyebrow { color: var(--gold); margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.voices-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }
.voice {
  background: linear-gradient(180deg, rgba(52,39,94,.5), rgba(28,20,54,.35));
  border: 1px solid rgba(203,167,102,.18); border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 2.6rem) clamp(1.6rem, 3vw, 2.4rem); position: relative;
}
.voice::before {
  content: "\201C"; font-family: var(--serif); font-size: 4rem; color: var(--gold);
  line-height: .5; position: absolute; top: 1.6rem; left: 1.4rem; opacity: .45;
}
.voice p {
  font-family: var(--serif); font-size: var(--step-1); line-height: 1.55;
  color: var(--on-dark); padding-top: 1.7rem; margin-bottom: 1.3rem; max-width: 46ch;
}
.voice cite {
  font-style: normal; font-family: var(--sans); font-weight: 650; font-size: var(--step--1);
  letter-spacing: .04em; text-transform: uppercase; color: var(--gold-soft);
}

/* ---------- toolbox ---------- */
.toolbox { background: var(--indigo-2); color: var(--on-dark); padding-block: var(--space-section); }
.toolbox .section-head h2 { color: #fff; }
.toolbox-note { color: var(--on-dark-mut); margin-top: 1rem; }
.tool-tags {
  list-style: none; padding: 0; margin: 0 auto; max-width: 920px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem;
}
.tool-tags li {
  font-size: var(--step--1); font-weight: 500; color: var(--on-dark);
  border: 1px solid rgba(203,167,102,.32); border-radius: 999px;
  padding: .55rem 1.1rem; transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.tool-tags li:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: translateY(-2px); }

/* ---------- visit ---------- */
.visit { background: var(--cream); padding-block: var(--space-section); }
.visit-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.visit-copy h2 { font-size: var(--step-3); color: var(--indigo); margin-bottom: 1.2rem; max-width: 18ch; }
.visit-copy p { color: var(--text-mut); max-width: 48ch; margin-bottom: 2rem; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.visit .btn-ghost { --btn-fg: var(--indigo); border-color: rgba(36,26,68,.3); }
.visit .btn-ghost:hover { background: rgba(36,26,68,.06); border-color: var(--indigo); color: var(--indigo); }
.visit-details {
  background: linear-gradient(165deg, #2e2154, #16102e); color: var(--on-dark); border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 2.6rem); box-shadow: var(--shadow);
  display: grid; gap: 1.4rem; border: 1px solid rgba(203,167,102,.25);
}
.detail { display: grid; gap: .25rem; padding-bottom: 1.4rem; border-bottom: 1px solid rgba(203,167,102,.16); }
.detail:last-child { padding-bottom: 0; border-bottom: 0; }
.detail-label { font-size: .74rem; text-transform: uppercase; letter-spacing: .22em; color: var(--gold-soft); font-weight: 650; }
.detail-value { font-size: var(--step-1); font-family: var(--serif); color: #fff; line-height: 1.35; }
.detail-value.link { color: var(--gold-soft); transition: color .2s; }
.detail-value.link:hover { color: #fff; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--on-dark-mut); padding-block: 3rem; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem; }
.footer-brand { display: inline-flex; align-items: center; gap: .7rem; }
.footer-mark { border-radius: 50%; }
.footer-brand .brand-name { color: #fff; text-shadow: none; }
.footer-tag { margin-right: auto; font-size: var(--step--1); max-width: 40ch; }
.footer-phone { color: var(--gold-soft); font-family: var(--serif); font-size: var(--step-1); }
.footer-phone:hover { color: #fff; }

/* ---------- spec footer (mandatory) ---------- */
.spec-footer {
  background: #0d0920; color: #9a90b4; text-align: center;
  font-size: .82rem; padding: 1.1rem 1.5rem; line-height: 1.6;
}
.spec-footer a { color: var(--gold-soft); text-decoration: underline; }
.spec-footer a:hover { color: #fff; }

/* ============================================================
   Reveal animation (progressive enhancement)
   ============================================================ */
.reveal { opacity: 1; } /* visible baseline if JS never runs */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--rd, 0) * 90ms);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .svc, .tool-tags li, .cert img { transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 940px) {
  .site-nav { display: none; }
  .approach-grid { grid-template-columns: 1fr; gap: 3rem; }
  .approach-visual { max-width: 440px; margin-inline: auto; width: 100%; }
  .feature-emblem { opacity: .28; }
  .svc-grid { grid-template-columns: 1fr; }
  .olga-grid { grid-template-columns: 1fr; gap: 4.5rem; }
  .olga-visual { max-width: 420px; }
  .voices-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .header-inner { gap: .8rem; }
  .btn-header { display: none; }
  .brand-name { font-size: 1.1rem; }
  .hero { min-height: clamp(600px, 92svh, 860px); }
  .hero-eyebrow { letter-spacing: .28em; }
  .hero-eyebrow::before, .hero-eyebrow::after { display: none; }
  .hero-actions .btn { width: 100%; }
  .cert-cards { gap: .6rem; }
  .olga-badge { right: 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-tag { margin-right: 0; }
}
