/* ============================================================
   NAVEED AHMAD — Portfolio Stylesheet
   Theme: Dark Luxury · Teal/Navy + Gold · Glassmorphism
   ============================================================ */

/* ─── CUSTOM PROPERTIES ──────────────────────────────────── */
:root {
  /* Core palette — Light Mode */
  --clr-bg:          #F8F6F1;
  --clr-bg-2:        #F0ECE4;
  --clr-bg-card:     #FFFFFF;
  --clr-bg-glass:    rgba(255,255,255,0.70);
  --clr-surface:     #EDE8DF;
  --clr-text:        #0D1F2D;
  --clr-text-2:      #3D5166;
  --clr-text-muted:  #7A92A3;
  --clr-border:      rgba(15,42,51,0.10);
  --clr-border-2:    rgba(15,42,51,0.06);

  /* Brand accents */
  --gold:            #C9973B;
  --gold-light:      #E8B55A;
  --gold-pale:       rgba(201,151,59,0.12);
  --teal:            #0F2A33;
  --teal-mid:        #1A4A5E;
  --teal-light:      #2A7A99;
  --teal-pale:       rgba(15,42,51,0.06);

  /* Shadows */
  --shadow-sm:       0 2px 8px rgba(15,42,51,0.08);
  --shadow-md:       0 8px 32px rgba(15,42,51,0.12);
  --shadow-lg:       0 20px 60px rgba(15,42,51,0.16);
  --shadow-gold:     0 8px 32px rgba(201,151,59,0.20);
  --shadow-teal:     0 8px 32px rgba(15,42,51,0.25);

  /* Typography */
  --font-display:    'Cormorant Garamond', Georgia, serif;
  --font-body:       'Syne', sans-serif;
  --font-mono:       'JetBrains Mono', monospace;

  /* Spacing */
  --sec-pad:         7rem 0;
  --sec-pad-top:     7rem;
  --container:       1200px;
  --radius-sm:       8px;
  --radius-md:       16px;
  --radius-lg:       24px;
  --radius-xl:       40px;

  /* Transitions */
  --ease:            cubic-bezier(0.23, 1, 0.32, 1);
  --ease-bounce:     cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:        0.25s;
  --dur-med:         0.45s;
  --dur-slow:        0.70s;

  /* Nav */
  --nav-h:           72px;

  /* Scroll bar */
  --scrollbar-thumb: var(--gold);
  --scrollbar-track: var(--clr-bg-2);
}

/* Dark Mode */
[data-theme="dark"] {
  --clr-bg:          #080F14;
  --clr-bg-2:        #0D1A23;
  --clr-bg-card:     #0F2030;
  --clr-bg-glass:    rgba(13,26,35,0.80);
  --clr-surface:     #122030;
  --clr-text:        #EDF4F8;
  --clr-text-2:      #A8C4D0;
  --clr-text-muted:  #5A7A8A;
  --clr-border:      rgba(255,255,255,0.07);
  --clr-border-2:    rgba(255,255,255,0.03);
  --teal-pale:       rgba(42,122,153,0.10);
  --shadow-sm:       0 2px 8px rgba(0,0,0,0.30);
  --shadow-md:       0 8px 32px rgba(0,0,0,0.40);
  --shadow-lg:       0 20px 60px rgba(0,0,0,0.55);
  --shadow-teal:     0 8px 32px rgba(0,0,0,0.60);
}

/* ─── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--clr-text);
  background: var(--clr-bg);
  overflow-x: hidden;
  transition: background var(--dur-med) var(--ease), color var(--dur-med) var(--ease);
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--scrollbar-track); }
::-webkit-scrollbar-thumb { background: var(--scrollbar-thumb); border-radius: 10px; }

::selection { background: var(--gold-pale); color: var(--gold); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
svg { display: block; stroke: currentColor; stroke-width: 1.8; }
ul { list-style: none; }

/* ─── SCROLL PROGRESS ────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--teal-light), var(--gold));
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ─── CUSTOM CURSOR ──────────────────────────────────────── */
.cur, .cur-r {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9990;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease), opacity 0.3s;
}
.cur {
  width: 10px; height: 10px;
  background: var(--gold);
  mix-blend-mode: normal;
}
.cur-r {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  opacity: 0.5;
  transition: width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s, transform 0.18s var(--ease);
}
.cur-r.hovering { width: 56px; height: 56px; opacity: 0.25; }

@media (hover: none) { .cur, .cur-r { display: none; } }

