/* ============================================================
   MKT Motion Lab — style.css
   Upload this file to Hostinger public_html/
   Browser caches this file — returning visitors load instantly
   ============================================================ */

:root {
  --bg:      #050508;
  --bg2:     #09090e;
  --bg3:     #0e0e15;
  --bg4:     #13131c;
  --gold:    #e8b84b;
  --gold2:   #f5d07a;
  --gold3:   #c49a30;
  --cyan:    #4db8ff;
  --glow-g:  rgba(232,184,75,.12);
  --glow-c:  rgba(77,184,255,.08);
  --glass:   rgba(255,255,255,.03);
  --glass2:  rgba(255,255,255,.06);
  --border:  rgba(255,255,255,.07);
  --border2: rgba(232,184,75,.2);
  --chalk:   rgba(255,255,255,.93);
  --chalk2:  rgba(255,255,255,.58);
  --chalk3:  rgba(255,255,255,.24);
  --chalk4:  rgba(255,255,255,.10);
  --ff-d:  'Bebas Neue', sans-serif;
  --ff-b:  'Crimson Pro', Georgia, serif;
  --ff-m:  'DM Mono', monospace;
  --ff-s:  'Space Grotesk', sans-serif;
  --max:   1380px;
  --nav-h: 70px;
  --r:     6px;
  --ease:  cubic-bezier(.22,.68,0,1.2);
  --ease2: cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--chalk);
  font-family: var(--ff-b);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  cursor: none;
}

/* ── NOISE ── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9997; opacity: .45;
}

/* ── CURSOR ── */
.cursor { position: fixed; pointer-events: none; z-index: 9999; mix-blend-mode: difference; }
.cursor-dot  { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; transform: translate(-50%,-50%); }
.cursor-ring {
  width: 38px; height: 38px;
  border: 1px solid rgba(232,184,75,.5);
  border-radius: 50%; transform: translate(-50%,-50%);
  transition: width .2s var(--ease), height .2s var(--ease), border-color .2s;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 56px; height: 56px; border-color: rgba(232,184,75,.9); }
@media (hover:none) { .cursor { display:none; } body { cursor:auto; } }

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── GLOW ORBS ── */
.orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(80px); opacity: .5; z-index: 0;
}
.orb-gold { background: radial-gradient(circle, rgba(232,184,75,.25) 0%, transparent 70%); }
.orb-cyan { background: radial-gradient(circle, rgba(77,184,255,.15) 0%, transparent 70%); }

/* ── REVEAL ── */
.reveal-up {
  opacity: 0; transform: translateY(36px);
  transition: opacity .85s var(--ease2), transform .85s var(--ease2);
}
.reveal-up.visible { opacity: 1; transform: none; }
.reveal-up:nth-child(2) { transition-delay: .1s; }
.reveal-up:nth-child(3) { transition-delay: .2s; }
.reveal-up:nth-child(4) { transition-delay: .3s; }

/* ── LAYOUT ── */
.container { width: min(var(--max), 100% - 48px); margin-inline: auto; }
section { padding-block: clamp(80px,10vw,140px); position: relative; overflow: hidden; }

/* ── NAV ── */
nav#mainNav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  display: flex; align-items: center;
  padding-inline: clamp(20px,4vw,60px);
  transition: all .35s var(--ease2);
}
nav#mainNav.scrolled {
  background: rgba(5,5,8,.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.nav-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--ff-d); font-size: 1.65rem; letter-spacing: .06em; color: var(--chalk); }
.nav-logo .dot { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--ff-m); font-size: .7rem;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--chalk2); transition: color .2s;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .28s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--chalk); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  font-family: var(--ff-m); font-size: .68rem;
  letter-spacing: .13em; text-transform: uppercase;
  padding: 9px 22px; border: 1px solid var(--gold);
  color: var(--gold); border-radius: var(--r);
  transition: all .22s; background: transparent;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); box-shadow: 0 0 24px rgba(232,184,75,.3); }

/* ── MOBILE NAV ── */
.mob-nav {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 1000; background: rgba(5,5,8,.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 10px 0 max(10px, env(safe-area-inset-bottom));
}
.mob-nav-grid { display: flex; justify-content: space-around; }
.mob-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-family: var(--ff-m); font-size: .58rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--chalk3); padding: 4px 10px; transition: color .2s;
}
.mob-nav-item i { font-size: 1rem; }
.mob-nav-item.active, .mob-nav-item:hover { color: var(--gold); }
@media (max-width: 992px) {
  .nav-links, .nav-cta { display: none; }
  .mob-nav { display: block; }
}

