/* ============================================================
   CURA AXIS — styles.css
   ============================================================ */

:root {
  --green-deep:  #0B2419;
  --green-mid:   #133527;
  --green-light: #1D4D38;
  --gold:        #B89A5C;
  --gold-lt:     #D4B87A;
  --cream:       #F5F2EC;
  --cream-dk:    #EDEAD2;
  --white:       #FFFFFF;
  --ink:         #0F0F0F;
  --ink-mid:     #3C3C3C;
  --ink-soft:    #6A6A6A;
  --border:      #E0DCD4;
  --border-dk:   rgba(255,255,255,0.08);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
  --mono:  'DM Mono', monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t1: 0.2s;
  --t2: 0.45s;
  --t3: 0.7s;
}

/* ── Reset ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--green-deep);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* Skip to main content (Accessibility) */
.skip-to-main {
  position: absolute; left: -9999px; z-index: 99999;
  padding: 0.75rem 1.5rem; background: var(--gold);
  color: var(--ink); font-weight: 600;
  border-radius: 0 0 4px 0;
}
.skip-to-main:focus {
  left: 0; top: 0;
  outline: 3px solid var(--gold-lt);
  outline-offset: 2px;
}

/* ── Cursor ────────────────────────────── */
.cursor-ring {
  position: fixed; pointer-events: none; z-index: 9998;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  transform: translate(-50%,-50%);
  transition: width var(--t2), height var(--t2),
              border-color var(--t2), background var(--t2),
              opacity var(--t2);
  opacity: 0;
}
.cursor-dot {
  position: fixed; pointer-events: none; z-index: 9999;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); transform: translate(-50%,-50%);
  opacity: 0;
}
@media (hover: hover) {
  .cursor-ring, .cursor-dot { opacity: 1; }
}
body.cur-hover .cursor-ring {
  width: 52px; height: 52px;
  border-color: var(--gold);
  background: rgba(184,154,92,0.1);
}

/* ── Scroll progress ───────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  z-index: 10000; transition: width 0.05s linear;
}

/* ── Layout util ───────────────────────── */
.sc {
  width: 100%; max-width: 1440px;
  margin: 0 auto; padding: 0 5vw;
}

/* ── Section label ─────────────────────── */
.sec-label {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.sec-label span,
.sec-label-inline {
  font-family: var(--mono); font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
}
.sec-label::before,
.sec-label-inline::before {
  content: ''; display: inline-block;
  width: 24px; height: 1px; background: var(--gold);
  margin-right: 0.6rem; vertical-align: middle;
}

/* ── Section headline ──────────────────── */
.sec-headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 300; line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 4rem;
}
.sec-headline em { font-style: italic; color: var(--gold); }

