/* ============================================================
   ELITBAU - Premium Advisory Website
   Brand: Gold #b5a57d | Charcoal #141414 | Warm White #FAF8F4
   Type:  Lato (all text - client spec, no serif)
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #b5a57d;   /* CEO-specified gold */
  --gold-light:  #cbbd97;   /* lighter - headings / hovers on dark */
  --gold-dark:   #8f7f57;   /* deeper - accents / hovers on light */
  --gold-cream:  #e3d7b6;   /* legible warm-gold body text on black */
  --charcoal:    #141414;
  --charcoal-2:  #2A2A2A;
  --charcoal-3:  #3E3E3E;
  --warm-white:  #FAF8F4;
  --warm-grey:   #F0EDE7;
  --mid-grey:    #A09488;
  --text-main:   #1C1C1C;
  --text-muted:  #6B6259;
  --border:      rgba(181,165,125,.22);
  --shadow-card: 0 2px 24px rgba(20,20,20,.07);
  --radius:      4px;
  --transition:  .28s cubic-bezier(.4,0,.2,1);
  --max-w:       1200px;
  --serif:       'Lato', 'Helvetica Neue', Arial, sans-serif;  /* client wants Lato only - no serif */
  --sans:        'Lato', 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.2rem, 4.4vw, 4rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.1rem; font-family: var(--sans); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }

/* ---------- Layout Helpers ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.section { padding: clamp(4rem, 8vw, 8rem) 0; }
.section--dark { background: var(--charcoal); color: var(--warm-white); }
.section--dark p { color: var(--gold-cream); }
.section--grey { background: var(--warm-grey); }
.section--gold-line { border-top: 1px solid var(--border); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.section-header { max-width: 680px; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }

.gold-rule {
  width: 44px; height: 2px;
  background: var(--gold);
  margin: 1.4rem 0 1.8rem;
}
.centered .gold-rule { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .92em 2.2em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(181,165,125,.35);
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: #fff;
  box-shadow: 0 6px 28px rgba(181,165,125,.45);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--charcoal); }
.btn-outline-white {
  background: transparent;
  color: var(--warm-white);
  border: 1.5px solid rgba(250,248,244,.45);
}
.btn-outline-white:hover {
  background: rgba(250,248,244,.08);
  border-color: var(--warm-white);
}

/* ---------- NAV ---------- */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}
#nav.scrolled {
  background: rgba(20,20,20,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(181,165,125,.18);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--warm-white);
  letter-spacing: .04em;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-logo img { height: 46px; width: auto; display: block; }

/* Animated logo - the logo's halftone dots rendered as a gentle traveling wave
   (injected by main.js as inline SVG; falls back to the static image if JS is off) */
.nav-logo--anim { line-height: 0; }
.logo-wave { height: 46px; width: auto; display: block; overflow: visible; }
.footer-brand .nav-logo--anim .logo-wave { height: 62px; }
.logo-wave .lw-dots ellipse {
  fill: var(--gold);
  transform-box: fill-box; transform-origin: center;
  opacity: var(--a, 1);
  /* STEP 1 · on load: slow assemble - dots converge from scattered points into the logo */
  animation: logoAssemble var(--asmDur, 2.6s) cubic-bezier(.16, 1, .3, 1) var(--ad, 0s) both;
}
/* STEP 2 · main.js adds .is-live once assembled → settle into the gentle depth-glow loop */
.logo-wave.is-live .lw-dots ellipse {
  animation: logoWave var(--dur, 3s) ease-in-out var(--d, 0s) infinite;
}
.nav-logo--anim:hover .logo-wave.is-live .lw-dots ellipse { --dur: 1.8s; }

@keyframes logoAssemble {
  0%   { transform: translate(var(--sx, 0), var(--sy, 0)) scale(.15); opacity: 0; }
  55%  { opacity: var(--a, 1); }
  100% { transform: translate(0, 0) scale(1); opacity: var(--a, 1); }
}
@keyframes logoWave {            /* depth-glow settle loop */
  0%, 100% { transform: scale(.78); opacity: calc(var(--a, 1) * .52); }
  50%      { transform: scale(1.18); opacity: var(--a, 1); }
}
/* To revert to glow-only: set the ellipse animation to logoWave …infinite and drop .is-live. */
@media (prefers-reduced-motion: reduce) {
  .logo-wave .lw-dots ellipse,
  .logo-wave.is-live .lw-dots ellipse { animation: none; transform: none; opacity: var(--a, 1); }
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(250,248,244,.72);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links .members-link {
  color: rgba(250,248,244,.42);
  border: 1px solid rgba(250,248,244,.16);
  padding: .4em .9em;
  border-radius: 2px;
  font-size: .72rem;
}
.nav-links .members-link:hover { color: var(--gold); border-color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 1.4rem; }
.lang-toggle {
  display: flex; align-items: center; gap: .3rem;
  font-size: .75rem; font-weight: 600; letter-spacing: .1em;
  background: none; border: none; cursor: pointer;
}
.lang-btn {
  padding: .28em .6em;
  border-radius: 2px;
  color: rgba(250,248,244,.5);
  background: transparent;
  border: none; cursor: pointer;
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  transition: color var(--transition), background var(--transition);
}
.lang-btn.active {
  color: var(--gold);
  background: rgba(181,165,125,.14);
  border-radius: 2px;
}
.nav-cta { font-size: .78rem !important; padding: .6em 1.4em !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--warm-white); transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0; z-index: 999;
  background: rgba(20,20,20,.97);
  backdrop-filter: blur(16px);
  padding: 1.5rem 2rem 2rem;
  flex-direction: column; gap: 1rem;
  border-top: 1px solid rgba(181,165,125,.2);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: .9rem; font-weight: 500;
  color: rgba(250,248,244,.72);
  letter-spacing: .08em; text-transform: uppercase;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-lang { display: flex; gap: .6rem; margin-top: .5rem; }

/* ---------- HERO ---------- */
#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  background: var(--charcoal);
  overflow: hidden;
}
/* Animated gradient - the "something moving" placeholder until drone video lands */
.hero-bg {
  position: absolute; inset: -12%; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(181,165,125,.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 20% 80%, rgba(181,165,125,.06) 0%, transparent 55%),
    linear-gradient(160deg, #141414 0%, #1e1a15 60%, #141414 100%);
  background-size: 170% 170%, 170% 170%, 100% 100%;
  animation: heroDrift 24s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  0%   { background-position: 0% 0%, 100% 100%, 0 0; }
  100% { background-position: 55% 45%, 35% 65%, 0 0; }
}

/* Drone footage - covers the gradient when assets/hero-loop.mp4 exists; hidden until then (see main.js) */
.hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
  animation: heroZoom 28s ease-in-out infinite alternate;
}
.hero-video.is-playing { opacity: 1; }
@keyframes heroZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.12); }
}

/* Dark wash keeps the headline legible over any future video */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  /* Darker on the left to protect the headline; lets the drone footage breathe on the right */
  background:
    linear-gradient(105deg, rgba(20,20,20,.86) 0%, rgba(20,20,20,.6) 42%, rgba(20,20,20,.28) 100%),
    linear-gradient(to top, rgba(20,20,20,.55) 0%, transparent 30%);
}

/* Golden dot-wave - the logo's halftone wave, animated on a canvas (main.js).
   Sits above the overlay, below the content; screen blend makes gold glow on
   the dark hero. Fades in once the first frame paints (no flash). */
.dot-wave {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity .9s ease;
  mix-blend-mode: screen;
}
.dot-wave.is-ready { opacity: 1; }
/* When a drone clip plays, the dots recede so the footage leads */
.hero-video.is-playing ~ .dot-wave.is-ready { opacity: .28; }

/* Wave strips between sections - a hard two-tone band: the light section
   colour fills the top half, charcoal the bottom half, meeting at a straight
   hard edge dead-centre. The animated gold dot-wave (createDotWave, divider
   mode) is centred on that edge so it straddles the seam - half the dots over
   the light section above, half over the dark section below. Normal blend
   (not screen) so the dots read on the light half too. */
