/* ═══════════════════════════════════════════
   FADY MOSA — LUXURY PORTFOLIO CSS
   Dark Gold · Refined Maximalism · 2026
══════════════════════════════════════════ */

:root {
  --ink:    #07070f;
  --ink2:   #0c0c1a;
  --ink3:   #111127;
  --ink4:   #1a1a30;
  --gold:   #c9a84c;
  --gold2:  #e8c96a;
  --gold3:  #f5e0a0;
  --gold4:  #fff5cc;
  --cream:  #ede8d8;
  --dim:    #5a5475;
  --dim2:   #7a7490;
  --bdr:    rgba(201,168,76,.18);
  --bdr2:   rgba(201,168,76,.08);
  --glow:   0 0 80px rgba(201,168,76,.10);
  --glow2:  0 0 40px rgba(201,168,76,.15);
  --r:      4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; font-size: 16px }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ══ SCROLLBAR ══ */
::-webkit-scrollbar { width: 2px }
::-webkit-scrollbar-track { background: var(--ink) }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px }

/* ══ CANVAS ══ */
#bgCanvas { position: fixed; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0 }

/* ══ CURSOR ══ */
#dot {
  position: fixed; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999; top: 0; left: 0;
  box-shadow: 0 0 14px var(--gold);
  transition: width .2s, height .2s, background .2s;
}
#ring {
  position: fixed; width: 32px; height: 32px;
  border: 1px solid rgba(201,168,76,.45); border-radius: 50%;
  pointer-events: none; z-index: 9998; top: 0; left: 0;
  transition: transform .3s cubic-bezier(.23,1,.32,1);
}
body.hovering #dot { width: 12px; height: 12px; background: transparent; border: 1.5px solid var(--gold) }
body.hovering #ring { opacity: 0 }

/* ══ GRAIN OVERLAY ══ */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.038'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9000; opacity: .55;
}

/* ══ LOADER ══ */
#loader {
  position: fixed; inset: 0; background: var(--ink); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#loader.done { opacity: 0; visibility: hidden }
.loader-inner { text-align: center; width: 200px }
.loader-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 0 auto 24px;
  animation: loaderline 1s ease infinite;
}
@keyframes loaderline { 0%,100%{opacity:.3} 50%{opacity:1} }
.loader-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; letter-spacing: .4em;
  color: var(--gold3); margin-bottom: 20px;
}
.loader-bar {
  height: 1px; background: rgba(201,168,76,.15); border-radius: 1px; overflow: hidden;
}
.loader-fill {
  height: 100%; width: 0%; background: var(--gold);
  animation: loaderfill 1.8s cubic-bezier(.23,1,.32,1) forwards;
}
@keyframes loaderfill { to { width: 100% } }

/* ══ NAV ══ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 400;
  padding: 24px 72px;
  display: flex; justify-content: space-between; align-items: center;
}
nav::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(7,7,15,.96) 0%, transparent 100%);
  backdrop-filter: blur(8px); pointer-events: none;
}
.n-logo {
  position: relative; z-index: 1;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--cream); cursor: none;
  text-decoration: none;
}
.logo-dot { color: var(--gold) }
.n-links {
  position: relative; z-index: 1;
  display: flex; gap: 36px; align-items: center;
}
.n-links a {
  color: var(--dim2); text-decoration: none;
  font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
  font-family: 'Space Mono', monospace;
  transition: color .3s; cursor: none; position: relative;
}
.n-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s ease;
}
.n-links a:hover { color: var(--gold3) }
.n-links a:hover::after { transform: scaleX(1); transform-origin: left }
.nav-cta {
  position: relative; z-index: 1;
  padding: 10px 22px;
  border: 1px solid var(--bdr);
  color: var(--gold3); text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  cursor: none;
  transition: all .3s;
  background: rgba(201,168,76,.04);
}
.nav-cta:hover { background: rgba(201,168,76,.1); border-color: rgba(201,168,76,.5) }

/* ══ HERO ══ */
#hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 120px 72px 80px;
  gap: 60px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.025) 1px, transparent 1px);
  background-size: 64px 64px;
}
.orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.orb1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,.07) 0%, transparent 65%);
  top: -200px; right: -100px;
  animation: orb1 16s ease-in-out infinite;
}
.orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(100,80,200,.05) 0%, transparent 65%);
  bottom: -100px; left: -100px;
  animation: orb2 12s ease-in-out infinite;
}
.orb3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,.04) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: orb2 20s ease-in-out infinite reverse;
}
@keyframes orb1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-30px,25px) scale(1.06)} }
@keyframes orb2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(25px,-30px)} }

