/* -- TOKENS ---------------------------------- */
:root {
  --ink: #0d0c0b;
  --ink2: #1e1c1a;
  --ink3: #3a3734;
  --muted: #7a7370;
  --cream: #faf8f4;
  --cream2: #f4f0e8;
  --cream3: #ede8de;
  --white: #ffffff;
  --lime: #c8f542;
  --limedim: rgba(200, 245, 66, .12);
  --amber: #f5a623;
  --rose: #e85d4a;
  --rose2: rgba(232, 93, 74, .08);
  --line: rgba(13, 12, 11, .09);
  --linelt: rgba(13, 12, 11, .05);
  --sh: 0 16px 48px rgba(13, 12, 11, .10);
  --sh-lg: 0 40px 100px rgba(13, 12, 11, .16);
  --r: 20px;
  --rl: 28px;
  --rxl: 40px;
  --fd: 'Playfair Display', Georgia, serif;
  --fb: 'Plus Jakarta Sans', system-ui, sans-serif;
  --max: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--fb);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none
}

img {
  display: block;
  max-width: 100%
}

a {
  color: inherit;
  text-decoration: none
}

button,
input,
textarea {
  font: inherit
}

button {
  cursor: none
}

textarea,
input {
  cursor: auto
}

/* noise */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px
}

/* cursor */
#cur,
#cur-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%)
}

#cur {
  width: 8px;
  height: 8px;
  background: var(--lime);
  transition: width .22s, height .22s;
  mix-blend-mode: difference
}

#cur-ring {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(13, 12, 11, .22);
  transition: width .28s, height .28s, border-color .28s
}

body.hov #cur {
  width: 18px;
  height: 18px
}

body.hov #cur-ring {
  width: 54px;
  height: 54px;
  border-color: var(--lime)
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px
}

/* scrollbar */
::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-track {
  background: var(--cream)
}

::-webkit-scrollbar-thumb {
  background: var(--cream3);
  border-radius: 3px
}

::-webkit-scrollbar-thumb:hover {
  background: var(--rose)
}

/* -- HEADER ---------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s, box-shadow .4s, padding .4s;
}

header.stuck {
  background: rgba(250, 248, 244, .92);
  backdrop-filter: blur(24px) saturate(1.6);
  box-shadow: 0 1px 0 var(--line), 0 8px 32px rgba(13, 12, 11, .07);
  padding: 12px 48px;
}

.logo {
  font-family: var(--fd);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink)
}

.logo em {
  color: var(--rose);
  font-style: italic
}

nav {
  display: flex;
  align-items: center;
  gap: 32px
}

nav a {
  font-size: .84rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .02em;
  position: relative;
  transition: color .2s
}

nav a:hover {
  color: var(--ink)
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 100%;
  height: 1.5px;
  background: var(--lime);
  transition: right .35s cubic-bezier(.34, 1.56, .64, 1)
}

nav a:hover::after {
  right: 0
}

.nav-hire {
  padding: 9px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--lime) !important;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s, background .2s !important;
}

.nav-hire::after {
  display: none !important
}

.nav-hire:hover {
  transform: translateY(-2px);
  background: var(--rose) !important;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(232, 93, 74, .3) !important
}

.menu-btn {
  display: none;
  background: none;
  border: 1.5px solid var(--line);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--ink);
  font-size: 1.2rem;
  align-items: center;
  justify-content: center;
  transition: background .2s
}

.menu-btn:hover {
  background: var(--cream2)
}

/* -- HERO ------------------------------------ */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 45% 1fr;
  overflow: hidden;
}

/* LEFT -- full-bleed portrait */
.hero-l {
  position: relative;
  overflow: hidden;
  background: var(--ink2);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}

.hero-l:hover .hero-photo {
  transform: scale(1.04)
}

/* gradient veil at bottom for availability badge */
.hero-l::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 260px;
  background: linear-gradient(to top, rgba(10, 9, 8, .72) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* availability badge on photo */
.hero-avail {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .18);
  white-space: nowrap;
}

.ha-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite
}

.ha-txt {
  font-size: .8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .01em
}

.ha-txt strong {
  color: var(--lime)
}

@keyframes blink {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(200, 245, 66, .25)
  }

  50% {
    box-shadow: 0 0 0 8px rgba(200, 245, 66, 0)
  }
}

/* RIGHT -- content */
.hero-r {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(80px, 10vw, 140px) clamp(36px, 6vw, 80px) clamp(60px, 8vw, 100px);
  position: relative;
  background: var(--cream);
  gap: 0;
}

