/* ═══════════════════════════════════════════
   ATIF SHAIK — Portfolio v2
   ═══════════════════════════════════════════ */

/* ─── RESET & VARIABLES ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:    #04040c;
  --bg-2:  #08081a;
  --bg-card: #06060f;
  --text:  #ffffff;
  --text-2: #b0b0c8;
  --text-3: #7878a0;
  --c1: #f59e0b;
  --c2: #ea580c;
  --c3: #fbbf24;
  --c4: #fb923c;
  --grad:  linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  --grad2: linear-gradient(135deg, #ea580c 0%, #fbbf24 100%);
  --grad3: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'DM Sans', -apple-system, sans-serif;
  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--c2); color: #fff; }
a { color: inherit; text-decoration: none; transition: color 0.3s; }
img { display: block; max-width: 100%; }

/* ─── 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='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.45;
}

/* ─── CURSOR GLOW ─── */
.cursor-glow {
  position: fixed;
  width: 500px; height: 500px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: left 0.1s linear, top 0.1s linear;
  will-change: left, top;
}

/* ─── LOADER ─── */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.8s cubic-bezier(0.55, 0, 1, 0.45);
}
.loader.exit { transform: translateY(-100%); pointer-events: none; }

.loader-content { text-align: center; }
.loader-name { display: flex; gap: 0.5em; justify-content: center; margin-bottom: 2rem; }
.loader-word { display: flex; overflow: hidden; }

.loader-char {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: charReveal 0.85s var(--ease) calc(var(--i) * 60ms) both;
}

@keyframes charReveal {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}

.loader-subtitle {
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--text-3);
  animation: fadeUp 0.7s var(--ease) 0.85s both;
  margin-bottom: 2rem;
}

.loader-bar { width: 120px; height: 2px; background: rgba(255,255,255,0.06); margin: 0 auto; overflow: hidden; border-radius: 2px; }
.loader-bar-fill { height: 100%; background: var(--grad); transform: scaleX(0); transform-origin: left; animation: barFill 1.4s var(--ease) 0.2s both; }

@keyframes loaderFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes barFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ─── NAVIGATION ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.5rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.4s, padding 0.4s, border-color 0.4s;
}

nav.scrolled {
  padding: 1rem 3rem;
  background: rgba(4,4,12,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.nav-logo {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 700;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; }

.nav-links a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-2); position: relative; transition: color 0.3s;
}

.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--grad); border-radius: 2px;
  transition: width 0.4s var(--ease);
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 200; }
.menu-toggle span { display: block; width: 24px; height: 1.5px; background: #fff; margin: 6px 0; transition: transform 0.3s, opacity 0.3s; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding: 5rem 3rem 3rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; top: -10%; right: -10%;
  width: 80vw; height: 80vw;
  background:
    radial-gradient(ellipse at 65% 35%, rgba(245,158,11,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 35% 65%, rgba(234,88,12,0.08) 0%, transparent 50%);
  pointer-events: none;
  animation: ambientPulse 10s ease-in-out infinite alternate;
}

@keyframes ambientPulse {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.1); }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: flex-end;
  padding-top: 4rem;
}

.hero-overline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--c1); margin-bottom: 1.5rem;
}
.hero-overline::before {
  content: ''; display: block; width: 32px; height: 2px;
  background: var(--c1); border-radius: 2px;
}

.hero-name {
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 11rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 2.5rem;
}

.hero-name .grad-line {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block;
}

.hero-meta {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.hero-role {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 400; color: var(--text-2); letter-spacing: 0.04em;
}

.hero-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--c2); flex-shrink: 0; }

.hero-location { font-size: 0.85rem; color: var(--text-3); letter-spacing: 0.06em; }

