:root{
  /* --- SYMKH Core Brand Colors --- */
  --ink:      #0F1115;     /* Deep corporate black */
  --ink-2:    #14161A;     /* Charcoal black */
  --ink-3:    #1A1C20;     /* Slightly lighter charcoal */
  --panel:    #111317;     /* Panel background */
  --panel-2:  #181A1E;     /* Secondary panel */

  /* --- SYMKH Gold Accent --- */
  --acc:      #D4A72C;     /* SYMKH Gold */
  --acc-dim:  rgba(212,167,44,.35);

  /* --- Foreground / Text --- */
  --fg:       #FFFFFF;
  --fg-2:     #C7C7C7;
  --fg-3:     #9A9A9A;
  --fg-4:     #6E6E6E;
  --fg-5:     #3A3A3A;

  /* --- Lines / Dividers --- */
  --line:     #1E2024;
  --line-2:   #15171A;

  /* --- Status Green --- */
  --ok:       #22C55E;

  /* --- Typography --- */
  --display: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --body:    'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  /* --- Motion / Layout --- */
  --ease: cubic-bezier(.16,1,.3,1);
  --gut: clamp(20px, 5vw, 64px);
  --nav-h: 72px;
}

*,*::before,*::after{ margin:0; padding:0; box-sizing:border-box; }

html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }

body{
  background:var(--ink);
  color:var(--fg);
  font-family:var(--body);
  line-height:1.5;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
button{ font:inherit; background:none; border:0; color:inherit; }

::selection{ background:var(--acc); color:#000; }

:focus-visible{
  outline:2px solid var(--acc);
  outline-offset:3px;
}

.container{
  width:100%;
  max-width:1240px;
  margin:0 auto;
  padding:0 var(--gut);
}

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}

/* ---------- Grain + custom cursor ---------- */
.grain{
  position:fixed; inset:0; z-index:9000; pointer-events:none;
  opacity:.045;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat:repeat;
  background-size:200px;
}

#cursor,#cursor-ring{ display:none; }

body.has-cursor{ cursor:none; }
body.has-cursor a,
body.has-cursor button{ cursor:none; }

body.has-cursor #cursor{
  display:block;
  position:fixed; top:0; left:0; z-index:9999;
  width:9px; height:9px; border-radius:50%;
  background:var(--acc); pointer-events:none;
  transform:translate(-50%,-50%);
  mix-blend-mode:difference;
  will-change:transform;
}
body.has-cursor #cursor-ring{
  display:block;
  position:fixed; top:0; left:0; z-index:9998;
  width:36px; height:36px; border-radius:50%;
  border:1px solid var(--acc-dim); pointer-events:none;
  transform:translate(-50%,-50%);
  will-change:transform;
  transition:width .25s ease, height .25s ease, border-color .25s ease;
}
body.cursor-hot #cursor{ width:16px; height:16px; }
body.cursor-hot #cursor-ring{ width:56px; height:56px; border-color:rgba(212,167,44,.6); }

/* ---------- Scroll progress ---------- */
.scroll-progress{
  position:fixed; top:0; left:0; right:0; height:2px;
  z-index:300; background:transparent; pointer-events:none;
}
.scroll-progress-fill{
  height:100%; width:100%;
  background:var(--acc);
  transform:scaleX(0); transform-origin:left;
}

/* ===========================================================
   NAV
   =========================================================== */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:220;
  height:var(--nav-h);
  padding:0 var(--gut);
  display:flex; align-items:center; justify-content:space-between;
  background:transparent;
  border-bottom:1px solid transparent;
  transition:background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
}
.nav.is-scrolled{
  background:rgba(15,17,21,.92);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom-color:var(--line);
}

.nav-logo{
  display:flex; align-items:center; gap:11px;
  font-family:var(--display); font-weight:800;
  font-size:11px; letter-spacing:.35em; text-transform:uppercase;
  color:var(--fg);
}
.nav-logo .mark{ height:24px; width:auto; }

.nav-links{
  display:flex; align-items:center; gap:clamp(14px,2.2vw,30px);
  list-style:none;
}
.nav-links a{
  font-size:13px; font-weight:600; letter-spacing:.05em;
  color:var(--fg-2); transition:color .2s ease;
}
.nav-links a:hover,
.nav-links a.active{ color:var(--acc); }

