/* =========================================================
   Sound Design International — cinematic one-pager v2
   Dark · depth · glass · 3D tilt · gold. Built to feel modern.
   ========================================================= */

:root {
  --void:   #04050a;
  --panel:  #0d1120;
  --line:   rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --ink:    #f5f2ec;
  --muted:  #a2a8b4;
  --faint:  #6b7280;
  --gold:   #e8b14c;
  --gold-2: #f6d488;
  --gold-d: #b9822a;
  --royal:   #1f3aa6;   /* deep sapphire — surfaces, edges */
  --royal-2: #4f74ff;   /* bright royal — accents, glows, links */
  --red:     #e5484d;

  --glass:    rgba(15,19,33,0.55);
  --shadow:   0 36px 84px -22px rgba(0,0,0,0.88), 0 4px 14px -6px rgba(0,0,0,0.6);
  --glow-gold: 0 0 0 1px rgba(232,177,76,0.25), 0 18px 50px -12px rgba(232,177,76,0.35);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1280px;
  --pad:  clamp(20px, 5vw, 80px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--void);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.6;
  overflow-x: hidden; position: relative;
}
::selection { background: var(--gold); color: var(--void); }
a { color: inherit; text-decoration: none; }
h1,h2,h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.0; letter-spacing: -0.02em; }
img { display: block; max-width: 100%; }

/* ---------- Ambient depth layers ---------- */
.aurora {
  position: fixed; inset: -20% -10% auto -10%; height: 130vh; z-index: -4;
  pointer-events: none; opacity: 0.55;
  background:
    radial-gradient(38vw 38vw at 16% 12%, rgba(232,177,76,0.18), transparent 60%),
    radial-gradient(44vw 44vw at 84% 20%, rgba(79,116,255,0.22), transparent 62%),
    radial-gradient(48vw 48vw at 52% 82%, rgba(31,58,166,0.20), transparent 62%);
  animation: drift 26s ease-in-out infinite alternate;
}
@keyframes drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(-3%, 2%, 0) scale(1.08); }
  100% { transform: translate3d(3%, -2%, 0) scale(1.03); }
}
/* Ambient gradient wash — gold + royal blue layered on the black,
   low alpha, behind every scrolled section (hidden behind hero by the WebGL). */
.bg-grad {
  position: fixed; inset: -45% -28%; z-index: -3; pointer-events: none;
  will-change: transform;
}
/* single gold blob — lives in the UPPER band (JS sweeps it horizontally) */
.bg-grad--a { background: radial-gradient(46vw 40vw at 50% 50%, rgba(232,177,76,0.22), transparent 60%); }
/* single royal-blue blob — lives in the LOWER band; separate bands = never overlap */
.bg-grad--b { background: radial-gradient(48vw 42vw at 50% 50%, rgba(79,116,255,0.24), transparent 60%); }

/* dust particle field — above the gradient wash, below all content */
.dust { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -2; pointer-events: none; opacity: 0.8; }

