/* ============================================================
   Samosa & Pakora Films — PRO build
   Emil Kowalski animation rules + Impeccable typography +
   Taste-skill anti-AI patterns + 21st.dev interactive motifs.
   ============================================================ */

:root {
  /* Palette — same brand, slightly cooler ink for dark sections */
  --cream:        #f6efe2;
  --cream-soft:   #fbf6ec;
  --cream-warm:   #efe6d3;
  --paper-line:   #e3d8c0;
  --ink:          #1a1714;
  --ink-soft:     #4a4640;
  --ink-mute:     #8a857c;
  --ink-deep:     #0e0c0a;     /* darker for contact section */
  --pink:         #e85a8e;
  --pink-deep:    #c93a73;
  --teal:         #2c6d6d;
  --mustard:      #d8a13a;
  --orange:       #d97240;

  /* Type */
  --display:      'DM Serif Display', Georgia, serif;
  --sans:         'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --script:       'Caveat', 'Brush Script MT', cursive;

  /* Layout */
  --max:          1320px;
  --gutter:       clamp(20px, 4vw, 64px);
  --section-pad:  clamp(56px, 8vw, 120px);
  --radius:       6px;
  --radius-lg:    16px;

  /* Easing — Emil's strong curves */
  --ease-out:     cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out:  cubic-bezier(0.77, 0, 0.175, 1);
  --ease-snap:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-drawer:  cubic-bezier(0.32, 0.72, 0, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
  font-kerning: normal;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

/* ---------- Samosa cursor ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 50px; height: 50px;
  margin: -25px 0 0 -25px;
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-200px, -200px, 0);
  will-change: transform;
  transition: opacity 240ms var(--ease-out);
  opacity: 0;
}
.cursor.is-ready { opacity: 1; }
.cursor__samosa {
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.25));
  transform-origin: 50% 60%;
  transition: transform 240ms var(--ease-snap);
}
.cursor.is-interactive .cursor__samosa { transform: scale(1.18); }
.cursor.is-crunching .cursor__samosa  { animation: cursorCrunch 380ms cubic-bezier(0.36, 0, 0.4, 1); }
@keyframes cursorCrunch {
  0%   { transform: scale(1) rotate(0); }
  18%  { transform: scale(0.72, 0.58) rotate(-4deg); }   /* squash */
  46%  { transform: scale(1.15, 1.05) rotate(3deg); }    /* rebound */
  74%  { transform: scale(0.94) rotate(-1deg); }
  100% { transform: scale(1) rotate(0); }
}
.cursor__crumb {
  position: absolute;
  top: 50%; left: 50%;
  width: 4px; height: 4px;
  margin: -2px 0 0 -2px;
  border-radius: 50%;
  background: #b07a28;
  box-shadow: 0 0 0 1px rgba(58, 33, 8, .4);
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0);
  pointer-events: none;
}
.cursor.is-crunching .cursor__crumb {
  animation: cursorCrumb 520ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@keyframes cursorCrumb {
  0%   { opacity: 1; transform: rotate(var(--ang, 0deg)) translateY(0) scale(1); }
  100% { opacity: 0; transform: rotate(var(--ang, 0deg)) translateY(-28px) scale(0.4); }
}

/* Hide samosa cursor on touch / coarse pointer / reduced motion */
@media (hover: none), (pointer: coarse) {
  .cursor { display: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  .cursor { display: none !important; }
}

/* When samosa cursor is active, hide the system cursor on the page —
   but keep it on form fields where the I-beam matters. */
.has-samosa-cursor { cursor: none; }
.has-samosa-cursor input,
.has-samosa-cursor textarea,
.has-samosa-cursor select { cursor: auto; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 60; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--pink), var(--pink-deep));
  transition: width 80ms linear;
  will-change: width;
}

/* ---------- Typography primitives ---------- */
.eyebrow,
.section__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--pink-deep);
  margin-bottom: 16px;
}
/* Truck-art "diamond" mark before every section label — adds jewel-tone life */
.section__label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: currentColor;
  transform: rotate(45deg);
  flex: 0 0 auto;
  box-shadow: 0 0 0 1px rgba(0,0,0,.04);
}

/* Per-section accent colour — labels + ornaments + accent lines */
[data-accent="pink"]    .section__label { color: var(--pink-deep); }
[data-accent="teal"]    .section__label { color: var(--teal); }
[data-accent="mustard"] .section__label { color: var(--mustard); filter: brightness(.85); }
[data-accent="orange"]  .section__label { color: var(--orange); }