/* faint accent blob */
.hero-r::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 93, 74, .055), transparent 65%);
  pointer-events: none;
}

/* role tag */
.hero-role-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  animation: fadeUp .6s cubic-bezier(.22, 1, .36, 1) both;
}

.hero-role-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--rose);
  border-radius: 1px;
  flex-shrink: 0;
}

/* main name heading */
.hero-name {
  font-family: var(--fd);
  font-size: clamp(3rem, 5.5vw, 6.5rem);
  line-height: .92;
  letter-spacing: -.04em;
  color: var(--ink);
  margin-bottom: 10px;
  animation: fadeUp .6s cubic-bezier(.22, 1, .36, 1) .07s both;
}

.hero-name em {
  font-style: italic;
  color: var(--rose)
}

/* title line */
.hero-title {
  font-family: var(--fb);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 400;
  color: var(--muted);
  letter-spacing: .01em;
  margin-bottom: 28px;
  animation: fadeUp .6s cubic-bezier(.22, 1, .36, 1) .13s both;
}

.hero-title b {
  color: var(--ink);
  font-weight: 700
}

/* divider line */
.hero-div {
  width: 48px;
  height: 1.5px;
  background: var(--line);
  border-radius: 1px;
  margin-bottom: 28px;
  animation: fadeUp .6s cubic-bezier(.22, 1, .36, 1) .18s both;
}

/* sub text */
.hero-sub {
  max-width: 46ch;
  font-size: .97rem;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 36px;
  animation: fadeUp .6s cubic-bezier(.22, 1, .36, 1) .22s both;
}

/* buttons */
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp .6s cubic-bezier(.22, 1, .36, 1) .28s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-family: var(--fb);
  font-weight: 700;
  font-size: .88rem;
  transition: transform .22s, box-shadow .22s, background .22s;
  letter-spacing: .01em;
  cursor: none;
}

.btn:hover {
  transform: translateY(-3px)
}

.btn-dark {
  background: var(--ink);
  color: var(--lime)
}

.btn-dark:hover {
  box-shadow: 0 14px 36px rgba(13, 12, 11, .28)
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(13, 12, 11, .16)
}

.btn-ghost:hover {
  background: var(--cream2);
  box-shadow: 0 8px 24px rgba(13, 12, 11, .08)
}

/* stat row */
.hero-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--rl);
  background: var(--white);
  overflow: hidden;
  width: fit-content;
  animation: fadeUp .6s cubic-bezier(.22, 1, .36, 1) .34s both;
}

.hstat {
  padding: 16px 24px;
  border-right: 1px solid var(--line);
  min-width: 110px;
}

.hstat:last-child {
  border-right: none
}

.hstat-n {
  font-family: var(--fd);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: 1;
}

.hstat-l {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--muted);
  margin-top: 5px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}


/* -- MARQUEE --------------------------------- */
.mbar {
  background: var(--lime);
  overflow: hidden;
  padding: 13px 0;
  z-index: 1;
  position: relative
}

.minner {
  display: flex;
  width: max-content;
  animation: mslide 22s linear infinite
}

.minner:hover {
  animation-play-state: paused
}

@keyframes mslide {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.mi {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 26px;
  font-size: .77rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(13, 12, 11, .55);
  white-space: nowrap
}

.mi b {
  color: var(--ink)
}

.msep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(13, 12, 11, .22);
  flex-shrink: 0
}

/* -- SECTIONS -------------------------------- */
.sec {
  padding: 120px 0;
  position: relative
}

.sec-alt {
  background: var(--cream2)
}

.sec-dark {
  background: var(--ink)
}

.stag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .71rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--rose);
  margin-bottom: 16px
}

.stag::before {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: var(--rose);
  border-radius: 1px
}

.sh2 {
  font-family: var(--fd);
  font-size: clamp(2.1rem, 3.8vw, 3.6rem);
  line-height: .97;
  letter-spacing: -.04em;
  color: var(--ink);
  margin-bottom: 14px
}

.sh2 em {
  font-style: italic;
  color: var(--rose)
}

.sh2-lgt {
  color: var(--white)
}

.sh2-lgt em {
  color: var(--lime)
}

.ssub {
  font-size: .97rem;
  line-height: 1.78;
  color: var(--muted);
  max-width: 52ch;
  font-weight: 300
}

.ssub-lgt {
  color: rgba(255, 255, 255, .45)
}