/* floating timecodes — above dust, below content */
.tc-float { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.tc-float__item {
  position: absolute; top: 0; left: 0; white-space: nowrap; opacity: 0;
  font-family: var(--font-mono); letter-spacing: 0.1em; will-change: transform, opacity;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.scan {
  position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: 0.5;
  background: radial-gradient(ellipse at 50% -10%, transparent 45%, rgba(0,0,0,0.6) 100%);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--pad);
  transition: all .45s var(--ease); border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(8,9,13,0.6);
  border-bottom-color: var(--line); padding-top: 13px; padding-bottom: 13px;
  box-shadow: 0 10px 40px -20px rgba(0,0,0,0.9);
}
.nav__left { display: flex; align-items: center; gap: 16px; }
.nav__mark { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: 0.18em; }
.nav__mark b { color: var(--gold); }
.nav__tc {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--gold-2);
  padding: 5px 11px; border: 1px solid var(--line); border-radius: 100px;
  background: var(--glass);
}
.nav__tc::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red); box-shadow: 0 0 8px var(--red); animation: recBlink 1.6s ease-in-out infinite; }
@keyframes recBlink { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }
@media (max-width: 560px) { .nav__tc { display: none; } }
.nav__links { display: flex; align-items: center; gap: clamp(14px,2.4vw,32px); }
.nav__links a { font-size: 13px; letter-spacing: 0.04em; color: var(--muted); transition: color .25s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  border: 1px solid var(--line-2); border-radius: 100px; padding: 8px 18px !important;
  color: var(--ink) !important; background: var(--glass);
}
.nav__cta:hover { border-color: var(--gold); color: var(--gold) !important; box-shadow: 0 8px 24px -10px rgba(232,177,76,0.5); }
@media (max-width: 740px){ .nav__links a:not(.nav__cta){ display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 90px var(--pad) 0; overflow: hidden; perspective: 1200px;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse at 50% 62%, transparent 26%, var(--void) 80%);
}
.hero__inner { position: relative; z-index: 2; max-width: 1100px; transform-style: preserve-3d; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 30px;
  padding: 8px 16px; border: 1px solid var(--line); border-radius: 100px;
  background: var(--glass);
}

.hero__title { font-size: clamp(52px, 13vw, 184px); font-weight: 700; letter-spacing: -0.045em; line-height: 0.84; transform-style: preserve-3d; }
.hero__title .line { display: block; }
/* rich royal blue with white-led extrude = 3D */
/* 2026 liquid-metal royal chrome: deep-navy -> bright-royal -> steel highlight,
   with a specular band that sweeps across, soft ambient shadow + emissive glow.
   No stacked hard shadows. 3D comes from real transforms (mouse + scroll). */