/* Accent underline below each section title — small, jewel-toned */
.section__title { position: relative; padding-bottom: 0; }
.section__title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 22px;
  border-radius: 2px;
  background: var(--accent-color, var(--pink));
  opacity: .85;
}
[data-accent="pink"]    .section__title { --accent-color: var(--pink); }
[data-accent="teal"]    .section__title { --accent-color: var(--teal); }
[data-accent="mustard"] .section__title { --accent-color: var(--mustard); }
[data-accent="orange"]  .section__title { --accent-color: var(--orange); }

.section__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 72px);
  letter-spacing: -.015em;
  line-height: 1.02;
  color: var(--ink);
  max-width: 20ch;
  text-wrap: balance;
}
.section__lede {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 60ch;
  text-wrap: pretty;
}

/* Word-by-word split for headings (added by JS via [data-split]) */
.split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%);
  transition:
    opacity   650ms var(--ease-out),
    transform 700ms var(--ease-out);
  transition-delay: calc(var(--i, 0) * 70ms);
  will-change: opacity, transform;
  /* keep underline / italic etc */
}
.split-word.is-visible { opacity: 1; transform: none; will-change: auto; }
.split-word-space { display: inline-block; width: 0.27em; }

/* Reveal-up — generic enter */
.reveal-up {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity   520ms var(--ease-out),
    transform 520ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal-up.is-visible { opacity: 1; transform: none; will-change: auto; }
.reveal-delay-2.is-visible { transition-delay: 70ms; }
.reveal-delay-3.is-visible { transition-delay: 140ms; }
.reveal-delay-4.is-visible { transition-delay: 210ms; }
.reveal-delay-5.is-visible { transition-delay: 280ms; }

/* ---------- Layout ---------- */
.section {
  position: relative;
  padding: var(--section-pad) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  z-index: 1;
}
.section__head { margin-bottom: clamp(28px, 4vw, 56px); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    transform        260ms var(--ease-snap),
    background-color 200ms var(--ease-out),
    color            200ms var(--ease-out),
    border-color     200ms var(--ease-out),
    box-shadow       260ms var(--ease-out);
  white-space: nowrap;
  will-change: transform;
}
.btn:active { transform: scale(0.97); transition-duration: 80ms; }
.btn svg { transition: transform 220ms var(--ease-out); }
.btn--primary {
  background: var(--ink);
  color: var(--cream);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost-dark {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,255,255,.35);
}
.btn--lg { padding: 17px 28px; font-size: 15px; }

@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover    { background: var(--pink-deep); box-shadow: 0 12px 30px -10px rgba(201, 58, 115, .55); }
  .btn--primary:hover svg{ transform: translateX(2px); }
  .btn--ghost:hover      { background: var(--ink); color: var(--cream); }
  .btn--ghost-dark:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
}

/* Animated underline (used on every text link) */
.link-underline {
  position: relative;
  color: inherit;
  padding-bottom: 2px;
}
.link-underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 380ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .link-underline:hover::after {
    transform-origin: right center;
    transform: scaleX(0);
    animation: relink 740ms 380ms var(--ease-out) forwards;
  }
}
@keyframes relink {
  from { transform: scaleX(0); transform-origin: left center; }
  to   { transform: scaleX(1); transform-origin: left center; }
}

/* ---------- Nav (glass pill on scroll) ---------- */
.nav {
  position: fixed;
  top: 16px;
  left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.nav__inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 10px 14px 10px 22px;
  background: rgba(246, 239, 226, .72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border: 1px solid rgba(227, 216, 192, .8);
  border-radius: 999px;
  box-shadow: 0 18px 36px -22px rgba(0,0,0,.18), 0 2px 8px -3px rgba(0,0,0,.08);
  transition:
    background-color 240ms var(--ease-out),
    transform        320ms var(--ease-out),
    border-color     240ms var(--ease-out);
  max-width: calc(100vw - 32px);
}
.nav.is-scrolled .nav__inner {
  background: rgba(246, 239, 226, .92);
  transform: translateY(2px);
}
.nav.over-hero .nav__inner {
  background: rgba(14, 12, 10, .55);
  border-color: rgba(255,255,255,.18);
  color: var(--cream);
}
.nav.over-hero .nav__links a       { color: rgba(255,255,255,.85); }
.nav.over-hero .nav__links a:hover { color: #fff; }
.nav.over-hero .nav__cta           { background: var(--pink); color: var(--cream); }

.logo { display: inline-flex; align-items: center; }
.logo__img {
  height: 36px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav__links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color 180ms var(--ease-out);
}
.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 1px;
  background: var(--pink);
  transition: right 320ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .nav__links a:hover                       { color: var(--ink); }
  .nav__links a:not(.nav__cta):hover::after { right: 0; }
}
.nav__cta {
  background: var(--ink);
  color: var(--cream) !important;
  padding: 9px 18px;
  border-radius: 999px;
  transition:
    background-color 200ms var(--ease-out),
    transform        200ms var(--ease-snap);
}
.nav__cta:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) {
  .nav__cta:hover { background: var(--pink-deep); }
}