/* Hero text */
.hero-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; gap: 60px; position: relative; z-index: 2;
}
.hero-text { flex: 1; max-width: 620px }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(74,222,128,.06); border: 1px solid rgba(74,222,128,.2);
  border-radius: 100px; padding: 6px 14px;
  font-family: 'Space Mono', monospace;
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  color: #4ade80; margin-bottom: 28px;
}
.badge-dot {
  width: 5px; height: 5px; background: #4ade80; border-radius: 50%;
  box-shadow: 0 0 6px #4ade80;
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.ey-line {
  display: block; width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
#eyebrow-text {
  font-family: 'Space Mono', monospace;
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--dim2);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 400;
  line-height: .95; letter-spacing: -.02em;
  margin-bottom: 24px;
}
.title-hi { font-weight: 300; color: rgba(237,232,216,.5) }
.title-name {
  font-style: italic; font-weight: 700;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 40%, var(--gold3) 70%, var(--gold2) 100%);
  background-size: 300%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldshift 5s ease infinite;
  filter: drop-shadow(0 0 30px rgba(201,168,76,.3));
}
@keyframes goldshift { 0%{background-position:0%} 50%{background-position:100%} 100%{background-position:0%} }

.hero-desc {
  font-size: 1.05rem; font-weight: 300; line-height: 1.7;
  color: rgba(237,232,216,.65);
  margin-bottom: 40px; max-width: 480px;
}

/* Buttons */
.hero-btns { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: var(--ink); text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  cursor: none;
  transition: all .3s;
  box-shadow: 0 8px 32px rgba(201,168,76,.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(201,168,76,.35);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border: 1px solid var(--bdr);
  color: var(--cream); text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  cursor: none;
  transition: all .3s;
  background: transparent;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold3); background: rgba(201,168,76,.05) }

/* Stats */
.hero-stats { display: flex; align-items: center; gap: 24px }
.stat-div { width: 1px; height: 40px; background: var(--bdr) }
.stat {}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--gold2);
  line-height: 1;
}
.stat-lbl {
  font-family: 'Space Mono', monospace;
  font-size: .58rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--dim2); margin-top: 4px;
}

/* Photo frame */
.hero-photo-wrap {
  position: relative; flex-shrink: 0;
  width: 380px;
}
.photo-frame {
  position: relative; width: 100%;
  padding-bottom: 125%;
  overflow: hidden;
}
.photo-frame::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(201,168,76,.5), rgba(201,168,76,.05) 40%, rgba(201,168,76,.35));
  z-index: 1; border-radius: var(--r);
  padding: 1px;
}
.photo-frame .hero-img {
  position: absolute; inset: 1px;
  width: calc(100% - 2px); height: calc(100% - 2px);
  object-fit: cover; object-position: top center;
  border-radius: calc(var(--r) - 1px);
  display: block;
}
.photo-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.12) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.photo-scan {
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.6), transparent);
  animation: scan 4s ease-in-out infinite;
  z-index: 3; border-radius: 1px;
}
@keyframes scan { 0%,100%{top:0;opacity:0} 10%{opacity:1} 90%{opacity:1} 100%{top:100%} }

/* Corner deco */
.photo-corner {
  position: absolute; width: 20px; height: 20px;
  border-color: var(--gold); border-style: solid;
  opacity: .8; z-index: 4;
}
.photo-corner.tl { top: -6px; left: -6px; border-width: 1px 0 0 1px }
.photo-corner.tr { top: -6px; right: -6px; border-width: 1px 1px 0 0 }
.photo-corner.bl { bottom: -6px; left: -6px; border-width: 0 0 1px 1px }
.photo-corner.br { bottom: -6px; right: -6px; border-width: 0 1px 1px 0 }