.hero__title .word3d {
  /* liquid-metal royal: full gradient FILLS the letters and sweeps across */
  background: linear-gradient(100deg,
      #0d1858 0%, #1f33b0 20%, #4f72ff 38%, #e6edff 50%, #4f72ff 62%, #1f33b0 80%, #0d1858 100%);
  background-size: 240% 100%;
  background-position: 118% 0;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  transform-style: preserve-3d; transform: rotateX(10deg);   /* static 3D pose — no scroll/mouse motion */
  filter:
    drop-shadow(0 -1.5px 0.5px rgba(240,245,255,0.6))  /* top light edge — bevel */
    drop-shadow(0 5px 5px rgba(6,10,40,0.92))          /* soft thickness shadow */
    drop-shadow(0 24px 42px rgba(5,9,36,0.62))         /* ambient ground shadow */
    drop-shadow(0 0 38px rgba(79,116,255,0.42));        /* emissive royal halo */
  animation: sheen 6s ease-in-out infinite alternate;   /* ping-pong = seamless, no loop snap */
}
/* only the specular streak (1st layer) moves; the chrome (2nd layer) stays put */
@keyframes sheen {
  from { background-position: 118% 0; }
  to   { background-position: -18% 0; }
}
.hero__title .line--accent {
  color: transparent; -webkit-text-stroke: 1.4px var(--gold);
  font-size: clamp(20px, 5.2vw, 70px); letter-spacing: 0.1em; margin-top: 0.22em;
  filter: drop-shadow(0 6px 26px rgba(232,177,76,0.35));
}
.hero__sub { margin: 30px auto 0; max-width: 600px; color: var(--muted); font-size: clamp(15px,1.6vw,19px); }

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3;
  width: 26px; height: 42px; border: 1px solid var(--line-2); border-radius: 100px;
  display: flex; justify-content: center; padding-top: 8px; background: var(--glass);
}
.hero__scroll span { width: 3px; height: 8px; border-radius: 3px; background: var(--gold); animation: scroll 1.8s var(--ease) infinite; }
@keyframes scroll { 0%{opacity:0;transform:translateY(0)} 40%{opacity:1} 100%{opacity:0;transform:translateY(14px)} }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.05em;
  padding: 15px 28px; border-radius: 100px; cursor: pointer;
  border: 1px solid var(--line-2); background: var(--glass); color: var(--ink);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease); will-change: transform;
}
.btn--accent {
  background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: #1a1206;
  border-color: transparent; font-weight: 600;
  box-shadow: 0 14px 36px -12px rgba(232,177,76,0.6), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn--accent:hover { transform: translateY(-3px); box-shadow: 0 22px 50px -12px rgba(232,177,76,0.7), inset 0 1px 0 rgba(255,255,255,0.5); }

/* ---------- Section scaffold ---------- */
.section { padding: clamp(84px,13vh,170px) var(--pad); max-width: var(--maxw); margin: 0 auto; position: relative; }
.section__head { margin-bottom: 60px; }
.kicker {
  display: inline-block; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.section__head h2, .about h2, .product__inner h2 {
  font-size: clamp(32px,5.2vw,64px);
  background: linear-gradient(180deg, #fffaf0 0%, #b9b0a0 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- About + stats ---------- */
.about__grid { display: grid; grid-template-columns: 220px 1fr; gap: clamp(24px,6vw,90px); align-items: start; }
.about__body p { color: var(--muted); font-size: clamp(16px,1.7vw,20px); margin-top: 22px; max-width: 60ch; }
.about__body strong { color: var(--ink); font-weight: 600; }
.about__body h2 { margin-bottom: 10px; }
@media (max-width:760px){ .about__grid { grid-template-columns: 1fr; } }

.markets {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px;
}
.market {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--ink);
  padding: 9px 16px; border: 1px solid var(--line); border-radius: 100px;
  background: var(--glass); transition: all .3s var(--ease);
}
.market:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.market--note { color: var(--muted); }

.stats {
  display: flex; justify-content: space-between; gap: 14px;
  margin-top: clamp(56px,9vh,110px);
}
.stat {
  flex: 0 1 24%;
  background: var(--glass); border: 1px solid var(--line); border-radius: 18px;
  padding: 38px 24px; text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow);
}
.stat::after { content:""; position:absolute; inset:0 0 auto 0; height:1px; background: linear-gradient(90deg,transparent,rgba(79,116,255,0.55),transparent); }
.stat__num {
  display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(38px,6vw,70px);
  line-height: 1; background: linear-gradient(180deg,var(--gold-2),var(--gold-d));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__label { display: block; margin-top: 12px; font-size: 13px; color: var(--muted); letter-spacing: 0.04em; }
@media (max-width:680px){ .stats { gap: 10px; } .stat { flex: 1 1 0; } }

/* ---------- Work / poster wall (3D tilt) ---------- */
.grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; perspective: 1400px; }
@media (max-width:1040px){ .grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width:760px){ .grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:460px){ .grid { grid-template-columns: repeat(2,1fr); gap: 12px; } }

.card {
  position: relative; aspect-ratio: 2/3; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line); background: var(--panel);
  transform-style: preserve-3d; transform: rotateX(var(--rx,0)) rotateY(var(--ry,0)) translateZ(0);
  transition: transform .25s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease),
              opacity .9s var(--ease), filter 1.1s var(--ease);
  will-change: transform, opacity, filter; box-shadow: var(--shadow);
}
/* posters are visible immediately — no blur "develop", no pop-in */
.card:hover { border-color: rgba(232,177,76,0.5); box-shadow: 0 30px 70px -24px rgba(0,0,0,0.85), var(--glow-gold); }
.card__media { position: absolute; inset: 0; }
.card__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.02) contrast(1.02); transform: translateZ(0) scale(1.02); transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.07); }
.card__fallback { position:absolute; inset:0; background: var(--cardbg, linear-gradient(160deg,#1b1f2b,#0b0d12)); display:flex; align-items:center; justify-content:center; }
.card__fallback span { font-family: var(--font-mono); font-size: 11px; color: var(--faint); letter-spacing: .1em; }
.card__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,5,7,0) 38%, rgba(5,5,7,0.55) 70%, rgba(5,5,7,0.96) 100%); }
.card__shine {
  position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .3s var(--ease);
  background: radial-gradient(220px 220px at var(--mx,50%) var(--my,30%), rgba(255,255,255,0.18), transparent 60%);
  mix-blend-mode: soft-light;
}
.card:hover .card__shine { opacity: 1; }
.card__badge {
  position: absolute; top: 14px; left: 14px; z-index: 3; transform: translateZ(40px);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 100px; background: rgba(5,5,7,0.55);
  border: 1px solid var(--line-2); color: var(--ink);
}
.card__badge.win { color: #1a1206; background: linear-gradient(180deg,var(--gold-2),var(--gold)); border-color: transparent; font-weight: 600; }
.card__info { position: absolute; inset: auto 0 0 0; z-index: 3; padding: 18px; transform: translateZ(30px); }
.card__year { font-family: var(--font-mono); font-size: 12px; color: var(--gold-2); letter-spacing: 0.06em; }
.card__title { font-family: var(--font-display); font-weight: 600; font-size: 19px; margin: 3px 0 5px; line-height: 1.1; }
.card__role { font-size: 12.5px; color: var(--muted); }

/* phones: 2-up posters → smaller on-card text so titles/badges fit ~170px cards */
@media (max-width:460px){
  .card__info { padding: 12px; }
  .card__badge { font-size: 9px; padding: 4px 8px; top: 10px; left: 10px; }
  .card__year { font-size: 11px; }
  .card__title { font-size: 15px; margin: 2px 0 4px; }
  .card__role { font-size: 11px; }
}

.work__more { margin-top: 44px; text-align: center; }
.work__more a {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em; color: var(--gold-2);
  border: 1px solid var(--line-2); border-radius: 100px; padding: 13px 26px;
  background: var(--glass);
  transition: transform .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.work__more a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); box-shadow: 0 14px 34px -14px rgba(232,177,76,0.55); }