/* -- SKILLS EXPERTISE ------------------------ */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
  align-items: start
}

.skill-col {
  display: grid;
  gap: 22px
}

.skill-item {}

.skill-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px
}

.skill-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .01em
}

.skill-pct {
  font-size: .78rem;
  font-weight: 800;
  color: var(--rose);
  letter-spacing: .04em
}

.skill-bar-bg {
  height: 6px;
  background: var(--cream3);
  border-radius: 999px;
  overflow: hidden
}

.skill-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose), var(--amber));
  width: 0;
  transition: width 1s cubic-bezier(.22, 1, .36, 1);
}

.skill-item.on .skill-bar-fill {
  width: var(--pct)
}

/* reveal */
[data-r] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
  will-change: transform, opacity;
}

[data-r].on {
  opacity: 1;
  transform: none
}

[data-r][data-d="1"] {
  transition-delay: .08s
}

[data-r][data-d="2"] {
  transition-delay: .16s
}

[data-r][data-d="3"] {
  transition-delay: .24s
}

[data-r][data-d="4"] {
  transition-delay: .32s
}

/* -- ABOUT ----------------------------------- */
/* Two-column: text left, sticky card right */
.about-outer {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start
}

.about-text-col {
  display: grid;
  gap: 22px
}

.about-text-col p {
  font-size: 1.02rem;
  line-height: 1.82;
  color: var(--muted);
  font-weight: 300
}

.about-text-col p strong {
  color: var(--ink);
  font-weight: 700
}

.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px
}

.chip {
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: .8rem;
  font-weight: 700;
  color: var(--ink3);
  transition: background .2s, color .2s, transform .2s, border-color .2s;
}

.chip:hover {
  background: var(--ink);
  color: var(--lime);
  border-color: var(--ink);
  transform: translateY(-2px)
}

/* sticky card */
.about-sticky-col {
  position: sticky;
  top: 108px;
  height: fit-content;
}

.about-card {
  background: var(--ink);
  border-radius: var(--rxl);
  padding: 40px;
  color: var(--white);
  box-shadow: var(--sh-lg);
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
  transform-style: preserve-3d;
}

.about-card:hover {
  transform: scale(1.015) rotateZ(.3deg)
}

.ac-quote {
  font-family: var(--fd);
  font-size: 1.75rem;
  font-weight: 700;
  font-style: italic;
  color: var(--lime);
  line-height: 1.18;
  margin-bottom: 24px
}

.stats4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.sbox {
  padding: 18px 16px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: background .25s
}

.sbox:hover {
  background: rgba(200, 245, 66, .08)
}

.sn {
  font-family: var(--fd);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--lime);
  letter-spacing: -.05em;
  line-height: 1
}

.sl {
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
  margin-top: 5px;
  font-weight: 500
}

.avail-chip {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--r);
  background: rgba(200, 245, 66, .09);
  border: 1px solid rgba(200, 245, 66, .18);
}

.avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0
}

.avail-txt {
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .8)
}

/* -- EXPERIENCE ------------------------------ */
/* sidebar layout with truly smooth sticky */
.exp-outer {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  margin-top: 56px;
  align-items: start
}

.exp-sidebar {
  position: sticky;
  top: 108px;
  height: fit-content;
}

.exp-sidebar-card {
  background: var(--white);
  border-radius: var(--rxl);
  border: 1px solid var(--line);
  padding: 32px 24px;
  box-shadow: var(--sh);
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
}

.exp-sidebar-card:hover {
  transform: translateY(-4px) scale(1.01)
}

.esc-num {
  font-family: var(--fd);
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--rose);
  line-height: 1;
  letter-spacing: -.05em
}

.esc-label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--muted);
  margin-bottom: 20px;
  margin-top: 4px
}

.esc-div {
  height: 1px;
  background: var(--line);
  margin: 20px 0
}

.esc-txt {
  font-size: .88rem;
  line-height: 1.65;
  color: var(--muted)
}

.exp-cards {
  display: grid;
  gap: 18px
}

.exp-card {
  background: var(--white);
  border-radius: var(--rl);
  border: 1px solid var(--line);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .35s, border-color .35s;
}

.exp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1)
}

.exp-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-lg);
  border-color: rgba(232, 93, 74, .2)
}

.exp-card:hover::before {
  transform: scaleX(1)
}

.ep {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--rose2);
  border: 1px solid rgba(232, 93, 74, .15);
  color: var(--rose);
  font-size: .73rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px
}