.photo-tag {
  position: absolute; bottom: -20px; left: -24px;
  background: rgba(7,7,15,.95); border: 1px solid rgba(201,168,76,.3);
  border-radius: 2px; padding: 12px 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  display: flex; align-items: center; gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: .62rem; letter-spacing: .1em;
  z-index: 5;
}
.tag-dot {
  width: 6px; height: 6px; background: #4ade80; border-radius: 50%;
  box-shadow: 0 0 8px #4ade80; animation: pulse 2s ease infinite;
}
.photo-deco-num {
  position: absolute; top: -32px; right: -16px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem; font-weight: 900;
  color: transparent; -webkit-text-stroke: 1px rgba(201,168,76,.08);
  letter-spacing: -.04em; pointer-events: none; line-height: 1;
  z-index: 0;
}

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 40px; left: 72px;
  display: flex; align-items: center; gap: 12px;
  font-family: 'Space Mono', monospace;
  font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--dim); z-index: 2;
  animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ══ MARQUEE ══ */
.marquee-wrap {
  overflow: hidden; border-top: 1px solid var(--bdr2); border-bottom: 1px solid var(--bdr2);
  padding: 16px 0; position: relative; z-index: 2;
  background: rgba(201,168,76,.02);
}
.marquee-track {
  display: flex; gap: 32px; white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: 'Space Mono', monospace;
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--dim);
}
.sep { color: var(--gold); opacity: .5 }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ══ SECTIONS SHARED ══ */
section {
  padding: 120px 72px; position: relative; z-index: 2;
}
.section-num {
  position: absolute; top: 80px; left: 72px;
  font-family: 'Playfair Display', serif;
  font-size: 7rem; font-weight: 900;
  color: transparent; -webkit-text-stroke: 1px rgba(201,168,76,.05);
  line-height: 1; pointer-events: none;
}
.section-label {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.sl-line {
  display: block; width: 32px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.section-label span:last-child {
  font-family: 'Space Mono', monospace;
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.section-heading em {
  font-style: italic; font-weight: 700;
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold3));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ══ ABOUT ══ */
#about { padding-top: 140px }
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-photo { position: relative }
.about-img-wrap {
  position: relative; border-radius: var(--r); overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  display: block; filter: brightness(.9) contrast(1.05);
  transition: transform .6s ease, filter .6s ease;
}
.about-img-wrap:hover img { transform: scale(1.03); filter: brightness(1) }
.about-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,7,15,.6) 0%, transparent 50%);
  pointer-events: none;
}
.about-img-border {
  position: absolute; inset: 0;
  border: 1px solid rgba(201,168,76,.2); border-radius: var(--r);
  pointer-events: none;
}
.about-vertical-text {
  position: absolute; right: -20px; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: 'Space Mono', monospace;
  font-size: .55rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(201,168,76,.3); white-space: nowrap;
  transform-origin: right center;
}

.about-content { padding-left: 20px }
.about-p {
  font-size: 1rem; line-height: 1.8; font-weight: 300;
  color: rgba(237,232,216,.72); margin-bottom: 18px;
}
.about-p strong { color: var(--cream); font-weight: 500 }
.skill-chips {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 36px;
}
.skill-chips span {
  padding: 6px 14px;
  border: 1px solid var(--bdr);
  background: rgba(201,168,76,.04);
  font-family: 'Space Mono', monospace;
  font-size: .6rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold3);
  transition: all .25s;
}
.skill-chips span:hover {
  background: rgba(201,168,76,.1); border-color: rgba(201,168,76,.4);
}

/* ══ SKILLS ══ */
#skills { background: rgba(201,168,76,.012) }
.sk-head {
  display: flex; flex-direction: column;
  margin-bottom: 64px;
}
.sk-sub {
  font-size: .9rem; color: var(--dim2); font-weight: 300;
  max-width: 480px; line-height: 1.7;
  font-family: 'Space Mono', monospace; font-size: .68rem; letter-spacing: .04em;
}
.sk-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sk-card {
  background: var(--ink2);
  border: 1px solid var(--bdr2);
  padding: 32px 28px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.sk-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.4), transparent);
  opacity: 0; transition: opacity .3s;
}
.sk-card:hover { border-color: var(--bdr); transform: translateY(-4px); box-shadow: var(--glow2) }
.sk-card:hover::before { opacity: 1 }

