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

:root {
  /* warm cinematic palette */
  --bg: #0b0907;
  --bg2: #0f0c09;
  --warm: #12100c;
  --surface: #1a160f;
  --border: rgba(232,210,170,0.10);
  --text: #f3ecdf;
  --muted: #97897a;
  --accent: #e9a23b;       /* amber gold */
  --accent-2: #f6c66a;     /* light gold */
  --accent-deep: #b9742a;  /* bronze */
  --cream: #efe6d4;
  --font: 'Inter', sans-serif;
  --serif: 'Instrument Serif', serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; overflow-x: clip; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: clip;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
ul { list-style: none; }
::selection { background: var(--accent); color: #1a1206; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

/* ── Scroll progress ── */
.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent-2));
  z-index: 500; transition: width 0.1s linear;
}

/* ── Cursor glow ── */
.cursor-glow {
  position: fixed; top: 0; left: 0;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,162,59,0.12) 0%, transparent 65%);
  pointer-events: none; z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s; opacity: 0;
  mix-blend-mode: screen;
}

/* ── Grain ── */
.grain {
  position: fixed; inset: 0; z-index: 2; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 3rem; transition: background 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11,9,7,0.7); backdrop-filter: blur(20px) saturate(1.2);
  padding: 0.9rem 3rem; border-bottom: 1px solid var(--border);
}
.nav__logo { font-size: 1.15rem; font-weight: 600; letter-spacing: -0.02em; }
.nav__logo span { color: var(--accent); }
.nav__links { display: flex; align-items: center; gap: 2.2rem; }
.nav__links a { font-size: 0.88rem; color: var(--muted); transition: color 0.25s; position: relative; }
.nav__links a:not(.nav__cta)::after {
  content: ''; position: absolute; left: 0; bottom: -4px; height: 1px; width: 0;
  background: var(--accent); transition: width 0.3s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__links a:hover { color: var(--text); }
.nav__cta {
  color: var(--text) !important; border: 1px solid var(--border);
  padding: 0.5rem 1.2rem; border-radius: 100px; transition: all 0.25s !important;
}
.nav__cta:hover { background: var(--accent); color: #1a1206 !important; border-color: var(--accent); }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav__burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.8rem; border-radius: 100px; font-size: 0.92rem; font-weight: 500;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.btn--solid { background: var(--accent); color: #1a1206; }
.btn--solid:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(233,162,59,0.3); background: var(--accent-2); }
.btn--ghost { border: 1px solid var(--border); color: var(--text); }
.btn--ghost:hover { border-color: var(--accent); transform: translateY(-3px); }
.btn--lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }

/* ── HERO ── */
.hero { position: relative; height: 100vh; min-height: 640px; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__video { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: saturate(1.05) contrast(1.05); }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--bg) 2%, rgba(11,9,7,0.3) 45%, rgba(11,9,7,0.55) 100%),
    radial-gradient(ellipse at 70% 40%, transparent 30%, rgba(11,9,7,0.5) 100%);
}
.hero__inner { position: relative; z-index: 3; padding: 0 3rem 7vh; max-width: 1180px; margin: 0 auto; width: 100%; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; color: var(--cream); letter-spacing: 0.02em; margin-bottom: 1.5rem;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  padding: 0.4rem 0.9rem; border-radius: 100px; backdrop-filter: blur(8px);
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: #5fd07e; box-shadow: 0 0 0 0 rgba(95,208,126,0.5); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(95,208,126,0.5);} 50%{ box-shadow: 0 0 0 6px rgba(95,208,126,0);} }

.hero__title { font-size: clamp(3.2rem, 9vw, 8rem); font-weight: 600; line-height: 0.92; letter-spacing: -0.04em; margin-bottom: 1.2rem; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > * { display: block; transform: translateY(110%); animation: rise 1s var(--ease) forwards; }
.hero__title .line:nth-child(2) > * { animation-delay: 0.12s; }
.hero__title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent-2); }
@keyframes rise { to { transform: translateY(0); } }

