:root {
  --ink: #0c0c0c;
  --ink-soft: #151515;
  --charcoal: #242424;
  --paper: #fcf2d2;
  --paper-deep: #e8caa8;
  --cream: #ffe8b8;
  --white: #fff9ee;
  --rose: #ee0a48;
  --rose-deep: #620b2b;
  --cyan: #10d9df;
  --olive: #8e9878;
  --blue: #0a4c68;
  --shadow: rgba(0, 0, 0, 0.42);
  --max: 1280px;
  --font-body: "Inter Tight", Inter, Arial, sans-serif;
  --font-display: "Bricolage Grotesque", "Inter Tight", Arial, sans-serif;
  --font-script: Kalam, cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  letter-spacing: 0;
  overflow-x: hidden;
  font-size: 16px;
  font-feature-settings: "kern" 1;
  text-rendering: geometricPrecision;
}

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

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

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.13;
  mix-blend-mode: overlay;
  background-image:
    repeating-radial-gradient(
      circle at 18% 23%,
      rgba(255, 255, 255, 0.5) 0 1px,
      transparent 1px 4px
    ),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.06) 0 1px,
      transparent 1px 6px
    );
}

#motion-field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 64px;
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.92);
  color: #151515;
  border-bottom: 1px solid #e5e5e5;
  backdrop-filter: blur(16px);
  transition:
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.brand,
.site-nav,
.header-cta {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  font-size: 1.18rem;
  font-family: var(--font-display);
}

.brand-mark {
  width: 26px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, var(--cream) 0 20%, transparent 21%),
    conic-gradient(from 45deg, var(--rose), #ff6a24, var(--cyan), var(--rose));
  box-shadow: 0 0 0 3px #151515 inset;
}

.site-nav {
  justify-content: center;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a {
  color: #202020;
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--rose);
}

.header-cta {
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: #151515;
  font-size: 0.86rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--rose);
}

main {
  width: 100%;
  margin: 0 auto;
  background: var(--ink-soft);
  box-shadow: none;
}

.section-frame {
  position: relative;
  padding: 96px 76px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(238, 10, 72, 0.08), transparent 28%),
    linear-gradient(180deg, #151515, #101010 64%, #151515);
}

.section-frame > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-frame::after {
  content: "";
  position: absolute;
  left: 76px;
  right: 76px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(238, 10, 72, 0.65),
    transparent
  );
  opacity: 0.55;
}

.hero {
  min-height: 100vh;
  padding-top: 0;
  padding-bottom: 0;
  display: grid;
  align-items: stretch;
  padding-left: 0;
  padding-right: 0;
}