.hero-cta {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; background: var(--grad); padding: 0.9rem 1.8rem; border-radius: 50px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, gap 0.3s var(--ease);
  box-shadow: 0 0 28px rgba(0,229,255,0.22), 0 0 60px rgba(255,45,120,0.1);
}
.hero-cta:hover {
  transform: translateY(-3px) scale(1.03); gap: 1.1rem; color: #fff;
  box-shadow: 0 0 40px rgba(0,229,255,0.4), 0 0 80px rgba(255,45,120,0.2);
}
.hero-cta svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.hero-cta:hover svg { transform: translateX(4px); }

/* Photo */
.hero-photo-wrap {
  width: clamp(240px, 28vw, 420px);
  aspect-ratio: 3/4;
  position: relative; flex-shrink: 0; align-self: flex-end;
}

.hero-photo-frame {
  width: 100%; height: 100%;
  overflow: hidden; position: relative;
}

.hero-photo-frame::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, transparent 50%, rgba(4,4,12,0.5) 100%),
    linear-gradient(135deg, rgba(0,229,255,0.1) 0%, transparent 40%);
  z-index: 1; pointer-events: none;
}

.hero-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 15%;
  transition: transform 0.8s var(--ease);
}
.hero-photo-wrap:hover .hero-photo-frame img { transform: scale(1.04); }

/* Corner brackets */
.hero-photo-wrap::after {
  content: '';
  position: absolute; top: -10px; right: -10px;
  width: 56px; height: 56px;
  border-top: 3px solid var(--c1); border-right: 3px solid var(--c1);
  pointer-events: none;
  box-shadow: 6px -6px 24px rgba(245,158,11,0.35);
}
.hero-photo-wrap::before {
  content: '';
  position: absolute; bottom: -10px; left: -10px;
  width: 56px; height: 56px;
  border-bottom: 3px solid var(--c2); border-left: 3px solid var(--c2);
  pointer-events: none; z-index: 2;
  box-shadow: -6px 6px 24px rgba(234,88,12,0.35);
}

/* ─── STATS BAR ─── */
.stats-bar {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stat {
  padding: 3.5rem 3rem;
  border-right: 1px solid rgba(255,255,255,0.05);
  position: relative; overflow: hidden;
  transition: background 0.4s;
}
.stat:last-child { border-right: none; }

.stat::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.stat:nth-child(1)::after { background: var(--c1); }
.stat:nth-child(2)::after { background: var(--c2); }
.stat:nth-child(3)::after { background: var(--c3); }
.stat:nth-child(4)::after { background: var(--c4); }
.stat:hover { background: rgba(255,255,255,0.015); }
.stat:hover::after { transform: scaleX(1); }

.stat-num {
  display: block;
  font-family: var(--serif); font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700; line-height: 1; margin-bottom: 0.5rem;
}
.stat:nth-child(1) .stat-num { color: var(--c1); }
.stat:nth-child(2) .stat-num { color: var(--c2); }
.stat:nth-child(3) .stat-num { color: var(--c3); }
.stat:nth-child(4) .stat-num { color: var(--c4); }

.stat-label {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3);
}

/* ─── SECTIONS ─── */
section { padding: 8rem 3rem; position: relative; }
section[id] { scroll-margin-top: 80px; }

.section-label {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--c1); margin-bottom: 1.5rem;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: var(--c1); border-radius: 2px;
}

/* ─── PHILOSOPHY ─── */
#philosophy {
  background: var(--bg-2);
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  padding: 12rem 3rem;
}

.philosophy-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 6rem; align-items: start;
}

.philosophy-heading {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 700; line-height: 1.05; letter-spacing: -0.02em;
  color: #fff;
}