/* ─── PRELOADER ───────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0;
  background: var(--teal);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner { text-align: center; }

.preloader-logo {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 2rem;
  animation: preloaderPulse 1.5s ease infinite;
}
.preloader-logo span { color: var(--gold); }

@keyframes preloaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(0.97); }
}

.preloader-bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 1rem;
}
.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-light), var(--teal-light));
  border-radius: 10px;
  animation: preloaderFill 2s var(--ease) forwards;
}
@keyframes preloaderFill { from { width: 0; } to { width: 100%; } }

.preloader-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.40);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ─── NAVIGATION ─────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  z-index: 900;
  transition: background var(--dur-med) var(--ease),
              backdrop-filter var(--dur-med) var(--ease),
              box-shadow var(--dur-med) var(--ease),
              height var(--dur-med) var(--ease);
}
#nav.scrolled {
  background: var(--clr-bg-glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--clr-border), var(--shadow-sm);
  height: 60px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--clr-text);
  transition: color var(--dur-fast);
}
.nav-logo b { color: var(--gold); }
.nav-logo-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  animation: navDotPulse 2.5s ease infinite;
}
@keyframes navDotPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(201,151,59,0.5); }
  50% { transform: scale(1.2); box-shadow: 0 0 0 6px rgba(201,151,59,0); }
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clr-text-2);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 1.5px;
  background: var(--gold);
  transition: left var(--dur-fast) var(--ease), right var(--dur-fast) var(--ease);
}
.nav-links a:hover { color: var(--clr-text); }
.nav-links a:hover::after { left: 0.75rem; right: 0.75rem; }

.nav-hire {
  background: var(--gold) !important;
  color: #fff !important;
  border-radius: 100px !important;
  padding: 0.4rem 1.1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) !important;
}
.nav-hire:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold) !important;
}
.nav-hire::after { display: none !important; }

/* Nav Right */
.nav-right { display: flex; align-items: center; gap: 0.75rem; }

/* Theme toggle */
.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-2);
  transition: background var(--dur-fast), transform var(--dur-fast) var(--ease-bounce), color var(--dur-fast);
}
.theme-toggle:hover { background: var(--gold-pale); color: var(--gold); transform: scale(1.1); }
.theme-icon { width: 18px; height: 18px; display: none; }
.theme-icon svg { width: 100%; height: 100%; }
[data-theme="light"] .theme-icon-moon,
[data-theme="dark"] .theme-icon-sun { display: block; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast);
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform var(--dur-med) var(--ease), opacity var(--dur-fast), width var(--dur-fast);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE MENU ────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--teal);
  z-index: 850;
  padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 2rem;
}
.mobile-menu ul { flex: 1; }
.mobile-menu li {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transform: translateX(60px);
  opacity: 0;
  transition: transform var(--dur-med) var(--ease), opacity var(--dur-med);
}
.mobile-menu.open li {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu.open li:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open li:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.open li:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open li:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.open li:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open li:nth-child(6) { transition-delay: 0.30s; }
.mobile-menu.open li:nth-child(7) { transition-delay: 0.35s; }
.mobile-menu.open li:nth-child(8) { transition-delay: 0.40s; }

.m-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  color: #fff;
  transition: color var(--dur-fast);
}
.m-link:hover { color: var(--gold); }
.mm-left { display: flex; flex-direction: column; gap: 2px; }
.mm-title { font-size: 1.3rem; font-weight: 600; font-family: var(--font-display); }
.mm-desc { font-size: 0.75rem; color: rgba(255,255,255,0.45); font-family: var(--font-mono); }
.mm-num { font-family: var(--font-mono); font-size: 0.75rem; color: rgba(255,255,255,0.25); }

.mobile-menu-foot {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-foot a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--dur-fast);
}
.mobile-menu-foot a:hover { color: var(--gold); }

/* ─── CONTAINERS & LAYOUT ────────────────────────────────── */
section {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--sec-pad);
  padding-left: clamp(1.5rem, 5vw, 3rem);
  padding-right: clamp(1.5rem, 5vw, 3rem);
}

/* Global headings */
.s-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.s-tag::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1.5px;
  background: var(--gold);
}
.s-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--clr-text);
  margin-bottom: 1.25rem;
}
.s-h2 i { font-style: italic; color: var(--gold); }
.s-lead {
  font-size: 1.05rem;
  color: var(--clr-text-2);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}