.nav__menu {
  display: none;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 999px;
  width: 40px; height: 40px;
  padding: 0;
  position: relative;
  color: var(--ink);
}
.nav__menu span {
  position: absolute;
  left: 10px; right: 10px;
  height: 1.5px;
  background: currentColor;
  transition: transform 280ms var(--ease-out), opacity 200ms var(--ease-out);
}
.nav__menu span:nth-child(1) { top: 15px; }
.nav__menu span:nth-child(2) { top: 22px; }
.nav__menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav__menu[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* ---------- Hero (immersive) ---------- */
.hero {
  position: relative;
  min-height: min(100dvh, 880px);
  display: flex;
  align-items: flex-end;
  padding: clamp(140px, 22vh, 220px) var(--gutter) clamp(80px, 12vh, 140px);
  overflow: hidden;
  isolation: isolate;
  background: var(--ink-deep);
  color: var(--cream);
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.06);
  animation: heroScale 14s var(--ease-out) forwards;
}
@keyframes heroScale {
  to { transform: scale(1); }
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(0,0,0,0) 30%, rgba(0,0,0,.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.25) 40%, rgba(0,0,0,.78) 100%);
  z-index: 1;
}
.hero__grain {
  position: absolute; inset: 0;
  z-index: 2;
  opacity: .12;
  pointer-events: none;
  mix-blend-mode: overlay;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.6) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,.5) 0 1px, transparent 1px),
    radial-gradient(circle at 40% 50%, rgba(255,255,255,.45) 0 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px, 7px 7px;
}
.hero__inner {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.hero__eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 209, 222, .9);
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(64px, 12vw, 184px);
  line-height: .94;
  letter-spacing: -.025em;
  color: var(--cream);
  margin-bottom: 32px;
  text-shadow: 0 2px 40px rgba(0,0,0,.45);
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line--italic { font-style: italic; color: #ffc0d8; }
.hero__lede {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: rgba(255,255,255,.85);
  max-width: 56ch;
  margin-bottom: 36px;
  text-wrap: pretty;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__cta .btn--primary { background: var(--pink); }
.hero__cta .btn--primary:hover { background: var(--pink-deep); }
.hero__cta .btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,255,255,.45);
}
.hero__cta .btn--ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color 200ms var(--ease-out);
}
.hero__scroll-line {
  display: block;
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -42px; left: 0;
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, transparent, var(--pink));
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: translateY(0); }
  100% { transform: translateY(84px); }
}
.hero__scroll:hover { color: var(--cream); }

/* ---------- Marquee ticker ---------- */
.ticker {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  padding: 18px 0;
  border-top: 1px solid var(--ink-deep);
  border-bottom: 1px solid var(--ink-deep);
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: tick 38s linear infinite;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: -.01em;
}
.ticker__track > span:not(.ticker__dot) {
  white-space: nowrap;
}
.ticker__dot {
  color: var(--pink);
  font-size: 0.45em;
  transform: translateY(-3px);
}
@keyframes tick {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (hover: hover) and (pointer: fine) {
  .ticker:hover .ticker__track { animation-play-state: paused; }
}

/* ---------- Truck-art strip (animated SMIL pattern) ---------- */
.truck-strip {
  position: relative;
  width: 100%;
  height: 64px;
  overflow: hidden;
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  background: var(--cream-soft);
}
.truck-strip--bottom { margin-top: 0; }
.truck-strip__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
@media (hover: hover) and (pointer: fine) {
  .truck-strip:hover .truck-strip__svg animate { animation-play-state: paused; }
}
@media (prefers-reduced-motion: reduce) {
  .truck-strip__svg animate { display: none; }
}

/* ---------- Showreel ---------- */
.reel__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(232, 90, 142, .35),
    0 0 0 8px var(--cream-soft),
    0 0 0 9px var(--paper-line),
    0 30px 80px -30px rgba(0,0,0,.4),
    0 8px 22px -8px rgba(0,0,0,.18);
}
.reel__frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.reel__more {
  margin-top: 26px;
  font-size: 14.5px;
  color: var(--ink-soft);
}