.philosophy-heading em {
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.philosophy-text { font-size: 1.05rem; line-height: 1.9; color: var(--text-2); }

/* ─── WORK / BENTO ─── */
.work-heading {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 700; margin-bottom: 4rem; color: #fff;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1.5rem;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden; position: relative;
  transition: border-color 0.4s, transform 0.45s var(--ease), box-shadow 0.4s;
}
.bento-card:hover { transform: translateY(-5px); }

.bento-card-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.bento-card--large .bento-card-accent { background: linear-gradient(90deg, var(--c1), transparent 80%); }
.bento-card--large:nth-of-type(2) .bento-card-accent { background: linear-gradient(90deg, var(--c2), transparent 80%); }
.bento-card--tall  .bento-card-accent { background: linear-gradient(90deg, var(--c2), transparent 80%); }
.bento-card--wide  .bento-card-accent { background: linear-gradient(90deg, var(--c3), transparent 80%); }

/* Mercari — 2 cols */
.bento-card--large {
  grid-column: span 2;
  padding: 3rem; min-height: 340px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.bento-card--large:hover { border-color: rgba(245,158,11,0.2); box-shadow: 0 20px 60px rgba(245,158,11,0.07); }

/* Myntra — 1 col, 2 rows */
.bento-card--tall {
  grid-column: span 1; grid-row: span 2;
  padding: 3rem 2rem;
  display: flex; flex-direction: column; justify-content: space-between; min-height: 480px;
}
.bento-card--tall:hover { border-color: rgba(234,88,12,0.2);  box-shadow: 0 20px 60px rgba(234,88,12,0.07); }

/* MobiFever — full width */
.bento-card--full {
  grid-column: span 3;
  padding: 2.5rem 3rem;
}
.bento-card--full .bento-card-accent { background: linear-gradient(90deg, var(--c4), transparent 80%); }
.bento-card--full:hover { border-color: rgba(251,191,36,0.2); box-shadow: 0 20px 60px rgba(251,191,36,0.06); }

.bento-full-inner { display: flex; gap: 3rem; align-items: center; }
.bento-full-left  { flex: 1.2; }
.bento-full-right { flex: 1; }

.work-sub-heading { margin-top: 4rem; margin-bottom: 1.5rem; }

.bento-client-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c4); margin-bottom: 0.4rem;
}
.bento-client-name {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 700;
  color: #fff; margin-bottom: 0.8rem;
}

/* Wayground — 2 cols */
.bento-card--wide {
  grid-column: span 2;
  padding: 2.5rem 3rem;
  display: flex; gap: 3rem; align-items: center;
}
.bento-card--wide:hover { border-color: rgba(0,255,136,0.2); box-shadow: 0 20px 60px rgba(0,255,136,0.06); }

.bento-card-num {
  font-family: var(--serif); font-size: 5rem; font-weight: 700;
  line-height: 1; opacity: 0.04; position: absolute;
  top: 1.5rem; right: 2rem; color: #fff; pointer-events: none;
}

.bento-logo {
  height: 44px; width: auto;
  filter: grayscale(1) invert(1); opacity: 0.65;
  transition: opacity 0.3s; margin-bottom: 2rem;
}
.bento-card:hover .bento-logo { opacity: 1; }

.bento-card-company {
  font-family: var(--serif); font-size: 1.9rem; font-weight: 700;
  color: #fff; margin-bottom: 0.4rem;
}

.bento-card-role {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.bento-card--large .bento-card-role { color: var(--c1); }
.bento-card--tall  .bento-card-role { color: var(--c2); }
.bento-card--wide  .bento-card-role { color: var(--c3); }

.bento-card-desc { font-size: 0.88rem; line-height: 1.8; color: var(--text-2); }

.bento-wide-divider { width: 1px; height: 100px; background: rgba(255,255,255,0.06); flex-shrink: 0; }

/* ─── LOGO STRIP (MARQUEE) ─── */
.logo-strip {
  padding: 3.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: var(--bg-card);
  overflow: hidden;
}

.logo-strip-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-3); text-align: center; margin-bottom: 2.5rem;
}

.logo-strip-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 0 3rem;
}

.logo-strip-item { height: 44px; display: flex; align-items: center; }
.logo-strip-item img {
  height: 44px; width: auto;
  filter: grayscale(1) invert(1); opacity: 0.35;
  transition: opacity 0.4s, transform 0.4s;
}
.logo-strip-item:hover img {
  opacity: 0.85;
  transform: translateY(-2px);
  filter: grayscale(1) invert(1) drop-shadow(0 0 8px rgba(245,158,11,0.4));
}