.hero-stage {
  position: relative;
  min-height: 100vh;
  width: 100%;
  max-width: none;
  display: grid;
  place-items: center;
  padding: 80px 56px;
  background:
    radial-gradient(
      circle at 50% 68%,
      rgba(255, 232, 184, 0.09),
      transparent 25%
    ),
    linear-gradient(180deg, #151515, #0b0b0b);
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  width: min(58vw, 500px);
  height: 190px;
  border: 2px solid rgba(238, 10, 72, 0.18);
  border-radius: 50%;
  transform: rotate(-16deg);
}

.hero-stage::before {
  top: 110px;
  left: -120px;
}

.hero-stage::after {
  bottom: 76px;
  right: -90px;
  transform: rotate(12deg);
}

.hero-copy {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1120px;
}

.script-kicker {
  margin: 0 0 14px;
  color: var(--white);
  font-family: var(--font-script);
  font-size: 2rem;
  line-height: 1.1;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.contents-item strong,
.market-tile strong {
  font-family: var(--font-display);
}

h1 {
  max-width: 1120px;
  margin: 0 auto 20px;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.86;
  font-weight: 800;
}

h1 span {
  display: block;
}

.glitch {
  position: relative;
  color: var(--paper);
  text-shadow:
    -10px 5px 0 rgba(16, 217, 223, 0.76),
    10px -5px 0 rgba(238, 10, 72, 0.82);
  animation: titleGlitch 4.8s steps(1) infinite;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.glitch::before {
  color: var(--cyan);
  transform: translate(-10px, 5px);
  clip-path: inset(54% 0 18% 0);
  opacity: 0.78;
}

.glitch::after {
  color: var(--rose);
  transform: translate(8px, -5px);
  clip-path: inset(12% 0 64% 0);
  opacity: 0.72;
}

.hero-subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: #f6f1e8;
  font-size: 1.15rem;
  line-height: 1.55;
  font-weight: 600;
}

.of-mark,
.studio-name {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--white);
  text-align: center;
}

.of-mark {
  margin-bottom: 8px;
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.studio-name {
  margin-bottom: 22px;
  color: var(--paper-deep);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-footer {
  position: absolute;
  left: 56px;
  right: 56px;
  bottom: 48px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--paper-deep);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-motion {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.film-strip {
  position: absolute;
  left: 50%;
  width: min(1180px, 112vw);
  height: clamp(62px, 8vw, 98px);
  display: grid;
  grid-template-columns: repeat(8, minmax(56px, 1fr));
  gap: clamp(12px, 2vw, 24px);
  padding: clamp(12px, 1.5vw, 18px);
  border: 1px solid rgba(255, 232, 184, 0.2);
  background:
    linear-gradient(
      90deg,
      rgba(252, 242, 210, 0.08),
      rgba(238, 10, 72, 0.16),
      rgba(16, 217, 223, 0.1)
    ),
    rgba(5, 5, 5, 0.54);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.film-strip span {
  border: 1px solid rgba(252, 242, 210, 0.26);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 232, 184, 0.12), transparent 52%),
    rgba(252, 242, 210, 0.04);
}

.film-strip-top {
  top: 15%;
  transform: translateX(-50%) rotate(-10deg);
  animation: filmSlideTop 10s ease-in-out infinite;
}

.film-strip-bottom {
  bottom: 14%;
  transform: translateX(-50%) rotate(9deg);
  animation: filmSlideBottom 11s ease-in-out infinite;
}

.cel-stack {
  position: absolute;
  width: clamp(150px, 18vw, 250px);
  height: clamp(118px, 14vw, 190px);
  transform-style: preserve-3d;
}

.cel-stack span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(252, 242, 210, 0.25);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(252, 242, 210, 0.12), transparent 54%),
    rgba(12, 12, 12, 0.42);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.cel-stack span:nth-child(1) {
  transform: translate(20px, -18px) rotate(6deg);
}

.cel-stack span:nth-child(2) {
  transform: translate(0, 0) rotate(-4deg);
  background:
    linear-gradient(135deg, rgba(238, 10, 72, 0.24), transparent 52%),
    rgba(12, 12, 12, 0.5);
}

.cel-stack span:nth-child(3) {
  transform: translate(-18px, 20px) rotate(3deg);
  background:
    linear-gradient(135deg, rgba(16, 217, 223, 0.2), transparent 52%),
    rgba(12, 12, 12, 0.46);
}

.cel-stack-left {
  left: 7%;
  top: 52%;
  animation: celDriftLeft 6.8s ease-in-out infinite;
}

.cel-stack-right {
  right: 7%;
  top: 18%;
  animation: celDriftRight 7.4s ease-in-out infinite;
}

.timeline-strip {
  position: relative;
  width: min(720px, 72vw);
  height: 42px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 6px;
  opacity: 0.72;
}

.hero-equalizer {
  width: min(460px, 72vw);
  height: 30px;
  margin: 28px auto 0;
  opacity: 0.86;
}

.timeline-strip span {
  border-radius: 3px;
  background: rgba(252, 242, 210, 0.18);
  animation: timelineBeat 2.4s ease-in-out infinite;
}

.timeline-strip span:nth-child(3n) {
  background: rgba(238, 10, 72, 0.55);
  animation-delay: -0.45s;
}

.timeline-strip span:nth-child(4n) {
  background: rgba(16, 217, 223, 0.42);
  animation-delay: -0.9s;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.3fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.portrait-panel {
  position: relative;
  min-height: 430px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  background:
    radial-gradient(
      circle at 62% 33%,
      rgba(238, 10, 72, 0.18),
      transparent 30%
    ),
    linear-gradient(180deg, #242424, #101010);
  box-shadow: 0 30px 70px var(--shadow);
}

.portrait-orbit {
  position: absolute;
  inset: 50px 42px auto;
  height: 220px;
  border: 2px dashed rgba(252, 242, 210, 0.28);
  border-radius: 50%;
  animation: slowSpin 18s linear infinite;
}

.portrait-face {
  position: absolute;
  top: 86px;
  left: 50%;
  width: 146px;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 48% 52% 45% 55%;
  background: #d9c5a5;
  box-shadow: inset -18px -15px 0 rgba(74, 44, 35, 0.14);
}

.portrait-face::before {
  content: "";
  position: absolute;
  inset: -12px 24px auto;
  height: 52px;
  border-radius: 50% 50% 30% 30%;
  background: #181818;
  transform: rotate(-7deg);
}

.eye,
.mouth {
  position: absolute;
  background: #151515;
}

.eye {
  top: 72px;
  width: 12px;
  height: 16px;
  border-radius: 50%;
  animation: blink 5s infinite;
}

.eye-left {
  left: 48px;
}

.eye-right {
  right: 48px;
}

.mouth {
  left: 54px;
  bottom: 36px;
  width: 38px;
  height: 12px;
  border-radius: 0 0 30px 30px;
}

.portrait-panel h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  color: var(--rose);
  font-size: 3rem;
  line-height: 0.9;
  font-weight: 800;
}

.portrait-panel p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #f5ebdd;
  font-weight: 600;
  line-height: 1.4;
}

.intro-copy p:not(.eyebrow) {
  color: #f6f1e8;
  font-size: 1.06rem;
  line-height: 1.62;
  font-weight: 500;
}

/* ===== ABOUT SECTION (Abhishek Kumar) ===== */
.about-section {
  --about-ink: #0e0e0e;
  --about-ink-soft: #161616;
  --about-paper: #f4ecd8;
  --about-cream: #f9eed0;
  --about-rose: #ee0a48;
  --about-rose-deep: #620b2b;
  --about-white: #fff9ee;
  --about-muted: #c9bfb0;
  --about-charcoal: #1a1a1a;
}

.about-section.section-frame {
  background: var(--about-ink);
  padding: 96px 76px;
}

.about-grid {
  display: grid;
  grid-template-columns: 300px 1.4fr 320px;
  gap: 56px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}

/* LEFT COLUMN — portrait + name */
.about-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-portrait-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #2a2a2a, #111);
}

.about-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
}