.wave-divider {
  position: relative;
  height: clamp(96px, 12vw, 154px);
  overflow: hidden;
  background: linear-gradient(180deg, var(--warm-white) 0 50%, var(--charcoal) 50% 100%);
}
.wave-divider--grey { background: linear-gradient(180deg, var(--warm-grey) 0 50%, var(--charcoal) 50% 100%); }
.wave-divider canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity .9s ease;
}
.wave-divider canvas.is-ready { opacity: 1; }
.hero-content { position: relative; z-index: 2; padding-top: 72px; max-width: 1060px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block; width: 28px; height: 1px;
  background: var(--gold);
}
#hero h1 {
  color: var(--warm-white);
  margin-bottom: 1.1rem;
  max-width: 1000px;
  line-height: 1.08;
}
#hero h1 em {
  font-style: normal;
  color: var(--gold);
  background: linear-gradient(100deg, var(--gold) 0%, var(--gold-light) 42%, #fff6df 50%, var(--gold-light) 58%, var(--gold) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 7s linear infinite;
}
@keyframes goldShimmer { to { background-position: 220% center; } }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  color: rgba(250,248,244,.66);
  max-width: 660px;
  line-height: 1.65;
  margin-bottom: 1.9rem;
}
.hero-sub strong { color: var(--gold-light); font-weight: 700; }
.hero-actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2.4rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(250,248,244,.3); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2.4s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(181,165,125,.5), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- PROBLEM / SOLUTION ---------- */
#problem .chain {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0;
  margin: 2.5rem 0 3.5rem;
  position: relative;
}
#problem .chain::before {
  content: '';
  position: absolute; top: 28px; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), var(--border), transparent);
  z-index: 0;
}
.chain-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 1rem .5rem;
  position: relative; z-index: 1;
  appearance: none; -webkit-appearance: none;
  background: none; border: 0; font: inherit; cursor: pointer;
}
.chain-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--warm-white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: .9rem;
  position: relative;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.chain-step:hover .chain-num,
.chain-step:focus-visible .chain-num {
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(181,165,125,.1);
}
.chain-step.is-active .chain-num {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(181,165,125,.18);
}
.chain-label {
  font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
  transition: color .25s ease;
}
.chain-step:hover .chain-label,
.chain-step.is-active .chain-label { color: var(--gold-dark); }

.chain-detail {
  margin: -1.5rem 0 3.5rem;
  padding: 1.6rem 1.9rem;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  background: var(--warm-white);
}
.chain-detail-item { display: none; }
.chain-detail-item.is-open { display: block; animation: chainFade .35s ease; }
.chain-detail h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold-dark);
  margin-bottom: .5rem;
}
.chain-detail p {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 75ch;
  margin: 0;
}
@keyframes chainFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.solution-item {
  background: var(--warm-white);
  padding: 2.2rem 2rem;
  display: flex; gap: 1.2rem; align-items: flex-start;
}
.solution-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(181,165,125,.1);
  border-radius: 2px;
}
.solution-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.6; }
.solution-item h4 { margin-bottom: .35rem; color: var(--text-main); }
.solution-item p { font-size: .92rem; }
/* With/Without comparison: recede the "without", spotlight the "with" */
.solution-item--without { background: var(--warm-grey); }
.solution-item--without .solution-icon { background: rgba(20,20,20,.05); }
.solution-item--without .solution-icon svg { stroke: var(--text-muted); }
.solution-item--with {
  background: linear-gradient(160deg, #FAF8F4 0%, #F1E7CE 100%);
  box-shadow: inset 0 0 0 2px var(--gold);
}
.solution-item--with .solution-icon { background: var(--gold); }
.solution-item--with .solution-icon svg { stroke: var(--charcoal); }
.solution-item--with h4 { color: var(--gold-dark); }
.solution-item--with p { color: var(--text-main); font-weight: 500; }

/* ---------- L.E.A.D. ---------- */
#lead.section--dark .lead-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(181,165,125,.15);
  border: 1px solid rgba(181,165,125,.15);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1rem;
}
.lead-card {
  background: var(--charcoal-2);
  padding: 2.4rem 1.8rem;
  position: relative;
  transition: background var(--transition);
}
.lead-card:hover { background: var(--charcoal-3); }
.lead-letter {
  font-family: var(--serif);
  font-size: 3.6rem;
  line-height: 1;
  color: var(--gold);
  opacity: .25;
  position: absolute; top: 1.5rem; right: 1.8rem;
  pointer-events: none;
  transition: opacity var(--transition);
}
.lead-card:hover .lead-letter { opacity: .42; }
.lead-num {
  font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}
.lead-card h3 {
  color: var(--gold-light);
  font-size: 1.3rem;
  margin-bottom: .9rem;
}
.lead-card p {
  font-size: .92rem;
  color: rgba(227,215,182,.82);
  line-height: 1.75;
}
.lead-trademark {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(181,165,125,.3);
  padding: .4em .9em;
  border-radius: 2px;
  margin-bottom: 2rem;
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  background: var(--warm-white);
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { border-color: rgba(181,165,125,.45); box-shadow: var(--shadow-card); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  border-color: rgba(181,165,125,.4);
  background: linear-gradient(160deg, #FAF8F4 0%, #F5EDD8 100%);
}
.service-card.featured::before { transform: scaleX(1); }
.service-badge {
  font-size: .64rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: .3em .8em; border-radius: 2px;
  display: inline-block;
  margin-bottom: 1.2rem;
}
.service-card h3 { margin-bottom: .6rem; }
.service-card > p { margin-bottom: 1.4rem; font-size: .95rem; }
.pricing-tiers { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.6rem; }
.tier {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: .35rem 1rem; flex-wrap: wrap;
  padding: .6rem .9rem;
  background: rgba(20,20,20,.04);
  border-radius: 2px;
  border-left: 2px solid transparent;
  transition: border-color var(--transition);
}
.tier:hover { border-left-color: var(--gold); }
.tier-label { font-size: .82rem; font-weight: 500; color: var(--text-main); }
.tier-price { font-family: var(--serif); font-size: 1.1rem; color: var(--gold); font-weight: 600; }
.service-cta { margin-top: auto; }
.tier--buy { text-decoration: none; cursor: pointer; }
.tier--buy:hover { border-left-color: var(--gold); background: rgba(20,20,20,.07); }
.tier-buy { display: inline-flex; align-items: baseline; gap: .5rem; }
.tier-arrow { color: var(--gold); font-weight: 700; transition: transform var(--transition); }
.tier--buy:hover .tier-arrow { transform: translateX(3px); }

/* ---------- MISSION PROMISE BAND ---------- */
.mission-band { background: var(--charcoal); padding: 1.05rem 0; }
.mission-band-list {
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap;
  gap: .6rem 2.6rem; list-style: none; margin: 0; padding: 0;
}
.mission-band-list li {
  position: relative;
  font-size: .8rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-light);
}
.mission-band-list li + li::before {
  content: '·'; position: absolute; left: -1.35rem; top: -.05em;
  color: rgba(181,165,125,.55); font-weight: 400;
}

/* ---------- CONSULT OFFER (Individual Consulting, the hero offer) ---------- */
.consult-offer {
  border: 1px solid rgba(181,165,125,.4);
  border-radius: var(--radius);
  background: linear-gradient(160deg, #FAF8F4 0%, #F5EDD8 100%);
  padding: clamp(1.5rem, 3vw, 2.6rem);
  margin-bottom: 3.2rem;
}
.consult-offer-head { text-align: center; margin-bottom: 1.8rem; }
.consult-offer-head .service-badge { margin-bottom: 1rem; }
.consult-offer-lead {
  max-width: 620px; margin: 0 auto;
  font-size: 1rem; line-height: 1.6; color: var(--text-main);
}
.consult-tiers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
  margin-bottom: 1.6rem;
}
.consult-tier {
  display: flex; flex-direction: column; gap: .3rem;
  padding: 1.7rem 1.5rem;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-main); text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.consult-tier:hover { border-color: rgba(181,165,125,.55); box-shadow: var(--shadow-card); transform: translateY(-3px); }
.consult-tier--featured { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(181,165,125,.28); }
.ct-flag {
  align-self: flex-start;
  font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--charcoal); background: var(--gold);
  padding: .3em .8em; border-radius: 2px; margin-bottom: .4rem;
}
.ct-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--text-main); }
.ct-hours { font-size: .78rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--text-muted); }
.ct-price { font-family: var(--serif); font-size: 2.1rem; font-weight: 700; line-height: 1.1; color: var(--gold-dark); margin-top: .4rem; }
.price-old { display: block; font-size: .5em; font-weight: 400; color: var(--text-muted); text-decoration: line-through; margin-bottom: .1em; }
.ct-rate { font-size: .78rem; color: var(--text-muted); }
.ct-best { font-size: .9rem; line-height: 1.55; color: var(--text-main); margin: .7rem 0 1.2rem; }
.ct-buy { display: flex; width: 100%; justify-content: center; margin-top: auto; }
.consult-backup {
  display: flex; flex-wrap: wrap; gap: .7rem 2rem; align-items: center; justify-content: center;
}
.consult-backup .ct-link {
  font-size: .92rem; font-weight: 600; color: var(--gold-dark); text-decoration: none;
  border-bottom: 1px solid transparent; transition: border-color var(--transition);
}
.consult-backup .ct-link:hover { border-bottom-color: var(--gold); }
.consult-fineprint { text-align: center; font-size: .76rem; color: var(--text-muted); margin-top: 1rem; }