/* ─── REVEAL ANIMATIONS ──────────────────────────────────── */
.rv {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.rv.visible { opacity: 1; transform: translateY(0); }
.rv-delay-1.visible { transition-delay: 0.10s; }
.rv-delay-2.visible { transition-delay: 0.20s; }
.rv-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}
.rv-stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.rv-stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.12s; }
.rv-stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.19s; }
.rv-stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.26s; }
.rv-stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.33s; }
.rv-stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.40s; }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  transition: transform var(--dur-fast) var(--ease-bounce),
              box-shadow var(--dur-fast),
              background var(--dur-fast),
              color var(--dur-fast);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.5s var(--ease);
}
.btn:hover::before { transform: translateX(110%) skewX(-15deg); }
.btn:hover { transform: translateY(-2px); }
.btn-dark {
  background: var(--teal);
  color: #fff;
  box-shadow: var(--shadow-teal);
}
.btn-dark:hover { box-shadow: 0 16px 48px rgba(15,42,51,0.4); background: var(--teal-mid); }
[data-theme="dark"] .btn-dark { background: var(--gold); color: var(--teal); }
[data-theme="dark"] .btn-dark:hover { background: var(--gold-light); box-shadow: var(--shadow-gold); }
.btn-outline {
  border: 1.5px solid var(--clr-border);
  color: var(--clr-text);
  background: var(--clr-bg-glass);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); box-shadow: var(--shadow-sm); }
.arrow { transition: transform var(--dur-fast) var(--ease-bounce); display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* ─── HERO SECTION ───────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  gap: 4rem;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(1.5rem, 5vw, 3rem);
  padding-right: clamp(1.5rem, 5vw, 3rem);
  position: relative;
  overflow: hidden;
}

/* Hero canvas */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}
.hero-bg-mesh {
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(circle at 15% 50%, rgba(42,122,153,0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(201,151,59,0.06) 0%, transparent 40%);
  z-index: 0;
  animation: meshDrift 20s ease-in-out infinite alternate;
}
@keyframes meshDrift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(2%, 1%) scale(1.02); }
}

/* Hero Left */
.hero-l {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 2;
  animation: heroSlideIn 1s var(--ease) both;
}
@keyframes heroSlideIn {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background: var(--gold-pale);
  border: 1px solid rgba(201,151,59,0.20);
  border-radius: 100px;
  animation: heroSlideIn 1s var(--ease) 0.1s both;
}
.star { font-size: 0.85rem; animation: starSpin 4s linear infinite; }
@keyframes starSpin { to { transform: rotate(360deg); } }

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--clr-text);
  margin-bottom: 1.5rem;
  animation: heroSlideIn 1s var(--ease) 0.2s both;
}

.hero-typed {
  font-style: italic;
  color: var(--gold);
  display: inline-block;
  min-width: 2ch;
}
.hero-typed::after {
  content: '|';
  animation: blink 0.9s step-end infinite;
  margin-left: 1px;
  color: var(--gold);
}
@keyframes blink { 50% { opacity: 0; } }

.hero-sub {
  font-size: 1.05rem;
  color: var(--clr-text-2);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2.5rem;
  animation: heroSlideIn 1s var(--ease) 0.3s both;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
  animation: heroSlideIn 1s var(--ease) 0.4s both;
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  animation: heroSlideIn 1s var(--ease) 0.5s both;
}
.stat { position: relative; }
.stat::after {
  content: '';
  position: absolute;
  right: -1.25rem; top: 10%; bottom: 10%;
  width: 1px;
  background: var(--clr-border);
}
.stat:last-child::after { display: none; }
.stat-n {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--clr-text);
}
.stat-n s {
  text-decoration: none;
  font-size: 1rem;
  color: var(--gold);
}
.stat-l {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-top: 0.2rem;
}

/* Hero Right */
.hero-r {
  flex: 0 0 440px;
  position: relative;
  z-index: 2;
  height: 520px;
  animation: heroFadeRight 1.2s var(--ease) 0.3s both;
}
@keyframes heroFadeRight {
  from { opacity: 0; transform: translateX(40px) scale(0.96); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

/* Hero photo background */
.hero-bg {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--teal-mid) 0%, var(--teal) 100%);
  z-index: 0;
}
.hero-mesh {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 30% 20%, rgba(42,122,153,0.4) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(201,151,59,0.2) 0%, transparent 50%);
  z-index: 1;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 1;
}

/* Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  animation: orbFloat 6s ease-in-out infinite alternate;
}
.orb-1 { width: 180px; height: 180px; background: rgba(42,122,153,0.35); top: -40px; right: -40px; }
.orb-2 { width: 140px; height: 140px; background: rgba(201,151,59,0.25); bottom: 40px; left: -30px; animation-delay: 2s; }
.orb-3 { width: 100px; height: 100px; background: rgba(42,122,153,0.20); top: 50%; left: 50%; animation-delay: 4s; }
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(10px, -15px) scale(1.05); }
}

/* Rings */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  z-index: 1;
  animation: ringExpand 8s linear infinite;
}
.hero-ring-1 { width: 300px; height: 300px; top: -50%; left: -10%; }
.hero-ring-2 { width: 500px; height: 500px; top: -80%; left: -50%; animation-delay: 4s; }
@keyframes ringExpand {
  from { opacity: 0.5; transform: scale(0.9); }
  to { opacity: 0; transform: scale(1.1); }
}

/* Hero decorative SVG */
.hero-deco-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  animation: decoRotate 80s linear infinite;
}
@keyframes decoRotate { to { transform: rotate(360deg); } }

/* Photo wrap */
.hero-photo-wrap {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 85%;
  z-index: 3;
}
.hero-photo {
  width: 100%;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  display: block;
  object-fit: cover;
  object-position: top;
  aspect-ratio: 3/4;
  filter: brightness(1.05) contrast(1.05);
}
.hero-photo-tint {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to bottom, transparent, var(--teal));
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

/* Float cards */
.hero-float-card {
  position: absolute;
  top: 2rem; right: -1.5rem;
  background: var(--clr-bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.125rem;
  z-index: 5;
  box-shadow: var(--shadow-md);
  animation: floatCard 4s ease-in-out infinite alternate;
}
@keyframes floatCard {
  from { transform: translateY(0) rotate(-1deg); }
  to { transform: translateY(-8px) rotate(0deg); }
}
.hfc-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.hfc-val {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
}
.hfc-sub {
  font-size: 0.68rem;
  color: var(--clr-text-muted);
  margin-top: 1px;
}

.hero-badge {
  position: absolute;
  bottom: 2.5rem; left: -1rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
  z-index: 5;
  box-shadow: var(--shadow-gold);
  animation: floatCard 4.5s ease-in-out infinite alternate;
  animation-delay: 0.5s;
}

.hero-mini-chip {
  position: absolute;
  top: 2rem; left: -1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--clr-bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--clr-text);
  z-index: 5;
  box-shadow: var(--shadow-sm);
  animation: floatCard 5s ease-in-out infinite alternate;
  animation-delay: 1s;
}
.hmc-dot {
  width: 8px; height: 8px;
  background: #3DCB6F;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(61,203,111,0.2);
  animation: navDotPulse 2s ease infinite;
}

.hero-chart-card {
  position: absolute;
  bottom: 3rem; right: -1.5rem;
  background: var(--clr-bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.125rem;
  min-width: 150px;
  z-index: 5;
  box-shadow: var(--shadow-md);
  animation: floatCard 5.5s ease-in-out infinite alternate;
  animation-delay: 2s;
}
.hcc-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.68rem;
  color: var(--clr-text-muted);
  margin-bottom: 4px;
}
.hcc-up { color: #3DCB6F; font-weight: 700; }
.hcc-val {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 6px;
}
.hcc-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 32px;
}
.hcc-bar {
  flex: 1;
  background: linear-gradient(to top, var(--teal-light), var(--gold-light));
  border-radius: 2px;
  animation: barGrow 1.5s var(--ease) both;
}
.hcc-bar:nth-child(1) { height: 40%; animation-delay: 0.1s; }
.hcc-bar:nth-child(2) { height: 65%; animation-delay: 0.2s; }
.hcc-bar:nth-child(3) { height: 45%; animation-delay: 0.3s; }
.hcc-bar:nth-child(4) { height: 80%; animation-delay: 0.4s; }
.hcc-bar:nth-child(5) { height: 55%; animation-delay: 0.5s; }
.hcc-bar:nth-child(6) { height: 90%; animation-delay: 0.6s; }
.hcc-bar:nth-child(7) { height: 70%; animation-delay: 0.7s; }
@keyframes barGrow { from { height: 0%; } }

/* ─── MARQUEE ─────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-surface);
  padding: 1rem 0;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.mi {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: color var(--dur-fast);
}
.mi:hover { color: var(--gold); }
.mi span { color: var(--gold); font-size: 0.6rem; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── ABOUT SECTION ──────────────────────────────────────── */
#about {
  background: var(--clr-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

/* About photo */
.about-photo-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
  aspect-ratio: 3/4;
  max-width: 420px;
}
.about-corner-tl,
.about-corner-br {
  position: absolute;
  width: 40px; height: 40px;
  z-index: 3;
  border-color: var(--gold);
  border-style: solid;
}
.about-corner-tl { top: -12px; left: -12px; border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.about-corner-br { bottom: -12px; right: -12px; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }

.about-photo-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-xl);
  filter: brightness(0.95) contrast(1.05);
  transition: filter var(--dur-slow);
}
.about-photo-wrap:hover .about-photo-img { filter: brightness(1.02) contrast(1.08); }