.about-name {
  margin: 18px 0 0;
  color: var(--about-rose);
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 0.95;
  font-weight: 800;
}

.about-location {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--about-white);
  font-size: 0.92rem;
  font-weight: 600;
}

.about-location p {
  margin: 0;
  line-height: 1.3;
}

.about-location strong {
  font-weight: 800;
}

.loc-dot {
  width: 14px;
  height: 14px;
  border: 2px solid var(--about-muted);
  border-radius: 50%;
  flex-shrink: 0;
}

/* CENTER COLUMN */
.about-center {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.about-hello h3 {
  margin: 0 0 14px;
  color: var(--about-white);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
}

.about-hello p {
  margin: 0;
  color: #ddd4c5;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 500;
}

.highlight-name {
  color: var(--about-rose);
  font-weight: 800;
}

.highlight-school {
  color: var(--about-cream);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(238, 10, 72, 0.45);
  text-underline-offset: 3px;
}

.about-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about-experiences h4,
.about-sketch-cloud h4 {
  margin: 0 0 14px;
  color: var(--about-white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
}

.exp-sub {
  margin: 0 0 10px;
  color: var(--about-muted);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
}

.exp-list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.exp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.exp-dot {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--about-muted);
  flex-shrink: 0;
}

.exp-list strong {
  display: block;
  color: var(--about-white);
  font-size: 0.92rem;
  font-weight: 800;
}

.exp-list small {
  display: block;
  color: var(--about-muted);
  font-size: 0.78rem;
  font-weight: 600;
}

/* Word cloud */
.word-cloud {
  position: relative;
  min-height: 200px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 14px;
  padding: 10px;
}

.word-cloud span {
  font-family: var(--font-script);
  color: var(--about-white);
  line-height: 1;
  white-space: nowrap;
}

.wc-big {
  font-size: 1.9rem;
  font-weight: 700;
  transform: rotate(-12deg);
}

.wc-med {
  font-size: 1.35rem;
  font-weight: 700;
  transform: rotate(8deg);
}

.wc-small {
  font-size: 0.92rem;
  font-weight: 400;
  opacity: 0.85;
  transform: rotate(-4deg);
}

/* RIGHT COLUMN — skills */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-right > h4 {
  margin: 0;
  color: var(--about-white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.2;
}

.skill-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.skill-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--about-rose);
}

.skill-icon svg {
  width: 100%;
  height: 100%;
}

.skill-group strong {
  display: block;
  margin-bottom: 6px;
  color: var(--about-cream);
  font-size: 0.95rem;
  font-weight: 800;
}

.skill-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skill-group li {
  color: var(--about-muted);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.5;
}

/* Contact strip */
.about-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(252, 242, 210, 0.12);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--about-muted);
  font-size: 0.78rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.contact-link:hover {
  color: var(--about-rose);
}

.contact-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.eyebrow,
.note-label {
  margin-bottom: 16px;
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.capability-list span {
  border: 1px solid rgba(252, 242, 210, 0.18);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--paper);
  background: rgba(252, 242, 210, 0.04);
  font-size: 0.85rem;
  font-weight: 800;
}

.tools-panel {
  border-left: 2px solid rgba(238, 10, 72, 0.55);
  padding-left: 26px;
}

.tools-panel h3 {
  color: var(--paper);
  font-size: 1.4rem;
}

.tools-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tools-panel li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 20px;
  color: #e5ded5;
  font-weight: 600;
  line-height: 1.35;
}

.tools-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--rose);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.project-intro h2,
.process h2,
.closing h2 {
  color: var(--paper);
  font-size: 4rem;
  line-height: 0.98;
  font-weight: 800;
  margin-bottom: 20px;
}

.contents {
  padding-top: 76px;
}

.contents::before {
  content: "";
  position: absolute;
  right: 42px;
  bottom: 42px;
  width: 360px;
  height: 190px;
  opacity: 0.18;
  background:
    radial-gradient(circle, var(--rose) 0 5px, transparent 6px) 30px 40px / 54px
      42px,
    repeating-linear-gradient(
      150deg,
      transparent 0 22px,
      var(--rose-deep) 23px 30px
    );
  transform: rotate(-7deg);
}

