:root {
  --white: #FAFAF8;
  --off: #F3EFE9;
  --maroon: #8B1A1A;
  --red: #C0392B;
  --orange: #E8651A;
  --peach: #F5A982;
  --cream: #FFF0E6;
  --text: #1A1A1A;
  --muted: #7A6A60;
  --border: rgba(139,26,26,0.12);
}

@font-face {
    font-family: 'Nexa';
    src: url('fonts/Nexa-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text);
  font-family: 'nexa', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ---- CURSOR ---- */
#cur {
  width: 14px; height: 14px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .25s, height .25s, background .25s;
}
body:has(a:hover) #cur, body:has(button:hover) #cur {
  width: 40px; height: 40px;
  background: rgba(232,101,26,0.3);
  border: 2px solid var(--orange);
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--peach); border-radius: 4px; }

/* ---- NAV ---- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(250,250,248,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1.5px solid var(--border);
}
.nav-logo {
  font-family: 'coolvetica', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  color: var(--maroon); letter-spacing: 0.08em;
}
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 0.25rem; list-style: none; }
.nav-links a {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--muted); text-decoration: none;
  padding: 0.45rem 1rem; border-radius: 99px;
  transition: all .25s;
}
.nav-links a:hover { background: var(--cream); color: var(--maroon); }
.menu-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 0.5rem;
}
.menu-btn span { width: 22px; height: 2px; background: var(--maroon); display: block; border-radius: 2px; }
.mob-nav {
  display: none; position: fixed; inset: 0;
  background: var(--white); z-index: 200;
  flex-direction: column; justify-content: center; align-items: center; gap: 1.5rem;
}
.mob-nav.open { display: flex; }
.mob-nav a {
  font-family: 'coolvetica', sans-serif; font-size: 3rem; font-weight: 800;
  color: var(--text); text-decoration: none; transition: color .2s;
}
.mob-nav a:hover { color: var(--orange); }
.mob-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; cursor: none;
  font-size: 2rem; color: var(--muted);
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  padding: 8rem 3rem 5rem;
  position: relative; overflow: hidden;
  background: var(--white);
  display: flex; align-items: center;
}

/* Background organic shapes */
.shape {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.shape-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(232,101,26,0.12), transparent 70%);
  top: -80px; right: -80px;
  animation: float1 10s ease-in-out infinite;
}
.shape-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(139,26,26,0.08), transparent 70%);
  bottom: -60px; left: -60px;
  animation: float2 12s ease-in-out infinite;
}
.shape-3 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(245,169,130,0.2), transparent 70%);
  top: 35%; right: 18%;
  animation: float1 8s ease-in-out infinite reverse;
}
@keyframes float1 {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(20px,-20px); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(-15px,20px); }
}

/* Profile photo frame in hero */
.hero-photo-frame {
  position: absolute; left: 58%; top: -5%;
  width: 50vw; height: 120vh;
  border-radius: 50%;
  border: 4px solid var(--cream);
  box-shadow: 0 20px 60px rgba(139,26,26,0.15);
  overflow: hidden;
  animation: morphBlob 8s ease-in-out infinite;
  background: var(--peach);
  display: flex; align-items: center; justify-content: center;
}
.hero-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-photo-placeholder {
  font-family: 'coolvetica', sans-serif;
  font-size: 5rem; color: var(--white);
}
@keyframes morphBlob {
  0%, 100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  25% { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; }
  50% { border-radius: 50% 50% 60% 40% / 40% 70% 30% 60%; }
  75% { border-radius: 70% 30% 40% 60% / 50% 40% 70% 50%; }
}

.hero-inner { position: relative; z-index: 2; max-width: 650px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--cream); color: var(--orange);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; padding: 0.5rem 1.25rem;
  border-radius: 99px; border: 1.5px solid rgba(232,101,26,0.2);
  margin-bottom: 2rem;
  opacity: 0; animation: popUp .5s cubic-bezier(0.34,1.56,0.64,1) forwards .2s;
}

.hero-name {
  font-family: 'coolvetica', sans-serif;
  font-size: clamp(4.5rem, 11vw, 11rem);
  font-weight: 800;
  line-height: 0.9; letter-spacing: 0.1em;
  opacity: 0; animation: slideUp .7s cubic-bezier(0.16,1,0.3,1) forwards .4s;
  
}
.hero-name .line1 { color: var(--text); display: block; }
.hero-name .line2 {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--maroon);
  display: block;
}
.hero-name .line3 { color: var(--orange); display: block; font-style: italic;overflow: visible; }