/* Discount code modal */
.discount-open {
  appearance: none; -webkit-appearance: none;
  background: none; border: 0; padding: 0; cursor: pointer;
  font: inherit; font-size: .92rem; font-weight: 600; color: var(--gold-dark);
  border-bottom: 1px solid transparent; transition: border-color var(--transition);
}
.discount-open:hover { border-bottom-color: var(--gold); }
.dc-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(26, 24, 20, .55);
  display: flex; align-items: center; justify-content: center;
  padding: 1.2rem;
}
.dc-overlay[hidden], .dc-overlay [hidden] { display: none !important; }
.dc-box {
  position: relative;
  width: min(92vw, 460px);
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 2.2rem 2rem 2rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
  text-align: center;
}
.dc-close {
  position: absolute; top: .55rem; right: .8rem;
  appearance: none; -webkit-appearance: none;
  background: none; border: 0; padding: .2rem; cursor: pointer;
  font-size: 1.6rem; line-height: 1; color: var(--text-muted);
}
.dc-close:hover { color: var(--text-main); }
.dc-box h3 { font-size: 1.3rem; margin-bottom: 1.2rem; }
.dc-form { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; }
.dc-input {
  flex: 1 1 190px;
  padding: .7rem .95rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  font: inherit; font-size: .95rem; letter-spacing: .09em; text-transform: uppercase;
  background: #fff; color: var(--text-main);
}
.dc-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(181, 165, 125, .25); }
.dc-error { margin: 1rem 0 0; font-size: .85rem; color: #a4453c; }
.dc-success .dc-ok { font-size: .92rem; margin-bottom: 1.1rem; }
.dc-success .dc-pkg { display: flex; justify-content: center; width: 100%; margin-top: .6rem; }

/* Subordinate services */
.services-more-title {
  text-align: center; font-family: var(--sans); font-weight: 700;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-muted); margin: 0 0 1.6rem;
}
.services-grid--secondary { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.services-grid--secondary .service-card { padding: 1.8rem 1.6rem; }
.services-grid--secondary .service-card h3 { font-size: 1.15rem; }
.services-grid--secondary .service-card > p { font-size: .88rem; }

/* ---------- TESTIMONIALS ---------- */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-bottom: 1.4rem;
}
.testimonial-card {
  margin: 0; padding: 2.2rem 1.9rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--warm-white);
  display: flex; flex-direction: column; gap: 1.3rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover { box-shadow: 0 4px 24px rgba(181,165,125,.12); transform: translateY(-2px); }
.testimonial-card blockquote {
  margin: 0; position: relative; padding-top: 1.6rem;
  font-size: .98rem; line-height: 1.7; color: var(--text-main);
}
.testimonial-card blockquote::before {
  content: '\201C'; position: absolute; top: .1rem; left: -.3rem;
  font-family: var(--serif); font-size: 3rem; line-height: 1;
  color: rgba(181,165,125,.45);
}
.testimonial-card figcaption { margin-top: auto; font-size: .82rem; color: var(--text-muted); }
.testimonial-card figcaption strong { color: var(--gold-dark); }
.testimonial-note { text-align: center; font-size: .78rem; font-style: italic; color: var(--text-muted); }

@media (max-width: 680px) {
  .consult-tiers { grid-template-columns: 1fr; }
}

/* ---------- OUTCOMES ---------- */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.outcome-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--warm-white);
  transition: box-shadow var(--transition), transform var(--transition);
}
.outcome-item:hover { box-shadow: 0 4px 24px rgba(181,165,125,.12); transform: translateY(-2px); }
.outcome-icon {
  width: 52px; height: 52px; margin: 0 auto 1.1rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(181,165,125,.1);
  border-radius: 50%;
}
.outcome-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.6; }
.outcome-item h4 { margin-bottom: .4rem; font-family: var(--sans); font-weight: 700; font-size: .92rem; text-transform: uppercase; letter-spacing: .08em; }
.outcome-item p { font-size: .87rem; line-height: 1.6; }

.trust-badges {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--warm-grey);
}
.trust-badge {
  display: flex; align-items: center; gap: .6rem;
  font-size: .8rem; font-weight: 500; color: var(--text-muted);
  padding: .5rem 1rem;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 2px;
}
.trust-badge svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.8; }

/* ---------- PROOF ---------- */
#proof { background: var(--warm-grey); }
.reference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.ref-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--warm-white);
  transition: box-shadow var(--transition), transform var(--transition);
}
.ref-card:hover { box-shadow: 0 8px 36px rgba(20,20,20,.1); transform: translateY(-4px); }
.ref-visual {
  height: 180px;
  background: linear-gradient(145deg, var(--charcoal-2) 0%, #1C1710 100%);
  position: relative;
  display: flex; align-items: flex-end;
  padding: 1.4rem 1.6rem;
  overflow: hidden;
}
.ref-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(181,165,125,.12) 0%, transparent 65%);
}
.ref-location {
  position: relative; z-index: 1;
  font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(20,20,20,.7);
  border: 1px solid rgba(181,165,125,.3);
  padding: .35em .8em; border-radius: 2px;
}
.ref-area-badge {
  position: absolute; top: 1.2rem; right: 1.4rem; z-index: 1;
  font-family: var(--serif); font-size: 1.4rem; color: var(--warm-white);
  opacity: .18;
  line-height: 1;
  white-space: nowrap;
}
.ref-body { padding: 1.6rem; }
.ref-body h3 { margin-bottom: .4rem; font-size: 1.2rem; }
.ref-meta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin: .8rem 0 1rem;
}
.ref-tag {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(181,165,125,.1);
  padding: .3em .7em; border-radius: 2px;
}
.ref-body p { font-size: .9rem; }

/* Logo strip */
.logo-strip {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logo-strip-label {
  text-align: center;
  font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 1.8rem;
}
.logo-items {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1.2rem 2.4rem;
}
.logo-item {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--mid-grey);
  letter-spacing: .04em;
  transition: color var(--transition);
  padding: .5rem 1rem;
  border: 1px solid transparent;
  border-radius: 2px;
}
.logo-item:hover { color: var(--gold); border-color: var(--border); }

/* ---------- SELECTED WORK ---------- */
.work-feature {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.6rem;
}
.work-feature-main {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
}
.work-feature-main img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .7s ease;
}
.work-feature-main:hover img { transform: scale(1.04); }
.work-feature-body { display: flex; flex-direction: column; justify-content: center; }
#work .ref-tag { color: var(--gold-light); background: rgba(181,165,125,.16); align-self: flex-start; }
.work-feature-body h3 { color: var(--gold-light); font-size: clamp(1.5rem, 2.4vw, 2rem); margin: .7rem 0 .8rem; }
.work-feature-body p { color: var(--gold-cream); margin-bottom: 1.4rem; }
.work-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
.work-thumbs img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 3px; display: block; opacity: .9;
  transition: transform .5s ease, opacity .3s ease;
}
.work-thumbs img:hover { transform: scale(1.05); opacity: 1; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .8rem;
  margin-top: 1.6rem;
}
.work-grid figure {
  margin: 0; overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
}
.work-grid img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .7s ease;
}
.work-grid figure:hover img { transform: scale(1.06); }

/* ---------- WORK GALLERY (visual only, no case-study links) ---------- */
.gallery-filters {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .55rem;
  margin-bottom: clamp(1.8rem, 3.5vw, 2.8rem);
}
.gallery-filter {
  font-family: var(--sans);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-cream);
  background: transparent;
  border: 1px solid rgba(181,165,125,.3);
  border-radius: 999px;
  padding: .5rem 1.05rem;
  cursor: pointer;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}