.sk-card-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 20px;
}
.sk-icon-wrap {
  width: 44px; height: 44px;
  border: 1px solid var(--bdr);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); background: rgba(201,168,76,.05);
}
.sk-num-label {
  font-family: 'Space Mono', monospace;
  font-size: .6rem; color: rgba(201,168,76,.3); letter-spacing: .1em;
}
.sk-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 600;
  margin-bottom: 10px;
}
.sk-desc {
  font-size: .82rem; line-height: 1.65; font-weight: 300;
  color: rgba(237,232,216,.55); margin-bottom: 18px;
}
.sk-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px }
.sk-tags span {
  padding: 4px 10px;
  background: rgba(201,168,76,.06); border: 1px solid rgba(201,168,76,.12);
  font-family: 'Space Mono', monospace;
  font-size: .58rem; letter-spacing: .08em;
  color: var(--gold3);
}
.sk-bar {
  height: 1px; background: rgba(201,168,76,.1); overflow: hidden;
}
.sk-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transition: width 1.4s cubic-bezier(.23,1,.32,1);
}
.sk-card.in .sk-fill { width: var(--w) }

/* ══ PROJECTS ══ */
#projects { padding-top: 140px }
.pj-head { margin-bottom: 64px }
.pj-list { display: flex; flex-direction: column; gap: 80px }

.pj-item {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.pj-item:nth-child(even) .pj-img-wrap { order: 2 }
.pj-item:nth-child(even) .pj-content { order: 1 }

.pj-item.featured {
  grid-template-columns: 3fr 2fr;
}

.pj-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 16/10;
  border: 1px solid var(--bdr2);
}
.pj-img-placeholder {
  background: var(--ink3);
  display: flex; align-items: center; justify-content: center;
}
.pj-placeholder-art svg { opacity: .4 }
.pj-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
  transition: transform .6s ease, filter .6s ease;
  filter: brightness(.8) saturate(.9);
}
.pj-img-wrap:hover img { transform: scale(1.04); filter: brightness(1) saturate(1.05) }

.pj-img-overlay {
  position: absolute; inset: 0;
  background: rgba(7,7,15,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.pj-img-wrap:hover .pj-img-overlay { opacity: 1 }
.pj-img-links { display: flex; gap: 12px }
.pj-img-btn {
  padding: 10px 20px;
  border: 1px solid var(--bdr);
  color: var(--gold3); text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: .65rem; letter-spacing: .1em;
  cursor: none;
  transition: all .25s;
  background: rgba(7,7,15,.8);
}
.pj-img-btn:hover { border-color: var(--gold); background: rgba(201,168,76,.1) }

.pj-badge {
  position: absolute; top: 16px; left: 16px;
  padding: 5px 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--ink);
  font-family: 'Space Mono', monospace;
  font-size: .58rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.pj-badge-alt {
  background: rgba(201,168,76,.1);
  border: 1px solid var(--bdr);
  color: var(--gold3);
}
.pj-num-big {
  position: absolute; bottom: 12px; right: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 900;
  color: transparent; -webkit-text-stroke: 1px rgba(201,168,76,.12);
  line-height: 1;
}

.pj-content {}
.pj-category {
  font-family: 'Space Mono', monospace;
  font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.pj-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 600;
  line-height: 1.2; margin-bottom: 16px;
}
.pj-desc {
  font-size: .88rem; line-height: 1.75; font-weight: 300;
  color: rgba(237,232,216,.65); margin-bottom: 24px;
}
.pj-tech-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px }
.pj-tech-row span {
  padding: 4px 12px;
  background: rgba(201,168,76,.05); border: 1px solid rgba(201,168,76,.12);
  font-family: 'Space Mono', monospace;
  font-size: .58rem; letter-spacing: .08em; color: var(--dim2);
}
.pj-links-row { display: flex; gap: 16px }
.pj-link-a {
  font-family: 'Space Mono', monospace;
  font-size: .65rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,.3);
  padding-bottom: 2px;
  cursor: none;
  transition: border-color .3s, color .3s;
}
.pj-link-a:hover { color: var(--gold3); border-color: var(--gold) }