.contents-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.contents-item {
  min-height: 190px;
  padding: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(252, 242, 210, 0.1);
  transition:
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.contents-item:hover {
  transform: translateY(-6px);
  background: rgba(238, 10, 72, 0.12);
  border-color: rgba(238, 10, 72, 0.55);
}

.contents-item span {
  display: block;
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
}

.contents-item strong {
  display: block;
  margin: 24px 0 10px;
  color: var(--paper);
  font-size: 1.35rem;
}

.contents-item small {
  color: #dad4ca;
  font-size: 0.9rem;
  font-weight: 800;
}

.project-section {
  padding-top: 118px;
}

.project-intro {
  max-width: 930px;
  margin-bottom: 42px;
}

.project-intro p:not(.eyebrow) {
  max-width: 900px;
  color: #f2ece1;
  font-size: 1.03rem;
  line-height: 1.58;
  font-weight: 500;
}

.mockup-cinema {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(255, 232, 184, 0.12),
      transparent 26%
    ),
    linear-gradient(180deg, #0a0a0a, #151515);
  box-shadow: 0 40px 80px var(--shadow);
}

.mockup-cinema::before {
  content: "";
  position: absolute;
  inset: 38px;
  border: 1px solid rgba(252, 242, 210, 0.11);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.sun-disc {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 280px;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 30%, #fff0bd 0 14%, transparent 15%), #ff5d1f;
  box-shadow: 0 0 90px rgba(255, 93, 31, 0.45);
  animation: pulseSun 5.2s ease-in-out infinite;
}

.kinetic-title {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  text-align: center;
}

.kinetic-title strong {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 6.6rem;
  line-height: 0.82;
  font-weight: 800;
  text-shadow:
    -6px 3px 0 var(--cyan),
    7px -2px 0 var(--rose);
}

.cloth {
  position: absolute;
  width: 150px;
  height: 460px;
  border: 2px solid rgba(255, 232, 184, 0.38);
  background:
    radial-gradient(
      circle at 36% 70%,
      rgba(255, 232, 184, 0.18) 0 8px,
      transparent 9px
    ),
    linear-gradient(180deg, #ee0a48, #ff661c 72%, transparent);
  transform-origin: top center;
  animation: clothFloat 5.6s ease-in-out infinite;
}

.cloth-a {
  left: 11%;
  top: 35px;
  transform: rotate(34deg);
}

.cloth-b {
  right: 12%;
  top: 35px;
  transform: rotate(-34deg);
  animation-delay: -1.8s;
}

.cloth-c {
  left: 50%;
  bottom: -260px;
  height: 420px;
  background: linear-gradient(180deg, #8c0051, #ee0a48 65%, transparent);
  transform: translateX(-50%) rotate(90deg);
  animation-delay: -3s;
}

.pulse-dots {
  position: absolute;
  left: 60px;
  bottom: 54px;
  display: flex;
  gap: 11px;
}

.pulse-dots span {
  width: 18px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--rose);
  animation: dotBeat 1.6s ease-in-out infinite;
}

.pulse-dots span:nth-child(2) {
  animation-delay: 0.14s;
}
.pulse-dots span:nth-child(3) {
  animation-delay: 0.28s;
}
.pulse-dots span:nth-child(4) {
  animation-delay: 0.42s;
}

.project-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 30px;
}

.project-notes article,
.process-step {
  border-radius: 8px;
  border: 1px solid rgba(252, 242, 210, 0.11);
  background: rgba(252, 242, 210, 0.035);
  padding: 28px;
}

.project-notes h3,
.process-step h3 {
  color: var(--paper);
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.project-notes p,
.process-step p {
  margin-bottom: 0;
  color: #e8ded1;
  line-height: 1.55;
  font-weight: 500;
}

.paper-spread,
.storyboard-spread {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 18px;
  border-radius: 8px;
  background: #c9aa7e;
  box-shadow: 0 30px 70px var(--shadow);
}

.paper-spread::before,
.storyboard-spread::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 50%;
  width: 8px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    rgba(68, 37, 19, 0.22),
    rgba(255, 250, 224, 0.25),
    rgba(68, 37, 19, 0.18)
  );
  z-index: 2;
}

.paper-page {
  min-height: 560px;
  padding: 38px;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0 35px,
      rgba(84, 66, 44, 0.06) 36px 37px
    ),
    var(--paper);
  color: #242424;
}

.page-left {
  border-radius: 8px 0 0 8px;
}

.page-right {
  border-radius: 0 8px 8px 0;
}

.paper-page h3 {
  color: #3b2923;
  font-family: var(--font-script);
  font-size: 1.7rem;
}