.about-stat-chip {
  position: absolute;
  bottom: 2rem; left: -2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-md);
  z-index: 5;
  animation: floatCard 4s ease-in-out infinite alternate;
}
.asc-ico {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  flex-shrink: 0;
}
.asc-ico svg { width: 16px; height: 16px; }
.asc-val {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1;
}
.asc-lbl {
  font-size: 0.68rem;
  color: var(--clr-text-muted);
  margin-top: 1px;
}

.about-chip {
  position: absolute;
  top: 2rem; right: -2rem;
  background: var(--teal);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-teal);
  z-index: 5;
  animation: floatCard 5s ease-in-out infinite alternate;
  animation-delay: 1s;
  text-align: center;
}
.about-chip-n {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}
.about-chip-l {
  font-size: 0.65rem;
  opacity: 0.7;
  white-space: nowrap;
}

/* About text */
.about-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.about-p {
  font-size: 1rem;
  color: var(--clr-text-2);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.about-p strong { color: var(--clr-text); }

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.pill {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--teal-light);
  background: var(--teal-pale);
  border: 1px solid rgba(42,122,153,0.15);
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
  transition: background var(--dur-fast), color var(--dur-fast), transform var(--dur-fast) var(--ease-bounce);
  cursor: default;
}
.pill:hover {
  background: var(--teal-light);
  color: #fff;
  transform: translateY(-2px);
}
[data-theme="dark"] .pill { color: var(--gold-light); background: var(--gold-pale); border-color: rgba(201,151,59,0.2); }
[data-theme="dark"] .pill:hover { background: var(--gold); color: var(--teal); }

.about-signature {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--clr-border);
}
.sig-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--clr-text);
}
.sig-role {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--clr-text-muted);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* ─── SERVICES ───────────────────────────────────────────── */
#services {
  background: var(--clr-bg-2);
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
#services > * {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.5rem, 5vw, 3rem);
  padding-right: clamp(1.5rem, 5vw, 3rem);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-card {
  position: relative;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med), border-color var(--dur-fast);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,151,59,0.3);
}
.svc-bg-shape {
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-pale) 0%, transparent 70%);
  pointer-events: none;
  transition: transform 0.5s var(--ease), opacity 0.5s;
  opacity: 0;
}
.svc-card:hover .svc-bg-shape { opacity: 1; transform: translate(-10px, 10px); }

.svc-card-content { padding: 2rem; position: relative; z-index: 1; }

.svc-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
}

.svc-ico-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--dur-fast), transform var(--dur-fast) var(--ease-bounce);
  color: var(--teal-light);
}
[data-theme="dark"] .svc-ico-wrap { background: var(--gold-pale); color: var(--gold-light); }
.svc-ico-wrap svg { width: 22px; height: 22px; }
.svc-card:hover .svc-ico-wrap { background: var(--gold); color: #fff; transform: scale(1.1) rotate(-5deg); }

.svc-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.svc-desc {
  font-size: 0.875rem;
  color: var(--clr-text-2);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.svc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  padding-top: 1rem;
  border-top: 1px solid var(--clr-border-2);
  transition: color var(--dur-fast);
}
.svc-card:hover .svc-meta { color: var(--gold); }
.svc-meta-arrow { transition: transform var(--dur-fast) var(--ease-bounce); }
.svc-card:hover .svc-meta-arrow { transform: translateX(6px); }

/* ─── PROJECTS ───────────────────────────────────────────── */
#projects { background: var(--clr-bg); }

/* Filter buttons */
.proj-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.pf-btn {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  border: 1.5px solid var(--clr-border);
  color: var(--clr-text-muted);
  background: transparent;
  transition: all var(--dur-fast);
}
.pf-btn:hover, .pf-btn.active {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
[data-theme="dark"] .pf-btn:hover,
[data-theme="dark"] .pf-btn.active { background: var(--gold); border-color: var(--gold); color: var(--teal); }

.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.proj-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med), opacity var(--dur-med);
}
.proj-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.proj-card.hidden { display: none; }

.proj-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.proj-img {
  width: 100%; height: 100%;
  transition: transform 0.6s var(--ease);
}
.proj-card:hover .proj-img { transform: scale(1.05); }