.hero-sub {
  margin-top: 2rem;
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  opacity: 0; animation: popUp .5s ease forwards .7s;
}
.pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.25rem; border-radius: 99px;
  font-size: 0.85rem; font-weight: 700;
  transition: transform .25s, box-shadow .25s;
}
.pill:hover { transform: translateY(-3px) rotate(-1deg); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.pill-red { background: var(--maroon); color: #fff; }
.pill-orange { background: var(--orange); color: #fff; }
.pill-peach { background: var(--cream); color: var(--maroon); border: 1.5px solid var(--peach); }

.hero-quote-box {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--cream);
  border-radius: 20px;
  border-left: 4px solid var(--orange);
  max-width: 560px;
  opacity: 0; animation: popUp .6s ease forwards .9s;
}
.hero-quote-box blockquote {
  font-family: 'coolvetica', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 800; color: var(--maroon); line-height: 1.25;
  margin-bottom: 0.5rem;
}
.hero-quote-box p { font-size: 0.82rem; color: var(--muted); font-style: italic; }

.hero-btns {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem;
  opacity: 0; animation: popUp .5s ease forwards 1.1s;
}
.btn-main {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2.25rem; border-radius: 99px;
  background: var(--maroon); color: #fff;
  font-size: 0.85rem; font-weight: 700;
  text-decoration: none; border: none;
  transition: all .3s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 4px 20px rgba(139,26,26,0.25);
}
.btn-main:hover { background: var(--red); transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 32px rgba(139,26,26,0.3); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2.25rem; border-radius: 99px;
  background: transparent; color: var(--orange);
  font-size: 0.85rem; font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(232,101,26,0.35);
  transition: all .3s;
}
.btn-ghost:hover { background: var(--cream); border-color: var(--orange); transform: translateY(-3px); }

/* ---- WAVE DIVIDERS ---- */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

/* ---- FLOATING BUBBLES ---- */
.bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 1;
}
.bubble {
  position: absolute;
  bottom: -100px;
  width: 40px;
  height: 40px;
  background: rgba(232,101,26,0.1);
  border-radius: 50%;
  opacity: 0.5;
  animation: rise 15s infinite ease-in;
}
.bubble:nth-child(1) { left: 10%; width: 60px; height: 60px; animation-delay: 0s; }
.bubble:nth-child(2) { left: 20%; width: 40px; height: 40px; animation-delay: 2s; animation-duration: 12s; }
.bubble:nth-child(3) { left: 35%; width: 50px; height: 50px; animation-delay: 4s; }
.bubble:nth-child(4) { left: 50%; width: 30px; height: 30px; animation-delay: 0s; animation-duration: 18s; }
.bubble:nth-child(5) { left: 70%; width: 45px; height: 45px; animation-delay: 3s; }
.bubble:nth-child(6) { left: 85%; width: 35px; height: 35px; animation-delay: 5s; animation-duration: 14s; }
@keyframes rise {
  0% { bottom: -100px; transform: translateX(0); }
  50% { transform: translateX(100px); }
  100% { bottom: 110%; transform: translateX(-200px); }
}

/* ---- MARQUEE ---- */
.marquee-wrap {
  overflow: hidden; padding: 0.9rem 0;
  background: var(--maroon);
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 18s linear infinite; width: max-content;
}
.marquee-item {
  font-family: 'coolvetica', sans-serif;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); white-space: nowrap; padding: 0 1.5rem;
}
.marquee-dot { color: var(--peach); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- SECTION BASE ---- */
section { padding: 7rem 3rem; position: relative; }
.section-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--cream); color: var(--orange);
  border: 1.5px solid rgba(232,101,26,0.2);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 1rem; border-radius: 99px;
  margin-bottom: 1.5rem;
}
.section-h {
  font-family: 'coolvetica', sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 800; line-height: 1.0;
  letter-spacing: 0.1em;
}
.text-orange { color: var(--orange); }
.text-maroon { color: var(--maroon); }