/* ── Reveal animation ──────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity var(--t3) var(--ease),
              transform var(--t3) var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.07s; }
.reveal[data-delay="2"] { transition-delay: 0.14s; }
.reveal[data-delay="3"] { transition-delay: 0.21s; }
.reveal[data-delay="4"] { transition-delay: 0.28s; }
.reveal[data-delay="5"] { transition-delay: 0.35s; }
.reveal[data-delay="6"] { transition-delay: 0.42s; }
@media (max-width: 768px) {
  .reveal[data-delay] { transition-delay: 0s !important; }
  .reveal { transition-duration: 0.4s; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background var(--t2), border-color var(--t2), box-shadow var(--t2);
}
.nav.dark  { background: rgba(11,36,25,0.94); border-color: rgba(255,255,255,0.06); backdrop-filter: blur(14px); }
.nav.light { background: rgba(245,242,236,0.96); border-color: rgba(0,0,0,0.07); backdrop-filter: blur(14px); }
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.12); }

.nav-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 5vw;
  height: 70px; display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.8rem; }
.logo-img  { height: 63px; width: auto; }
.logo-words { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600;
  line-height: 1.1; letter-spacing: -0.01em;
  transition: color var(--t2);
}
.nav.dark  .logo-name { color: var(--white); }
.nav.light .logo-name { color: var(--green-deep); }
.logo-tag {
  font-family: var(--mono); font-size: 0.69rem;
  letter-spacing: 0.09em; text-transform: uppercase;
  margin-top: 2px; transition: color var(--t2);
}
.nav.dark  .logo-tag { color: rgba(255,255,255,0.4); }
.nav.light .logo-tag { color: var(--ink-soft); }

.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-link {
  font-size: 0.875rem; font-weight: 500;
  position: relative; padding-bottom: 2px;
  transition: color var(--t1);
}
.nav.dark  .nav-link { color: rgba(255,255,255,0.7); }
.nav.light .nav-link { color: var(--ink-mid); }
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px;
  transition: width var(--t2) var(--ease);
}
.nav.dark  .nav-link::after { background: var(--gold-lt); }
.nav.light .nav-link::after { background: var(--green-mid); }
.nav-link:hover::after { width: 100%; }
.nav.dark  .nav-link:hover { color: var(--white); }
.nav.light .nav-link:hover { color: var(--ink); }

.nav-cta {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--ink);
  padding: 0.55rem 1.2rem; border-radius: 2px;
  font-size: 0.8rem; font-weight: 600;
  transition: background var(--t1), transform var(--t1);
}
.nav-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }

.nav-toggle {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  transition: transform var(--t2) var(--ease), opacity var(--t2);
}
.nav.dark  .nav-toggle span { background: var(--white); }
.nav.light .nav-toggle span { background: var(--green-deep); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-mobile {
  display: none; flex-direction: column; gap: 0;
  padding: 1.25rem 5vw 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nav.light .nav-mobile { border-color: var(--border); }
.nav-mobile.open { display: flex; }
.mob-link {
  padding: 0.9rem 0; font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav.light .mob-link { border-color: var(--border); color: var(--ink-mid); }
.mob-link:last-child { border: none; }
.mob-cta {
  margin-top: 1rem; background: var(--gold); color: var(--ink);
  text-align: center; padding: 0.875rem; border-radius: 2px;
  font-weight: 600; border: none !important;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 9rem 5vw 8rem;
  overflow: hidden; background: var(--green-deep);
}

.hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%; display: block;
  pointer-events: none;
}
.hero-noise {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

.hero-body-wrap {
  position: relative; z-index: 2;
  max-width: 1440px; margin: 0 auto; width: 100%;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 0.875rem;
  font-family: var(--mono); font-size: 0.68rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.1s forwards;
}
.e-dash { display: block; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 9.5rem);
  font-weight: 300; line-height: 1.19;
  letter-spacing: -0.03em; color: var(--white);
  margin-bottom: 2.5rem;
}
.hero-headline em { font-style: italic; color: var(--gold-lt); }

.h-row { display: block; overflow: hidden; }
.h-word {
  display: block;
  opacity: 0; transform: translateY(105%);
}
.h-word:nth-child(1), .h-row:nth-child(1) .h-word { animation: wordRise 1s var(--ease) 0.2s forwards; }
.h-row:nth-child(2) .h-word  { animation: wordRise 1s var(--ease) 0.36s forwards; }
.h-row:nth-child(3) .h-word  { animation: wordRise 1s var(--ease) 0.52s forwards; }

@keyframes wordRise { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp   { to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.6); line-height: 1.75;
  max-width: 500px; margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.72s forwards;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.88s forwards;
}

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--ink);
  padding: 0.875rem 1.75rem; border-radius: 2px;
  font-size: 0.875rem; font-weight: 600;
  border: none; cursor: pointer;
  transition: background var(--t1), transform var(--t1), box-shadow var(--t1);
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,154,92,0.3); }

.btn-ghost {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(255,255,255,0.22); color: rgba(255,255,255,0.75);
  padding: 0.875rem 1.75rem; border-radius: 2px;
  font-size: 0.875rem; font-weight: 500;
  transition: border-color var(--t1), color var(--t1), background var(--t1);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.55); color: var(--white); background: rgba(255,255,255,0.05); }

/* Stats bar */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.07);
  opacity: 0; animation: fadeUp 0.8s var(--ease) 1.1s forwards;
}
.h-stat {
  flex: 1; padding: 1.5rem 5vw;
  display: flex; flex-direction: column; gap: 0.3rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.h-stat:last-child { border-right: none; }
.hs-num {
  font-family: var(--serif); font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  font-weight: 400; color: var(--gold-lt); line-height: 1;
}
.hs-lbl {
  font-family: var(--mono); font-size: 0.65rem;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.h-stat-div { width: 0; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; right: 5vw; bottom: 7rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 1.3s forwards;
}
.scroll-bar {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
.hero-scroll-hint span {
  font-family: var(--mono); font-size: 0.6rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); writing-mode: vertical-lr;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.25); opacity: 1; }
}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem {
  background: var(--white); color: var(--ink);
  padding: 9rem 0;
}
.problem .sec-label span  { color: var(--green-mid); }
.problem .sec-label::before { background: var(--green-mid); }
.problem .sec-headline { color: var(--ink); }
.problem .sec-headline em { color: var(--green-mid); }