.proj-img-1 { background: linear-gradient(135deg, #0F5E6B 0%, #1A3A5C 50%, #C9973B 100%); }
.proj-img-2 { background: linear-gradient(135deg, #1A4A5E 0%, #0F2A33 50%, #8B5E1A 100%); }
.proj-img-3 { background: linear-gradient(135deg, #2A1A5E 0%, #1A0F33 50%, #5E2A8B 100%); }
.proj-img-4 { background: linear-gradient(135deg, #0F4A33 0%, #1A5E2A 50%, #3B9B5C 100%); }
.proj-img-5 { background: linear-gradient(135deg, #5E1A0F 0%, #8B3B1A 50%, #C9973B 100%); }
.proj-img-6 { background: linear-gradient(135deg, #1A1A5E 0%, #2A2A8B 50%, #3B3BC9 100%); }

/* Project image overlays with grid pattern */
.proj-img-1::after, .proj-img-2::after, .proj-img-3::after,
.proj-img-4::after, .proj-img-5::after, .proj-img-6::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}

.proj-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-med);
}
.proj-card:hover .proj-overlay { opacity: 1; }
.proj-link-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  background: var(--gold);
  color: #fff;
  border-radius: 100px;
  transform: translateY(15px);
  transition: transform var(--dur-med) var(--ease), background var(--dur-fast);
}
.proj-card:hover .proj-link-btn { transform: translateY(0); }
.proj-link-btn:hover { background: var(--gold-light); }

.proj-cat-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  z-index: 2;
}

.proj-body { padding: 1.5rem; }

.proj-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}
.proj-client {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--gold);
}
.proj-year {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--clr-text-muted);
}

.proj-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.proj-desc {
  font-size: 0.83rem;
  color: var(--clr-text-2);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.proj-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 1rem 0;
  border-top: 1px solid var(--clr-border-2);
  border-bottom: 1px solid var(--clr-border-2);
}
.proj-result { text-align: center; }
.pr-n {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
}
[data-theme="dark"] .pr-n { color: var(--gold-light); }
.pr-l {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-top: 3px;
}
.proj-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.proj-tags span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--clr-text-muted);
  background: var(--clr-surface);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}

/* ─── PROCESS ─────────────────────────────────────────────── */
#process {
  background: var(--clr-bg-2);
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
#process > * {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.5rem, 5vw, 3rem);
  padding-right: clamp(1.5rem, 5vw, 3rem);
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-flow::before {
  content: '';
  position: absolute;
  top: 56px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201,151,59,0.1));
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med), border-color var(--dur-fast);
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.ps-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.ps-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--teal-light);
  transition: background var(--dur-fast), color var(--dur-fast), transform var(--dur-fast) var(--ease-bounce);
}
[data-theme="dark"] .ps-icon { background: var(--gold-pale); color: var(--gold-light); }
.process-step:hover .ps-icon { background: var(--gold); color: #fff; transform: scale(1.1); }
.ps-icon svg { width: 20px; height: 20px; }
.ps-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.6rem;
}
.ps-desc {
  font-size: 0.83rem;
  color: var(--clr-text-2);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.ps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.ps-list li {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--clr-text-muted);
  padding-left: 1rem;
  position: relative;
}
.ps-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ─── IMPACT STATS ───────────────────────────────────────── */
#impact {
  background: var(--teal);
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  color: #fff;
}
#impact > * {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.5rem, 5vw, 3rem);
  padding-right: clamp(1.5rem, 5vw, 3rem);
}
.impact-head { text-align: center; margin-bottom: 3.5rem; }
.impact-head .s-tag { color: var(--gold-light); }
.impact-head .s-tag::before { background: var(--gold-light); }
.impact-h {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.impact-h i { font-style: italic; color: var(--gold-light); }

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.impact-cell {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: background var(--dur-fast), transform var(--dur-fast) var(--ease-bounce);
  cursor: default;
}
.impact-cell:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.impact-icon {
  width: 48px; height: 48px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(201,151,59,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}
.impact-icon svg { width: 20px; height: 20px; }
.impact-n {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.impact-n s { text-decoration: none; font-size: 1.5rem; color: var(--gold-light); }
.impact-l {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  margin-bottom: 1.25rem;
}
.impact-bar {
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.impact-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-light), rgba(201,151,59,0.3));
  border-radius: 2px;
  width: 0%;
  transition: width 1.5s var(--ease);
}

/* ─── EXPERIENCE ─────────────────────────────────────────── */
#experience { background: var(--clr-bg); }

.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.t-item {
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  padding: 2rem 0 2rem 2rem;
  border-bottom: 1px solid var(--clr-border-2);
  transition: background var(--dur-fast);
}
.t-item:last-child { border-bottom: none; }
.t-item::before {
  content: '';
  position: absolute;
  top: 2.5rem; left: -5px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--clr-bg);
  box-shadow: 0 0 0 3px rgba(201,151,59,0.2);
  transition: transform var(--dur-fast) var(--ease-bounce), box-shadow var(--dur-fast);
}
.t-item:hover::before { transform: scale(1.3); box-shadow: 0 0 0 6px rgba(201,151,59,0.15); }