/* ─── QUOTE ─── */
.quote-section {
  background: var(--bg-2);
  clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
  padding: 13rem 3rem;
  text-align: center; position: relative; overflow: hidden;
}

.quote-section::before {
  content: '"';
  position: absolute; top: -4rem; left: 50%; transform: translateX(-50%);
  font-family: var(--serif); font-size: 22rem; font-weight: 700;
  line-height: 1; color: rgba(255,255,255,0.015); pointer-events: none;
}

.quote-text {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700; line-height: 1.2;
  max-width: 900px; margin: 0 auto; color: #fff; position: relative;
}

.quote-text em {
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ─── SKILLS ─── */
.skills-heading {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 700; margin-bottom: 4rem; color: #fff;
}

.skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.skill-block {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.skill-block:hover { transform: translateY(-6px); }

.skill-block::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.skill-block:nth-child(1)::before { background: linear-gradient(90deg, var(--c1), transparent 80%); }
.skill-block:nth-child(2)::before { background: linear-gradient(90deg, var(--c2), transparent 80%); }
.skill-block:nth-child(3)::before { background: linear-gradient(90deg, var(--c3), transparent 80%); }

.skill-block:nth-child(1):hover { border-color: rgba(0,229,255,0.2);  box-shadow: 0 20px 40px rgba(0,229,255,0.06); }
.skill-block:nth-child(2):hover { border-color: rgba(255,45,120,0.2); box-shadow: 0 20px 40px rgba(255,45,120,0.06); }
.skill-block:nth-child(3):hover { border-color: rgba(0,255,136,0.2);  box-shadow: 0 20px 40px rgba(0,255,136,0.06); }

.skill-icon { font-size: 2rem; margin-bottom: 1.5rem; display: block; }
.skill-block-title { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; color: #fff; }
.skill-block-text { font-size: 0.9rem; line-height: 1.85; color: var(--text-2); }

/* ─── PODCASTS ─── */
.podcasts-heading {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 700; margin-bottom: 4rem; color: #fff;
}

.podcast-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

.podcast-card {
  display: block; background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05); overflow: hidden;
  transition: border-color 0.4s, transform 0.5s var(--ease), box-shadow 0.4s;
}
.podcast-card:hover { border-color: rgba(245,158,11,0.2); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(245,158,11,0.07); }

.podcast-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--bg-2); }
.podcast-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(20%) brightness(0.85);
  transition: transform 0.7s var(--ease), filter 0.5s;
}
.podcast-card:hover .podcast-thumb img { transform: scale(1.04); filter: grayscale(0%) brightness(1); }

.podcast-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.35); transition: background 0.3s;
}
.podcast-card:hover .podcast-play { background: rgba(0,0,0,0.15); }

.podcast-play svg {
  width: 56px; height: 56px; color: rgba(255,255,255,0.95);
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.6));
  transition: transform 0.35s var(--ease), color 0.3s, filter 0.3s;
}
.podcast-card:hover .podcast-play svg {
  transform: scale(1.15); color: var(--c1);
  filter: drop-shadow(0 0 16px rgba(245,158,11,0.6));
}

.podcast-info { padding: 1.8rem 2rem 2rem; display: flex; flex-direction: column; gap: 0.5rem; }

.podcast-show {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.podcast-title { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: #fff; line-height: 1.3; }
.podcast-guest { font-size: 0.78rem; color: var(--text-3); }
.podcast-desc { font-size: 0.88rem; color: var(--text-2); line-height: 1.75; margin-top: 0.3rem; }

.podcast-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3); margin-top: 0.8rem;
  transition: color 0.3s, gap 0.3s var(--ease);
}
.podcast-cta svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.podcast-card:hover .podcast-cta { color: var(--c1); gap: 0.8rem; }
.podcast-card:hover .podcast-cta svg { transform: translateX(4px); }

/* ─── CONTACT ─── */
#contact { background: var(--bg-2); }