.prob-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  margin-bottom: 5rem;
}
.prob-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background var(--t2);
}
.prob-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t3) var(--ease);
}
.prob-card:hover::after { transform: scaleX(1); }
.prob-card:hover { background: var(--cream); }
.pc-num {
  font-family: var(--mono); font-size: 0.65rem;
  letter-spacing: 0.1em; color: var(--gold); margin-bottom: 1rem;
}
.prob-card h3 {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 500;
  color: var(--green-deep); margin-bottom: 0.65rem;
}
.prob-card p { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.65; }

.prob-close {
  text-align: center; border-top: 1px solid var(--border); padding-top: 3rem;
}
.prob-close p {
  font-family: var(--serif); font-size: clamp(1.5rem,3vw,2.5rem);
  font-weight: 400; color: var(--green-deep);
}
.prob-close em { font-style: italic; color: var(--gold); }

/* ============================================================
   SERVICES — SPLIT CARD SCROLL
   ============================================================ */
.services-wrap { background: var(--green-deep); }

/* The scrollable track — 500vh = room for 4 card reveals */
.services-track { height: 500vh; position: relative; }

/* Sticky viewport */
.services-sticky {
  position: sticky; top: 0;
  height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

/* Top label bar */
.svc-top-bar {
  position: absolute; top: 0; left: 0; right: 0;
  height: 70px; /* match nav height */
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; z-index: 10;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.svc-counter {
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.4);
  display: flex; align-items: center; gap: 0.3rem;
}
#svcCurrent { color: var(--gold); font-size: 1rem; }
.svc-slash  { opacity: 0.3; }

/* Progress dots — right side */
.svc-dots {
  position: absolute; right: 2.5vw; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 10px; z-index: 10;
}
.svc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none; cursor: pointer; padding: 0;
  transition: background var(--t2), transform var(--t2);
}
.svc-dot.active { background: var(--gold); transform: scale(1.4); }

/* Card stack container */
.card-stack {
  position: relative; width: 100%; height: 100%;
  max-width: 1440px; margin: 0 auto;
  padding: 70px 5vw 0; /* push below top bar */
}

/* Individual service card */
.svc-card {
  position: absolute; inset: 70px 5vw 0;
  border-radius: 6px; overflow: hidden;
  transform-origin: top center;
  will-change: transform, opacity;
  /* Cards start stacked — JS will peel them away */
}

/* Color themes per card */
.svc-card[data-card="0"] { background: #0F2D1E; color: var(--white); }
.svc-card[data-card="1"] { background: #122B1D; color: var(--white); }
.svc-card[data-card="2"] { background: #0A1E14; color: var(--white); }
.svc-card[data-card="3"] { background: #071510; color: var(--white); }

/* Subtle top border accent per card */
.svc-card[data-card="0"]::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); }
.svc-card[data-card="1"]::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: #7EB5A4; }
.svc-card[data-card="2"]::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: #9FB89B; }
.svc-card[data-card="3"]::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold-lt); }