.t-date {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  padding-top: 0.2rem;
}
.t-date b {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--clr-text-2);
  margin-bottom: 0.2rem;
}

.t-role {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.3rem;
}
.t-co {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.t-desc {
  font-size: 0.9rem;
  color: var(--clr-text-2);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.t-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.t-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--teal-light);
  background: var(--teal-pale);
  border-radius: 100px;
  padding: 0.25rem 0.65rem;
}
[data-theme="dark"] .t-tag { color: var(--gold-light); background: var(--gold-pale); }

/* ─── SKILLS ─────────────────────────────────────────────── */
#skills {
  background: var(--clr-bg-2);
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
#skills > * {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.5rem, 5vw, 3rem);
  padding-right: clamp(1.5rem, 5vw, 3rem);
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.sg-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.sb { margin-bottom: 1.2rem; }
.sb-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.sb-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-text);
}
.sb-pct {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold);
}
.sb-track {
  height: 5px;
  background: var(--clr-surface);
  border-radius: 10px;
  overflow: hidden;
}
.sb-fill {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--teal-mid), var(--teal-light));
  width: 0%;
  transition: width 1.5s var(--ease);
}
[data-theme="dark"] .sb-fill { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

/* ─── CERTIFICATIONS ─────────────────────────────────────── */
#certifications { background: var(--clr-bg); }

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.cert-card {
  position: relative;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: transform var(--dur-fast) var(--ease-bounce), box-shadow var(--dur-fast), border-color var(--dur-fast);
  overflow: hidden;
}
.cert-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-fast) var(--ease);
}
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.cert-card:hover::before { transform: scaleX(1); }

.cert-logo {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-light);
  margin-bottom: 0.75rem;
}
[data-theme="dark"] .cert-logo { background: var(--gold-pale); color: var(--gold-light); }

.cert-check {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(61,203,111,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3DCB6F;
}
.cert-check svg { width: 12px; height: 12px; }

.cert-issuer {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.cert-name {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.cert-date {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--clr-text-muted);
  margin-bottom: 0.25rem;
}
.cert-id {
  font-size: 0.65rem;
  color: var(--clr-text-muted);
  opacity: 0.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
#testimonials {
  background: var(--clr-bg-2);
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
#testimonials > * {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.5rem, 5vw, 3rem);
  padding-right: clamp(1.5rem, 5vw, 3rem);
}

.testi-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.testi-track {
  display: flex;
  transition: transform 0.6s var(--ease);
}
.testi-card {
  min-width: 100%;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  position: relative;
}
.testi-quote {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--gold-pale);
  position: absolute;
  top: 1.5rem; left: 2.5rem;
  font-weight: 700;
  pointer-events: none;
  color: var(--gold);
  opacity: 0.15;
}
.testi-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.testi-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-style: italic;
  color: var(--clr-text);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 800px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.testi-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testi-name {
  font-weight: 700;
  color: var(--clr-text);
  font-size: 1rem;
}
.testi-role {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-top: 2px;
}
.testi-verified {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: #3DCB6F;
  background: rgba(61,203,111,0.1);
  border-radius: 100px;
  padding: 0.3rem 0.75rem;
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.testi-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-2);
  transition: all var(--dur-fast);
  background: var(--clr-bg-card);
}
.testi-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-pale); }
.testi-btn svg { width: 18px; height: 18px; }
.testi-dots { display: flex; gap: 0.5rem; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 100px;
  background: var(--clr-border);
  transition: width var(--dur-fast) var(--ease), background var(--dur-fast);
}
.testi-dot.active { width: 24px; background: var(--gold); }