.contact-heading {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 700; margin-bottom: 3rem; color: #fff;
}

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }

.contact-item { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.contact-item:last-child { border-bottom: none; }
.contact-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); margin-bottom: 0.4rem; }
.contact-value { font-size: 1.05rem; color: var(--text-2); }
.contact-value a { color: var(--text-2); border-bottom: 1px solid transparent; transition: color 0.3s, border-color 0.3s; }
.contact-value a:hover { color: var(--c1); border-bottom-color: var(--c1); }

.contact-photo {
  width: 100%; max-width: 380px; aspect-ratio: 3/4;
  overflow: hidden; position: relative; margin-left: auto;
}
.contact-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--bg-2) 100%);
}
.contact-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 15%;
  filter: grayscale(30%); transition: filter 0.6s var(--ease), transform 0.8s var(--ease);
}
.contact-photo:hover img { filter: grayscale(0%); transform: scale(1.03); }

/* ─── FOOTER ─── */
footer {
  padding: 3rem;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8rem; color: var(--text-3);
}

.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: var(--text-3); letter-spacing: 0.06em; transition: color 0.3s; }
.footer-links a:hover { color: var(--c1); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

.hero-text { animation: fadeUp 1s var(--ease) 0.4s both; }
.hero-photo-wrap { animation: fadeUp 1s var(--ease) 0.65s both; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  nav.scrolled { padding: 1rem 1.5rem; }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 70vw; max-width: 320px; height: 100vh;
    background: rgba(4,4,12,0.98); backdrop-filter: blur(20px);
    flex-direction: column; padding: 6rem 2rem 2rem; gap: 1.5rem;
    transition: right 0.4s var(--ease);
    border-left: 1px solid rgba(255,255,255,0.04); z-index: 150;
  }
  .nav-links.open { right: 0; }

  /* Hero */
  .hero { padding: 4.5rem 1.5rem 2rem; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 0; gap: 2rem; }
  .hero-photo-wrap { width: 100%; max-width: 100%; aspect-ratio: 3/2; }
  .hero-photo-wrap::before,
  .hero-photo-wrap::after { display: none; }
  .hero-name { font-size: clamp(3rem, 12vw, 5rem); }
  .hero-meta { flex-wrap: wrap; gap: 0.75rem; }
  .hero-dot { display: none; }

  /* Stats */
  .stats-bar { grid-template-columns: repeat(3, 1fr); }
  .stat { padding: 2rem 1rem; }
  .stat-num { font-size: clamp(1.8rem, 5vw, 2.5rem); }

  /* Sections */
  section { padding: 4rem 1.5rem; }
  #philosophy { clip-path: none; padding: 5rem 1.5rem; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Bento */
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--large,
  .bento-card--tall,
  .bento-card--wide,
  .bento-card--full { grid-column: span 1; grid-row: span 1; }
  .bento-card--wide { flex-direction: column; gap: 1.5rem; }
  .bento-card--full { padding: 2rem 1.5rem; }
  .bento-full-inner { flex-direction: column; gap: 1.5rem; }
  .bento-wide-divider { display: none; }

  /* Quote */
  .quote-section { clip-path: none; padding: 6rem 1.5rem; }
  .quote-section::before { display: none; }

  /* Skills / Podcasts */
  .skills-grid { grid-template-columns: 1fr; gap: 1rem; }
  .podcast-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-photo { margin-left: 0; max-width: 100%; }

  /* Logo strip */
  .logo-strip-grid { gap: 2rem; padding: 0 1.5rem; }
  .logo-strip-item img { height: 32px; }

  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-name { font-size: 2.8rem; }
  .stats-bar { grid-template-columns: repeat(3, 1fr); }
  .stat { padding: 1.5rem 0.75rem; }
  .stat-label { font-size: 0.6rem; }
  .bento-card--large,
  .bento-card--tall { padding: 2rem 1.5rem; min-height: auto; }
  .hero-cta { font-size: 0.72rem; padding: 0.75rem 1.2rem; }
}