.sketch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.sketch-grid span {
  min-height: 110px;
  border: 3px solid rgba(36, 36, 36, 0.72);
  border-radius: 48% 52% 44% 56%;
  background:
    radial-gradient(circle at 50% 44%, #242424 0 4px, transparent 5px),
    radial-gradient(circle at 35% 48%, #242424 0 3px, transparent 4px),
    radial-gradient(circle at 65% 48%, #242424 0 3px, transparent 4px);
  transform: rotate(var(--turn, -4deg));
}

.sketch-grid span:nth-child(2n) {
  --turn: 5deg;
}
.sketch-grid span:nth-child(3n) {
  --turn: -9deg;
}

.plant-scene {
  position: relative;
  height: 390px;
  margin-top: 38px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(12, 36, 12, 0.36), transparent 48%), #c6d2b1;
}

.pot,
.stem,
.leaf,
.flower {
  position: absolute;
  display: block;
}

.pot {
  left: 50%;
  bottom: 38px;
  width: 92px;
  height: 78px;
  transform: translateX(-50%);
  border-radius: 18px 18px 36px 36px;
  background: #8aa77a;
}

.stem {
  left: 50%;
  bottom: 105px;
  width: 8px;
  height: 190px;
  transform-origin: bottom;
  background: #3a6b38;
  animation: plantSway 4s ease-in-out infinite;
}

.leaf {
  width: 82px;
  height: 42px;
  border-radius: 90% 12% 90% 12%;
  background: #517b42;
  transform-origin: 0 50%;
  animation: leafSway 3.6s ease-in-out infinite;
}

.leaf-one {
  left: 51%;
  bottom: 210px;
  transform: rotate(-26deg);
}

.leaf-two {
  right: 49%;
  bottom: 175px;
  transform: scaleX(-1) rotate(-28deg);
  animation-delay: -1.1s;
}

.leaf-three {
  left: 51%;
  bottom: 145px;
  width: 68px;
  transform: rotate(24deg);
  animation-delay: -2s;
}

.flower {
  left: calc(50% - 26px);
  bottom: 278px;
  width: 54px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffd8a7 0 15%, transparent 16%),
    conic-gradient(#ee0a48, #ff6a24, #ee0a48, #ff6a24, #ee0a48);
  animation: slowSpin 12s linear infinite;
}

.illustration-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.market-tile {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  box-shadow: 0 30px 70px var(--shadow);
  isolation: isolate;
}

.market-tile::before,
.market-tile::after {
  content: "";
  position: absolute;
  z-index: -1;
}

.market-tile::before {
  inset: 0;
}

.tile-one::before {
  background: linear-gradient(135deg, #f26430, #7b2136 58%, #193e3d);
}

.tile-two::before {
  background: linear-gradient(135deg, #244c61, #9f3d42 56%, #e9a247);
}

.tile-three::before {
  background: linear-gradient(135deg, #141a26, #472047 62%, #e3494a);
}

.tile-four::before {
  background: linear-gradient(135deg, #12515f, #e37a3b 48%, #4f2530);
}

.market-tile::after {
  left: 24px;
  right: 24px;
  bottom: 72px;
  height: 96px;
  background:
    linear-gradient(
      90deg,
      rgba(255, 249, 238, 0.9) 0 12%,
      transparent 12% 18%,
      rgba(255, 249, 238, 0.8) 18% 30%,
      transparent 30%
    ),
    repeating-linear-gradient(
      90deg,
      rgba(12, 12, 12, 0.18) 0 18px,
      transparent 18px 42px
    );
  transform: skewY(-3deg);
  opacity: 0.72;
}

.market-tile span {
  position: absolute;
  display: block;
  animation: floatShape 5.5s ease-in-out infinite;
}

.tile-sun,
.tile-moon {
  right: 24px;
  top: 24px;
  width: 76px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cream);
}

.tile-window {
  right: 24px;
  top: 26px;
  width: 92px;
  height: 118px;
  border: 10px solid #ffcf75;
  background: #133b50;
}

.tile-lamp {
  right: 32px;
  top: 30px;
  width: 46px;
  height: 140px;
  border-radius: 999px 999px 24px 24px;
  background: #ffd37d;
  box-shadow: 0 0 70px rgba(255, 211, 125, 0.8);
}

.market-tile strong {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 1.25rem;
}

.storyboard-spread {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 34px;
  background: var(--paper);
}

.storyboard-spread::before {
  display: none;
}

.story-panel {
  position: relative;
  min-height: 166px;
  overflow: hidden;
  border: 3px solid #333;
  background:
    radial-gradient(circle at 72% 28%, #f7f2e7 0 12%, transparent 13%),
    linear-gradient(155deg, #b7b2a7, #efe7d6);
}

.story-panel::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 18px;
  bottom: 34px;
  height: 50px;
  border: 4px solid #4d4a44;
  border-top: 0;
  transform: skewX(-10deg);
}

.story-panel::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 20px;
  bottom: 10px;
  height: 3px;
  background: #0b83c6;
  transform-origin: left center;
  animation: shotArrow 2.8s ease-in-out infinite;
}

.story-panel span {
  position: absolute;
  left: 12px;
  top: 10px;
  color: #1478b4;
  font-family: var(--font-script);
  font-weight: 700;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.process-step span {
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
}

.closing {
  min-height: 620px;
  display: grid;
  place-items: center;
}

.closing-panel {
  max-width: 790px;
  text-align: center;
}

.closing-note {
  margin: 0 auto;
  max-width: 620px;
  color: var(--paper-deep);
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
}

.order-line {
  margin: 24px 0 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  font-weight: 900;
  line-height: 1.12;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.closing-actions a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--rose);
  color: #fff;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.closing-actions a:nth-child(2) {
  background: transparent;
  color: var(--paper);
  box-shadow: inset 0 0 0 2px rgba(252, 242, 210, 0.42);
}

.closing-actions a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(238, 10, 72, 0.34);
}

.closing-actions a:nth-child(2):hover {
  background: rgba(252, 242, 210, 0.08);
  box-shadow: inset 0 0 0 2px var(--paper), 0 18px 40px rgba(0, 0, 0, 0.22);
}

.brief-slide {
  min-height: 100vh;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(16, 217, 223, 0.14), transparent 30%),
    radial-gradient(circle at 8% 78%, rgba(238, 10, 72, 0.18), transparent 32%),
    linear-gradient(135deg, #0e0e0e, #17100f 58%, #0f1111);
}

.brief-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 1.18fr) minmax(0, 0.82fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.brief-shell::before {
  content: "";
  position: absolute;
  left: clamp(510px, 57%, 720px);
  top: -52px;
  bottom: -52px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 232, 184, 0.36),
    transparent
  );
}

.brief-title {
  position: relative;
  z-index: 1;
  padding: clamp(32px, 4.6vw, 58px);
  border-left: 5px solid var(--rose);
  background:
    linear-gradient(135deg, rgba(255, 249, 238, 0.1), rgba(255, 249, 238, 0.02)),
    rgba(12, 12, 12, 0.54);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.brief-title .eyebrow {
  margin-bottom: 22px;
}

.brief-title h2 {
  margin: 0 0 24px;
  color: var(--paper);
  font-size: clamp(3rem, 5.4vw, 5.35rem);
  line-height: 0.94;
  font-weight: 800;
}

.brief-title p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: #eee2d3;
  font-size: 1.08rem;
  line-height: 1.56;
  font-weight: 700;
}

.brief-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.brief-copy article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255, 232, 184, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(238, 10, 72, 0.14), transparent 45%),
    rgba(255, 249, 238, 0.055);
}