.gallery-filter:hover { color: var(--gold-light); border-color: rgba(181,165,125,.6); }
.gallery-filter.active {
  color: var(--charcoal);
  background: var(--gold);
  border-color: var(--gold);
}
/* masonry-style wall via CSS columns - varying heights, immersive */
.gallery-wall { column-count: 4; column-gap: .8rem; }
.gallery-item {
  break-inside: avoid;
  margin: 0 0 .8rem;
  overflow: hidden;
  border-radius: var(--radius);
  line-height: 0;
}
.gallery-item img {
  width: 100%; height: auto; display: block;
  filter: saturate(.92);
  transition: transform .7s ease, filter .5s ease;
}
.gallery-item:hover img { transform: scale(1.05); filter: saturate(1.06); }
.gallery-item.is-hidden { display: none; }
@media (max-width: 1024px) { .gallery-wall { column-count: 3; } }
@media (max-width: 720px)  { .gallery-wall { column-count: 2; } }
@media (max-width: 440px)  { .gallery-wall { column-count: 1; } }

/* Founder mini-card (contact) */
.founder { display: flex; align-items: center; gap: 1.1rem; margin-top: 2.2rem; }
.founder img {
  width: 88px; height: 88px; flex-shrink: 0;
  border-radius: 50%; object-fit: cover; object-position: 42% 30%;
  border: 2px solid rgba(181,165,125,.5);
}
.founder-meta strong {
  display: block; font-family: var(--serif);
  font-size: 1.25rem; color: var(--gold-light); font-weight: 600;
}
.founder-meta span { font-size: .85rem; color: var(--gold-cream); line-height: 1.4; }

/* ---------- LEAD CAPTURE ---------- */
#contact.section--dark {
  background: linear-gradient(160deg, #161410 0%, #141414 60%, #1A1508 100%);
  position: relative; overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 80% at 80% 50%, rgba(181,165,125,.07) 0%, transparent 60%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  position: relative; z-index: 1;
}
.contact-left h2 { color: var(--gold); }
.contact-left p { color: var(--gold-cream); margin-bottom: 2rem; }
.voucher-box {
  border: 1px solid rgba(181,165,125,.3);
  border-radius: var(--radius);
  padding: 1.8rem;
  background: rgba(181,165,125,.06);
  margin-top: 2.5rem;
}
.voucher-box .eyebrow { margin-bottom: .6rem; }
.voucher-box h3 { color: var(--gold); margin-bottom: .5rem; font-size: 1.3rem; }
.voucher-box p { font-size: .9rem; }

.contact-form {
  background: rgba(250,248,244,.04);
  border: 1px solid rgba(181,165,125,.18);
  border-radius: var(--radius);
  padding: 2.4rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(227,215,182,.72);
  margin-bottom: .5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .85rem 1rem;
  background: rgba(250,248,244,.07);
  border: 1px solid rgba(181,165,125,.2);
  border-radius: var(--radius);
  color: var(--warm-white);
  font-family: var(--sans);
  font-size: .92rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(250,248,244,.3); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group.checkbox { display: flex; align-items: flex-start; gap: .8rem; }
.form-group.checkbox input[type=checkbox] {
  width: 18px; height: 18px; min-width: 18px;
  padding: 0;
  accent-color: var(--gold);
  margin-top: 2px;
  cursor: pointer;
}
.form-group.checkbox label {
  font-size: .8rem; letter-spacing: 0; text-transform: none; color: rgba(250,248,244,.5);
  line-height: 1.5;
}
.form-group.checkbox label a { color: var(--gold); }
.form-submit { width: 100%; justify-content: center; margin-top: .4rem; }
.form-note {
  text-align: center; font-size: .74rem;
  color: rgba(250,248,244,.3);
  margin-top: .9rem;
}

/* ---------- FOOTER ---------- */
#footer {
  background: #0D0D0D;
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(181,165,125,.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 2rem;
}
.footer-brand .nav-logo { display: inline-block; margin-bottom: 1.2rem; }
.footer-brand .nav-logo img { height: 62px; width: auto; display: block; }
.footer-brand p { font-size: .9rem; color: rgba(227,215,182,.6); line-height: 1.75; max-width: 320px; }
.footer-col h4 {
  font-family: var(--sans); font-size: .74rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a, .footer-col address {
  font-size: .9rem; color: rgba(227,215,182,.66);
  font-style: normal; line-height: 1.75;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .8rem; color: rgba(227,215,182,.45); }
.footer-bottom a { color: rgba(227,215,182,.7); font-size: .8rem; }
.footer-bottom a:hover { color: var(--gold); }
.footer-lang { display: flex; gap: .4rem; }

/* ---------- BACKGROUND BLUEPRINT MOTIF ---------- */
.section, #footer { position: relative; }
.section > .container, #footer > .container { position: relative; z-index: 1; }

.blueprint { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blueprint::before, .blueprint::after {
  content: ""; position: absolute; inset: 0;
  background: url(assets/blueprint.svg) center / 760px auto repeat;
}
.blueprint::before { opacity: .08; }            /* faint base plan */
.blueprint::after {                              /* travelling glow */
  opacity: .15;
  filter: blur(.5px);
  -webkit-mask: radial-gradient(circle, #000 6%, transparent 62%) 0 0 / 62% 62% no-repeat;
          mask: radial-gradient(circle, #000 6%, transparent 62%) 0 0 / 62% 62% no-repeat;
  animation: blueprintSweep 32s ease-in-out infinite alternate;
}
#work .blueprint::after    { animation-delay: -11s; }
#contact .blueprint::after { animation-delay: -22s; }
#footer .blueprint::after  { animation-delay: -6s; }
/* Dark sections: fainter than light, glow brightens via screen blend */
.section--dark .blueprint::before, #footer .blueprint::before { opacity: .03; }
.section--dark .blueprint::after,  #footer .blueprint::after  { opacity: .1; mix-blend-mode: screen; }

#problem  .blueprint::after { animation-delay: -19s; }
#services .blueprint::after { animation-delay: -16s; }
#outcomes .blueprint::after { animation-delay: -28s; }
#proof    .blueprint::after { animation-delay: -8s; }
@keyframes blueprintSweep {
  0%   { -webkit-mask-position: 8% 0%;    mask-position: 8% 0%; }
  50%  { -webkit-mask-position: 92% 65%;  mask-position: 92% 65%; }
  100% { -webkit-mask-position: 25% 100%; mask-position: 25% 100%; }
}

/* ============================================================
   SUBPAGES - page hero, team, blog, article, footer social
   ============================================================ */
.nav-link.active { color: var(--gold); }

.page-hero {
  position: relative; overflow: hidden;
  background: var(--charcoal);
  padding: calc(72px + clamp(2.6rem, 6vw, 5rem)) 0 clamp(2.6rem, 5vw, 4.5rem);
  text-align: center;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero .blueprint::before { opacity: .035; }
.page-hero .blueprint::after  { opacity: .1; mix-blend-mode: screen; }
.page-hero h1 { color: var(--warm-white); font-size: clamp(2.3rem, 4.6vw, 3.6rem); }
.page-hero .gold-rule { margin-left: auto; margin-right: auto; }
.page-hero p { color: var(--gold-cream); max-width: 640px; margin: 0 auto; }
.page-back {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
}

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.6rem; }
.team-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2.4rem 2rem; background: var(--warm-white); text-align: center;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); border-color: rgba(181,165,125,.45); }
.team-photo, .team-avatar {
  width: 132px; height: 132px; border-radius: 50%;
  margin: 0 auto 1.3rem; border: 2px solid rgba(181,165,125,.4);
}
.team-photo { object-fit: cover; object-position: 45% 28%; }
.team-avatar {
  display: flex; align-items: center; justify-content: center;
  background: rgba(181,165,125,.12); color: var(--gold);
  font-size: 2.6rem; font-weight: 700;
}
.team-card h3 { font-size: 1.45rem; margin-bottom: .25rem; }
.team-role { color: var(--gold-dark); font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.team-card p { font-size: .95rem; }
.team-links { display: flex; justify-content: center; gap: .8rem; margin-top: 1.2rem; }
.team-links a { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--text-muted); transition: var(--transition); }
.team-links a:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.team-links svg { width: 17px; height: 17px; }

/* Blog listing */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 1.6rem; }
.blog-card {
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  background: var(--warm-white); display: flex; flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover { box-shadow: 0 8px 36px rgba(20,20,20,.1); transform: translateY(-4px); }
.blog-card-media {
  aspect-ratio: 16 / 9; position: relative; overflow: hidden;
  background: linear-gradient(145deg, var(--charcoal-2) 0%, #1C1710 100%);
  display: flex; align-items: flex-end; padding: 1rem 1.2rem;
}
.blog-card-media::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(181,165,125,.16) 0%, transparent 65%); }
.blog-card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.blog-cat { position: relative; z-index: 1; font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); background: rgba(20,20,20,.7); border: 1px solid rgba(181,165,125,.3); padding: .3em .7em; border-radius: 2px; }
.blog-card-body { padding: 1.6rem; display: flex; flex-direction: column; flex: 1; }
.blog-date { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .6rem; }
.blog-card h3 { font-size: 1.25rem; margin-bottom: .6rem; line-height: 1.3; }
.blog-card h3 a { color: var(--text-main); }
.blog-card h3 a:hover { color: var(--gold-dark); }
.blog-card p { font-size: .92rem; flex: 1; }
.blog-readmore { margin-top: 1.2rem; font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-dark); display: inline-block; }
.blog-card:hover .blog-readmore { color: var(--gold); }
.blog-readmore.disabled { color: var(--mid-grey); pointer-events: none; }