.hero__sub { font-size: clamp(0.95rem,1.5vw,1.15rem); color: var(--cream); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.2rem; }
.hero__sub .sep { color: var(--accent); margin: 0 0.4rem; }
.hero__desc { font-size: 1.1rem; color: rgba(243,236,223,0.8); max-width: 540px; line-height: 1.7; margin-bottom: 2.2rem; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__scroll { position: absolute; right: 3rem; bottom: 7vh; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.hero__scroll span { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); writing-mode: vertical-rl; }
.hero__scroll-line { width: 1px; height: 50px; background: linear-gradient(var(--accent), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content:''; position:absolute; top:-50%; left:0; width:1px; height:50%; background: var(--accent-2); animation: scrolldn 1.8s var(--ease) infinite; }
@keyframes scrolldn { to { top: 100%; } }

/* ── Ticker ── */
.ticker-wrap { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg2); padding: 1.1rem 0; }
.ticker { display: flex; align-items: center; gap: 2rem; white-space: nowrap; width: max-content; animation: ticker 38s linear infinite; }
.ticker:hover { animation-play-state: paused; }
.ticker span:not(.tk-dot) { font-size: 0.92rem; font-weight: 500; color: var(--cream); font-family: var(--serif); font-size: 1.15rem; letter-spacing: 0.01em; }
.tk-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ── Stats ── */
.stats { padding: 5rem 0; border-bottom: 1px solid var(--border); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat { text-align: center; }
.stat__num { display: block; font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 600; letter-spacing: -0.03em; color: var(--accent-2); line-height: 1; margin-bottom: 0.6rem; font-variant-numeric: tabular-nums; }
.stat__label { font-size: 0.85rem; color: var(--muted); }

/* ── Sections ── */
.section { padding: 8rem 0; }
.section--warm { background: var(--warm); }
.kicker { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--accent); margin-bottom: 0.6rem; }
.sec-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; }
.sec-head { margin-bottom: 3.5rem; }
.sec-head--row { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; }
.sec-note { color: var(--muted); max-width: 320px; }

/* ── Work ── */
.work-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.25rem; margin-bottom: 3rem; }
.work-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 2rem; transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
  position: relative; overflow: hidden;
}
.work-card::before {
  content:''; position:absolute; inset:0; opacity:0; transition: opacity 0.4s;
  background: radial-gradient(circle at var(--mx,50%) var(--my,0%), rgba(233,162,59,0.12), transparent 50%);
}
.work-card:hover::before { opacity: 1; }
.work-card:hover { transform: translateY(-6px); border-color: rgba(233,162,59,0.35); }
.work-card--lg { grid-column: span 2; }
.work-card__head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.4rem; }
.work-card__logo { flex: none; height: 34px; display: inline-flex; align-items: center; padding: 0 10px; border-radius: 9px; background: #fff; border: 1px solid rgba(233,162,59,0.28); transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; }
.work-card__logo img { height: 20px; width: auto; max-width: 92px; object-fit: contain; display: block; }
.work-card:hover .work-card__logo { transform: translateY(-2px); border-color: rgba(246,198,106,0.55); box-shadow: 0 6px 18px rgba(0,0,0,0.35); }
.work-card__year { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.work-card__arrow { margin-left: auto; color: var(--muted); font-size: 1.1rem; transition: transform 0.3s, color 0.3s; }
.work-card:hover .work-card__arrow { transform: translate(3px,-3px); color: var(--accent-2); }
.work-card h3 { font-size: 1.35rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 0.35rem; }
.work-card__org { font-size: 0.85rem; color: var(--accent-2); margin-bottom: 0.9rem; }
.work-card__txt { font-size: 0.94rem; color: rgba(243,236,223,0.7); line-height: 1.65; }

/* ── Edu ── */
.edu { display: flex; justify-content: space-between; align-items: center; gap: 2rem; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 2.2rem 2.5rem; }
.edu__l { overflow: hidden; }
.edu__logo { float: left; height: 56px; margin: 0.2rem 1.1rem 0 0; display: inline-flex; align-items: center; padding: 0 14px; border-radius: 12px; background: #fff; border: 1px solid rgba(233,162,59,0.28); }
.edu__logo img { height: 34px; width: auto; max-width: 180px; object-fit: contain; display: block; }
.edu__l h3 { font-size: 1.15rem; font-weight: 600; margin: 0.3rem 0; }
.edu__meta { font-size: 0.88rem; color: var(--muted); }
.edu__r { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: flex-end; max-width: 460px; }
.pill { font-size: 0.78rem; padding: 0.5rem 0.9rem; border-radius: 100px; background: rgba(233,162,59,0.1); border: 1px solid rgba(233,162,59,0.25); color: var(--accent-2); }

/* ── Explore page ── */
.explore-hero { padding: 11rem 0 4rem; position: relative; }
.explore-hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3.4rem; align-items: center; }
.back-link { display: inline-block; font-size: 0.84rem; color: var(--muted); margin-bottom: 2.5rem; transition: color 0.25s; }
.back-link:hover { color: var(--accent-2); }
.explore-title { font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 600; letter-spacing: -0.04em; line-height: 1.04; margin-bottom: 1.4rem; }
.explore-title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent-2); }
.explore-sub { color: var(--muted); max-width: 560px; line-height: 1.7; }