/* ── HERO ── */
#home {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: clamp(60px,8vw,100px);
  padding-inline: clamp(20px,4vw,60px);
  overflow: hidden;
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(5,5,8,.75) 0%, rgba(5,5,8,.45) 40%, rgba(5,5,8,.85) 100%);
}
.hero-veil::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(to bottom, transparent 0px, transparent 2px, rgba(0,0,0,.06) 2px, rgba(0,0,0,.06) 4px);
  pointer-events: none;
}
.hero-corner {
  position: absolute; top: calc(var(--nav-h) + 28px); right: clamp(20px,4vw,60px);
  z-index: 2; text-align: right;
  font-family: var(--ff-m); font-size: .62rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--chalk3); line-height: 2.4;
}
.hero-corner .loc { color: var(--gold); }
.hero-vert {
  position: absolute; left: clamp(20px,2.5vw,40px); bottom: 120px; z-index: 2;
  font-family: var(--ff-m); font-size: .58rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--chalk3);
  writing-mode: vertical-rl; display: flex; align-items: center; gap: 14px;
}
.hero-vert::before { content: ''; display: block; width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent); }
.hero-content { position: relative; z-index: 2; max-width: var(--max); }
.hero-eyebrow {
  font-family: var(--ff-m); font-size: .68rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.hero-name {
  font-family: var(--ff-d); font-size: clamp(76px,13.5vw,196px);
  line-height: .88; letter-spacing: .02em; color: var(--chalk); margin-bottom: 28px;
}
.hero-name .accent { color: var(--gold); }
.hero-sub {
  font-family: var(--ff-b); font-size: clamp(1rem,1.8vw,1.25rem);
  font-style: italic; color: var(--chalk2); max-width: 56ch; line-height: 1.7; margin-bottom: 36px;
}
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 44px; }
.hero-tag {
  font-family: var(--ff-m); font-size: .62rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border: 1px solid var(--chalk4);
  border-radius: 20px; color: var(--chalk2); transition: all .2s;
}
.hero-tag:hover { border-color: var(--gold); color: var(--gold); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-gold {
  font-family: var(--ff-m); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 14px 32px; background: var(--gold); color: var(--bg);
  border: none; border-radius: var(--r); cursor: pointer;
  transition: transform .15s, box-shadow .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(232,184,75,.35); }
.btn-wire {
  font-family: var(--ff-m); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 14px 32px; background: transparent; color: var(--chalk);
  border: 1px solid var(--border2); border-radius: var(--r); cursor: pointer;
  transition: all .22s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-wire:hover { border-color: var(--gold); color: var(--gold); background: rgba(232,184,75,.05); }
.hero-scroll {
  position: absolute; bottom: clamp(40px,5vw,70px); right: clamp(20px,4vw,60px);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--ff-m); font-size: .58rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--chalk3); writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 58px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{transform:scaleY(1);opacity:1;} 50%{transform:scaleY(.35);opacity:.35;} }

/* ── MARQUEE ── */
.marquee-strip { background: var(--gold); padding: 13px 0; overflow: hidden; white-space: nowrap; }
.marquee-inner { display: inline-flex; gap: 0; animation: marquee 24s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item { font-family: var(--ff-m); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--bg); padding: 0 28px; }
.marquee-dot { font-size: .35rem; opacity: .5; }

/* ── STATS ── */
#stats { background: var(--bg2); padding-block: 0 !important; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item { padding: clamp(36px,5vw,56px) clamp(24px,3vw,40px); text-align: center; position: relative; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
@media (max-width: 768px) {
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
  .stat-item { border-bottom: 1px solid var(--border); }
}
.stat-num { font-family: var(--ff-d); font-size: clamp(3rem,6vw,5.5rem); line-height: 1; letter-spacing: .02em; color: var(--gold); display: block; }
.stat-suffix { font-family: var(--ff-d); font-size: clamp(2rem,4vw,3.5rem); color: var(--chalk3); }
.stat-label { font-family: var(--ff-m); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--chalk3); margin-top: 8px; display: block; }
.stat-desc { font-family: var(--ff-b); font-style: italic; font-size: .88rem; color: var(--chalk3); margin-top: 4px; }