/* ---- ABOUT ---- */
.about-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center; }
.about-p { font-size: 1.05rem; line-height: 1.85; color: #555; margin-bottom: 1.25rem; }
.about-p strong { color: var(--maroon); font-weight: 700; }

/* Stat blobs */
.stat-blobs { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.stat-blob {
  background: var(--cream); border-radius: 24px;
  padding: 2rem 1.5rem; text-align: center;
  border: 1.5px solid rgba(232,101,26,0.15);
  transition: transform .3s, box-shadow .3s;
}
.stat-blob:nth-child(2) { background: var(--maroon); }
.stat-blob:nth-child(2) .sb-num { color: var(--peach); }
.stat-blob:nth-child(2) .sb-lbl { color: rgba(255,255,255,0.65); }
.stat-blob:nth-child(4) { background: var(--orange); }
.stat-blob:nth-child(4) .sb-num, .stat-blob:nth-child(4) .sb-lbl { color: #fff; }
.stat-blob:hover { transform: translateY(-5px) rotate(-1deg); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.sb-num {
  font-family: 'coolvetica', sans-serif;
  font-size: 3.5rem; font-weight: 800;
  color: var(--maroon); line-height: 1;
}
.sb-lbl { font-size: 0.75rem; font-weight: 700; color: var(--muted); margin-top: 0.4rem; text-transform: uppercase; letter-spacing: 0.1em; }

/* ---- SKILLS ---- */
.skills-bg { background: var(--off); }
.skills-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem;
}
.skill-card {
  background: var(--white); border-radius: 28px;
  padding: 2.5rem 2rem;
  border: 1.5px solid rgba(139,26,26,0.08);
  transition: transform .35s cubic-bezier(0.16,1,0.3,1), box-shadow .35s;
  position: relative; overflow: hidden;
}
.skill-card::before {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  opacity: 0.07; transition: opacity .3s;
}
.sk-y::before { background: var(--maroon); }
.sk-p::before { background: var(--orange); }
.sk-c::before { background: var(--peach); }
.skill-card:hover { transform: translateY(-8px) rotate(-0.5deg); box-shadow: 0 24px 60px rgba(139,26,26,0.1); }
.skill-card:hover::before { opacity: 0.12; }
.sk-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 0.9rem; border-radius: 99px;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.sk-y .sk-badge { background: rgba(139,26,26,0.1); color: var(--maroon); }
.sk-p .sk-badge { background: rgba(232,101,26,0.12); color: var(--orange); }
.sk-c .sk-badge { background: rgba(245,169,130,0.2); color: #B85C2A; }
.sk-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.sk-title {
  font-family: 'coolvetica', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  color: var(--text); margin-bottom: 0.75rem;
}
.sk-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; }
.sk-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.sk-tag {
  font-size: 0.7rem; font-weight: 600;
  padding: 0.3rem 0.8rem; border-radius: 99px;
  background: var(--off); color: var(--muted);
  border: 1px solid var(--border);
  transition: all .25s;
}
.skill-card:hover .sk-tag { border-color: var(--peach); color: var(--maroon); background: var(--cream); }

/* ---- BIG QUOTE ---- */
.quote-sec {
  padding: 6rem 3rem;
  background: var(--cream);
  text-align: center; position: relative; overflow: hidden;
}
.quote-sec::before, .quote-sec::after {
  content: '';
  position: absolute; border-radius: 50%; pointer-events: none;
}
.quote-sec::before {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,101,26,0.1), transparent);
  top: -100px; right: -100px;
}
.quote-sec::after {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(139,26,26,0.08), transparent);
  bottom: -80px; left: -60px;
}
.quote-mark {
  font-family: 'coolvetica', sans-serif; font-size: 10rem; font-weight: 800;
  color: rgba(232,101,26,0.12); line-height: 0.6;
  position: absolute; top: 1rem; left: 2rem;
}
.quote-text {
  font-family: 'coolvetica', sans-serif;
  font-size: clamp(2rem, 5.5vw, 5.5rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: 0.1em;
  color: var(--maroon); position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto;
}
.quote-sub {
  font-size: 1rem; color: var(--muted); margin-top: 1.25rem;
  font-style: italic; position: relative; z-index: 1;
}

/* ---- PROJECTS ---- */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.proj-card {
  background: var(--white); border-radius: 28px;
  padding: 0;
  border: 1.5px solid rgba(139,26,26,0.08);
  transition: transform .4s cubic-bezier(0.16,1,0.3,1), box-shadow .4s;
  position: relative; overflow: hidden;
}
.proj-card:hover { transform: translateY(-8px) rotate(0.4deg); box-shadow: 0 24px 60px rgba(139,26,26,0.1); }
.proj-img {
  width: 100%; height: 200px;
  
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--white);
  overflow: hidden;
  position: relative;
}
.proj-img img {
  width: auto; height: 100%; object-fit: cover; position: absolute;
}
.proj-content { padding: 2rem 1.75rem; }
.proj-tools { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
.ptool {
  font-size: 0.65rem; font-weight: 700;
  padding: 0.3rem 0.8rem; border-radius: 99px;
  background: var(--cream); color: var(--orange);
  border: 1px solid rgba(232,101,26,0.2);
}
.proj-title {
  font-family: 'coolvetica', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  color: var(--text); margin-bottom: 0.75rem; line-height: 1.15;
}
.proj-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.75rem; }
.proj-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 700;
  color: var(--maroon); text-decoration: none;
  padding: 0.55rem 1.25rem; border-radius: 99px;
  background: var(--cream); border: 1.5px solid rgba(139,26,26,0.2);
  transition: all .3s;
}
.proj-link:hover { background: var(--maroon); color: #fff; transform: translateX(4px); }

/* ---- EXPERIENCE ---- */
.exp-bg { background: var(--off); }
.exp-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 5rem; align-items: start; }
.exp-left-quote {
  font-family: 'coolvetica', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800; color: var(--orange);
  line-height: 1.25; display: block; margin-top: 1.5rem;
}
.exp-side-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.8; margin-top: 1.25rem; }