/* Article */
.article { max-width: 740px; margin: 0 auto; }
.article-body p { margin-bottom: 1.2rem; }
.article-body ol, .article-body ul { margin: 0 0 1.4rem 1.3rem; }
.article-body li { font-size: 1.04rem; color: var(--text-muted); margin-bottom: .8rem; line-height: 1.75; }
.article-body li strong { color: var(--text-main); }

/* Footer social */
.footer-social { display: flex; gap: .7rem; margin-top: 1.2rem; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(181,165,125,.25); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--gold-cream); transition: var(--transition); }
.footer-social a:hover { background: rgba(181,165,125,.14); color: var(--gold); border-color: var(--gold); }
.footer-social svg { width: 17px; height: 17px; }

/* Article body headings, cover hero, values grid */
.article-body h2, .article-body h3, .article-body h4 {
  font-size: 1.3rem; margin: 2rem 0 .7rem; color: var(--text-main); font-weight: 700;
}
.article-body a { color: var(--gold-dark); text-decoration: underline; }
.page-hero--cover { background-size: cover; background-position: center; }
.page-hero--cover::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(180deg, rgba(20,20,20,.5) 0%, rgba(20,20,20,.84) 100%); }
.page-hero--cover > .container { position: relative; z-index: 1; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.4rem; margin-top: 2.4rem; }
.value-item { padding: 1.7rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--warm-white); }
.value-item h4 { color: var(--gold-dark); margin-bottom: .5rem; font-family: var(--sans); font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; }
.value-item p { font-size: .9rem; }

/* ---------- UTILITY ---------- */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-1 { margin-top: .6rem; }
.mt-2 { margin-top: 1.2rem; }
.mt-3 { margin-top: 2rem; }
.hide-en [lang="en"], .hide-sl [lang="sl"] { display: none !important; }

/* ---------- ANIMATIONS ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-bg, .hero-video, #hero h1 em, .hero-scroll,
  .blueprint::before, .blueprint::after {
    animation: none !important;
  }
  /* dot-wave renders a single static frame in JS; show it instantly, no fade */
  .dot-wave, .wave-divider canvas { transition: none; }
  [data-reveal] { transition: none; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .lead-cards { grid-template-columns: 1fr 1fr !important; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .work-feature { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .lead-cards { grid-template-columns: 1fr !important; }
  .reference-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  #problem .chain { grid-template-columns: repeat(3, 1fr); }
  #problem .chain::before { display: none; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 420px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .outcomes-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MEMBERS - Knowledge Hub: library gate & client-portal stub
   ============================================================ */
.nav-links .members-link.active { color: var(--gold); border-color: var(--gold); }

/* Members' library - downloadable resource cards */
.library-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: 1rem; margin-top: 2.4rem; }
.lib-item {
  display: flex; align-items: flex-start; gap: .9rem;
  padding: 1.1rem 1.2rem; background: var(--warm-white);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.lib-item:hover { border-color: rgba(181,165,125,.5); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.lib-item .lib-icon { color: var(--gold-dark); flex-shrink: 0; line-height: 0; margin-top: .15rem; }
.lib-item .lib-icon svg { width: 22px; height: 22px; }
.lib-item h4 { font-family: var(--sans); font-size: .98rem; margin-bottom: .25rem; }
.lib-tag { display: inline-flex; align-items: center; gap: .4em; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.lib-tag svg { width: 13px; height: 13px; }

/* Members access form */
.members-gate { max-width: 540px; margin-top: 2.4rem; }
.members-gate form { display: flex; gap: .6rem; flex-wrap: wrap; }
.members-gate input[type="email"] {
  flex: 1; min-width: 220px; font: inherit; font-size: .95rem;
  padding: .85em 1.1em; color: var(--text-main); background: var(--warm-white);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.members-gate input[type="email"]:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(181,165,125,.15); }
.members-gate small { display: block; margin-top: .8rem; color: var(--text-muted); font-size: .78rem; }

/* Client-portal preview chips */
.portal-preview { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; margin: 1.9rem 0; }
.portal-metric {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .5em 1em; font-size: .74rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gold-cream);
  background: rgba(181,165,125,.06); border: 1px solid rgba(181,165,125,.3); border-radius: 2px;
}
.portal-metric svg { width: 15px; height: 15px; color: var(--gold); }
.btn.is-locked { opacity: .5; cursor: default; pointer-events: none; }

/* ============================================================
   REFERENCES - homepage image cards, listing grid, detail pages
   ============================================================ */

/* Homepage flagship cards become image-backed links */
.ref-card-link { display: block; color: inherit; }
.ref-card-link:hover { color: inherit; }
.ref-visual--img { background-size: cover; background-position: center; }
.ref-visual--img::before {
  background: linear-gradient(180deg, rgba(20,20,20,.1) 0%, rgba(20,20,20,.28) 45%, rgba(20,20,20,.8) 100%);
}
.ref-card-link .ref-body h3 { transition: color var(--transition); }
.ref-card-link:hover .ref-body h3 { color: var(--gold-dark); }
.ref-readmore {
  display: inline-block; margin-top: .4rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .06em;
  color: var(--gold-dark); transition: color var(--transition), transform var(--transition);
}
.ref-card-link:hover .ref-readmore { color: var(--gold); transform: translateX(4px); }
.work-feature-body a.ref-readmore:hover { color: var(--gold); transform: translateX(4px); }
.ref-allcta { text-align: center; margin: 1rem 0 3rem; }

/* Listing grid (references.html) */
.proj-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 1.6rem; }
.proj-card {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--warm-white); color: inherit;
  transition: box-shadow var(--transition), transform var(--transition);
}
.proj-card:hover { box-shadow: 0 8px 36px rgba(20,20,20,.12); transform: translateY(-4px); color: inherit; }
.proj-card-media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.proj-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s ease; }
.proj-card:hover .proj-card-media img { transform: scale(1.05); }
.proj-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,20,20,0) 40%, rgba(20,20,20,.85) 100%); }
.proj-loc {
  position: absolute; z-index: 1; top: 1rem; left: 1rem;
  font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); background: rgba(20,20,20,.55);
  border: 1px solid rgba(181,165,125,.3); padding: .35em .7em; border-radius: 2px;
}
.proj-card-cap { position: absolute; z-index: 1; left: 1.3rem; right: 1.3rem; bottom: 1.1rem; }
.proj-card-cap h3 { color: var(--warm-white); font-size: 1.35rem; line-height: 1.2; margin: 0; }
.proj-card-cap span { display: block; margin-top: .25rem; font-size: .78rem; font-weight: 600; letter-spacing: .03em; color: var(--gold-light); }
.proj-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.05rem 1.3rem; margin-top: auto; }
.proj-card-foot .ref-tag { margin: 0; }
.proj-card-foot .arrow { font-size: .82rem; font-weight: 700; color: var(--gold-dark); transition: color var(--transition), transform var(--transition); white-space: nowrap; }
.proj-card:hover .proj-card-foot .arrow { color: var(--gold); transform: translateX(4px); }