/* ── SECTION HEAD ── */
.s-head { margin-bottom: clamp(48px,6vw,80px); display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.s-eyebrow { font-family: var(--ff-m); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.s-eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--gold); }
.s-title { font-family: var(--ff-d); font-size: clamp(2.6rem,5.5vw,5rem); line-height: .9; letter-spacing: .03em; }

/* ── CAPABILITIES ── */
#skills { background: var(--bg2); }
.caps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); }
@media (max-width: 768px) { .caps-grid { grid-template-columns: 1fr; } }
.cap-card { padding: clamp(28px,4vw,48px); background: var(--bg2); position: relative; overflow: hidden; transition: background .3s; }
.cap-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.cap-card:hover { background: var(--bg3); }
.cap-card:hover::before { transform: scaleX(1); }
.cap-card::after { content: ''; position: absolute; bottom: 16px; right: 16px; width: 24px; height: 24px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); transition: border-color .3s, width .3s, height .3s; }
.cap-card:hover::after { border-color: var(--gold); width: 36px; height: 36px; }
.cap-num { font-family: var(--ff-m); font-size: .62rem; letter-spacing: .15em; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.cap-num::after { content: ''; flex: 1; height: 1px; background: var(--border); max-width: 60px; }
.cap-icon { font-size: 1.5rem; color: var(--chalk4); margin-bottom: 18px; transition: color .3s, transform .3s; }
.cap-card:hover .cap-icon { color: var(--gold); transform: scale(1.1); }
.cap-title { font-family: var(--ff-d); font-size: clamp(1.25rem,2.2vw,1.7rem); letter-spacing: .04em; margin-bottom: 22px; }
.cap-list { list-style: none; }
.cap-list li { font-family: var(--ff-s); font-size: .88rem; color: var(--chalk2); padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.04); display: flex; align-items: center; gap: 10px; transition: color .2s; }
.cap-list li:last-child { border-bottom: none; }
.cap-list li::before { content: ''; display: block; width: 5px; height: 5px; flex-shrink: 0; border: 1px solid var(--gold); border-radius: 50%; transition: background .2s; }
.cap-card:hover .cap-list li { color: var(--chalk); }
.cap-card:hover .cap-list li::before { background: var(--gold); }

/* ── SOFTWARE SKILLS ── */
#software { background: var(--bg); }
.skills-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px,4vw,64px); }
@media (max-width: 768px) { .skills-cols { grid-template-columns: 1fr; } }
.skill-group-title { font-family: var(--ff-d); font-size: 1.5rem; letter-spacing: .04em; color: var(--chalk); margin-bottom: 28px; padding-bottom: 14px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.skill-group-title i { color: var(--gold); font-size: 1.1rem; }
.skill-item { margin-bottom: 18px; }
.skill-row { display: flex; justify-content: space-between; margin-bottom: 7px; align-items: center; }
.skill-name { font-family: var(--ff-s); font-size: .88rem; color: var(--chalk2); }
.skill-pct  { font-family: var(--ff-m); font-size: .68rem; color: var(--gold); letter-spacing: .06em; }
.skill-track { height: 3px; background: var(--border); border-radius: 3px; overflow: hidden; }
.skill-fill { height: 100%; background: linear-gradient(90deg, var(--gold3), var(--gold), var(--gold2)); border-radius: 3px; width: 0; transition: width 1.3s var(--ease); box-shadow: 0 0 10px rgba(232,184,75,.4); }

/* ── GALLERY ── */
#work { background: var(--bg2); }
.gallery-mosaic { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 285px; gap: 4px; }
@media (max-width: 992px) { .gallery-mosaic { grid-template-columns: repeat(2,1fr); grid-auto-rows: 220px; } }
@media (max-width: 640px)  { .gallery-mosaic { grid-template-columns: 1fr; grid-auto-rows: 240px; } }
.gallery-mosaic .g-item:nth-child(1) { grid-column: span 2; }
.gallery-mosaic .g-item:nth-child(5) { grid-column: span 2; }
.g-item { position: relative; overflow: hidden; cursor: none; background: var(--bg3); }
.g-item img, .g-item video { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .5s; filter: saturate(.65) brightness(.8); }
.g-item:hover img, .g-item:hover video { transform: scale(1.07); filter: saturate(1) brightness(1); }
.g-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,5,8,.85) 0%, transparent 55%); opacity: 0; transition: opacity .35s; display: flex; align-items: flex-end; padding: 20px; }
.g-item:hover .g-overlay { opacity: 1; }
.g-label { font-family: var(--ff-m); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.g-expand { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0); width: 50px; height: 50px; border: 1px solid rgba(232,184,75,.7); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: .9rem; transition: transform .35s var(--ease); background: rgba(5,5,8,.3); backdrop-filter: blur(4px); }
.g-item:hover .g-expand { transform: translate(-50%,-50%) scale(1); }
.gallery-more { text-align: center; margin-top: clamp(32px,4vw,52px); }