/* ---------- About (asymmetric) ---------- */
.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: clamp(28px, 4vw, 56px) clamp(28px, 4vw, 64px);
  align-items: start;
}
.about__head      { grid-column: 1; grid-row: 1; }
.about__image-wrap{ grid-column: 2; grid-row: 1 / span 2; align-self: stretch; }
.about__lede {
  grid-column: 1; grid-row: 2;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.4;
  color: var(--ink);
  max-width: 38ch;
  text-wrap: pretty;
}
.about__lede::first-letter { color: var(--pink-deep); }
.about__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-warm), var(--paper-line));
  border: 1px solid var(--paper-line);
  min-height: 440px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.about__image[data-empty="true"] {
  background: repeating-linear-gradient(45deg, var(--cream-soft), var(--cream-soft) 14px, var(--cream-warm) 14px, var(--cream-warm) 28px);
}
.about__image[data-empty="true"]::after {
  content: '+ image';
  font-family: var(--display); font-style: italic;
  font-size: 16px; color: var(--ink-mute);
}

.pillars {
  grid-column: 1 / -1;
  grid-row: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: clamp(20px, 3vw, 40px);
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pillar__image {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-warm), var(--paper-line));
  border: 1px solid var(--paper-line);
  display: flex; align-items: center; justify-content: center;
}
.pillar__image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pillar__image[data-empty="true"] {
  background: repeating-linear-gradient(45deg, var(--cream-soft), var(--cream-soft) 10px, var(--cream-warm) 10px, var(--cream-warm) 20px);
}
.pillar__image[data-empty="true"]::after { content: '+'; font-size: 22px; color: var(--ink-mute); }
.pillar > .pillar__no {
  padding-top: 14px;
  border-top: 1px solid var(--paper-line);
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--pink-deep);
  display: block;
}
.pillar:nth-child(1) > .pillar__no { color: var(--pink-deep); border-top-color: var(--pink); }
.pillar:nth-child(2) > .pillar__no { color: var(--teal);      border-top-color: var(--teal); }
.pillar:nth-child(3) > .pillar__no { color: var(--mustard);   border-top-color: var(--mustard); }
.pillar:nth-child(1) > .pillar__no,
.pillar:nth-child(2) > .pillar__no,
.pillar:nth-child(3) > .pillar__no { border-top-width: 2px; border-top-style: solid; opacity: .9; }
.pillar h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -.005em;
}
.pillar p { font-size: 15px; color: var(--ink-soft); text-wrap: pretty; }