/* ══ CERTIFICATIONS ══ */
#certifications {
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,.04) 0%, transparent 60%);
  position: relative;
}
.ce-watermark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Playfair Display', serif;
  font-size: 14vw; font-weight: 900;
  color: transparent; -webkit-text-stroke: 1px rgba(201,168,76,.03);
  letter-spacing: .1em; pointer-events: none; white-space: nowrap;
  line-height: 1;
}
.ce-head { margin-bottom: 64px }
.ce-sub {
  font-family: 'Space Mono', monospace;
  font-size: .68rem; letter-spacing: .04em; line-height: 1.7;
  color: var(--dim2); max-width: 480px;
}
.ce-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ce-card {
  background: var(--ink2); border: 1px solid var(--bdr2);
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.ce-card:hover { border-color: var(--bdr); transform: translateY(-4px); box-shadow: var(--glow2) }

.ce-img-wrap {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  background: var(--ink3);
}
.ce-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease, filter .5s ease;
  filter: brightness(.85);
}
.ce-card:hover .ce-img-wrap img { transform: scale(1.04); filter: brightness(1) }
.ce-img-double {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.ce-img-double img { height: 100%; object-fit: cover }
.ce-img-overlay {
  position: absolute; inset: 0;
  background: rgba(7,7,15,.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
  font-family: 'Space Mono', monospace;
  font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold3);
}
.ce-card:hover .ce-img-overlay { opacity: 1 }

.ce-body { padding: 24px }
.ce-issuer-row {
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.ce-icon { font-size: 1rem }
.ce-issuer-name {
  font-family: 'Space Mono', monospace;
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--dim2); flex: 1;
}
.ce-badge-v {
  padding: 3px 8px;
  background: rgba(74,222,128,.08); border: 1px solid rgba(74,222,128,.25);
  font-family: 'Space Mono', monospace;
  font-size: .52rem; letter-spacing: .1em; text-transform: uppercase;
  color: #4ade80;
}
.ce-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 600; line-height: 1.3;
  margin-bottom: 10px;
}
.ce-detail {
  font-size: .8rem; line-height: 1.65; font-weight: 300;
  color: rgba(237,232,216,.55); margin-bottom: 14px;
}
.ce-date {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Space Mono', monospace;
  font-size: .6rem; letter-spacing: .08em; color: var(--dim2);
}

.ce-placeholder {
  background: var(--ink2); border: 1px dashed rgba(201,168,76,.15);
  min-height: 280px; cursor: none;
  transition: border-color .3s;
}
.ce-placeholder:hover { border-color: rgba(201,168,76,.4) }
.ce-placeholder-inner {
  height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  padding: 40px;
}
.ce-plus {
  width: 44px; height: 44px; border: 1px solid var(--bdr);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--dim);
}
.ce-placeholder-inner p {
  font-family: 'Space Mono', monospace;
  font-size: .65rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--dim); text-align: center;
}

/* ══ CONTACT ══ */
#contact { padding: 120px 72px }
.ct-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .4;
}
.ct-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.ct-sub {
  font-size: .88rem; line-height: 1.8; font-weight: 300;
  color: rgba(237,232,216,.6); margin: 20px 0 40px;
  max-width: 420px;
}
.ct-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px }
.ct-card {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: var(--ink2); border: 1px solid var(--bdr2);
  text-decoration: none; color: var(--cream);
  cursor: none; transition: all .3s;
}
.ct-card:hover { border-color: var(--bdr); background: rgba(201,168,76,.04) }
.ct-card-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid var(--bdr);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.ct-icon-wa { border-color: rgba(37,211,102,.25); background: rgba(37,211,102,.06) }
.ct-card-lbl {
  font-family: 'Space Mono', monospace;
  font-size: .58rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--dim2); margin-bottom: 3px;
}
.ct-card-val { font-size: .82rem; font-weight: 400 }
.ct-arr { margin-left: auto; color: var(--dim); font-size: 1rem }