.er {
  font-family: var(--fd);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.03em;
  margin-bottom: 4px
}

.eco {
  font-size: .86rem;
  font-weight: 700;
  color: var(--rose);
  margin-bottom: 14px;
  letter-spacing: .01em
}

.eco small {
  font-weight: 400;
  color: var(--muted);
  margin-left: 6px
}

.ed {
  font-size: .9rem;
  line-height: 1.72;
  color: var(--muted);
  font-weight: 300
}

.etags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px
}

.etag {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--cream2);
  font-size: .73rem;
  font-weight: 700;
  color: var(--ink3)
}

/* -- PROJECTS -------------------------------- */
.pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px
}

.pcard {
  border-radius: var(--rl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--sh);
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), box-shadow .4s;
  cursor: pointer;
  contain: layout style;
  will-change: transform;
}

.pcard:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: var(--sh-lg)
}

.pcard-feat {
  grid-column: span 2
}

.pimg {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9
}

.pcard-feat .pimg {
  aspect-ratio: 16/7.5
}

.pimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: auto;
}

/* image zoom removed -- was causing scroll lag */
.pover {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, transparent 45%, rgba(13, 12, 11, .65) 100%)
}

.pbody {
  padding: 22px
}

.ptyp {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--rose);
  margin-bottom: 7px
}

.pname {
  font-family: var(--fd);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: 7px
}

.pdesc {
  font-size: .85rem;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 300
}

.plink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: .82rem;
  font-weight: 800;
  color: var(--rose);
  transition: gap .2s
}

.plink:hover {
  gap: 10px
}

.plink::after {
  content: '\2192'
}

/* -- GALLERY --------------------------------- */
.gallery-grid {
  columns: 3;
  column-gap: 14px;
  margin-top: 56px;
}

.g-item {
  break-inside: avoid;
  border-radius: var(--rl);
  overflow: hidden;
  background: var(--cream3);
  position: relative;
  cursor: pointer;
  margin-bottom: 14px;
  display: block;
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), box-shadow .4s;
  contain: layout style;
  will-change: transform;
  transform: translateZ(0);
}

.g-item:hover {
  transform: scale(1.02);
  box-shadow: var(--sh-lg);
  z-index: 2
}

.g-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transform: translateZ(0);
}

/* masonry -- tall/wide classes no longer needed but kept for compat */
.g-item.tall {}

.g-item.wide {}

.g-over {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 12, 11, .72) 100%);
  opacity: 0;
  transition: opacity .35s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.g-item:hover .g-over {
  opacity: 1
}

.g-cap {
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .03em
}

/* placeholder tiles for gallery items without images */
.g-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--cream2), var(--cream3));
  border: 2px dashed var(--line);
  border-radius: inherit;
  padding: 20px;
  text-align: center;
}

.g-placeholder-ico {
  font-size: 2.2rem
}

.g-placeholder-lbl {
  font-size: .78rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase
}

.g-placeholder-sub {
  font-size: .72rem;
  color: var(--muted);
  opacity: .7;
  margin-top: 4px
}

/* Gallery info banner */
.gallery-note {
  margin-top: 20px;
  padding: 18px 24px;
  border-radius: var(--r);
  background: rgba(232, 93, 74, .06);
  border: 1px solid rgba(232, 93, 74, .14);
  display: flex;
  align-items: center;
  gap: 14px;
}

.gallery-note-ico {
  font-size: 1.4rem;
  flex-shrink: 0
}

.gallery-note p {
  font-size: .87rem;
  line-height: 1.6;
  color: var(--muted)
}

.gallery-note p strong {
  color: var(--ink)
}

/* -- EDUCATION (dark) ------------------------ */
.edu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 56px;
  align-items: start
}

.ec-col {
  display: grid;
  gap: 14px
}

.ec-col-head {
  font-family: var(--fd);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 18px
}

.ec-col-head em {
  color: var(--lime);
  font-style: italic
}

.ec-card {
  border-radius: var(--rl);
  padding: 26px 28px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: background .3s, border-color .3s, transform .3s;
}

.ec-card:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(200, 245, 66, .25);
  transform: translateX(6px)
}

.ec-yr {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--lime);
  margin-bottom: 8px
}

.ec-title {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 4px
}

.ec-place {
  font-size: .82rem;
  color: rgba(255, 255, 255, .42);
  font-weight: 500
}

.cert-list {
  display: grid;
  gap: 9px
}