/* film-still trio */
.explore-hero__stills { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.still { margin: 0; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 18px 50px rgba(0,0,0,0.45); transition: transform 0.4s var(--ease); }
.still img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 9; }
.still--1 { grid-column: 1 / -1; transform: translateX(14px); }
.still--2 { transform: translateY(10px); }
.still--3 { transform: translateX(-10px) translateY(20px); }
.still--1:hover { transform: translateX(14px) translateY(-5px); }
.still--2:hover { transform: translateY(5px); }
.still--3:hover { transform: translateX(-10px) translateY(15px); }
.ex-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.ec { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: transform 0.4s var(--ease), border-color 0.4s; }
.ec:hover { transform: translateY(-5px); border-color: rgba(233,162,59,0.35); }
.ec__shot { aspect-ratio: 16 / 10; overflow: hidden; background: #0f0c08; border-bottom: 1px solid var(--border); }
.ec__shot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.ec:hover .ec__shot img { transform: scale(1.05); }
.ec__body { padding: 1.3rem 1.4rem 1.5rem; }
.ec__head { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; margin-bottom: 0.6rem; }
.ec__head h3 { font-size: 1.12rem; font-weight: 600; letter-spacing: -0.01em; }
.ec__tag { font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.3rem 0.6rem; border-radius: 100px; background: rgba(233,162,59,0.1); border: 1px solid rgba(233,162,59,0.22); color: var(--accent-2); white-space: nowrap; }
.ec p { font-size: 0.88rem; color: rgba(243,236,223,0.7); line-height: 1.6; }
.footer__link { color: var(--muted); transition: color 0.25s; }
.footer__link:hover { color: var(--accent-2); }

/* ── Explore CTA on main page ── */
.explore-cta { margin-top: 3rem; display: flex; justify-content: center; }

/* ── Products ── */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.prod { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: transform 0.4s var(--ease), border-color 0.4s; }
.prod:hover { transform: translateY(-6px); border-color: rgba(233,162,59,0.35); }
.prod__shot { aspect-ratio: 16/10; overflow: hidden; border-bottom: 1px solid var(--border); background: #0f0c08; }
.prod__shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.6s var(--ease); }
.prod:hover .prod__shot img { transform: scale(1.05); }
.prod__body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.prod__head { display: flex; align-items: baseline; justify-content: space-between; gap: 0.8rem; }
.prod__head h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; }
.prod__link { font-size: 0.74rem; letter-spacing: 0.04em; color: var(--accent); white-space: nowrap; transition: color 0.3s; }
.prod:hover .prod__link { color: var(--accent-2); }
.prod__txt { font-size: 0.9rem; color: rgba(243,236,223,0.7); line-height: 1.6; flex: 1; }
.prod__tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.2rem; }
.prod__tags span { font-size: 0.72rem; padding: 0.32rem 0.7rem; border-radius: 100px; background: rgba(233,162,59,0.1); border: 1px solid rgba(233,162,59,0.22); color: var(--accent-2); }