/* Detail page - fact bar */
.ref-facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; margin: 0 0 3rem;
}
.ref-facts > div { background: var(--warm-white); padding: 1.25rem 1.35rem; }
.ref-facts dt { font-size: .64rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--mid-grey); margin-bottom: .4rem; }
.ref-facts dd { margin: 0; font-size: 1rem; font-weight: 600; color: var(--text-main); line-height: 1.4; }

/* Detail page - prose */
.ref-prose { max-width: 760px; margin: 0 auto; }
.ref-prose .ref-lead { font-size: 1.22rem; line-height: 1.65; color: var(--text-main); margin-bottom: 2.2rem; }
.ref-prose h3 { font-size: 1.4rem; margin: 2.4rem 0 .8rem; }
.ref-prose p { margin-bottom: 1.2rem; }
.ref-prose ul { list-style: none; margin: 0 0 1.4rem; padding: 0; }
.ref-prose ul li { position: relative; padding-left: 1.6rem; margin-bottom: .85rem; color: var(--text-muted); line-height: 1.7; }
.ref-prose ul li::before { content: ""; position: absolute; left: 0; top: .62em; width: .55rem; height: .55rem; background: var(--gold); transform: rotate(45deg); }
.ref-prose ul li strong { color: var(--text-main); font-weight: 700; }

/* Detail page - gallery */
.ref-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; margin: 3.2rem 0 1.2rem; }
.ref-gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4 / 3; border: 1px solid var(--border); }
.ref-gallery figure.span-2 { grid-column: span 2; aspect-ratio: 16 / 7; }
.ref-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s ease; }
.ref-gallery figure:hover img { transform: scale(1.05); }
.ref-credits { max-width: 760px; margin: .6rem auto 0; font-size: .72rem; color: var(--mid-grey); line-height: 1.6; }
.ref-credits a { color: var(--mid-grey); text-decoration: underline; }

/* Detail page - CTA + related */
.ref-cta { max-width: 760px; margin: 3.4rem auto 0; padding: 2.4rem; text-align: center; border: 1px solid var(--border); border-radius: var(--radius); background: var(--warm-grey); }
.ref-cta h3 { font-size: 1.45rem; margin-bottom: .5rem; }
.ref-cta p { color: var(--text-muted); margin-bottom: 1.3rem; }
.ref-more { margin-top: 4rem; }
.ref-more .logo-strip-label { margin-bottom: 1.6rem; }

@media (max-width: 680px) {
  .ref-gallery figure.span-2 { grid-column: span 1; aspect-ratio: 4 / 3; }
  .proj-card-cap h3 { font-size: 1.2rem; }
  .ref-prose .ref-lead { font-size: 1.1rem; }
}

/* ============================================================
   LEAD FUNNEL - discovery.html (distraction-free dark stage)
   ============================================================ */
body.funnel { background: var(--charcoal); color: var(--warm-white); min-height: 100vh; }
body.funnel .blueprint::before { opacity: .03; }
body.funnel .blueprint::after  { opacity: .08; mix-blend-mode: screen; }

.funnel-bar {
  position: relative; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
}
.funnel-bar .nav-logo img { height: 40px; }
.funnel-bar-right { display: flex; align-items: center; gap: 1.3rem; }
.funnel-exit { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(250,248,244,.5); }
.funnel-exit:hover { color: var(--gold); }
.funnel-bar .lang-btn { color: rgba(250,248,244,.5); }
.funnel-bar .lang-btn.active { color: var(--gold); background: rgba(181,165,125,.14); }

.funnel-progress { position: relative; z-index: 5; height: 3px; background: rgba(181,165,125,.16); }
.funnel-progress-fill { height: 100%; width: 0; background: var(--gold); transition: width .5s cubic-bezier(.4,0,.2,1); }

.funnel-stage {
  position: relative; z-index: 2;
  max-width: 660px; margin: 0 auto;
  padding: clamp(2rem, 6vh, 4.5rem) clamp(1.25rem, 4vw, 2rem) 5rem;
  min-height: calc(100vh - 140px);
  display: flex; flex-direction: column; justify-content: center;
}

.fnl-step { animation: fnlIn .45s cubic-bezier(.4,0,.2,1) both; }
@keyframes fnlIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.fnl-count { font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.fnl-q { color: var(--warm-white); font-size: clamp(1.6rem, 3.4vw, 2.4rem); line-height: 1.15; margin-bottom: .7rem; }
.fnl-help { color: var(--gold-cream); font-size: 1rem; margin-bottom: 2rem; max-width: 48ch; }

.fnl-options { display: flex; flex-direction: column; gap: .7rem; }
.fnl-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left;
  width: 100%; cursor: pointer;
  padding: 1.15rem 1.3rem;
  font: inherit; font-size: 1.02rem; color: var(--warm-white);
  background: rgba(250,248,244,.03);
  border: 1px solid rgba(181,165,125,.28);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.fnl-opt:hover { border-color: var(--gold); background: rgba(181,165,125,.1); transform: translateX(4px); }
.fnl-opt .fnl-opt-arrow { color: var(--gold); opacity: 0; transform: translateX(-6px); transition: opacity var(--transition), transform var(--transition); font-weight: 700; }
.fnl-opt:hover .fnl-opt-arrow, .fnl-opt.is-selected .fnl-opt-arrow { opacity: 1; transform: none; }
.fnl-opt.is-selected { border-color: var(--gold); background: rgba(181,165,125,.16); }

.fnl-nav { display: flex; align-items: center; gap: 1.4rem; margin-top: 2rem; }
.fnl-back {
  background: none; border: none; cursor: pointer;
  font: inherit; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(250,248,244,.5); transition: color var(--transition);
}
.fnl-back:hover { color: var(--gold); }
.fnl-back[hidden] { display: none; }

/* Gate (contact) */
.fnl-field { margin-bottom: 1.1rem; }
.fnl-field label { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .04em; color: var(--gold-cream); margin-bottom: .4rem; }
.fnl-field input, .fnl-field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--warm-white);
  background: rgba(250,248,244,.04); border: 1px solid rgba(181,165,125,.28);
  border-radius: var(--radius); padding: .8em 1em; transition: border-color var(--transition), box-shadow var(--transition);
}
.fnl-field input::placeholder, .fnl-field textarea::placeholder { color: rgba(250,248,244,.35); }
.fnl-field input:focus, .fnl-field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(181,165,125,.18); }
.fnl-field.invalid input, .fnl-field.invalid textarea { border-color: #c98b7d; }
.fnl-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.fnl-consent { display: flex; gap: .65rem; align-items: flex-start; margin: 1.2rem 0 1.6rem; }
.fnl-consent input { margin-top: .3rem; width: 16px; height: 16px; accent-color: var(--gold); flex-shrink: 0; }
.fnl-consent label { font-size: .82rem; color: rgba(250,248,244,.7); line-height: 1.6; }
.fnl-consent a { color: var(--gold); text-decoration: underline; }
.fnl-error { color: #e0a99c; font-size: .8rem; margin-bottom: 1rem; min-height: 1em; }
.fnl-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Result */
.fnl-result-kicker { font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; }
.fnl-result h2 { color: var(--gold-light); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: .5rem; }
.fnl-result .fnl-positioning { color: var(--gold-cream); font-size: 1.1rem; margin-bottom: 1.8rem; }
.fnl-why { list-style: none; margin: 0 0 1.8rem; padding: 0; }
.fnl-why li { position: relative; padding-left: 1.7rem; margin-bottom: .9rem; color: var(--gold-cream); line-height: 1.65; }
.fnl-why li::before { content: ""; position: absolute; left: 0; top: .55em; width: .55rem; height: .55rem; background: var(--gold); transform: rotate(45deg); }
.fnl-price { display: inline-block; font-size: .95rem; font-weight: 700; color: var(--warm-white); background: rgba(181,165,125,.12); border: 1px solid rgba(181,165,125,.3); border-radius: 2px; padding: .5em 1em; margin-bottom: 1.8rem; }
.fnl-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2rem; }
.fnl-next { font-size: .85rem; color: rgba(250,248,244,.55); border-top: 1px solid rgba(181,165,125,.18); padding-top: 1.4rem; }
.fnl-next strong { color: var(--gold-cream); font-weight: 700; }

@media (max-width: 560px) {
  .fnl-row { grid-template-columns: 1fr; gap: 0; }
  .funnel-stage { min-height: calc(100vh - 120px); }
}
@media (prefers-reduced-motion: reduce) {
  .fnl-step { animation: none; }
  .fnl-opt:hover { transform: none; }
}

/* ═══════════════ L.E.A.D. METHOD PAGE ═══════════════ */
.lm-intro {
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.lm-intro-text .ref-lead { font-size: 1.18rem; line-height: 1.7; color: var(--charcoal); margin-bottom: 1.2rem; }
.lm-intro-text p { line-height: 1.8; margin-bottom: 1rem; }
.lm-diagram {
  margin: 0; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: clamp(1.1rem, 2.6vw, 2.2rem); box-shadow: var(--shadow-card);
}
.lm-diagram img { width: 100%; height: auto; display: block; }

/* L.E.A.D. wheel - bilingual, responsive replacement for the diagram image */
.lead-wheel { position: relative; width: min(520px, 100%); margin: 0 auto; aspect-ratio: 1; container-type: inline-size; }
.lead-wheel-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.lw-ring { fill: none; stroke: var(--gold); stroke-width: .3; opacity: .5; }
.lw-ring--2 { stroke-width: .18; opacity: .32; }
.lw-ring--inner { stroke-width: .25; opacity: .38; }
.lw-node { fill: var(--gold); }
.lw-tri { fill: none; stroke: var(--gold-dark); stroke-width: .45; stroke-linejoin: round; opacity: .85; }
.lw-star { fill: var(--gold-light); }
.lw-dim, .lw-phase, .lw-core { position: absolute; }
.lw-phase { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .14em; }
.lw-phase--top    { top: 6.5%;   left: 50%; width: 54%; transform: translateX(-50%); }
.lw-phase--bottom { bottom: 6.5%; left: 50%; width: 54%; transform: translateX(-50%); }
.lw-phase--left   { left: 0;  top: 48%; width: 28%; transform: translateY(-50%); }
.lw-phase--right  { right: 0; top: 48%; width: 28%; transform: translateY(-50%); }
.lw-name { font-size: 2.7cqw; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-dark); line-height: 1; }
.lw-sub  { font-size: 4.6cqw; font-weight: 700; color: var(--charcoal); line-height: 1.05; }
.lw-desc { font-size: 2.5cqw; color: var(--text-muted); line-height: 1.32; margin-top: .2em; }
.lw-dim { font-size: 2.3cqw; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dark); opacity: .8; white-space: nowrap; }
.lw-dim--tl { top: 17%; left: 17%; transform: translate(-50%,-50%) rotate(-45deg); }
.lw-dim--tr { top: 17%; right: 17%; transform: translate(50%,-50%) rotate(45deg); }
.lw-dim--br { bottom: 17%; right: 17%; transform: translate(50%,50%) rotate(-45deg); }
.lw-dim--bl { bottom: 17%; left: 17%; transform: translate(-50%,50%) rotate(45deg); }
.lw-core { font-size: 2.25cqw; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--charcoal); white-space: nowrap; }
.lw-core--budget  { top: 43%;   left: 40%; transform: translate(-50%,-50%); }
.lw-core--quality { top: 43%;   left: 60%; transform: translate(-50%,-50%); }
.lw-core--time    { top: 61%;   left: 50%; transform: translate(-50%,-50%); }
@container (max-width: 360px) { .lw-desc { display: none; } }