.cert-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: background .25s, border-color .25s, transform .2s;
}

.cert-row:hover {
  background: rgba(200, 245, 66, .07);
  border-color: rgba(200, 245, 66, .2);
  transform: translateX(5px)
}

.cert-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0
}

.cert-name {
  font-size: .87rem;
  font-weight: 700;
  color: var(--white)
}

.cert-src {
  font-size: .74rem;
  color: rgba(255, 255, 255, .38);
  margin-top: 2px
}

/* -- PROOF ----------------------------------- */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px
}

.proof-card {
  border-radius: var(--rl);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .35s;
}

.proof-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--rose))
}

.proof-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg)
}

.proof-ico {
  font-size: 2.5rem;
  margin-bottom: 18px
}

.proof-ttl {
  font-family: var(--fd);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: 9px
}

.proof-desc {
  font-size: .88rem;
  line-height: 1.68;
  color: var(--muted);
  font-weight: 300
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(245, 166, 35, .1);
  border: 1px solid rgba(245, 166, 35, .2);
  font-size: .72rem;
  font-weight: 800;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: .07em
}

/* -- CONTACT --------------------------------- */
.contact-outer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start
}

/* left col: links + form */
.contact-left {
  display: grid;
  gap: 24px
}

.clinks {
  display: grid;
  gap: 10px
}

.clink {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--rl);
  background: var(--white);
  border: 1.5px solid var(--line);
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), border-color .3s, box-shadow .3s;
}

.clink:hover {
  transform: translateX(9px);
  border-color: rgba(232, 93, 74, .28);
  box-shadow: 0 6px 24px rgba(232, 93, 74, .09)
}

.cico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--rose2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--rose)
}

.ctxt {
  flex: 1
}

.clbl {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--muted)
}

.cval {
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 2px
}

.carrow {
  color: var(--muted);
  font-size: 1rem;
  transition: transform .25s, color .25s
}

.clink:hover .carrow {
  transform: translateX(4px);
  color: var(--rose)
}

/* - Contact Form - */
.cform-wrap {
  background: var(--white);
  border-radius: var(--rxl);
  border: 1px solid var(--line);
  padding: 36px;
  box-shadow: var(--sh);
}

.cform-title {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.03em;
  margin-bottom: 6px
}

.cform-sub {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 24px;
  font-weight: 300;
  line-height: 1.6
}

.cform {
  display: grid;
  gap: 14px
}

.cform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.field {
  display: grid;
  gap: 7px
}

.field label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted)
}

.field input,
.field textarea,
.field select {
  padding: 13px 16px;
  border-radius: var(--r);
  background: var(--cream2);
  border: 1.5px solid transparent;
  color: var(--ink);
  font-size: .93rem;
  font-weight: 500;
  transition: border-color .2s, background .2s, box-shadow .2s;
  outline: none;
  resize: none;
  width: 100%;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--rose);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232, 93, 74, .09);
}

.field textarea {
  height: 120px;
  font-family: var(--fb)
}

.cform-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--ink);
  color: var(--lime);
  font-family: var(--fb);
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: .02em;
  transition: transform .22s, box-shadow .22s, background .22s;
  width: 100%;
}

.cform-btn:hover {
  transform: translateY(-3px);
  background: var(--rose);
  color: #fff;
  box-shadow: 0 12px 32px rgba(232, 93, 74, .3)
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: rgba(200, 245, 66, .1);
  border: 1px solid rgba(200, 245, 66, .2);
  border-radius: var(--r);
  color: var(--ink);
}

.form-success .fs-ico {
  font-size: 2.5rem;
  margin-bottom: 10px
}

.form-success p {
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink)
}

/* right col: dark panel */
.contact-panel {
  position: sticky;
  top: 108px;
  height: fit-content;
  background: var(--ink);
  border-radius: var(--rxl);
  padding: 48px 40px;
  position: sticky;
  top: 108px;
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

.contact-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 15% 15%, rgba(200, 245, 66, .16), transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(232, 93, 74, .14), transparent 42%)
}

.cp {
  position: relative;
  z-index: 1
}

.cp-title {
  font-family: var(--fd);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.04em;
  margin-bottom: 12px;
  line-height: 1.1
}

.cp-title em {
  color: var(--lime);
  font-style: italic
}

.cp-sub {
  font-size: .92rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, .48);
  font-weight: 300;
  margin-bottom: 26px
}

.fit-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 32px
}

.fi {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .88rem;
  color: rgba(255, 255, 255, .75);
  font-weight: 500
}