/* Photo gallery in experience */
.exp-photos {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem;
}
.exp-photo {
  width: 100%; height: 140px;
  border-radius: 16px; overflow: hidden;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: var(--white);
  border: 1.5px solid rgba(232,101,26,0.15);
}
.exp-photo img { width: 100%; height: 100%; object-fit: cover; }

.exp-items { display: flex; flex-direction: column; gap: 0; }
.exp-card {
  background: var(--white); border-radius: 20px;
  padding: 2rem 2rem; margin-bottom: 1rem;
  border: 1.5px solid rgba(139,26,26,0.08);
  transition: transform .3s, box-shadow .3s;
  display: flex; gap: 1.5rem; align-items: flex-start;
}
.exp-card:hover { transform: translateX(6px); box-shadow: 0 12px 36px rgba(139,26,26,0.08); }
.exp-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
  border: 1.5px solid rgba(232,101,26,0.2);
}
.exp-year {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem; font-weight: 700; color: var(--orange);
  letter-spacing: 0.1em; margin-bottom: 0.3rem;
}
.exp-role {
  font-family: 'coolvetica', sans-serif; font-size: 1.15rem; font-weight: 800;
  color: var(--text); margin-bottom: 0.2rem;
}
.exp-org { font-size: 0.75rem; font-weight: 700; color: var(--maroon); margin-bottom: 0.6rem; }
.exp-desc-text { font-size: 0.83rem; color: var(--muted); line-height: 1.7; }

/* ---- CONTACT ---- */
.contact-inner { max-width: 700px; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.contact-card {
  background: var(--white); border-radius: 24px;
  padding: 2rem 1.75rem;
  border: 1.5px solid rgba(139,26,26,0.08);
  text-decoration: none; color: var(--text);
  display: flex; flex-direction: column; gap: 0.6rem;
  transition: transform .35s cubic-bezier(0.16,1,0.3,1), box-shadow .35s;
}
.contact-card:hover { transform: translateY(-8px) rotate(-0.5deg); box-shadow: 0 20px 50px rgba(139,26,26,0.1); }
.cc-icon { font-size: 2rem; }
.cc-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); }
.cc-val { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.cc-arr {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--cream); color: var(--maroon);
  font-size: 0.9rem; margin-top: auto;
  transition: all .3s;
}
.contact-card:hover .cc-arr { background: var(--maroon); color: #fff; transform: rotate(-45deg); }

/* ---- FOOTER ---- */
footer {
  background: var(--maroon); color: #fff;
  padding: 3rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem;
}
.foot-logo {
  font-family: 'coolvetica', sans-serif;
  font-size: 1.5rem; font-weight: 800; color: #fff;
}
.foot-logo span { color: var(--peach); }
footer p { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* ---- ANIMATIONS ---- */
@keyframes popUp { from { opacity: 0; transform: scale(0.85) translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: none; } }

.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .75s ease, transform .75s cubic-bezier(0.16,1,0.3,1);
}
.reveal.on { opacity: 1; transform: none; }
.d1 { transition-delay: .1s !important; }
.d2 { transition-delay: .2s !important; }
.d3 { transition-delay: .3s !important; }
.d4 { transition-delay: .4s !important; }

/* ---- MOBILE ---- */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  section { padding: 5rem 1.5rem; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-photo-frame { display: none; }
  .about-wrap, .exp-layout { grid-template-columns: 1fr; gap: 3rem; }
  .skills-grid, .projects-grid, .contact-cards { grid-template-columns: 1fr; }
  .stat-blobs { grid-template-columns: 1fr 1fr; }
  .exp-photos { grid-template-columns: 1fr 1fr; }
  footer { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .hero-name { font-size: clamp(3.5rem, 16vw, 6rem); }
  .stat-blobs { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .quote-sec { padding: 4rem 1.5rem; }
  .exp-photos { grid-template-columns: 1fr 1fr; }
}