.brief-copy article:last-child {
  grid-column: 1 / -1;
  min-height: 150px;
}

.brief-copy span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 900;
}

.brief-copy h3 {
  margin: 0 0 10px;
  color: var(--paper);
  font-size: 1.35rem;
  line-height: 1.1;
  font-weight: 800;
}

.brief-copy p {
  margin: 0;
  color: #d8cebf;
  font-size: 0.96rem;
  line-height: 1.55;
  font-weight: 600;
}

.catalogue {
  background:
    linear-gradient(180deg, #151515 0%, #0f1010 42%, #16120f 100%);
}

.catalogue-heading {
  margin-bottom: 48px;
}

.catalogue-heading h2 {
  max-width: 980px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(2.6rem, 5.5vw, 4.7rem);
  line-height: 0.98;
  font-weight: 800;
}

.catalogue-list {
  display: grid;
  gap: 28px;
}

.catalogue-card {
  --accent: var(--rose);
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
  min-height: 560px;
  padding: clamp(18px, 2.4vw, 32px);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 42%, transparent);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0% 0%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 38%),
    linear-gradient(135deg, rgba(255, 249, 238, 0.08), rgba(255, 249, 238, 0.02)),
    #111;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.catalogue-card:nth-child(even) {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.catalogue-card:nth-child(even) .catalogue-image {
  grid-column: 2;
}

.catalogue-card:nth-child(even) .catalogue-copy {
  grid-column: 1;
  grid-row: 1;
}

.catalogue-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--accent);
  opacity: 0.9;
}

.catalogue-image {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 249, 238, 0.12), rgba(255, 249, 238, 0.03)),
    #191919;
}

.catalogue-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 56%, rgba(0, 0, 0, 0.32)),
    radial-gradient(circle at 50% 22%, transparent 0 44%, rgba(0, 0, 0, 0.2) 72%);
}

.catalogue-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.02) contrast(1.03);
}

.catalogue-copy {
  align-self: center;
  padding: clamp(10px, 1.6vw, 24px) 0;
}

.catalogue-copy h2 {
  margin: 0 0 26px;
  color: var(--paper);
  font-size: clamp(2.45rem, 4.8vw, 4.35rem);
  line-height: 0.96;
  font-weight: 800;
}

.catalogue-copy p {
  max-width: 690px;
  margin: 0 0 16px;
  color: #e7ddcf;
  font-size: 1.04rem;
  line-height: 1.66;
  font-weight: 600;
}

.catalogue-copy .gentle-note {
  margin-top: 26px;
  color: color-mix(in srgb, var(--accent) 42%, var(--paper));
  font-family: var(--font-display);
  font-size: 1.16rem;
  line-height: 1.42;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes titleGlitch {
  0%,
  87%,
  100% {
    transform: translate(0);
  }
  88% {
    transform: translate(4px, -2px);
  }
  90% {
    transform: translate(-3px, 3px);
  }
  92% {
    transform: translate(2px, 0);
  }
}

@keyframes filmSlideTop {
  0%,
  100% {
    transform: translateX(-52%) rotate(-10deg);
  }
  50% {
    transform: translateX(-47%) rotate(-8deg);
  }
}

@keyframes filmSlideBottom {
  0%,
  100% {
    transform: translateX(-48%) rotate(9deg);
  }
  50% {
    transform: translateX(-53%) rotate(7deg);
  }
}

@keyframes celDriftLeft {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-18px) rotate(3deg);
  }
}