/* ---------- Bento services ---------- */
.services {
  /* Soft warm wash so the grid pops against the cream */
  background:
    radial-gradient(ellipse at 80% 0%, rgba(216, 161, 58, .12), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(44, 109, 109, .10), transparent 60%),
    var(--cream);
  max-width: none;
  margin: 0;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.services > .section__head,
.services > .bento {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-auto-rows: 240px;
  gap: 14px;
}
.bento__tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-warm);
  isolation: isolate;
  cursor: pointer;
  transition: transform 380ms var(--ease-out);
  will-change: transform;
}
.bento__tile:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
.bento__tile:nth-child(2) { grid-column: 2; grid-row: 1; }
.bento__tile:nth-child(3) { grid-column: 2; grid-row: 2; }
.bento__tile:nth-child(4) { grid-column: 1 / -1; grid-row: 3; }
.bento__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-out);
  filter: brightness(.7);
}
.bento__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.75) 100%);
  z-index: 1;
}
.bento__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(20px, 2.5vw, 32px);
  z-index: 2;
  color: var(--cream);
}
.bento__no {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--pink);
  letter-spacing: .04em;
}
.bento__tile:nth-child(1) .bento__no { color: var(--pink); }
.bento__tile:nth-child(2) .bento__no { color: var(--teal); }
.bento__tile:nth-child(3) .bento__no { color: var(--mustard); }
.bento__tile:nth-child(4) .bento__no { color: var(--orange); }
.bento__tile[data-empty="true"]:nth-child(1) .bento__no { color: var(--pink-deep); }
.bento__tile[data-empty="true"]:nth-child(2) .bento__no { color: var(--teal); }
.bento__tile[data-empty="true"]:nth-child(3) .bento__no { color: #b07a28; }
.bento__tile[data-empty="true"]:nth-child(4) .bento__no { color: var(--orange); }

/* Tile corner ornament — tiny diamond in the brand jewel-tone */
.bento__tile::before {
  content: '';
  position: absolute;
  top: 18px; right: 18px;
  width: 10px; height: 10px;
  background: currentColor;
  transform: rotate(45deg);
  z-index: 2;
  color: var(--pink);
  opacity: .85;
}
.bento__tile:nth-child(1)::before { color: var(--pink); }
.bento__tile:nth-child(2)::before { color: var(--teal); }
.bento__tile:nth-child(3)::before { color: var(--mustard); }
.bento__tile:nth-child(4)::before { color: var(--orange); }
.bento__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -.01em;
  margin: 6px 0;
  text-wrap: balance;
}
.bento__desc {
  font-size: 13.5px;
  color: rgba(255,255,255,.78);
  max-width: 50ch;
  text-wrap: pretty;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 380ms var(--ease-out), opacity 220ms var(--ease-out);
}
.bento__tile[data-empty="true"] {
  background: repeating-linear-gradient(45deg, var(--cream-soft), var(--cream-soft) 14px, var(--cream-warm) 14px, var(--cream-warm) 28px);
}
.bento__tile[data-empty="true"] .bento__img { display: none; }
.bento__tile[data-empty="true"] .bento__veil { background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.35) 100%); }
.bento__tile[data-empty="true"] .bento__body { color: var(--ink); }
.bento__tile[data-empty="true"] .bento__title { color: var(--ink); }
.bento__tile[data-empty="true"] .bento__desc { color: var(--ink-soft); }
@media (hover: hover) and (pointer: fine) {
  .bento__tile:hover            { transform: translateY(-4px); }
  .bento__tile:hover .bento__img { transform: scale(1.06); filter: brightness(.55); }
  .bento__tile:hover .bento__desc { max-height: 120px; opacity: 1; }
}

/* ---------- Work (sticky scroll layout) ---------- */
.work__inner {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.work__head {
  position: sticky;
  top: 100px;
}
.work__list {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 80px);
  min-width: 0;
}
.work__loading,
.work__empty {
  font-size: 15px;
  color: var(--ink-mute);
  text-align: center;
  padding: 60px 0;
}
.proj {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 380ms var(--ease-out);
}
.proj[hidden] { display: none; }
.proj__media {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  background: var(--cream-warm);
  margin-bottom: 18px;
}
.proj__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out);
}
.proj__media--placeholder {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 32px;
  color: rgba(255,255,255,.92);
  padding: 28px;
  text-align: center;
}
.proj__media::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(232, 90, 142, .28), transparent 70%);
  opacity: 0;
  transition: opacity 240ms var(--ease-out);
  mix-blend-mode: screen;
  z-index: 2;
}
.proj__play {
  position: absolute;
  inset: auto auto 18px 18px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .04em;
  font-weight: 500;
  z-index: 3;
  transform: translateY(8px);
  opacity: 0;
  transition:
    transform 320ms var(--ease-out),
    opacity   240ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .proj:hover                  { transform: translateY(-6px); }
  .proj:hover .proj__media img { transform: scale(1.045); }
  .proj:hover .proj__media::after { opacity: 1; }
  .proj:hover .proj__play       { transform: translateY(0); opacity: 1; }
}
.proj__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.proj__cat {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--pink-deep);
  font-weight: 500;
  flex-shrink: 0;
}
.proj__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -.005em;
  line-height: 1.15;
  margin-top: 6px;
  width: 100%;
  text-wrap: balance;
}
.proj__desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-top: 10px;
  max-width: 56ch;
  text-wrap: pretty;
}

/* ---------- Instagram ---------- */
.ig {
  position: relative;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  background: var(--cream-soft);
  overflow: hidden;
  min-height: 320px;
}
.ig iframe { display: block; width: 100%; border: 0; min-height: 540px; }
.ig__hint  { padding: clamp(28px, 4vw, 56px); font-size: 15px; color: var(--ink-soft); text-align: center; }
.ig__handle{ margin-top: 22px; font-family: var(--display); font-style: italic; font-size: 18px; color: var(--ink-soft); text-align: center; }