.svc-card-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  height: 100%; gap: 0;
}

/* Left content */
.svc-left {
  padding: 3.5rem 4rem 3.5rem 3rem;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.svc-num {
  font-family: var(--mono); font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.75rem;
}
.svc-left h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -0.025em; margin-bottom: 1.25rem;
}
.svc-left h2 em { font-style: italic; color: var(--gold-lt); }
.svc-left p {
  font-size: 0.95rem; color: rgba(255,255,255,0.6);
  line-height: 1.75; max-width: 420px; margin-bottom: 2rem;
}
.svc-list { display: flex; flex-direction: column; gap: 0; }
.svc-list li {
  font-size: 0.875rem; color: rgba(255,255,255,0.75);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: flex-start; gap: 0.65rem;
}
.svc-list li::before { content: '→'; color: var(--gold); flex-shrink: 0; font-size: 0.8rem; }

/* Right art panel */
.svc-right {
  display: flex; align-items: center; justify-content: center;
  padding: 3rem; position: relative; overflow: hidden;
  background: rgba(0,0,0,0.15);
}
.svc-art {
  width: 100%; max-width: 380px; height: auto;
  color: var(--gold);
  opacity: 0.85;
}

/* ============================================================
   CLIENTELE TICKER
   ============================================================ */
.clientele {
  background: var(--ink); padding: 3.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ticker-mask {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.ticker-track {
  display: flex; align-items: center; white-space: nowrap;
  animation: ticker 38s linear infinite; width: max-content;
}
.ticker-track span {
  font-family: var(--serif); font-size: clamp(1rem,1.8vw,1.35rem);
  color: rgba(255,255,255,0.5); padding: 0 1.25rem;
}
.ticker-track .sep { color: var(--gold); padding: 0; font-size: 0.85rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--cream); color: var(--ink); padding: 9rem 0; }
.process .sec-label span  { color: var(--green-mid); }
.process .sec-label::before { background: var(--green-mid); }
.process .sec-headline { color: var(--ink); }
.process .sec-headline em { color: var(--green-mid); }

.proc-list { display: flex; flex-direction: column; max-width: 820px; }
.proc-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 2.5rem; padding: 2.75rem 0;
  border-bottom: 1px solid var(--border);
}
.proc-item:first-child { border-top: 1px solid var(--border); }

.proc-left { display: flex; flex-direction: column; align-items: center; }
.proc-n {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em;
  color: var(--gold);
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--t2), border-color var(--t2), color var(--t2);
}
.proc-item:hover .proc-n {
  background: var(--green-deep); border-color: var(--green-deep); color: var(--white);
}
.proc-line {
  flex: 1; width: 1px; margin-top: 0.5rem;
  background: linear-gradient(to bottom, var(--border), transparent);
}
.proc-content h3 {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 500;
  color: var(--green-deep); margin-bottom: 0.6rem;
}
.proc-content p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.75; }

/* ============================================================
   RESULTS
   ============================================================ */
.results { background: var(--green-deep); padding: 9rem 0; }
.results-hl { color: var(--white); }
.results-hl em { color: var(--gold-lt); }
.results .sec-label span { color: rgba(184,154,92,0.8); }
.results .sec-label::before { background: rgba(184,154,92,0.8); }

.metrics-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px; overflow: hidden; margin-bottom: 5rem;
}
.metric-box {
  padding: 2.75rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative; overflow: hidden;
  transition: background var(--t2);
}
.metric-box:last-child { border-right: none; }
.metric-box:hover { background: rgba(255,255,255,0.04); }
.m-num {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  color: var(--gold-lt); line-height: 1;
  letter-spacing: -0.02em; margin-bottom: 0.75rem;
}
.m-label { font-size: 0.875rem; font-weight: 500; color: var(--white); margin-bottom: 0.35rem; }
.m-ctx   { font-family: var(--mono); font-size: 0.68rem; color: rgba(255,255,255,0.35); letter-spacing: 0.04em; }