/* ── VIDEO SECTION ── */
#videos { background: var(--bg); }
.featured-player-wrap { margin-bottom: 60px; position: relative; }
.featured-label { font-family: var(--ff-m); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.featured-label::before { content:''; width:22px; height:1px; background:var(--gold); }

/* ── CUSTOM VIDEO PLAYER (CVP) ── */
.cvp { position: relative; background: #000; border-radius: var(--r); overflow: hidden; aspect-ratio: 16/9; border: 1px solid var(--border); box-shadow: 0 24px 80px rgba(0,0,0,.6); }
.cvp video { width: 100%; height: 100%; display: block; cursor: pointer; }
.cvp-big { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; opacity: 0; transition: opacity .2s; }
.cvp-big.show { opacity: 1; }
.cvp-big-circle { width: 80px; height: 80px; border: 2px solid rgba(255,255,255,.75); border-radius: 50%; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(6px); background: rgba(0,0,0,.35); font-size: 1.6rem; color: #fff; }
.cvp-controls { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.6) 60%, transparent 100%); padding: 48px 16px 14px; }
.cvp-seek-wrap { position: relative; height: 18px; display: flex; align-items: center; margin-bottom: 8px; cursor: pointer; }
.cvp-track { position: absolute; left: 0; right: 0; height: 3px; background: rgba(255,255,255,.18); border-radius: 3px; transition: height .15s; overflow: hidden; }
.cvp-seek-wrap:hover .cvp-track { height: 5px; }
.cvp-buffered { position: absolute; top: 0; left: 0; height: 100%; background: rgba(255,255,255,.28); border-radius: 3px; pointer-events: none; transition: width .3s; }
.cvp-progress-bar { position: absolute; top: 0; left: 0; height: 100%; background: var(--gold); border-radius: 3px; pointer-events: none; }
.cvp-progress-bar::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%) scale(0); width: 12px; height: 12px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 8px rgba(232,184,75,.8); transition: transform .15s; }
.cvp-seek-wrap:hover .cvp-progress-bar::after { transform: translateY(-50%) scale(1); }
.cvp-seek-input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; margin: 0; }
.cvp-bottom { display: flex; align-items: center; gap: 10px; }
.cvp-btn { background: none; border: none; cursor: pointer; color: rgba(255,255,255,.8); font-size: 1rem; padding: 4px 6px; display: flex; align-items: center; transition: color .15s; flex-shrink: 0; }
.cvp-btn:hover { color: var(--gold); }
.cvp-time { font-family: var(--ff-m); font-size: .65rem; letter-spacing: .05em; color: rgba(255,255,255,.65); white-space: nowrap; }
.cvp-spacer { flex: 1; }
.cvp-vol-group { display: flex; align-items: center; gap: 6px; }
.cvp-vol-slider { width: 64px; -webkit-appearance: none; appearance: none; height: 3px; background: rgba(255,255,255,.25); border-radius: 2px; outline: none; cursor: pointer; }
.cvp-vol-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 11px; height: 11px; border-radius: 50%; background: var(--gold); cursor: pointer; }
.cvp-speed { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.75); font-family: var(--ff-m); font-size: .6rem; padding: 3px 7px; border-radius: 3px; cursor: pointer; outline: none; }
.cvp-speed option { background: var(--bg3); color: var(--chalk); }
.cvp-spinner { position: absolute; inset: 0; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,.4); pointer-events: none; }
.cvp-spinner.active { display: flex; }
.spin-ring { width: 44px; height: 44px; border: 3px solid rgba(232,184,75,.25); border-top-color: var(--gold); border-radius: 50%; animation: spin .75s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── VIDEO FILTERS ── */
.video-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.vf-btn { font-family: var(--ff-m); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; padding: 8px 18px; background: transparent; border: 1px solid var(--border); color: var(--chalk2); border-radius: 20px; cursor: pointer; transition: all .2s; }
.vf-btn.active, .vf-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--bg); }
.video-mosaic { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
@media (max-width: 992px) { .video-mosaic { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .video-mosaic { grid-template-columns: 1fr; } }
.v-item { position: relative; overflow: hidden; aspect-ratio: 16/10; background: var(--bg3); cursor: none; }
.v-item video { width: 100%; height: 100%; object-fit: cover; }
.v-item .play-ring { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(5,5,8,.5); transition: background .25s; }
.v-item:hover .play-ring { background: rgba(5,5,8,.2); }
.play-circle { width: 52px; height: 52px; border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: .95rem; transition: transform .25s var(--ease), background .25s, box-shadow .25s; }
.v-item:hover .play-circle { transform: scale(1.15); background: rgba(232,184,75,.15); box-shadow: 0 0 24px rgba(232,184,75,.3); }
.v-cat { position: absolute; bottom: 12px; left: 14px; font-family: var(--ff-m); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); background: rgba(5,5,8,.6); padding: 3px 8px; border-radius: 3px; }
.video-more { text-align: center; margin-top: 32px; }

/* ── EXPERIENCE ── */
#experience { background: var(--bg2); }
.exp-grid { display: grid; grid-template-columns: 1fr 370px; gap: clamp(40px,6vw,80px); align-items: start; }
@media (max-width: 1100px) { .exp-grid { grid-template-columns: 1fr; } }
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--gold), rgba(232,184,75,.1)); }
.tl-item { margin-bottom: 52px; position: relative; }
.tl-dot { position: absolute; left: -30px; top: 5px; width: 16px; height: 16px; border: 2px solid var(--gold); border-radius: 50%; background: var(--bg2); display: flex; align-items: center; justify-content: center; transition: background .25s, box-shadow .25s; }
.tl-item:hover .tl-dot { background: var(--gold); box-shadow: 0 0 16px rgba(232,184,75,.5); }
.tl-dot i { font-size: .4rem; color: var(--gold); }
.tl-item:hover .tl-dot i { color: var(--bg); }
.tl-year { font-family: var(--ff-m); font-size: .62rem; letter-spacing: .16em; color: var(--gold); margin-bottom: 8px; }
.tl-role { font-family: var(--ff-d); font-size: clamp(1.2rem,2.3vw,1.55rem); letter-spacing: .04em; margin-bottom: 4px; }
.tl-company { font-family: var(--ff-b); font-style: italic; font-size: .9rem; color: var(--chalk2); margin-bottom: 12px; }
.tl-desc { font-family: var(--ff-s); font-size: .88rem; color: var(--chalk2); line-height: 1.75; }
.about-card { background: var(--glass); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; backdrop-filter: blur(10px); }
.about-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; filter: grayscale(.35) contrast(1.05); display: block; transition: filter .5s; }
.about-card:hover .about-photo { filter: grayscale(0) contrast(1); }
.about-body-inner { padding: clamp(22px,3vw,32px); }
.about-name { font-family: var(--ff-d); font-size: 1.9rem; letter-spacing: .04em; margin-bottom: 6px; }
.about-title-tag { font-family: var(--ff-m); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.about-bio { font-family: var(--ff-s); font-size: .88rem; color: var(--chalk2); line-height: 1.75; margin-bottom: 18px; }
.about-specs { list-style: none; }
.about-specs li { font-family: var(--ff-m); font-size: .68rem; letter-spacing: .05em; padding: 8px 0; border-bottom: 1px solid var(--border); color: var(--chalk2); display: flex; gap: 10px; }
.about-specs li::before { content: '↳'; color: var(--gold); }
.about-specs li:last-child { border-bottom: none; }

/* ── CONTACT ── */
#contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 340px; gap: clamp(40px,6vw,80px); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.form-field { position: relative; margin-bottom: 22px; }
.form-input { width: 100%; background: var(--glass); border: 1px solid var(--border); border-radius: var(--r); color: var(--chalk); font-family: var(--ff-s); font-size: .95rem; padding: 18px 16px 8px; outline: none; transition: border-color .2s, background .2s; backdrop-filter: blur(10px); }
.form-input:focus { border-color: var(--gold); background: var(--glass2); }
.form-label { position: absolute; left: 16px; top: 14px; font-family: var(--ff-m); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--chalk3); transition: all .2s; pointer-events: none; }
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label { top: 6px; font-size: .52rem; color: var(--gold); }
textarea.form-input { padding-top: 22px; resize: none; min-height: 120px; }
.form-submit { width: 100%; font-family: var(--ff-m); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; padding: 16px; background: var(--gold); color: var(--bg); border: none; border-radius: var(--r); cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: transform .15s, box-shadow .2s; }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(232,184,75,.28); }
.c-cards { display: flex; flex-direction: column; gap: 14px; }
.c-card { display: flex; align-items: center; gap: 16px; padding: 18px 22px; background: var(--glass); border: 1px solid var(--border); border-radius: var(--r); transition: border-color .2s, background .2s; backdrop-filter: blur(10px); }
.c-card:hover { border-color: var(--border2); background: var(--glass2); }
.c-icon { width: 42px; height: 42px; flex-shrink: 0; border: 1px solid var(--border); border-radius: var(--r); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: .95rem; transition: border-color .2s; }
.c-card:hover .c-icon { border-color: var(--gold); }
.c-label { font-family: var(--ff-m); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: var(--chalk3); margin-bottom: 3px; }
.c-val { font-family: var(--ff-s); font-size: .92rem; color: var(--chalk2); }
.c-map { margin-top: 14px; padding: 20px; background: var(--glass); border: 1px solid var(--border); border-radius: var(--r); text-align: center; }
.c-map-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 10px; }
.c-map p { font-family: var(--ff-m); font-size: .62rem; letter-spacing: .1em; color: var(--chalk3); margin-bottom: 14px; }