.fi::before {
  content: '\2713';
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  background: rgba(200, 245, 66, .14);
  border-radius: 50%;
  color: var(--lime);
  font-size: .73rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px
}

.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--fb);
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: .02em;
  border: none;
  cursor: pointer;
  transition: transform .22s, box-shadow .22s;
}

.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(200, 245, 66, .35)
}

/* -- FOOTER ---------------------------------- */
footer {
  background: var(--ink2);
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px
}

.f-brand {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white)
}

.f-brand em {
  color: var(--lime);
  font-style: italic
}

footer p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .3)
}

/* -- DRAWER ---------------------------------- */
.drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(250, 248, 244, .97);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px
}

.drawer.open {
  display: flex
}

.drawer a {
  font-family: var(--fd);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ink);
  font-style: italic;
  transition: color .2s
}

.drawer a:hover {
  color: var(--rose)
}

.dclose {
  position: absolute;
  top: 22px;
  right: 24px;
  background: none;
  border: 1.5px solid var(--line);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--ink);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center
}

/* -- RESPONSIVE ------------------------------ */
@media(max-width:1060px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .hero-l {
    height: 72vw;
    max-height: 540px
  }

  .hero-r {
    padding: 52px 40px 60px
  }

  .hero-stats {
    flex-wrap: wrap
  }

  .about-outer {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .about-sticky-col {
    position: relative;
    top: auto
  }

  .exp-outer {
    grid-template-columns: 1fr
  }

  .exp-sidebar {
    position: relative;
    top: auto
  }

  .pgrid {
    grid-template-columns: 1fr 1fr
  }

  .pcard-feat {
    grid-column: span 2
  }

  .gallery-grid {
    columns: 2
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr
  }

  .edu-grid {
    grid-template-columns: 1fr
  }

  .contact-outer {
    grid-template-columns: 1fr
  }

  .contact-panel {
    position: relative;
    top: auto
  }
}

@media(max-width:768px) {
  header {
    padding: 14px 20px
  }

  header.stuck {
    padding: 10px 20px
  }

  nav {
    display: none
  }

  .menu-btn {
    display: flex
  }

  .wrap {
    padding: 0 20px
  }

  .sec {
    padding: 72px 0
  }

  .hero-l {
    height: 85vw;
    max-height: 420px
  }

  .hero-r {
    padding: 40px 20px 52px
  }

  .hero-name {
    font-size: clamp(2.4rem, 10vw, 3.8rem)
  }

  .hero-stats {
    flex-wrap: wrap
  }

  .hstat {
    min-width: 90px
  }

  .pgrid {
    grid-template-columns: 1fr
  }

  .pcard-feat {
    grid-column: span 1
  }

  .gallery-grid {
    columns: 2
  }

  .proof-grid {
    grid-template-columns: 1fr
  }

  .cform-row {
    grid-template-columns: 1fr
  }

  footer {
    padding: 20px;
    flex-direction: column;
    text-align: center
  }
}

@media(max-width:480px) {
  .gallery-grid {
    columns: 1
  }
}

/* -- BACK TO TOP ----------------------------- */
#btt {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: var(--lime);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(13, 12, 11, .22);
  opacity: 0;
  transform: translateY(20px) scale(.85);
  transition: opacity .4s cubic-bezier(.22, 1, .36, 1),
    transform .4s cubic-bezier(.34, 1.56, .64, 1),
    background .22s, box-shadow .22s;
  pointer-events: none;
}

#btt.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

#btt:hover {
  background: var(--rose);
  box-shadow: 0 14px 40px rgba(232, 93, 74, .38);
  transform: translateY(-4px) scale(1.08);
}

#btt:active {
  transform: translateY(0) scale(.96);
}

/* progress ring */
#btt svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  pointer-events: none;
}

#btt-ring {
  fill: none;
  stroke: var(--lime);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 145;
  stroke-dashoffset: 145;
  transition: stroke-dashoffset .1s linear, stroke .22s;
  opacity: .5;
}

#btt:hover #btt-ring {
  stroke: #fff;
  opacity: .7;
}

/* arrow icon */
#btt-arrow {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

#btt-arrow svg {
  position: relative;
  inset: auto;
  transform: none;
  width: 18px;
  height: 18px;
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1);
}

#btt:hover #btt-arrow svg {
  transform: translateY(-3px);
}

@media(max-width:768px) {
  #btt {
    bottom: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
  }
}