.ct-socials { display: flex; flex-wrap: wrap; gap: 10px }
.ct-social {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: rgba(201,168,76,.04); border: 1px solid var(--bdr2);
  color: var(--cream); text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: .62rem; letter-spacing: .1em;
  cursor: none; transition: all .3s;
}
.ct-social:hover { border-color: var(--bdr); color: var(--gold3); background: rgba(201,168,76,.08) }

.ct-quote-block {
  padding: 40px; background: var(--ink2); border: 1px solid var(--bdr2);
  position: relative; margin-bottom: 24px;
}
.ct-quote-mark {
  position: absolute; top: -10px; left: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem; color: var(--gold); line-height: 1; opacity: .3;
}
blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-style: italic; font-weight: 400;
  line-height: 1.6; color: rgba(237,232,216,.5);
}
.ct-sig {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--bdr2);
  font-family: 'Space Mono', monospace;
  font-size: .6rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--dim);
}

.ct-edu-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px; background: rgba(201,168,76,.04);
  border: 1px solid var(--bdr);
}
.ct-edu-icon { font-size: 1.5rem; margin-top: 2px }
.ct-edu-title { font-size: .9rem; font-weight: 500; margin-bottom: 6px; line-height: 1.4 }
.ct-edu-sub {
  font-family: 'Space Mono', monospace;
  font-size: .6rem; letter-spacing: .08em; color: var(--gold); text-transform: uppercase;
}

/* ══ FOOTER ══ */
footer {
  padding: 28px 72px;
  border-top: 1px solid var(--bdr2);
  display: flex; justify-content: space-between; align-items: center;
  position: relative; z-index: 2;
}
.f-copy {
  font-family: 'Space Mono', monospace;
  font-size: .6rem; letter-spacing: .1em; color: var(--dim);
}
.f-copy span { color: var(--gold) }
.f-top {
  width: 36px; height: 36px; border: 1px solid var(--bdr2);
  display: flex; align-items: center; justify-content: center;
  color: var(--dim); text-decoration: none;
  cursor: none; transition: all .3s;
}
.f-top:hover { border-color: var(--gold); color: var(--gold); box-shadow: 0 0 14px rgba(201,168,76,.15) }

/* ══ REVEAL ANIMATIONS ══ */
[data-reveal] { opacity: 0; transform: translateY(36px); transition: opacity .8s ease, transform .8s ease }
[data-reveal].in { opacity: 1; transform: translateY(0) }
[data-reveal-left] { opacity: 0; transform: translateX(-36px); transition: opacity .8s ease, transform .8s ease }
[data-reveal-left].in { opacity: 1; transform: translateX(0) }
[data-reveal-right] { opacity: 0; transform: translateX(36px); transition: opacity .8s ease, transform .8s ease }
[data-reveal-right].in { opacity: 1; transform: translateX(0) }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease }
.reveal.in { opacity: 1; transform: translateY(0) }

/* ══ RESPONSIVE ══ */
@media (max-width: 1200px) {
  .sk-grid { grid-template-columns: repeat(2, 1fr) }
  .pj-item, .pj-item.featured { grid-template-columns: 1fr }
  .pj-item:nth-child(even) .pj-img-wrap { order: unset }
  .pj-item:nth-child(even) .pj-content { order: unset }
}
@media (max-width: 1024px) {
  nav { padding: 20px 40px }
  section { padding: 100px 40px }
  #hero { padding: 100px 40px 80px }
  .scroll-hint { left: 40px }
  .section-num { left: 40px }
  .hero-inner { flex-direction: column; align-items: flex-start }
  .hero-photo-wrap { width: 100%; max-width: 320px; align-self: center }
  .about-layout { grid-template-columns: 1fr }
  .ce-grid { grid-template-columns: repeat(2, 1fr) }
  .ct-layout { grid-template-columns: 1fr }
}
@media (max-width: 768px) {
  nav { padding: 16px 20px }
  .n-links { display: none }
  section { padding: 80px 20px }
  #hero { padding: 80px 20px 60px }
  .scroll-hint { display: none }
  .section-num { display: none }
  .sk-grid { grid-template-columns: 1fr }
  .ce-grid { grid-template-columns: 1fr }
  footer { padding: 20px }
  .hero-photo-wrap { width: 100%; max-width: 280px }
  .about-layout { gap: 36px }
  .ct-layout { gap: 48px }
}
