@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #0d0c0a;
  --text: #f2f0eb;
  --muted: #8c8880;
  --line: #2b2925;
  --accent: #7CFF4F;
  --accent2: #6E9C97;
  --accent-glow: rgba(124,255,79,.15);
  --font: "Baloo 2", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* ---------- NAV ---------- */
.nav {
  height: 78px; padding: 0 5vw; display: flex; align-items: center;
  justify-content: flex-start; gap: 60px; border-bottom: 1px solid var(--line);
  position: fixed; top: 0; width: 100%; z-index: 10;
  background: rgba(11,11,11,.82); backdrop-filter: blur(16px);
}
.logo { font-size: 24px; font-weight: 800; letter-spacing: -1px; display: flex; align-items: center; }
.logo img { height: 22px; width: auto; display: block; }
.logo span { color: var(--accent); }
.nav nav { display: flex; gap: 34px; font-family: var(--font); font-size: 11px; text-transform: uppercase; color: var(--muted); }
.nav nav a:hover { color: var(--text); }
.availability { margin-left: auto; font-family: var(--font); font-size: 10px; text-transform: uppercase; color: var(--muted); }
.availability span { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); margin-right: 8px; }

/* ---------- HERO ---------- */
.hero { min-height: 100vh; padding: 150px 5vw 70px; display: grid; grid-template-columns: 1.25fr .8fr; gap: 1vw; align-items: center; position: relative; z-index: 0; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { font-family: var(--font); color: var(--muted); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.hero h1 { font-size: clamp(56px, 9vw, 152px); line-height: .88; letter-spacing: -.07em; font-weight: 800; margin: 28px -1vw 28px 0; position: relative; }
em { font-style: normal; font-weight: 800; color: var(--accent); display: inline-block; transform: rotate(-2deg); }
.intro { max-width: 330px; color: #aaa; font-size: 17px; line-height: 1.5; }
.scroll-link { display: inline-flex; gap: 20px; margin-top: 70px; font-family: var(--font); font-size: 10px; text-transform: uppercase; border-bottom: 1px solid #555; padding-bottom: 10px; }
.scroll-link span { color: var(--accent); }

.visual-label { position: absolute; top: 20px; left: 20px; font: 10px var(--font); color: var(--muted); }
.visual-note { position: absolute; bottom: 20px; left: 20px; font: 10px/1.5 var(--font); color: #666; }
.visual-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 40px 40px; mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent); }

/* ---------- STATEMENT ---------- */
.statement { position: relative; padding: 160px 5vw 160px 6vw; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.statement h2 { font-size: clamp(40px, 5vw, 88px); line-height: 1.02; letter-spacing: -.06em; font-weight: 700; max-width: 900px; margin-top: 30px; text-align: left; }
.statement h2 span { color: var(--accent); }
.statement::after {
  content: attr(data-index);
  position: absolute;
  right: 4vw;
  bottom: -6vw;
  font: 800 clamp(120px, 22vw, 340px)/1 var(--font);
  color: transparent;
  -webkit-text-stroke: 1px var(--line);
  letter-spacing: -.05em;
  pointer-events: none;
  z-index: 0;
}
.statement > * { position: relative; z-index: 1; }

/* ---------- WORK ---------- */
.work { padding: 160px 5vw; position: relative; z-index: 0; }
.section-heading { display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 20px; margin-bottom: 45px; }
.section-count { font: 10px var(--font); color: var(--muted); }

.project-feature { margin: 0 -5vw 90px; }
.project-feature .project-image { aspect-ratio: 21 / 9; border-left: none; border-right: none; }
.project-feature .project-meta,
.project-feature p { padding: 0 5vw; }
.project-feature .project-meta { margin-top: 24px; }
.project-feature .project-meta h3 { font-size: 28px; }

.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 70px 4vw; }
.project-grid .project:nth-child(2) { margin-top: 12vh; }
.project-link { display: block; }

.project-image { aspect-ratio: 1 / 1; position: relative; overflow: hidden; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.placeholder { background: #141414; }
.placeholder span { font: 10px var(--font); color: #777; letter-spacing: .1em; }
.placeholder small { position: absolute; bottom: 18px; left: 18px; font: 9px var(--font); color: #777; }
.character { background: radial-gradient(circle at 50% 45%, #555, #191919 45%, #0d0d0d); }
.motion { background: linear-gradient(135deg, #1d1d1d, #080808); }
.props { background: radial-gradient(circle at 35% 40%, #3a3a3a, #0b0b0b 60%); }
.sculpting { background: radial-gradient(circle at 60% 55%, #4a4540, #16140f 50%, #0a0908); }
.project-meta { display: flex; justify-content: space-between; margin-top: 18px; }
.project-meta h3 { font-size: 20px; font-weight: 500; }
.project-meta span { color: var(--muted); font: 10px var(--font); }
.project p { color: var(--muted); font-size: 15px; line-height: 1.4; margin-top: 10px; }

/* ---------- SHOWREEL ---------- */
.showreel { position: relative; z-index: 0; padding: 160px 0 0; border-top: 1px solid var(--line); }
.showreel-copy { padding: 0 5vw 50px; max-width: 640px; }
.showreel h2 { font-size: clamp(46px, 6vw, 88px); line-height: 1.0; letter-spacing: -.06em; font-weight: 700; margin-top: 25px; }
.video-placeholder { position: relative; aspect-ratio: 21/8; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; background: #141414; color: #777; font: 10px var(--font); }
.video-placeholder button { background: transparent; border: 1px solid #555; color: var(--text); padding: 13px 18px; font: 10px var(--font); cursor: pointer; }
.video-placeholder button:hover { background: var(--accent); color: #111; border-color: var(--accent); }

/* ---------- CTA / CONTACT ---------- */
.contact, .cta { padding: 160px 5vw 160px 6vw; border-top: 1px solid var(--line); overflow: hidden; position: relative; z-index: 0; }
.contact h2, .cta h2 { font-size: clamp(56px, 10.5vw, 168px); line-height: .85; letter-spacing: -.08em; font-weight: 800; margin: 30px -2vw 70px 0; text-align: left; }
.email { font: 14px var(--font); border-bottom: 1px solid var(--accent); padding-bottom: 10px; }

/* ---------- ABOUT ---------- */
.about { padding: 160px 12vw 160px 6vw; display: grid; grid-template-columns: .75fr 1fr; gap: 7vw; align-items: start; border-top: 1px solid var(--line); position: relative; }
.about-photo { aspect-ratio: .82; margin-top: -80px; }
.photo-placeholder { width: 100%; height: 100%; border: 1px solid var(--line); background: linear-gradient(135deg, #202020, #0e0e0e); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: #777; }
.photo-placeholder span { font: 11px var(--font); }
.photo-placeholder small { font-size: 11px; color: #555; }
.about-copy { margin-top: 110px; max-width: 420px; }
.about h2 { font-size: clamp(36px, 4vw, 64px); line-height: 1.08; letter-spacing: -.05em; font-weight: 600; margin: 28px 0; }
.about-copy > p:not(.eyebrow) { color: #999; line-height: 1.7; font-size: 15px; max-width: 420px; margin-top: 18px; }

/* ---------- FOOTER ---------- */
footer { padding: 30px 5vw; border-top: 1px solid var(--line); display: flex; justify-content: space-between; color: #666; font: 10px var(--font); text-transform: uppercase; position: relative; z-index: 0; }
.footer-brand { display: inline-flex; align-items: center; gap: 8px; }
.footer-icon { height: 13px; width: auto; opacity: .8; }

/* ---------- SUBPAGES ---------- */
.page-hero { padding: 190px 5vw 70px; border-bottom: 1px solid var(--line); position: relative; z-index: 0; }
.page-hero .section-count { font: 10px var(--font); color: var(--muted); margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(48px, 8vw, 120px); line-height: .92; letter-spacing: -.07em; font-weight: 700; margin: 24px 0 30px; }
.page-hero .intro { max-width: 560px; color: #aaa; font-size: 17px; line-height: 1.55; }
.page-banner { margin: 0 5vw; aspect-ratio: 2.2 / 1; }
.page-banner .project-image { width: 100%; height: 100%; aspect-ratio: auto; }

.gallery { padding: 100px 5vw 60px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 0; }
.gallery .project-image { aspect-ratio: 1 / 1; }
.gallery .project-image:first-child { grid-column: span 2; aspect-ratio: 2 / 1; }

.next-project { display: flex; align-items: center; justify-content: space-between; padding: 60px 5vw; border-top: 1px solid var(--line); }
.next-project .label { font: 10px var(--font); color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.next-project .name { font-size: clamp(28px, 4vw, 48px); letter-spacing: -.04em; margin-top: 10px; transition: color .3s ease, transform .3s ease; display: inline-block; }
.next-project a:hover .name { color: var(--accent); transform: translateX(8px); }

/* ---------- SELECTION ---------- */
::selection { background: var(--accent); color: #080808; }

/* ---------- TRANSITIONS ---------- */
.nav a, .scroll-link, .email, .availability, .project-image, .video-placeholder button {
  transition: all .35s cubic-bezier(.2,.7,.2,1);
}

.project-image {
  transition: transform .55s cubic-bezier(.2,.7,.2,1), border-color .35s ease, filter .35s ease;
}
.project:hover .project-image {
  transform: translateY(-8px) rotate(-1.2deg);
  border-color: var(--accent);
  filter: brightness(1.12);
}
.project:hover .project-meta h3 { color: var(--accent); }
.project-meta h3 { transition: color .3s ease; }

.scroll-link:hover { color: var(--accent); border-color: var(--accent); }
.email:hover { color: var(--accent); }
.nav .logo:hover { color: var(--accent); }

.availability:hover { color: var(--text); }

/* ---------- CURSOR ---------- */
.cursor {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); position: fixed; z-index: 100;
  pointer-events: none; transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width .25s cubic-bezier(.2,.8,.2,1), height .25s cubic-bezier(.2,.8,.2,1), background .25s ease;
}
.cursor.active { width: 28px; height: 28px; background: transparent; border: 1px solid var(--accent); }

@media (max-width: 800px) { .cursor { display: none; } }

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- PAGE ENTRANCE ---------- */
body { animation: pageIn 1s cubic-bezier(.2,.7,.2,1) both; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- LOGO ---------- */
.logo { position: relative; transition: transform .35s cubic-bezier(.2,.8,.2,1), color .3s ease; }
.logo:hover { transform: translateY(-2px); }
.logo span { display: inline-block; transition: transform .4s cubic-bezier(.2,.8,.2,1); }
.logo:hover span { transform: scale(1.8) rotate(90deg); }

/* ---------- NAV UNDERLINE ---------- */
.nav nav a { position: relative; }
.nav nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -7px;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.nav nav a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- HERO REVEAL ---------- */
.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .intro,
.hero-copy .scroll-link {
  opacity: 0;
  transform: translateY(24px);
  animation: heroReveal .9s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-copy h1 { animation-delay: .12s; }
.hero-copy .intro { animation-delay: .24s; }
.hero-copy .scroll-link { animation-delay: .38s; }
@keyframes heroReveal { to { opacity: 1; transform: translateY(0); } }

/* ---------- ORB ---------- */
/* ---------- PROJECT SHINE ---------- */
.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, var(--accent-glow) 50%, transparent 75%);
  transform: translateX(-120%);
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.project:hover .project-image::after { transform: translateX(120%); }
.project-image > span { transition: letter-spacing .45s ease, color .35s ease; }
.project:hover .project-image > span { letter-spacing: .22em; color: var(--accent); }

/* ---------- PROJECT NUMBER ---------- */
.project-meta span { transition: color .3s ease, transform .35s ease; }
.project:hover .project-meta span { color: var(--accent); transform: translateX(-5px); }

/* ---------- PROJECT DESC LINE ---------- */
.project p { position: relative; padding-left: 0; transition: padding-left .35s ease; }
.project p::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .35s ease;
}
.project:hover p { padding-left: 18px; }
.project:hover p::before { width: 10px; }

/* ---------- PHOTO ---------- */
.photo-placeholder {
  transition: transform .6s cubic-bezier(.2,.8,.2,1), border-color .35s ease;
}
.about-photo:hover .photo-placeholder {
  transform: scale(.985) rotate(.5deg);
  border-color: var(--accent);
}
.photo-placeholder span,
.photo-placeholder small { transition: color .35s ease, transform .35s ease; }
.about-photo:hover .photo-placeholder span { color: var(--accent); transform: translateY(-3px); }

/* ---------- VIDEO BUTTON ---------- */
.video-placeholder button { position: relative; overflow: hidden; }
.video-placeholder button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  z-index: -1;
}
.video-placeholder button:hover::before { transform: translateY(0); }
.video-placeholder button:hover { color: #080808; }

/* ---------- EMAIL ---------- */
.email {
  display: inline-block;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), color .3s ease;
}
.email:hover { transform: translateX(8px); }

/* ---------- SECTION HEADING ---------- */
.section-heading .eyebrow::before {
  content: "";
  display: inline-block;
  width: 0; height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 0;
  transition: width .4s ease, margin-right .4s ease;
}
.section-heading:hover .eyebrow::before { width: 22px; margin-right: 10px; }

/* ---------- OUTLINE GLOW ---------- */
.project-image {
  outline: 1px solid transparent;
  outline-offset: 0px;
  transition: outline-color .4s ease, outline-offset .4s cubic-bezier(.2,.8,.2,1);
}
.project:hover .project-image {
  outline-color: var(--accent-glow);
  outline-offset: 6px;
}
.about-photo .photo-placeholder {
  outline: 1px solid transparent;
  outline-offset: 0px;
  transition: outline-color .4s ease, outline-offset .4s cubic-bezier(.2,.8,.2,1);
}
.about-photo:hover .photo-placeholder {
  outline-color: var(--accent-glow);
  outline-offset: 6px;
}

/* ---------- FILM GRAIN ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: .035;
  mix-blend-mode: overlay;
  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.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- SCROLL PROGRESS ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 60;
  transition: width .1s linear;
}

/* ---------- LOADER ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: opacity .6s cubic-bezier(.2,.7,.2,1), visibility .6s;
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader-pct { font: 13px var(--font); color: var(--muted); letter-spacing: .1em; }
.loader-pct span { color: var(--accent); }
.loader-bar { width: 220px; height: 1px; background: var(--line); position: relative; overflow: hidden; }
.loader-bar::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  background: var(--accent);
  transition: width .1s linear;
}
.loader-label { font: 10px var(--font); color: #555; text-transform: uppercase; letter-spacing: .18em; }

/* ---------- CURSOR READOUT ---------- */
.cursor-readout {
  position: fixed;
  z-index: 99;
  font: 9px var(--font);
  color: var(--accent);
  opacity: 0;
  pointer-events: none;
  transform: translate(14px, 14px);
  transition: opacity .25s ease;
  white-space: nowrap;
}
.cursor-readout.is-visible { opacity: .85; }
@media (max-width: 800px) { .cursor-readout { display: none; } }

/* ---------- MAGNETIC ---------- */
.magnetic {
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
  display: inline-block;
}


/* ---------- HERO CHARACTER (real render, no card/frame around it) ---------- */
.hero-character {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  min-height: 420px;
}

.hero-character-glow {
  position: absolute;
  width: 62%;
  aspect-ratio: 1 / 1;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.hero-frame {
  position: relative;
  z-index: 1;
  width: clamp(300px, 34vw, 480px);
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.45));
}

.hero-frame--closed {
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0;
  transition: opacity 55ms linear;
}

.hero-frame--closed.is-blinking {
  opacity: 1;
}

/* ---------- MOBILE ---------- */
@media (max-width: 800px) {
  .nav nav { display: none; }
  .availability { font-size: 8px; margin-left: 0; }
  .nav { gap: 16px; }
  .hero { grid-template-columns: 1fr; padding-top: 130px; }
  .hero h1 { margin-right: 0; }
  .hero-character { min-height: 300px; }
  .hero-frame { width: clamp(180px, 55vw, 300px); }
  .statement { padding: 110px 8vw; }
  .statement::after { display: none; }
  .project-feature { margin: 0 0 60px; }
  .project-feature .project-meta, .project-feature p { padding: 0; }
  .project-grid, .about, .showreel { grid-template-columns: 1fr; }
  .project-grid .project:nth-child(2) { margin-top: 0; }
  .about { padding: 100px 8vw; }
  .about-photo { margin-top: 0; }
  .about-copy { margin-top: 0; max-width: none; }
  .showreel { padding: 100px 0 0; }
  .showreel-copy { padding: 0 5vw 30px; max-width: none; }
  .contact h2 { font-size: clamp(40px, 13vw, 80px); margin-right: 0; }
  footer { gap: 20px; flex-wrap: wrap; }
  .page-hero { padding: 150px 8vw 50px; }
  .page-banner, .gallery, .next-project { margin: 0; padding-left: 8vw; padding-right: 8vw; }
  .gallery { grid-template-columns: 1fr; }
  .gallery .project-image:first-child { grid-column: span 1; aspect-ratio: 1/1; }
  .next-project { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ============================================================
   DECORATIVE SVG ICONS — INLINE, MOUSE-REPEL, DESIGNER PLACED
   ============================================================ */

.icon-deco {
  position: absolute;
  pointer-events: none;
  z-index: -1;
  opacity: 0.45;
  will-change: transform;
}
.icon-deco svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---- Color themes per icon ---- */
.icon-deco.accent-green { color: var(--accent); }
.icon-deco.accent-teal { color: var(--accent2); }
.icon-deco.accent-yellow { color: #F7DE54; }
.icon-deco.accent-pink { color: #F985E6; }
.icon-deco.accent-blue { color: #ADBBFB; }

/* ============================================================
   DESIGNER PLACEMENT — scattered, asymmetric, intentional
   ============================================================ */

/* ---- HERO: 3 icons framing the composition ---- */
.hero .icon-deco.icon-starburst {
  top: 8%;
  right: 12%;
  width: clamp(45px, 6vw, 90px);
}
.hero .icon-deco.icon-blob {
  bottom: 22%;
  left: 3%;
  width: clamp(50px, 7vw, 100px);
}
.hero .icon-deco.icon-abstract {
  top: 55%;
  right: 38%;
  width: clamp(35px, 4vw, 70px);
  opacity: 0.25;
}

/* ---- STATEMENT: 2 icons creating tension ---- */
.statement .icon-deco.icon-swirl {
  top: 10%;
  right: 8%;
  width: clamp(80px, 10vw, 160px);
  opacity: 0.3;
}
.statement .icon-deco.icon-arrows-left {
  bottom: 18%;
  left: 5%;
  width: clamp(40px, 5vw, 80px);
}

/* ---- WORK: 4 icons scattered across grid ---- */
.work .icon-deco.icon-starburst {
  top: 5%;
  right: 6vw;
  width: clamp(50px, 6vw, 100px);
}
.work .icon-deco.icon-blob {
  top: 38%;
  left: 3vw;
  width: clamp(40px, 5vw, 80px);
  opacity: 0.35;
}
.work .icon-deco.icon-arrows-right {
  bottom: 18%;
  right: 8vw;
  width: clamp(45px, 5vw, 90px);
}
.work .icon-deco.icon-abstract {
  bottom: 8%;
  left: 15vw;
  width: clamp(35px, 4vw, 70px);
  opacity: 0.2;
}

/* ---- SHOWREEL: 3 icons framing video ---- */
.showreel .icon-deco.icon-swirl {
  top: 8%;
  left: 4vw;
  width: clamp(70px, 8vw, 140px);
  opacity: 0.35;
}
.showreel .icon-deco.icon-arrows-left {
  top: 45%;
  right: 5vw;
  width: clamp(40px, 4.5vw, 80px);
}
.showreel .icon-deco.icon-blob {
  bottom: 12%;
  left: 8vw;
  width: clamp(45px, 5vw, 90px);
}

/* ---- CTA: 3 icons creating energy around text ---- */
.cta .icon-deco.icon-starburst {
  top: 12%;
  right: 10%;
  width: clamp(55px, 6vw, 110px);
}
.cta .icon-deco.icon-abstract {
  bottom: 30%;
  left: 4%;
  width: clamp(40px, 4.5vw, 80px);
  opacity: 0.3;
}
.cta .icon-deco.icon-arrows-right {
  bottom: 15%;
  right: 15%;
  width: clamp(45px, 5vw, 90px);
}

/* ---- ABOUT: 3 icons ---- */
.about .icon-deco.icon-swirl {
  top: 5%;
  right: 6%;
  width: clamp(60px, 7vw, 120px);
  opacity: 0.3;
}
.about .icon-deco.icon-blob {
  bottom: 25%;
  left: 2%;
  width: clamp(45px, 5vw, 90px);
}
.about .icon-deco.icon-arrows-left {
  top: 50%;
  right: 3%;
  width: clamp(35px, 4vw, 70px);
  opacity: 0.25;
}

/* ---- CONTACT: 3 icons ---- */
.contact .icon-deco.icon-starburst {
  top: 10%;
  right: 8%;
  width: clamp(50px, 6vw, 100px);
}
.contact .icon-deco.icon-swirl {
  bottom: 20%;
  left: 5%;
  width: clamp(70px, 8vw, 140px);
  opacity: 0.3;
}
.contact .icon-deco.icon-abstract {
  top: 45%;
  right: 20%;
  width: clamp(35px, 4vw, 70px);
  opacity: 0.2;
}

/* ---- SUBPAGE HERO: 2 icons ---- */
.page-hero .icon-deco.icon-blob {
  top: 18%;
  right: 6%;
  width: clamp(40px, 5vw, 80px);
}
.page-hero .icon-deco.icon-arrows-right {
  bottom: 20%;
  left: 4%;
  width: clamp(35px, 4vw, 70px);
  opacity: 0.3;
}

/* ---- GALLERY: 2 icons ---- */
.gallery .icon-deco.icon-starburst {
  top: 3%;
  right: 4%;
  width: clamp(40px, 4.5vw, 80px);
}
.gallery .icon-deco.icon-swirl {
  bottom: 8%;
  left: 3%;
  width: clamp(55px, 6vw, 110px);
  opacity: 0.25;
}

/* ---- Per-category variation so the 4 work subpages don't feel copy-pasted ----
   Note: only top/left/right/bottom/width vary here — `transform` on .icon-deco
   is already owned by the idle-float keyframe animation + the JS repel physics,
   so overriding transform here would just get silently clobbered every frame. */
.pg-motion .page-hero .icon-blob { top: 60%; right: 10%; left: auto; width: clamp(30px, 3.5vw, 60px); }
.pg-motion .page-hero .icon-arrows-right { top: 14%; bottom: auto; left: auto; right: 8%; }
.pg-motion .gallery .icon-starburst { top: auto; bottom: 6%; right: 8%; left: auto; }
.pg-motion .gallery .icon-swirl { top: 4%; bottom: auto; left: auto; right: 4%; width: clamp(45px, 5vw, 90px); }

.pg-props .page-hero .icon-blob { top: 8%; right: 22%; width: clamp(45px, 5.5vw, 90px); }
.pg-props .page-hero .icon-arrows-right { bottom: 8%; left: 10%; right: auto; }
.pg-props .gallery .icon-starburst { top: 3%; left: 4%; right: auto; }
.pg-props .gallery .icon-swirl { bottom: 4%; right: 3%; left: auto; }

.pg-character .page-hero .icon-blob { bottom: 12%; top: auto; right: 4%; width: clamp(35px, 4.5vw, 70px); }
.pg-character .page-hero .icon-arrows-right { top: 22%; bottom: auto; right: 6%; left: auto; }
.pg-character .gallery .icon-starburst { bottom: 6%; top: auto; left: 6%; right: auto; }
.pg-character .gallery .icon-swirl { top: 6%; bottom: auto; right: 4%; left: auto; width: clamp(60px, 6.5vw, 120px); }

/* ---- FOOTER: subtle accent ---- */
footer .icon-deco.icon-abstract {
  top: -20px;
  right: 5vw;
  width: clamp(30px, 3vw, 50px);
  opacity: 0.2;
}

/* ============================================================
   MOUSE REPEL INTERACTION
   Icons move away from cursor when it gets within 150px
   ============================================================ */

.icon-deco {
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), opacity 0.4s ease;
}

/* ---- Idle float animation (subtle, different per icon type) ---- */
.icon-deco.icon-starburst { animation: iconFloatA 5s ease-in-out infinite; }
.icon-deco.icon-blob { animation: iconFloatB 6s ease-in-out infinite 0.5s; }
.icon-deco.icon-abstract { animation: iconFloatC 7s ease-in-out infinite 1s; }
.icon-deco.icon-arrows-left { animation: iconFloatA 5.5s ease-in-out infinite 0.3s; }
.icon-deco.icon-arrows-right { animation: iconFloatB 6.5s ease-in-out infinite 0.8s; }
.icon-deco.icon-swirl { animation: iconFloatC 8s ease-in-out infinite 1.2s; }

@keyframes iconFloatA {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}
@keyframes iconFloatB {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(-2deg); }
}
@keyframes iconFloatC {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

/* ---- When repelled by mouse, override float ---- */
.icon-deco.is-repelled {
  animation: none !important;
  opacity: 0.7;
}

/* ---- Hover on parent section brightens icons ---- */
.hero:hover .icon-deco,
.statement:hover .icon-deco,
.work:hover .icon-deco,
.showreel:hover .icon-deco,
.cta:hover .icon-deco,
.about:hover .icon-deco,
.contact:hover .icon-deco,
.page-hero:hover .icon-deco,
.gallery:hover .icon-deco {
  opacity: 0.65;
}

/* ---- Hide on mobile ---- */
@media (max-width: 800px) {
  .icon-deco { display: none; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .icon-deco { animation: none !important; transition: none !important; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .loader { display: none; }
  body::before { display: none; }
}

/* ============================================================
   BOREDOM — NEW COMPANY-SITE COMPONENTS
   ============================================================ */

/* ---- Pillars (Motion / VFX / Character Creation) ---- */
.pillars { padding: 0 5vw 60px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 4vw; position: relative; }
.pillar { border: 1px solid var(--line); padding: 34px 26px; transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .35s ease, background .35s ease; }
.pillar:hover { transform: translateY(-6px) rotate(-.6deg); border-color: var(--accent); background: rgba(124,255,79,.04); }
.pillar .num { font: 11px var(--font); color: var(--muted); letter-spacing: .1em; }
.pillar h3 { font-size: 24px; font-weight: 700; margin: 14px 0 10px; letter-spacing: -.02em; }
.pillar p { color: var(--muted); font-size: 14.5px; line-height: 1.55; }

/* ---- Reel video ---- */
.reel-video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
.video-placeholder.has-video { padding: 0; background: #000; cursor: pointer; }
.video-placeholder.has-video .video-play-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(10,10,10,.28); transition: background .35s ease, opacity .35s ease;
}
.video-placeholder.has-video.is-playing .video-play-overlay { opacity: 0; pointer-events: none; }
.video-play-overlay button { position: relative; z-index: 2; }
.video-placeholder.has-video:hover .video-play-overlay { background: rgba(10,10,10,.15); }

/* ---- About: links row (behance / twitter) ---- */
.elsewhere { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px 28px; }
.elsewhere a {
  font: 12px var(--font); text-transform: uppercase; letter-spacing: .08em;
  border-bottom: 1px solid var(--muted); padding-bottom: 6px;
  transition: color .3s ease, border-color .3s ease, transform .3s cubic-bezier(.2,.8,.2,1);
  display: inline-block;
}
.elsewhere a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px) rotate(-1.5deg); }

/* ---- About: extra copy blocks (what is boredom / what we do) ---- */
.about-blocks { padding: 0 12vw 40px 6vw; display: grid; grid-template-columns: .75fr 1fr; gap: 7vw; }
.about-blocks .spacer { }
.about-blocks .block { max-width: 460px; margin-bottom: 46px; }
.about-blocks .block:last-child { margin-bottom: 0; }
.about-blocks .block h3 { font-size: clamp(26px, 2.6vw, 36px); letter-spacing: -.03em; margin: 10px 0 16px; font-weight: 700; }
.about-blocks .block p { color: #999; line-height: 1.75; font-size: 15px; margin-top: 12px; }
.about-blocks .block p:first-of-type { margin-top: 16px; }

/* ---- About: work strip (candid photos from the studio) ---- */
.work-strip { padding: 0 5vw 100px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.work-strip .shot { aspect-ratio: 1/1; overflow: hidden; border: 1px solid var(--line); position: relative; }
.work-strip .shot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.2,.8,.2,1), filter .4s ease; }
.work-strip .shot:hover img { transform: scale(1.06) rotate(-1deg); filter: brightness(1.08); }
.work-strip .shot:nth-child(3n+2) { margin-top: 10vh; }

/* ---- Team grid ---- */
.team-grid { padding: 0 5vw 140px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px 3vw; position: relative; z-index: 0; }
.team-card { text-align: left; }
.team-photo { aspect-ratio: 1/1; overflow: hidden; border: 1px solid var(--line); position: relative; background: #141414; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s cubic-bezier(.2,.8,.2,1), filter .4s ease; filter: grayscale(.35); }
.team-card:hover .team-photo img { transform: scale(1.05) rotate(-1.4deg); filter: grayscale(0); }
.team-photo.is-icon { display: flex; align-items: center; justify-content: center; background: #f4c542; }
.team-photo.is-icon svg { width: 46%; height: 46%; }
.team-card h4 { margin-top: 16px; font-size: 19px; font-weight: 700; letter-spacing: -.02em; }
.team-card .role { font: 11px var(--font); text-transform: uppercase; letter-spacing: .09em; color: var(--muted); margin-top: 4px; }
.team-card a.social { display: inline-block; margin-top: 8px; font-size: 12px; color: var(--muted); border-bottom: 1px solid transparent; transition: color .3s ease, border-color .3s ease; }
.team-card a.social:hover { color: var(--accent); border-color: var(--accent); }

/* ---- Special Projects (Behance) ---- */
.projects-intro { padding: 190px 5vw 40px; border-bottom: 1px solid var(--line); position: relative; z-index: 0; }
.projects-intro h1 { font-size: clamp(48px, 8vw, 120px); line-height: .92; letter-spacing: -.07em; font-weight: 700; margin: 24px 0 30px; }
.projects-intro .intro { max-width: 620px; color: #aaa; font-size: 17px; line-height: 1.55; }
.behance-note { margin-top: 26px; }
.behance-note a { font: 12px var(--font); text-transform: uppercase; letter-spacing: .08em; color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 6px; }

.bproject-grid { padding: 90px 5vw 160px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px 4vw; position: relative; z-index: 0; }
.bproject { display: block; border: 1px solid var(--line); overflow: hidden; transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .35s ease; }
.bproject:hover { transform: translateY(-8px) rotate(-.6deg); border-color: var(--accent); }
.bproject-image { aspect-ratio: 16/11; overflow: hidden; background: #141414; }
.bproject-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.bproject:hover .bproject-image img { transform: scale(1.06); }
.bproject-body { padding: 20px 22px 24px; }
.bproject-body h3 { font-size: 21px; font-weight: 700; letter-spacing: -.02em; }
.bproject-stats { margin-top: 10px; display: flex; gap: 18px; font: 11px var(--font); color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.bproject-stats span { color: var(--accent); }
.bproject-feature { grid-column: 1 / -1; }
.bproject-feature .bproject-image { aspect-ratio: 21/9; }

/* ---- Silly wink accent on nav availability dot ---- */
.availability span { animation: dotPulse 1.8s ease-in-out infinite; }
@keyframes dotPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: .6; } }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; }
  .about-blocks { grid-template-columns: 1fr; padding: 0 6vw 40px; }
  .work-strip { grid-template-columns: repeat(2, 1fr); padding: 0 6vw 70px; }
  .work-strip .shot:nth-child(3n+2) { margin-top: 0; }
  .team-grid { grid-template-columns: repeat(2, 1fr); padding: 0 6vw 90px; }
  .bproject-grid { grid-template-columns: 1fr; padding: 60px 6vw 100px; }
  .bproject-feature .bproject-image { aspect-ratio: 16/10; }
}

/* ---- Hero sticker collage (replaces old static portrait) ---- */
.hero-stickers { position: relative; width: 100%; height: 100%; min-height: 420px; }
.sticker-photo {
  position: absolute; overflow: hidden; border: 6px solid var(--text); background: #111;
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.sticker-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sticker-photo:hover { transform: scale(1.04) rotate(0deg) !important; z-index: 5; }
.sticker-1 { width: 46%; aspect-ratio: 3/4; top: 2%; left: 6%; transform: rotate(-7deg); z-index: 2; }
.sticker-2 { width: 40%; aspect-ratio: 1/1; top: 20%; right: 2%; transform: rotate(6deg); z-index: 3; }
.sticker-3 { width: 38%; aspect-ratio: 4/5; bottom: 2%; left: 20%; transform: rotate(4deg); z-index: 1; }
.sticker-note {
  position: absolute; top: 4%; right: 16%; z-index: 4;
  background: var(--accent); color: #0b0b0b; font-weight: 800; font-size: 13px;
  padding: 10px 16px; transform: rotate(-8deg); letter-spacing: -.02em;
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}
.sticker-arrow { position: absolute; bottom: 14%; right: 4%; width: 60px; z-index: 4; color: var(--accent); transform: rotate(8deg); }
@media (max-width: 900px) { .hero-stickers { min-height: 300px; margin-top: 40px; } }

/* ---- Empty / coming-soon state for pages without content yet ---- */
.empty-state { margin: 40px 5vw 140px; padding: 90px 6vw; border: 1px dashed var(--line); text-align: center; position: relative; z-index: 0; }
.empty-state p.eyebrow { justify-content: center; }
.empty-state h3 { font-size: clamp(24px, 3vw, 34px); font-weight: 700; letter-spacing: -.02em; margin: 14px 0 10px; }
.empty-state p.sub { color: var(--muted); font-size: 15px; max-width: 420px; margin: 0 auto; }

/* ============================================================
   CASE STUDY PAGE (individual project breakdown, Behance-style)
   ============================================================ */
.case-hero { padding: 190px 5vw 50px; border-bottom: 1px solid var(--line); position: relative; z-index: 0; }
.case-hero .tag { display: inline-block; font: 11px var(--font); text-transform: uppercase; letter-spacing: .1em; color: var(--accent); border: 1px solid var(--accent); padding: 6px 12px; margin-bottom: 18px; }
.case-hero h1 { font-size: clamp(40px, 6vw, 84px); line-height: .95; letter-spacing: -.04em; font-weight: 700; margin-bottom: 18px; }
.case-hero .intro { max-width: 640px; color: #aaa; font-size: 16px; line-height: 1.6; }
.case-cover { margin: 40px 5vw 0; border: 1px solid var(--line); overflow: hidden; aspect-ratio: 16/9; background: #111; }
.case-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

.case-section-head { padding: 90px 5vw 30px; position: relative; z-index: 0; }
.case-section-head .eyebrow { margin-bottom: 14px; }
.case-section-head p.body { max-width: 640px; color: #a9a9a9; font-size: 15.5px; line-height: 1.75; }

.case-gallery { display: flex; flex-direction: column; gap: 16px; padding: 0 5vw 40px; }
.case-row { display: grid; gap: 16px; }
.case-row.cols-2 { grid-template-columns: 1fr 1fr; }
.case-row.cols-3 { grid-template-columns: repeat(3, 1fr); }
.case-row.cols-4 { grid-template-columns: repeat(4, 1fr); }
.case-media { border: 1px solid var(--line); overflow: hidden; background: #111; }
.case-media img, .case-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.case-media.ratio-16-9 { aspect-ratio: 16/9; }
.case-media.ratio-9-16 { aspect-ratio: 9/16; }
.case-media.ratio-1-1 { aspect-ratio: 1/1; }
.case-media.ratio-4-3 { aspect-ratio: 4/3; }
.case-media.ratio-21-9 { aspect-ratio: 21/9; }

.credits-grid { padding: 40px 5vw 150px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 6vw; max-width: 1000px; }
.credit-row { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; border-bottom: 1px solid var(--line); padding: 16px 0; }
.credit-role { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .07em; }
.credit-name { font-weight: 700; font-size: 15px; text-align: right; }

@media (max-width: 900px) {
  .case-row.cols-2, .case-row.cols-3, .case-row.cols-4 { grid-template-columns: 1fr 1fr; }
  .credits-grid { grid-template-columns: 1fr; }
}

/* ---- Hero background video collage (replaces static sticker collage) ---- */
.hero-video-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-video-bg video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-video-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,12,10,.6) 0%, rgba(13,12,10,.72) 55%, rgba(13,12,10,.92) 100%);
}
.hero { overflow: hidden; }

/* ---- Special Projects: click-to-enlarge lightbox grid, no text ---- */
.lightbox-grid { padding: 40px 5vw 160px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; position: relative; z-index: 0; }
.lightbox-item { aspect-ratio: 1/1; overflow: hidden; border: 1px solid var(--line); cursor: pointer; position: relative; background: #111; }
.lightbox-item img, .lightbox-item video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s cubic-bezier(.2,.8,.2,1), filter .4s ease; }
.lightbox-item:hover img, .lightbox-item:hover video { transform: scale(1.06) rotate(-1deg); filter: brightness(1.1); }
.lightbox-item::after {
  content: '+'; position: absolute; top: 14px; right: 14px; width: 32px; height: 32px;
  border: 1px solid var(--text); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--text); background: rgba(13,12,10,.5);
  opacity: 0; transition: opacity .3s ease;
}
.lightbox-item:hover::after { opacity: 1; }

.lightbox-modal {
  position: fixed; inset: 0; z-index: 999; background: rgba(8,8,7,.94);
  display: none; align-items: center; justify-content: center; padding: 6vh 4vw;
}
.lightbox-modal.is-open { display: flex; }
.lightbox-modal img, .lightbox-modal video { max-width: 100%; max-height: 88vh; display: block; object-fit: contain; border: 1px solid var(--line); }
.lightbox-close {
  position: absolute; top: 24px; right: 5vw; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: transparent; color: var(--text); font-size: 22px;
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color .3s ease, color .3s ease, transform .3s ease;
}
.lightbox-close:hover { border-color: var(--accent); color: var(--accent); transform: rotate(90deg); }

@media (max-width: 900px) {
  .lightbox-grid { grid-template-columns: repeat(2, 1fr); padding: 30px 6vw 100px; }
}