/* L.E.A.D. wheel · gentle motion (runs once the section reveals) */
.lw-node { opacity: .45; transform-box: fill-box; transform-origin: center; }
.lw-orbit-dot { fill: var(--gold-dark); }
.lw-orbit { transform-box: view-box; transform-origin: 50% 50%; }
.revealed .lw-orbit { animation: lwOrbit 12s linear infinite; }
.lw-ring--2 { stroke-dasharray: .2 1.5; transform-box: view-box; transform-origin: 50% 50%; }
.revealed .lw-ring--2 { animation: lwOrbit 140s linear infinite; }
.lw-core-glow { transform-box: fill-box; transform-origin: center; }
.revealed .lw-core-glow { animation: lwBreath 7s ease-in-out infinite; }
.revealed .lw-star { animation: lwTwinkle 4.6s ease-in-out infinite; }
.revealed .lw-star + .lw-star { animation-delay: 1.2s; }
.revealed .lw-star + .lw-star + .lw-star { animation-delay: 2.3s; }
.revealed .lw-star + .lw-star + .lw-star + .lw-star { animation-delay: 3.4s; }
.revealed .lw-node--n { animation: lwPulse 12s linear infinite; }
.revealed .lw-node--e { animation: lwPulse 12s linear infinite 3s; }
.revealed .lw-node--s { animation: lwPulse 12s linear infinite 6s; }
.revealed .lw-node--w { animation: lwPulse 12s linear infinite 9s; }
.lw-name { transition: color .4s ease; }
.revealed .lw-phase--top    .lw-name { animation: lwNameGlow 12s linear infinite; }
.revealed .lw-phase--right  .lw-name { animation: lwNameGlow 12s linear infinite 3s; }
.revealed .lw-phase--bottom .lw-name { animation: lwNameGlow 12s linear infinite 6s; }
.revealed .lw-phase--left   .lw-name { animation: lwNameGlow 12s linear infinite 9s; }
@keyframes lwOrbit { to { transform: rotate(360deg); } }
@keyframes lwBreath { 0%, 100% { opacity: .8; transform: scale(1); } 50% { opacity: 1; transform: scale(1.12); } }
@keyframes lwTwinkle { 0%, 100% { opacity: .4; } 50% { opacity: 1; } }
@keyframes lwPulse { 0%, 10% { opacity: 1; transform: scale(1.9); } 22%, 100% { opacity: .45; transform: scale(1); } }
@keyframes lwNameGlow { 0%, 10% { color: var(--gold); } 22%, 100% { color: var(--gold-dark); } }
@media (prefers-reduced-motion: reduce) {
  .revealed .lw-orbit, .revealed .lw-ring--2, .revealed .lw-core-glow, .revealed .lw-star,
  .revealed .lw-node--n, .revealed .lw-node--e, .revealed .lw-node--s, .revealed .lw-node--w,
  .revealed .lw-phase .lw-name { animation: none; }
  .lw-orbit { display: none; }
}

.lm-diagram figcaption {
  text-align: center; margin-top: 1rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-dark);
}
.lm-dims { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: clamp(2.4rem, 5vw, 3.6rem); }
.lm-dim { border: 1px solid var(--border); border-radius: var(--radius); padding: 1.7rem 1.4rem; background: var(--warm-white); transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition); }
.lm-dim:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); border-color: rgba(181,165,125,.45); }
.lm-dim h4 { color: var(--gold-dark); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .6rem; }
.lm-dim p { font-size: .9rem; line-height: 1.7; margin: 0; }
.lm-core-note { margin-top: 2rem; text-align: center; font-size: .95rem; line-height: 1.7; color: var(--charcoal); max-width: 760px; margin-left: auto; margin-right: auto; }
.lm-core-note strong { color: var(--gold-dark); }