/* ── Reels / content ── */
.reels { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.reel { position: relative; aspect-ratio: 9/16; border-radius: 16px; overflow: hidden; background: var(--surface); cursor: pointer; border: 1px solid var(--border); transition: transform 0.4s var(--ease); }
.reel:hover { transform: translateY(-6px) scale(1.02); }
.reel video, .reel img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.reel:hover video, .reel:hover img { transform: scale(1.06); }
.reel__bar { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(11,9,7,0.25); transition: background 0.3s; }
.reel:hover .reel__bar { background: rgba(11,9,7,0.05); }
.reel.playing .reel__bar { opacity: 0; }
.reel__play { width: 46px; height: 46px; border-radius: 50%; background: rgba(243,236,223,0.92); display: flex; align-items: center; justify-content: center; transition: transform 0.3s; }
.reel:hover .reel__play { transform: scale(1.12); }
.reel__play::after { content:''; border-style: solid; border-width: 8px 0 8px 13px; border-color: transparent transparent transparent #1a1206; margin-left: 3px; }
.reel__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem 0.85rem 0.85rem; font-size: 0.8rem; font-weight: 500; color: var(--cream); background: linear-gradient(to top, rgba(11,9,7,0.85), transparent); }
.reel--img .reel__bar { display: none; }

/* ── Wins ── */
.section--wins { position: relative; overflow: hidden; }
.section--wins .container { position: relative; z-index: 2; }
.wins__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.wins__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(11,9,7,0.55), rgba(11,9,7,0.92) 70%),
    linear-gradient(180deg, rgba(11,9,7,0.96) 0%, rgba(11,9,7,0.78) 35%, rgba(11,9,7,0.82) 65%, rgba(11,9,7,0.97) 100%);
}
.wins__bg-img {
  position: absolute; background-size: cover; background-position: center;
  filter: grayscale(0.35) brightness(0.62) contrast(1.02);
  opacity: 0.5; transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
.wins__bg-img--1 { inset: 0; transform: scale(1.04); }
.wins__bg-img--2 {
  top: 6%; right: -3%; width: 42%; height: 46%;
  border-radius: 16px; opacity: 0.34; transform: scale(1.02) translateY(6px);
  mask-image: radial-gradient(120% 120% at 70% 40%, #000 52%, transparent 100%);
  -webkit-mask-image: radial-gradient(120% 120% at 70% 40%, #000 52%, transparent 100%);
}
.wins__bg-img--3 {
  bottom: 4%; left: -4%; width: 44%; height: 44%;
  border-radius: 16px; opacity: 0.3; transform: scale(1.02) translateY(-6px);
  mask-image: radial-gradient(120% 120% at 35% 60%, #000 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(120% 120% at 35% 60%, #000 50%, transparent 100%);
}
.wins__bg-img--4 {
  bottom: 8%; right: -2%; width: 28%; height: 50%;
  border-radius: 16px; opacity: 0.28; transform: scale(1.02) translateY(8px);
  mask-image: radial-gradient(120% 120% at 70% 55%, #000 48%, transparent 100%);
  -webkit-mask-image: radial-gradient(120% 120% at 70% 55%, #000 48%, transparent 100%);
}
.section--wins:hover .wins__bg-img--1 { opacity: 0.58; transform: scale(1.07); }
.section--wins:hover .wins__bg-img--2 { opacity: 0.42; }
.section--wins:hover .wins__bg-img--3 { opacity: 0.38; }
.section--wins:hover .wins__bg-img--4 { opacity: 0.36; }

.wins { border-top: 1px solid var(--border); }
.win { display: flex; align-items: center; gap: 2rem; padding: 1.5rem 1rem; border-bottom: 1px solid var(--border); border-radius: 8px; transition: background 0.3s, padding-left 0.3s var(--ease); }
.win:hover { background: rgba(233,162,59,0.04); padding-left: 1.6rem; }
.win__n { font-size: 0.78rem; color: var(--muted); min-width: 28px; font-variant-numeric: tabular-nums; }
.win__b { flex: 1; }
.win__b h3 { font-size: 1.08rem; font-weight: 600; margin-bottom: 0.2rem; }
.win__b p { font-size: 0.84rem; color: var(--muted); }
.win__a { font-size: 0.85rem; font-weight: 600; color: var(--muted); white-space: nowrap; }
.win--gold .win__a { color: var(--accent-2); }

/* ── Skills ── */
.skills { display: grid; grid-template-columns: 1fr 1.8fr; gap: 4rem; align-items: start; }
.skills__r { display: flex; flex-direction: column; gap: 2rem; }
.skill__t { display: block; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.9rem; }
.tags { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.tags span { padding: 0.45rem 1rem; border: 1px solid var(--border); border-radius: 100px; font-size: 0.85rem; transition: all 0.25s var(--ease); cursor: default; }
.tags span:hover { border-color: var(--accent); color: var(--accent-2); transform: translateY(-2px); }

/* ── Contact ── */
.contact { padding: 9rem 0; text-align: center; position: relative; }
.contact::before { content:''; position:absolute; top:0; left:50%; transform:translateX(-50%); width:600px; height:300px; background: radial-gradient(ellipse, rgba(233,162,59,0.1), transparent 70%); pointer-events:none; }
.contact__inner { display: flex; flex-direction: column; align-items: center; gap: 1.8rem; position: relative; }
.contact__photos { display: flex; align-items: flex-end; justify-content: center; margin-bottom: 0.6rem; max-width: 100%; }
.cphoto { margin: 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); background: var(--surface); box-shadow: 0 20px 50px rgba(0,0,0,0.5); transition: transform 0.45s var(--ease), box-shadow 0.45s; }
.cphoto img { display: block; width: 100%; height: 100%; object-fit: cover; }
.cphoto--1 { width: 150px; height: 196px; transform: rotate(-6deg) translateX(22px); z-index: 1; }
.cphoto--2 { width: 248px; height: 186px; transform: translateY(-10px); z-index: 3; }
.cphoto--3 { width: 178px; height: 150px; transform: rotate(6deg) translateX(-22px); z-index: 2; }
.contact__photos:hover .cphoto--1 { transform: rotate(-8deg) translateX(8px) translateY(-4px); }
.contact__photos:hover .cphoto--2 { transform: translateY(-16px) scale(1.03); box-shadow: 0 26px 60px rgba(0,0,0,0.55); }
.contact__photos:hover .cphoto--3 { transform: rotate(8deg) translateX(-8px) translateY(-4px); }
.contact__h { font-size: clamp(2.6rem, 7vw, 5.5rem); font-weight: 600; letter-spacing: -0.04em; line-height: 1.05; }
.contact__h em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent-2); }
.contact__sub { color: var(--muted); max-width: 500px; line-height: 1.7; margin-top: -0.5rem; }
.contact__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.6rem; margin-top: 0.5rem; }
.contact__links--projects { margin-top: -0.6rem; }
.contact__links--projects a { color: var(--accent-2); }
.contact__links a { font-size: 0.88rem; color: var(--muted); position: relative; transition: color 0.25s; }
.contact__links a::after { content:''; position:absolute; left:0; bottom:-3px; height:1px; width:0; background: var(--accent); transition: width 0.3s; }
.contact__links a:hover { color: var(--text); }
.contact__links a:hover::after { width: 100%; }

/* ── Footer ── */
.footer { display: flex; justify-content: space-between; padding: 2rem 3rem; border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--muted); }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.hero .reveal { transform: translateY(20px); }

/* ── Responsive ── */
@media (max-width: 940px) {
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card--lg { grid-column: span 1; }
  .prod-grid { grid-template-columns: 1fr; }
  .ex-grid { grid-template-columns: 1fr 1fr; }
  .explore-hero__inner { grid-template-columns: 1fr; gap: 2.6rem; }
  .explore-hero__stills { margin-top: 0.5rem; }
  .still--1, .still--2, .still--3 { transform: none; }
  .still--1:hover, .still--2:hover, .still--3:hover { transform: translateY(-5px); }
  .reels { grid-template-columns: 1fr 1fr 1fr; }
  .edu { flex-direction: column; align-items: flex-start; }
  .edu__r { justify-content: flex-start; }
  .skills { grid-template-columns: 1fr; gap: 2rem; }
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav__links { position: fixed; inset: 0; flex-direction: column; justify-content: center; background: rgba(11,9,7,0.97); backdrop-filter: blur(20px); gap: 2.4rem; transform: translateX(100%); transition: transform 0.4s var(--ease); }
  .nav__links.open { transform: none; }
  .nav__links a { font-size: 1.5rem; color: var(--text); }
  .nav__burger { display: flex; z-index: 400; }
  .hero__inner, .hero__scroll { padding-left: 1.5rem; padding-right: 1.5rem; }
  .hero__scroll { display: none; }
}
@media (max-width: 600px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .reels { grid-template-columns: 1fr 1fr; }
  .win { flex-wrap: wrap; gap: 0.4rem 1.5rem; }
  .wins__bg-img--2, .wins__bg-img--4 { display: none; }
  .wins__bg-img--1 { opacity: 0.4; }
  .wins__bg-img--3 { opacity: 0.26; bottom: 2%; }
  .cphoto--1 { width: 92px; height: 120px; transform: rotate(-6deg) translateX(14px); }
  .cphoto--2 { width: 140px; height: 106px; }
  .cphoto--3 { width: 104px; height: 86px; transform: rotate(6deg) translateX(-14px); }
  .ex-grid { grid-template-columns: 1fr; }
  .section { padding: 5rem 0; }
  .footer { flex-direction: column; gap: 0.5rem; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__title .line > * { transform: none; }
}