/* ---------- Collective ---------- */
.collective__layout {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 56px);
}
.collective__lede {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.4;
  color: var(--ink);
  max-width: 60ch;
  text-wrap: pretty;
}
.collective__lede::first-letter { color: var(--pink-deep); }
.collective__image {
  position: relative;
  aspect-ratio: 16 / 7;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-warm), var(--paper-line));
  border: 1px solid var(--paper-line);
  display: flex; align-items: center; justify-content: center;
}
.collective__image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.collective__image[data-empty="true"] {
  background: repeating-linear-gradient(45deg, var(--cream-soft), var(--cream-soft) 14px, var(--cream-warm) 14px, var(--cream-warm) 28px);
}
.collective__image[data-empty="true"]::after {
  content: '+ image'; font-family: var(--display); font-style: italic; font-size: 18px; color: var(--ink-mute);
}

/* ---------- Contact (dark) ---------- */
.contact {
  position: relative;
  background: var(--ink-deep);
  color: var(--cream);
  padding: clamp(96px, 14vw, 180px) var(--gutter) clamp(72px, 10vw, 120px);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.contact__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(232, 90, 142, .25), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(216, 161, 58, .15), transparent 55%);
  z-index: 0;
  filter: blur(60px);
  animation: floatBg 22s ease-in-out infinite alternate;
}
@keyframes floatBg {
  from { transform: translate3d(-30px, -10px, 0); }
  to   { transform: translate3d(30px, 20px, 0); }
}
.contact__watermark {
  position: absolute;
  inset: auto 0 -10vh 0;
  font-family: var(--display);
  font-size: 30vw;
  line-height: 0.78;
  text-align: center;
  color: rgba(255,255,255,.04);
  pointer-events: none;
  z-index: 0;
  letter-spacing: -.02em;
  font-style: italic;
}
.contact__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
}
.contact__eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 209, 222, .85);
  margin-bottom: 18px;
}
.contact__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 9vw, 130px);
  line-height: .98;
  letter-spacing: -.025em;
  color: var(--cream);
  margin-bottom: 26px;
}
.contact__title .line { display: block; overflow: hidden; }
.contact__title .line--italic { font-style: italic; color: #ffc0d8; }
.contact__lede {
  color: rgba(255,255,255,.78);
  font-size: 17px;
  margin: 0 auto 40px;
  max-width: 56ch;
  text-wrap: pretty;
}
.contact__actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 44px;
}
.contact .btn--primary { background: var(--pink); color: var(--cream); }
.contact .btn--primary:hover { background: var(--pink-deep); }
.socials {
  display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
}
.socials a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}

/* ---------- Footer (comeback) ---------- */
.footer {
  background: var(--ink-deep);
  color: var(--cream);
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 0;
}
.footer__strap {
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
  background: rgba(0,0,0,.3);
}
.footer__strap-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: tick 50s linear infinite;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(16px, 1.7vw, 22px);
  letter-spacing: -.005em;
  color: rgba(255,255,255,.65);
}
.footer__strap-track em { font-style: normal; color: var(--pink); }
.footer__row {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 12.5px;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
}
.footer__top { color: rgba(255,255,255,.75); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .about__layout { grid-template-columns: 1fr; }
  .about__image-wrap { grid-column: 1; grid-row: auto; }
  .about__image { min-height: 280px; aspect-ratio: 4 / 3; height: auto; }
  .pillars { grid-template-columns: 1fr; gap: 22px; grid-column: 1; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .bento__tile:nth-child(1),
  .bento__tile:nth-child(2),
  .bento__tile:nth-child(3),
  .bento__tile:nth-child(4) { grid-column: 1; grid-row: auto; }
  .work__inner { grid-template-columns: 1fr; gap: 40px; }
  .work__head  { position: static; }
}
@media (max-width: 720px) {
  .nav { top: 12px; }
  .nav__inner { gap: 12px; padding: 8px 8px 8px 16px; }
  .nav__links { display: none; }
  .nav__menu  { display: inline-flex; align-items: center; justify-content: center; }
  .nav.is-open .nav__inner {
    flex-direction: column;
    align-items: flex-start;
    border-radius: var(--radius-lg);
    padding: 20px;
  }
  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
  }
  .hero { padding-top: 120px; padding-bottom: 80px; }
  .hero__scroll { display: none; }
  .stats__inner { grid-template-columns: 1fr; gap: 24px; }
  .contact__watermark { font-size: 50vw; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 120ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-up, .split-word { opacity: 1; transform: none; }
  .hero__bg { animation: none; transform: none; }
  .ticker__track, .footer__strap-track { animation: none !important; }
  .proj:hover, .bento__tile:hover, .btn:hover, .btn:active { transform: none !important; }
}