.nav-cta{
  font-size:12px; font-weight:700; letter-spacing:.08em;
  color:#111 !important; background:var(--acc);
  padding:9px 18px; border-radius:3px;
  white-space:nowrap;
  transition:opacity .2s ease, transform .2s ease;
}
.nav-cta:hover{ opacity:.85; color:#111 !important; }

.nav-toggle{
  display:none; width:40px; height:40px;
  flex-direction:column; align-items:center; justify-content:center; gap:5px;
  cursor:pointer; z-index:240;
}
.nav-toggle span{
  display:block; width:22px; height:2px; background:var(--fg);
  transition:transform .35s var(--ease), opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ===========================================================
   SHARED TYPE / LABELS
   =========================================================== */
.eyebrow{
  font-family:var(--display); font-weight:800;
  font-size:10px; letter-spacing:.5em; text-transform:uppercase;
  color:var(--acc);
}
.eyebrow-mute{ color:var(--fg-4); }

.h-display{
  font-family:var(--display); font-weight:800;
  text-transform:uppercase; letter-spacing:-.02em; line-height:.92;
  color:var(--fg);
}
.h-xl{ font-size:clamp(34px,7vw,84px); }
.h-lg{ font-size:clamp(28px,5vw,54px); }
.h-md{ font-size:clamp(22px,3.4vw,38px); }

.outline{
  -webkit-text-stroke:1px var(--acc);
  -webkit-text-fill-color:transparent;
  color:transparent;
}

.lede{
  font-size:clamp(14px,1.5vw,16px);
  color:var(--fg-2); line-height:1.75; max-width:56ch;
}

.section{ padding:clamp(72px,11vw,140px) 0; }
.section-tight{ padding-top:0; }

.section-head{ margin-bottom:clamp(36px,6vw,72px); }
.section-head .eyebrow{ display:block; margin-bottom:14px; }
.section-head p{ margin-top:18px; }

.rule{ height:1px; background:var(--line); border:0; }

.reveal-line{
  overflow:hidden; display:inline-block; vertical-align:top;
  padding-bottom:.14em; margin-bottom:-.14em;
}
.reveal-line > span{ display:inline-block; will-change:transform; }
.fade-up{ opacity:0; transform:translateY(24px); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  font-size:13px; font-weight:700; letter-spacing:.1em;
  text-transform:uppercase; padding:14px 26px; border-radius:3px;
  transition:opacity .2s ease, color .2s ease, border-color .2s ease, background .2s ease;
}
.btn-primary{ background:var(--acc); color:#111; }
.btn-primary:hover{ opacity:.85; }
.btn-ghost{ color:var(--fg-2); border:1px solid var(--fg-5); }
.btn-ghost:hover{ color:var(--acc); border-color:var(--acc); }

/* ===========================================================
   HOME HERO
   =========================================================== */
.hero-wrap{ position:relative; }

.hero{
  position:sticky; top:0;
  height:100vh; min-height:560px;
  background:var(--ink);
  overflow:hidden;
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:0 var(--gut) clamp(56px,9vh,90px);
}

.hero-bg{
  position:absolute; left:0; right:0;
  top:-16%; height:132%; z-index:0;
  will-change:transform;
}
.hero-bg img{
  width:100%; height:100%;
  object-fit:cover; object-position:72% top;
}
.hero-veil{
  position:absolute; inset:0; z-index:1; pointer-events:none;
  background:
    linear-gradient(to right, rgba(15,17,21,.94) 0%, rgba(15,17,21,.72) 42%, rgba(15,17,21,.25) 72%, rgba(15,17,21,.55) 100%),
    linear-gradient(to top, rgba(15,17,21,.9) 0%, rgba(15,17,21,0) 45%);
}

.hero-rule{
  position:absolute; top:0; left:calc(var(--gut) + 32px);
  width:2px; height:100%; background:var(--acc); opacity:.35; z-index:2;
  transform-origin:top; transform:scaleY(0);
  transition:transform 1.2s var(--ease) .1s;
}
.is-loaded .hero-rule{ transform:scaleY(1); }

.hero-status{
  position:absolute; top:calc(var(--nav-h) + 24px); left:var(--gut); z-index:4;
  display:flex; align-items:center; gap:9px;
}
.hero-status .dot{
  width:7px; height:7px; border-radius:50%;
  background:var(--ok); box-shadow:0 0 8px var(--ok);
  animation:pulse 2s ease infinite;
}
.hero-status span{
  font-size:11px; color:var(--fg-3);
  letter-spacing:.15em; text-transform:uppercase;
}
@keyframes pulse{ 0%,100%{opacity:1} 50%{opacity:.35} }

.hero-place{
  position:absolute; top:42%; right:calc(var(--gut) - 16px); z-index:4;
  font-family:var(--display); font-weight:800;
  font-size:10px; letter-spacing:.35em; color:var(--fg-4);
  writing-mode:vertical-rl; text-transform:uppercase;
}

.hero-inner{ position:relative; z-index:3; will-change:transform; }

.hero-kicker{
  font-family:var(--display); font-weight:800;
  font-size:clamp(13px,1.8vw,22px); letter-spacing:.6em;
  color:var(--acc); text-transform:uppercase;
  margin-bottom:6px;
}
.hero-name{
  font-family:var(--display); font-weight:800;
  font-size:clamp(48px,12vw,164px); line-height:.88;
  letter-spacing:-.02em; text-transform:uppercase; color:var(--fg);
}

.hero-tag{
  display:flex; align-items:center; gap:18px;
  margin-top:clamp(18px,3vw,32px);
}
.hero-tag .bar{ width:44px; height:1px; background:var(--acc); flex-shrink:0; }
.hero-tag span{
  font-size:clamp(11px,1.4vw,15px); color:var(--fg-2);
  letter-spacing:.16em; text-transform:uppercase;
}
.hero-tag b{ color:var(--acc); font-weight:inherit; }

.hero-blurb{
  margin-top:22px; max-width:52ch;
  font-size:clamp(13px,1.4vw,15px); color:var(--fg-3); line-height:1.75;
}

.hero-actions{ margin-top:clamp(24px,4vw,40px); display:flex; gap:14px; flex-wrap:wrap; }

.hero-scroll{
  position:absolute; bottom:28px; right:var(--gut); z-index:4;
  display:flex; flex-direction:column; align-items:center; gap:8px;
}
.hero-scroll span{
  font-size:9px; color:var(--fg-4); letter-spacing:.25em;
  text-transform:uppercase; writing-mode:vertical-rl;
}
.hero-scroll i{ width:1px; height:38px; background:linear-gradient(to bottom,var(--fg-4),transparent); }

/* ===========================================================
   MARQUEE
   =========================================================== */
.marquee{
  background:var(--acc); overflow:hidden;
  padding:15px 0;
  border-top:1px solid #000; border-bottom:1px solid #000;
  position:relative; z-index:5;
}
.marquee-track{
  display:flex; width:max-content;
  animation:marquee 34s linear infinite;
}
.marquee:hover .marquee-track{ animation-play-state:paused; }
.marquee span{
  font-family:var(--display); font-weight:800;
  font-size:12px; letter-spacing:.3em; color:#111;
  text-transform:uppercase; white-space:nowrap; padding:0 22px;
}
@keyframes marquee{ from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===========================================================
   STATS
   =========================================================== */
.stats{ background:var(--ink); position:relative; z-index:5; }
.stats-grid{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1px; background:var(--line-2);
  border:1px solid var(--line-2);
}
.stat{
  background:var(--ink); padding:clamp(24px,3.4vw,44px);
}
.stat-number{
  font-family:var(--display); font-weight:800;
  font-size:clamp(40px,6vw,76px); line-height:1;
  color:var(--acc); letter-spacing:-.03em; margin-bottom:12px;
}
.stat-label{
  font-family:var(--display); font-weight:800;
  font-size:10px; letter-spacing:.25em; text-transform:uppercase;
  color:var(--fg); margin-bottom:12px;
}
.stat-desc{ font-size:13px; color:var(--fg-3); line-height:1.7; }

/* ===========================================================
   PINNED HORIZONTAL — SELECTED CASES
   =========================================================== */
.pin-wrap{ position:relative; }

.pin-stage{
  position:sticky; top:0; height:100vh; min-height:560px;
  background:var(--ink-2); overflow:hidden;
}

.pin-head{
  position:absolute; top:0; left:0; right:0; z-index:10;
  padding:calc(var(--nav-h) + 18px) var(--gut) 20px;
  display:flex; justify-content:space-between; align-items:flex-end; gap:20px;
  background:linear-gradient(to bottom,var(--ink-2) 58%,transparent);
  pointer-events:none;
}
.pin-head .eyebrow{ display:block; margin-bottom:9px; }
.pin-dots{ display:flex; gap:8px; align-items:center; flex-shrink:0; }
.pin-dots i{
  width:7px; height:7