@keyframes celDriftRight {
  0%,
  100% {
    transform: translateY(0) rotate(7deg);
  }
  50% {
    transform: translateY(20px) rotate(-2deg);
  }
}

@keyframes timelineBeat {
  0%,
  100% {
    transform: scaleY(0.42);
    opacity: 0.48;
  }
  50% {
    transform: scaleY(1);
    opacity: 0.95;
  }
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes blink {
  0%,
  46%,
  50%,
  100% {
    transform: scaleY(1);
  }
  48% {
    transform: scaleY(0.08);
  }
}

@keyframes pulseSun {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.06);
  }
}

@keyframes clothFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 20px;
  }
}

@keyframes dotBeat {
  0%,
  100% {
    transform: scale(0.72);
    opacity: 0.55;
  }
  45% {
    transform: scale(1.25);
    opacity: 1;
  }
}

@keyframes plantSway {
  0%,
  100% {
    transform: rotate(-2deg);
  }
  50% {
    transform: rotate(3deg);
  }
}

@keyframes leafSway {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(14px) rotate(4deg);
  }
}

@keyframes shotArrow {
  0%,
  100% {
    transform: scaleX(0.22);
  }
  55% {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (min-width: 1500px) {
  h1 {
    font-size: 9rem;
  }

  .section-heading h2,
  .project-intro h2,
  .process h2,
  .closing h2 {
    font-size: 4.4rem;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 18px;
  }

  .site-nav {
    display: none;
  }

  .section-frame {
    padding: 72px 34px;
  }

  .section-frame::after {
    left: 34px;
    right: 34px;
  }

  .hero-stage {
    min-height: 690px;
  }

  h1 {
    font-size: 5.6rem;
  }

  .script-kicker {
    font-size: 1.65rem;
  }

  .section-heading h2,
  .project-intro h2,
  .process h2,
  .closing h2 {
    font-size: 3rem;
  }

  .kinetic-title strong {
    font-size: 4.9rem;
  }

  .cel-stack-left {
    left: -22px;
  }

  .cel-stack-right {
    right: -20px;
  }

  .hero-equalizer {
    width: min(420px, 78vw);
  }

  .intro-grid,
  .project-notes,
  .process-line {
    grid-template-columns: 1fr;
  }

  .contents-grid,
  .illustration-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .paper-spread {
    grid-template-columns: 1fr;
  }

  .brief-shell,
  .catalogue-card,
  .catalogue-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .brief-shell::before {
    display: none;
  }

  .brief-copy {
    grid-template-columns: 1fr;
  }

  .brief-copy article:last-child {
    grid-column: auto;
  }

  .catalogue-card:nth-child(even) .catalogue-image,
  .catalogue-card:nth-child(even) .catalogue-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .catalogue-card {
    min-height: auto;
  }

  .catalogue-image img {
    min-height: 560px;
  }

  .paper-spread::before {
    display: none;
  }

  .page-left,
  .page-right {
    border-radius: 8px;
  }

  .page-right {
    margin-top: 18px;
  }

  .storyboard-spread {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 58px;
  }

  .brand {
    font-size: 1rem;
  }

  .header-cta {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  main {
    width: 100%;
  }

  .section-frame {
    padding: 56px 20px;
  }

  .brief-slide {
    min-height: auto;
  }

  .brief-shell {
    gap: 28px;
  }

  .brief-title {
    padding: 24px;
  }

  .brief-title h2,
  .catalogue-heading h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1.02;
  }

  .brief-title p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.5;
  }

  .brief-copy {
    gap: 12px;
  }

  .brief-copy article {
    min-height: auto;
    padding: 18px;
  }

  .brief-copy span {
    margin-bottom: 12px;
  }

  .brief-copy h3 {
    font-size: 1.2rem;
  }

  .brief-copy p {
    font-size: 0.98rem;
    line-height: 1.56;
  }

  .catalogue-heading {
    margin-bottom: 28px;
  }

  .catalogue-list {
    gap: 18px;
  }

  .catalogue-card {
    padding: 14px;
    gap: 20px;
  }

  .catalogue-image img {
    min-height: 420px;
  }

  .catalogue-copy {
    padding: 4px 2px 12px;
  }

  .catalogue-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 10vw, 2.55rem);
    line-height: 1;
  }

  .catalogue-copy p {
    font-size: 0.98rem;
    line-height: 1.56;
  }

  .catalogue-copy .gentle-note {
    margin-top: 20px;
    font-size: 1.04rem;
  }

  .section-frame::after {
    left: 20px;
    right: 20px;
  }

  .hero {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-stage {
    min-height: 100svh;
    padding: 86px 20px 128px;
    align-content: center;
  }

  h1 {
    max-width: 350px;
    margin-bottom: 16px;
    font-size: clamp(3rem, 14vw, 3.6rem);
    line-height: 0.98;
  }

  .glitch {
    text-shadow:
      -4px 3px 0 rgba(16, 217, 223, 0.7),
      4px -3px 0 rgba(238, 10, 72, 0.78);
  }

  .glitch::before {
    transform: translate(-4px, 3px);
  }

  .glitch::after {
    transform: translate(4px, -3px);
  }

  .script-kicker {
    margin-bottom: 12px;
    font-size: 1.28rem;
  }

  .of-mark,
  .studio-name {
    font-size: 0.82rem;
  }

  .studio-name {
    margin-bottom: 18px;
  }

  .hero-subtitle {
    max-width: 330px;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .section-heading h2,
  .project-intro h2,
  .process h2,
  .closing h2 {
    font-size: clamp(2rem, 10vw, 2.45rem);
    line-height: 1.04;
  }

  .section-heading,
  .project-intro {
    margin-bottom: 30px;
  }

  .project-section {
    padding-top: 68px;
  }

  .project-intro p:not(.eyebrow),
  .intro-copy p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.58;
  }

  .portrait-panel h2 {
    font-size: 2.35rem;
  }

  .kinetic-title strong {
    font-size: 3.45rem;
  }

  .hero-footer {
    left: 20px;
    right: 20px;
    bottom: 28px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 0.75rem;
  }

  .film-strip {
    width: 150vw;
    height: 54px;
    opacity: 0.46;
  }

  .film-strip-top {
    top: 13%;
  }

  .film-strip-bottom {
    bottom: 18%;
  }

  .cel-stack {
    width: 112px;
    height: 86px;
    opacity: 0.42;
  }

  .cel-stack-left {
    left: -64px;
    top: 61%;
  }

  .cel-stack-right {
    right: -62px;
    top: 20%;
  }

  .hero-equalizer {
    width: min(300px, 78vw);
    height: 24px;
    margin-top: 22px;
    gap: 5px;
  }

  .contents-grid,
  .illustration-grid,
  .storyboard-spread {
    grid-template-columns: 1fr;
  }

  .contents {
    padding-top: 56px;
  }

  .contents::before {
    width: 220px;
    height: 120px;
    right: -30px;
    bottom: 14px;
    opacity: 0.1;
  }

  .contents-grid {
    gap: 12px;
  }

  .contents-item {
    min-height: auto;
    padding: 18px;
  }

  .contents-item strong {
    margin: 16px 0 6px;
    font-size: 1.22rem;
  }

  .intro-grid {
    gap: 28px;
  }

  .portrait-panel {
    min-height: 360px;
    padding: 28px 24px;
  }

  .portrait-orbit {
    inset: 38px 32px auto;
    height: 190px;
  }

  .portrait-face {
    top: 70px;
    width: 126px;
  }

  .eye {
    top: 62px;
  }

  .eye-left {
    left: 40px;
  }

  .eye-right {
    right: 40px;
  }

  .mouth {
    left: 46px;
    bottom: 32px;
    width: 34px;
  }

  .tools-panel {
    border-left: 0;
    border-top: 2px solid rgba(238, 10, 72, 0.55);
    padding: 22px 0 0;
  }

  .mockup-cinema {
    min-height: 430px;
  }

  .mockup-cinema::before {
    inset: 24px;
  }

  .cloth {
    width: 78px;
    height: 310px;
  }

  .sun-disc {
    width: 170px;
    opacity: 0.82;
  }

  .pulse-dots {
    left: 24px;
    bottom: 28px;
    gap: 8px;
  }

  .pulse-dots span {
    width: 13px;
  }

  .project-notes {
    gap: 14px;
    margin-top: 18px;
  }

  .project-notes article,
  .process-step {
    padding: 22px;
  }

  .paper-spread,
  .storyboard-spread {
    padding: 12px;
    border-radius: 8px;
  }

  .paper-page {
    min-height: auto;
    padding: 24px 20px;
  }

  .paper-page h3 {
    font-size: 1.38rem;
    line-height: 1.35;
  }

  .sketch-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 24px;
  }

  .sketch-grid span {
    min-height: 88px;
    border-width: 2px;
  }

  .plant-scene {
    height: 300px;
    margin-top: 24px;
  }

  .stem {
    height: 145px;
  }

  .leaf {
    width: 64px;
    height: 34px;
  }

  .leaf-one {
    bottom: 174px;
  }

  .leaf-two {
    bottom: 146px;
  }

  .leaf-three {
    bottom: 124px;
    width: 56px;
  }

  .flower {
    bottom: 226px;
    width: 46px;
    left: calc(50% - 23px);
  }

  .market-tile {
    min-height: 220px;
    padding: 20px;
  }

  .market-tile::after {
    left: 20px;
    right: 20px;
    bottom: 64px;
    height: 74px;
  }

  .tile-sun,
  .tile-moon {
    width: 58px;
  }

  .tile-window {
    width: 72px;
    height: 92px;
    border-width: 8px;
  }

  .tile-lamp {
    width: 38px;
    height: 112px;
  }

  .storyboard-spread {
    gap: 12px;
  }

  .story-panel {
    min-height: 138px;
    border-width: 2px;
  }

  .process-line {
    gap: 14px;
  }

  .closing {
    min-height: 440px;
  }

  .closing-note {
    font-size: 0.88rem;
  }
}