/* ─── EDUCATION ──────────────────────────────────────────── */
#education { background: var(--clr-bg); }
.edu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.edu-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--dur-fast) var(--ease-bounce), box-shadow var(--dur-fast), border-color var(--dur-fast);
}
.edu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.edu-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.edu-ico-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
}
[data-theme="dark"] .edu-ico-wrap { background: var(--gold-pale); color: var(--gold-light); }
.edu-ico-wrap svg { width: 22px; height: 22px; }
.edu-stats { display: flex; gap: 1rem; }
.edu-stat { text-align: right; }
.edu-stat-n {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1;
}
.edu-stat-l {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}
.edu-deg {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.35rem;
}
.edu-school { font-size: 0.875rem; color: var(--gold); font-weight: 600; margin-bottom: 0.25rem; }
.edu-yr {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
}
.edu-p { font-size: 0.875rem; color: var(--clr-text-2); line-height: 1.7; margin-bottom: 1.25rem; }
.edu-skills { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.edu-skill {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--clr-text-muted);
  background: var(--clr-surface);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}

/* ─── AWARDS ──────────────────────────────────────────────── */
#awards {
  background: var(--clr-bg-2);
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
#awards > * {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.5rem, 5vw, 3rem);
  padding-right: clamp(1.5rem, 5vw, 3rem);
}
.awards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.award-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  overflow: hidden;
  position: relative;
  transition: transform var(--dur-fast) var(--ease-bounce), box-shadow var(--dur-fast);
}
.award-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.award-shine {
  position: absolute;
  top: -80px; right: -80px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,151,59,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.award-top {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.award-ico-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}
.award-ico-wrap svg { width: 24px; height: 24px; }
.award-meta {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--clr-text-muted);
  margin-bottom: 0.3rem;
}
.award-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.25rem;
}
.award-org {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold);
}
.award-desc { font-size: 0.875rem; color: var(--clr-text-2); line-height: 1.75; }

/* ─── CONTACT ─────────────────────────────────────────────── */
#contact {
  background: var(--clr-bg);
  padding-bottom: 3rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-list {
  list-style: none;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.c-ico {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--clr-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform var(--dur-fast) var(--ease-bounce);
}
.contact-info-list li:hover .c-ico { transform: scale(1.1) rotate(-5deg); }
.c-key {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 2px;
}
.c-val a {
  font-size: 0.9rem;
  color: var(--clr-text-2);
  transition: color var(--dur-fast);
}
.c-val a:hover { color: var(--gold); }

/* Contact Form */
.contact-form {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
}
.form-head { margin-bottom: 2rem; }
.form-head-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.35rem;
}
.form-head-sub { font-size: 0.875rem; color: var(--clr-text-muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 0.5rem;
}
.form-input, .form-textarea {
  width: 100%;
  background: var(--clr-surface);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--clr-text);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast), background var(--dur-fast);
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-pale);
  background: var(--clr-bg-card);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--clr-text-muted); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
}
.form-status {
  margin-top: 1rem;
  font-size: 0.875rem;
  text-align: center;
  min-height: 1.5rem;
  transition: color var(--dur-fast);
}
.form-status.success { color: #3DCB6F; }
.form-status.error { color: #E85A5A; }

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--teal);
  color: rgba(255,255,255,0.7);
  padding: 4rem clamp(1.5rem, 5vw, 3rem) 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  max-width: var(--container);
  margin: 0 auto;
}
.f-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.f-logo b { color: var(--gold-light); }
.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background var(--dur-fast), color var(--dur-fast), transform var(--dur-fast) var(--ease-bounce);
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }

.footer-nav {
  display: flex;
  gap: 3rem;
}
.footer-nav-col h4 {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.footer-nav-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  padding: 0.3rem 0;
  transition: color var(--dur-fast), padding-left var(--dur-fast);
}
.footer-nav-col a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: var(--container);
  margin: 0 auto;
}
.f-copy { font-size: 0.78rem; color: rgba(255,255,255,0.30); }
.footer-bottom-links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--dur-fast);
}
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .cert-grid { grid-template-columns: repeat(3, 1fr); }
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-r { display: none; }
  #hero { min-height: 85vh; padding-top: calc(var(--nav-h) + 2rem); }
  .hero-h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 100%; aspect-ratio: 4/3; margin-bottom: 3rem; }
  .about-stat-chip { left: 0; }
  .about-chip { right: 0; }
  .process-flow { grid-template-columns: repeat(2, 1fr); }
  .process-flow::before { display: none; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .t-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .t-date { padding-top: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .awards-grid { grid-template-columns: 1fr; }
  .edu-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  :root { --sec-pad: 4.5rem 0; }
  .hero-stats { gap: 1.5rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }
  .cert-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-nav { flex-direction: column; gap: 1.5rem; }
  .process-flow { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .edu-grid { grid-template-columns: 1fr; }
  .testi-text { font-size: 1.1rem; }
}

/* ─── UTILITY ─────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ─── FOCUS STYLES (ACCESSIBILITY) ───────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}