/* ── FOOTER ── */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding-block: clamp(56px,7vw,90px) 32px; position: relative; overflow: hidden; }
.footer-bg-text { position: absolute; bottom: -20px; right: -20px; font-family: var(--ff-d); font-size: clamp(6rem,15vw,18rem); letter-spacing: .02em; color: rgba(255,255,255,.025); pointer-events: none; line-height: 1; white-space: nowrap; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: clamp(32px,5vw,64px); margin-bottom: 48px; position: relative; z-index: 1; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand-name { font-family: var(--ff-d); font-size: 2.1rem; letter-spacing: .04em; margin-bottom: 14px; }
.footer-brand-name span { color: var(--gold); }
.footer-tagline { font-family: var(--ff-b); font-style: italic; font-size: .95rem; color: var(--chalk2); line-height: 1.7; max-width: 36ch; }
.footer-col-title { font-family: var(--ff-m); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links-list { list-style: none; }
.footer-links-list li { margin-bottom: 12px; }
.footer-links-list a { font-family: var(--ff-s); font-size: .9rem; color: var(--chalk2); transition: color .2s; }
.footer-links-list a:hover { color: var(--chalk); }
.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.soc-btn { width: 38px; height: 38px; border: 1px solid var(--border); border-radius: var(--r); display: flex; align-items: center; justify-content: center; color: var(--chalk2); font-size: .9rem; transition: all .2s; }
.soc-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(232,184,75,.06); box-shadow: 0 0 14px rgba(232,184,75,.15); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding-top: 24px; border-top: 1px solid var(--border); font-family: var(--ff-m); font-size: .62rem; letter-spacing: .08em; color: var(--chalk3); position: relative; z-index: 1; }

/* ── MODALS ── */
.modal-back { display: none; position: fixed; inset: 0; z-index: 5000; background: rgba(5,5,8,.97); align-items: center; justify-content: center; padding: 20px; }
.modal-back.open { display: flex; }
.modal-close { position: fixed; top: 22px; right: 22px; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--chalk2); cursor: pointer; background: var(--bg3); transition: border-color .2s, color .2s; z-index: 5001; }
.modal-close:hover { border-color: var(--gold); color: var(--gold); }
#modalImg { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--r); }
#videoModal { align-items: center; justify-content: center; }
.video-modal-wrap { width: min(960px, 95vw); position: relative; }

/* ── UTILITY ── */
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }
@media (max-width: 992px) { body > *:last-of-type { padding-bottom: 70px; } }