/* ---------- Awards ---------- */
.awards__list { display: flex; flex-direction: column; gap: 14px; }
.award-group {
  padding: 30px 32px; display: grid; grid-template-columns: 240px 1fr; gap: 30px;
  border: 1px solid var(--line); border-radius: 18px; background: var(--glass); transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.award-group:hover { border-color: var(--line-2); transform: translateY(-3px); }
.award-group__name { font-family: var(--font-display); font-weight: 600; font-size: clamp(20px,2.6vw,30px); }
.award-group__name small { display:block; font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing:.1em; margin-top: 8px; font-weight: 400; }
.award-rows { display: flex; flex-direction: column; gap: 17px; }
.award-row { display: grid; grid-template-columns: 56px 1fr auto; gap: 18px; align-items: baseline; }
.award-row__yr { font-family: var(--font-mono); font-size: 14px; color: #c6ccd6; }
.award-row__title { font-size: 16px; line-height: 1.5; }
.award-row__title em { color: var(--ink); font-style: normal; font-weight: 500; }
.award-row__title span { color: #b3bac6; font-style: normal; }
.tag { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 13px; border-radius: 100px; white-space: nowrap; }
.tag--win {
  background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: #1a1206; font-weight: 700;
  box-shadow: 0 4px 16px -4px rgba(232,177,76,0.6), inset 0 1px 0 rgba(255,255,255,0.4);
}
.tag--nom {
  background: rgba(79,116,255,0.16); color: #c2cdff; border: 1px solid rgba(79,116,255,0.55);
}
@media (max-width:700px){ .award-group { grid-template-columns: 1fr; gap: 18px; padding: 24px; } .award-row { grid-template-columns: 46px 1fr; } .award-row .tag { grid-column: 2; justify-self: start; } }

/* ---------- Services ---------- */
.services__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
@media (max-width:800px){ .services__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:520px){ .services__grid { grid-template-columns: 1fr; } }
.service {
  padding: 36px 30px; border: 1px solid var(--line); border-radius: 18px;
  background: var(--glass); position: relative; overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.service::before { content:""; position:absolute; inset:0; opacity:0; transition:opacity .4s var(--ease); background: radial-gradient(420px 200px at 0% 0%, rgba(79,116,255,0.13), transparent 60%); }
.service:hover { transform: translateY(-5px); border-color: var(--line-2); }
.service:hover::before { opacity: 1; }
.service__no { font-family: var(--font-mono); font-size: 12px; color: var(--gold); }
.service__name { font-family: var(--font-display); font-weight: 600; font-size: 21px; margin: 14px 0 8px; }
.service__desc { color: var(--muted); font-size: 14px; }

/* ---------- Product (Spotting Notes) ---------- */
.product { text-align: center; }
.product__inner {
  max-width: 720px; margin: 0 auto; padding: clamp(48px,8vw,80px) clamp(28px,5vw,64px);
  border: 1px solid var(--line); border-radius: 26px; position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(232,177,76,0.12), transparent 65%),
    var(--glass); box-shadow: var(--shadow);
}
.product__inner h2 { font-size: clamp(34px,5vw,54px); margin-bottom: 18px; }
.product__inner p { color: var(--muted); max-width: 52ch; margin: 0 auto 30px; }
.product .kicker { text-align: center; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width:760px){ .contact__grid { grid-template-columns: 1fr; } }
.contact__card {
  display: flex; flex-direction: column; gap: 10px; padding: 32px;
  border: 1px solid var(--line); border-radius: 18px; background: var(--glass); transition: all .35s var(--ease); box-shadow: var(--shadow);
}
a.contact__card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: 0 24px 60px -24px rgba(0,0,0,0.8), var(--glow-gold); }
.contact__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.contact__value { font-size: 17px; color: var(--ink); }

/* ---------- Footer ---------- */
.footer {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding: 34px var(--pad); border-top: 1px solid var(--line);
  font-size: 13px; color: var(--muted); max-width: var(--maxw); margin: 0 auto;
}
.footer__by { font-family: var(--font-mono); letter-spacing: 0.06em; }

/* ---------- Reveal: OFF — content is visible immediately (no hide-until-scroll) ---------- */
.reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, .aurora { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .card { transform: none !important; }
}

/* ---- WebGL hero canvas ---- */
.hero__gl { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.9; }
/* worker canvas boots in the background and cross-fades in over the instant
   main-thread canvas; same DOM-stacking layer, so it paints on top of #gl */
.hero__gl--worker { opacity: 0; transition: opacity .5s ease; }
.hero__gl--worker.is-ready { opacity: 0.9; }

@media (prefers-reduced-motion: reduce) {
  .hero__gl { opacity: 0.5; }
  html.js #workGrid .card { opacity: 1; filter: none; }
  .hero__title .word3d { animation: none; background-position: 0 0; transform: rotateX(8deg); }
}

/* ---- Depth: lift copy + headings off the moving background/particles ---- */
.hero__sub, .about__body p, .kicker, .stat__label, .service__desc,
.card__role, .card__title, .award-row__title, .award-row__yr,
.contact__value, .market, .footer, .nav__links a {
  text-shadow: 0 1px 14px rgba(2,4,12,0.6);
}
.section__head h2, .about h2, .product__inner h2 {
  filter: drop-shadow(0 10px 28px rgba(2,4,12,0.6));
}
/* panels float a touch higher with a faint top light-edge */
.stat, .service, .award-group, .contact__card, .product__inner {
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.05);
}

/* ---- Keyboard focus rings (a11y) ---- */
a:focus-visible, .btn:focus-visible, .nav__links a:focus-visible,
.contact__card:focus-visible, [data-scroll]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 10px;
}