.testimonials {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px;
  background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden;
}
.t-card {
  background: rgba(255,255,255,0.025); padding: 3rem;
  transition: background var(--t2);
}
.t-card:hover { background: rgba(255,255,255,0.05); }
.t-qmark {
  font-family: var(--serif); font-size: 5rem;
  color: var(--gold); opacity: 0.4; line-height: 0.5; margin-bottom: 1.5rem;
}
.t-card blockquote {
  font-family: var(--serif); font-size: clamp(1rem,1.6vw,1.2rem);
  font-style: italic; color: rgba(255,255,255,0.82);
  line-height: 1.8; margin-bottom: 2rem;
}
.t-footer { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.2rem; }
.t-name { font-size: 0.875rem; font-weight: 600; color: var(--white); margin-bottom: 0.25rem; }
.t-role { font-family: var(--mono); font-size: 0.68rem; color: rgba(255,255,255,0.35); }

/* ============================================================
   TRUST
   ============================================================ */
.trust { background: var(--cream-dk); color: var(--ink); padding: 9rem 0; }
.trust .sec-label span  { color: var(--green-mid); }
.trust .sec-label::before { background: var(--green-mid); }

.trust-layout {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 8rem; align-items: start;
}
.trust-left h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 6rem);
  font-weight: 300; line-height: 1.0;
  letter-spacing: -0.035em; color: var(--green-deep);
  margin-top: 1rem;
}
.trust-left h2 em { font-style: italic; color: var(--gold); }

.trust-right { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.trust-item {
  display: grid; grid-template-columns: 44px 1fr;
  gap: 1.5rem; align-items: start;
  padding: 2rem 0; border-bottom: 1px solid var(--border);
  transition: padding-left var(--t2) var(--ease);
}
.trust-item:hover { padding-left: 0.5rem; }
.ti-icon {
  width: 44px; height: 44px; border-radius: 3px;
  border: 1px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-mid); flex-shrink: 0;
}
.trust-item h3 {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 500;
  color: var(--green-deep); margin-bottom: 0.45rem;
}
.trust-item p { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.7; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--green-deep); padding: 9rem 0; }
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 8rem; align-items: start;
}
.contact-left h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  font-weight: 300; line-height: 1.08;
  letter-spacing: -0.025em; color: var(--white);
  margin: 1rem 0 1.5rem;
}
.contact-left h2 em { font-style: italic; color: var(--gold-lt); }
.contact-left > p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 2.5rem; }
.contact-links { display: flex; flex-direction: column; gap: 0.75rem; }
.c-link {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.55);
  transition: color var(--t1);
}
.c-link:hover { color: var(--gold-lt); }
.c-link svg { color: var(--gold); flex-shrink: 0; }

/* Form */
.contact-form { display: flex; flex-direction: column; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.f-field { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.f-field label {
  font-family: var(--mono); font-size: 0.62rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.f-field input, .f-field select, .f-field textarea {
  width: 100%; padding: 0.875rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px; font-family: var(--sans); font-size: 0.9rem;
  color: var(--white); outline: none; appearance: none;
  transition: border-color var(--t1), background var(--t1), box-shadow var(--t1);
}
.f-field input::placeholder, .f-field textarea::placeholder { color: rgba(255,255,255,0.22); }
.f-field input:focus, .f-field select:focus, .f-field textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(184,154,92,0.15);
}
.f-field select option { background: var(--green-deep); }
.f-field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

.btn-submit {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  width: 100%; padding: 1rem; margin-top: 0.5rem;
  background: var(--gold); color: var(--ink);
  border: none; border-radius: 2px;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 600;
  cursor: pointer;
  transition: background var(--t1), transform var(--t1), box-shadow var(--t1);
}
.btn-submit:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,154,92,0.25); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-status {
  padding: 0.875rem 1rem; margin-top: 1rem;
  border-radius: 2px; font-size: 0.875rem; font-weight: 500;
  display: none; opacity: 0;
  transition: opacity var(--t2);
}
.form-status-success {
  display: block; opacity: 1;
  background: rgba(42,94,64,0.5);
  color: #A8D8BA;
  border: 1px solid rgba(42,94,64,0.8);
}
.form-status-error {
  display: block; opacity: 1;
  background: rgba(122,31,31,0.5);
  color: #F5A0A0;
  border: 1px solid rgba(122,31,31,0.8);
}
.form-status-info {
  display: block; opacity: 1;
  background: rgba(184,154,92,0.2);
  color: var(--gold-lt);
  border: 1px solid rgba(184,154,92,0.5);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); padding: 5rem 0 2.5rem; }