.lm-phases { display: flex; flex-direction: column; gap: 1px; background: rgba(181,165,125,.15); border: 1px solid rgba(181,165,125,.15); border-radius: var(--radius); overflow: hidden; margin-top: 1.4rem; }
.lm-phase { background: var(--charcoal-2); padding: clamp(1.9rem, 4vw, 3rem); display: grid; grid-template-columns: 4.5rem 1fr; gap: clamp(1.2rem, 3.5vw, 2.6rem); transition: background var(--transition); }
.lm-phase:hover { background: var(--charcoal-3); }
.lm-phase-letter { font-family: var(--serif); font-size: clamp(3rem, 6vw, 4.6rem); line-height: 1; color: var(--gold); opacity: .55; }
.lm-phase-num { font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.lm-phase h3 { color: var(--gold-light); font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-bottom: .15rem; }
.lm-phase-sub { display: block; color: var(--gold-cream); opacity: .65; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem; }
.lm-phase-desc { color: rgba(227,215,182,.84); line-height: 1.78; font-size: .96rem; }
.lm-acts-label { font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin: 1.4rem 0 .7rem; }
.lm-acts { columns: 2; column-gap: 2.4rem; margin: 0; padding: 0; list-style: none; }
.lm-acts li { font-size: .86rem; color: rgba(227,215,182,.78); line-height: 1.55; margin-bottom: .6rem; padding-left: 1rem; position: relative; break-inside: avoid; }
.lm-acts li::before { content: "·"; color: var(--gold); font-weight: 700; position: absolute; left: 0; }

@media (max-width: 820px) {
  .lm-intro { grid-template-columns: 1fr; }
  .lm-dims { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .lm-phase { grid-template-columns: 1fr; gap: .6rem; }
  .lm-phase-letter { font-size: 2.8rem; }
  .lm-acts { columns: 1; }
}

/* ═══════════════ INDIVIDUAL CONSULTING PAGE ═══════════════ */
.cns-intro { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.cns-intro .ref-lead { font-size: 1.18rem; line-height: 1.7; color: var(--text-main); margin-bottom: 1.1rem; }
.cns-intro p { line-height: 1.8; }
.cns-sub h3 { font-size: 1.05rem; color: var(--gold-dark); margin: 0 0 .7rem; }
.cns-sub ul { list-style: none; padding: 0; margin: 0 0 1.8rem; display: flex; flex-direction: column; gap: .6rem; }
.cns-sub li { position: relative; padding-left: 1.4rem; font-size: .94rem; line-height: 1.6; color: var(--text-main); }
.cns-sub li::before { content: "·"; position: absolute; left: .3rem; color: var(--gold); font-weight: 700; }

.cns-packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 1rem; align-items: stretch; }
.cns-pkg { display: flex; flex-direction: column; position: relative; background: var(--warm-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.3rem 1.9rem; transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition); }
.cns-pkg:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); border-color: rgba(181,165,125,.45); }
.cns-pkg.featured { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold), var(--shadow-card); background: linear-gradient(160deg, #FAF8F4 0%, #F5EDD8 100%); }
.cns-badge { position: absolute; top: -.72rem; left: 1.9rem; background: var(--gold); color: var(--charcoal); font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: .32rem .7rem; border-radius: 2px; }
.cns-pkg h3 { font-size: 1.3rem; margin-bottom: .2rem; }
.cns-hours { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 1.1rem; }
.cns-price { font-family: var(--serif); font-size: 2.1rem; font-weight: 700; color: var(--gold-dark); line-height: 1; }
.cns-price small { font-size: .78rem; font-weight: 400; color: var(--text-muted); letter-spacing: .02em; }
.cns-best { font-size: .92rem; line-height: 1.6; color: var(--text-main); margin: 1.1rem 0 1.3rem; }
.cns-best strong { color: var(--gold-dark); }
.cns-incl { list-style: none; padding: 0; margin: 0 0 1.7rem; display: flex; flex-direction: column; gap: .65rem; }
.cns-incl li { position: relative; padding-left: 1.5rem; font-size: .88rem; line-height: 1.55; color: var(--text-main); }
.cns-incl li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; font-size: .85rem; }
.cns-buy { margin-top: auto; width: 100%; text-align: center; }

.cns-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 1rem; }
.cns-step { padding: 1.8rem 1.6rem; border: 1px solid rgba(181,165,125,.18); border-radius: var(--radius); background: rgba(250,248,244,.02); }
.cns-step-num { font-family: var(--serif); font-size: 2rem; color: var(--gold); opacity: .55; line-height: 1; margin-bottom: .7rem; }
.cns-step h4 { color: var(--gold-light); font-size: 1.05rem; margin-bottom: .5rem; }
.cns-step p { font-size: .9rem; line-height: 1.7; margin: 0; color: var(--gold-cream); }

.cns-faq { max-width: 820px; margin: 1.5rem auto 0; }
.cns-faq details { border-bottom: 1px solid var(--border); padding: 1.1rem 0; }
.cns-faq summary { cursor: pointer; font-weight: 700; color: var(--text-main); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: 1rem; }
.cns-faq summary::-webkit-details-marker { display: none; }
.cns-faq summary::after { content: "+"; color: var(--gold); font-weight: 700; font-size: 1.3rem; line-height: 1; display: inline-block; transition: transform var(--transition); }
.cns-faq details[open] summary::after { transform: rotate(45deg); }
.cns-faq p { margin: .8rem 0 0; line-height: 1.75; font-size: .95rem; }

@media (max-width: 860px) {
  .cns-intro { grid-template-columns: 1fr; }
  .cns-packages { grid-template-columns: 1fr; }
  .cns-steps { grid-template-columns: 1fr; }
}

/* ── MartaStudio · 360° room tour ──────────────────────────── */
.ms-tour-head { max-width: 760px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.ms-tour-head .eyebrow { color: var(--gold-light); }
.ms-tour-head h2 { color: var(--gold-light); margin-bottom: .8rem; }
.ms-tour-head p { color: var(--gold-cream); margin: 0 auto; max-width: 620px; }

.ms-tour { max-width: 1120px; margin: 0 auto; }
.ms-pano {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  background: #0c0c0c; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--charcoal-3);
}
.ms-pano .pnlm-container { background: #0c0c0c !important; border-radius: var(--radius); }

/* launch poster */
.ms-pano-launch {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0; padding: 0; cursor: pointer; background: none; display: grid; place-items: center;
}
.ms-pano-poster {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: brightness(.6); transition: filter .5s ease, transform 7s ease;
}
.ms-pano-launch:hover .ms-pano-poster { filter: brightness(.74); transform: scale(1.05); }
.ms-pano-launch .ms-play {
  position: relative; z-index: 2; width: 82px; height: 82px; border-radius: 50%;
  background: rgba(181,165,125,.94); display: grid; place-items: center;
  box-shadow: 0 12px 44px rgba(0,0,0,.45); transition: transform .35s ease, background .35s ease;
}
.ms-pano-launch:hover .ms-play { transform: scale(1.08); background: var(--gold-light); }
.ms-play svg { width: 30px; height: 30px; fill: #141414; margin-left: 5px; }
.ms-pano-hint {
  position: absolute; z-index: 2; bottom: 1.1rem; left: 0; right: 0; text-align: center;
  color: #fff; font-family: var(--sans); font-size: .76rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; text-shadow: 0 2px 14px rgba(0,0,0,.7);
}

/* scene selector strip */
.ms-scenes {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(124px, 1fr);
  gap: .7rem; margin-top: 1rem; overflow-x: auto; padding-bottom: .4rem;
  scrollbar-width: thin; scrollbar-color: var(--charcoal-3) transparent;
}
.ms-scene {
  position: relative; border: 1px solid var(--charcoal-3); border-radius: 8px;
  overflow: hidden; cursor: pointer; background: #1a1a1a; padding: 0; aspect-ratio: 16 / 10;
  transition: border-color .3s ease;
}
.ms-scene img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .68; transition: opacity .3s ease, transform .5s ease; }
.ms-scene:hover img { opacity: 1; transform: scale(1.07); }
.ms-scene.active { border-color: var(--gold); }
.ms-scene.active img { opacity: 1; }
.ms-scene span {
  position: absolute; left: 0; right: 0; bottom: 0; padding: .55rem .55rem .45rem;
  font-family: var(--sans); font-size: .66rem; font-weight: 600; letter-spacing: .03em;
  color: #fff; text-align: left; line-height: 1.25;
  background: linear-gradient(0deg, rgba(0,0,0,.85), rgba(0,0,0,0));
}
.ms-tour-note { max-width: 760px; margin: 1.4rem auto 0; text-align: center; font-size: .78rem; color: var(--gold-cream); opacity: .78; }
.ms-pano-note {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; gap: .6rem; padding: 2rem clamp(1.2rem, 5vw, 3rem);
}
.ms-pano-note strong { color: var(--gold-light); font-size: 1.05rem; font-weight: 700; }
.ms-pano-note span { color: var(--gold-cream); font-size: .86rem; line-height: 1.6; max-width: 470px; }
.ms-pano-note code { font-family: ui-monospace, Menlo, monospace; font-size: .82em; background: rgba(255,255,255,.08); padding: .12em .5em; border-radius: 4px; color: #fff; }

@media (max-width: 600px) {
  .ms-pano { aspect-ratio: 4 / 3; }
  .ms-scenes { grid-auto-columns: minmax(45%, 1fr); }
  .ms-pano-launch .ms-play { width: 66px; height: 66px; }
}