.footer-top {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 5rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-logo-img { height: 86px; width: 96px; margin-bottom: 0.25rem; }
.footer-brand-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--white); }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.35); line-height: 1.65; }

.footer-nav { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.f-col { display: flex; flex-direction: column; gap: 0.6rem; }
.f-col h4 {
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.f-col a { font-size: 0.85rem; color: rgba(255,255,255,0.4); transition: color var(--t1), padding-left var(--t1); }
.f-col a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.25);
}
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { color: rgba(255,255,255,0.25); transition: color var(--t1); }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ============================================================
   COOKIE
   ============================================================ */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(11,36,25,0.97);
  border-top: 1px solid rgba(184,154,92,0.25);
  z-index: 9000; backdrop-filter: blur(14px);
  animation: slideUpBar 0.4s var(--ease);
}
@keyframes slideUpBar { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-inner {
  max-width: 1440px; margin: 0 auto; padding: 1.2rem 5vw;
  display: flex; justify-content: space-between; align-items: center; gap: 2rem;
}
.cookie-text strong { display: block; font-size: 0.875rem; color: var(--white); margin-bottom: 0.2rem; }
.cookie-text p { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin: 0; }
.cookie-text a { color: var(--gold-lt); text-decoration: underline; }
.cookie-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }
.c-accept { padding: 0.5rem 1.25rem; background: var(--gold); color: var(--ink); border: none; border-radius: 2px; font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: background var(--t1); }
.c-accept:hover { background: var(--gold-lt); }
.c-reject { padding: 0.5rem 1.25rem; background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.18); border-radius: 2px; font-size: 0.82rem; cursor: pointer; transition: border-color var(--t1), color var(--t1); }
.c-reject:hover { border-color: rgba(255,255,255,0.45); color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .metrics-grid { grid-template-columns: repeat(2,1fr); }
  .trust-layout { grid-template-columns: 1fr; gap: 3.5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 4rem; }
  .footer-top { grid-template-columns: 1fr; gap: 3rem; }
  .svc-card-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .prob-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .trust-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .f-row { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-stats { position: relative; flex-direction: column; }
  .h-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .hero-scroll-hint { display: none; }
  .cookie-inner { flex-direction: column; align-items: stretch; gap: 1rem; }
  .cookie-btns { flex-direction: row; }
  /* Services on mobile: normal flow, no pinning */
  .services-track { height: auto; }
  .services-sticky { position: relative; height: auto; overflow: visible; display: block; padding: 5rem 0; }
  .svc-top-bar { position: relative; height: auto; padding: 0 5vw 2rem; border: none; }
  .svc-dots { display: none; }
  .card-stack { position: relative; padding: 0 5vw; display: flex; flex-direction: column; gap: 2rem; }
  .svc-card { position: relative; inset: auto; border-radius: 6px; transform: none !important; opacity: 1 !important; }
  .svc-card-inner { grid-template-columns: 1fr; }
  .svc-right { display: none; }
  .svc-left { padding: 2.5rem; border: none; }
  .proc-item { grid-template-columns: 52px 1fr; gap: 1.5rem; }
}
@media (max-width: 480px) {
  .metrics-grid { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
  .hero-headline { font-size: clamp(3.2rem, 13vw, 5rem); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .h-word, .hero-eyebrow, .hero-sub, .hero-actions, .hero-stats, .hero-scroll-hint { opacity: 1 !important; transform: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}