:root {
  --pink: #f56b6f;
  --pink-soft: #f7787c;
  --pink-deep: #d9494d;
  --cream: #fdf9f0;
  --cream-deep: #f4ecd9;
  --ink: #111111;
  --ink-soft: #2a1f1f;
  --muted: #55514f;
  --gray: #d9d9d9;
  --page: 86vw;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Century Gothic", "Trebuchet MS", sans-serif;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --shadow-soft: 0 24px 50px rgba(80, 50, 50, .14);
  --shadow-deep: 0 40px 80px rgba(40, 25, 30, .22);
}

* { box-sizing: border-box; }

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 { letter-spacing: -.015em; }

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

a, button {
  color: inherit;
  cursor: pointer;
}

.topbar {
  width: var(--page);
  height: 8.85vw;
  min-height: 115px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.brand img { width: 11.25vw; min-width: 150px; }

.menu-toggle,
.menu-close {
  border: 0;
  background: transparent;
  width: 54px;
  height: 54px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 43px;
  height: 5px;
  margin: 0 0 10px auto;
  background: #000;
  transition: transform .25s ease;
}

.menu-toggle:hover span:first-child { transform: translateX(-8px); }
.menu-toggle:hover span:last-child { transform: translateX(8px); }

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(255,255,255,.98);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity .35s ease, transform .35s ease;
}

.menu-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-close {
  position: absolute;
  top: 36px;
  right: 56px;
  z-index: 2;
  font: 48px/1 var(--sans);
  color: var(--cream);
}

.menu-card {
  width: min(78vw, 1280px);
  height: calc(100vh - 40px);
  margin: 20px 0 20px auto;
  border-radius: 40px 0 0 40px;
  background: var(--pink);
  overflow-y: auto;
  position: relative;
  padding: 70px 90px 48px;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("assets/elements/hero-layer-9.png") center / 100% 100% no-repeat;
}

.menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-links a {
  font-family: var(--serif);
  font-size: clamp(40px, 4.4vw, 78px);
  line-height: 1.18;
  text-decoration: none;
  color: var(--cream);
  display: inline-block;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-links a:hover {
  transform: translateX(10px);
  opacity: .85;
}

.menu-contact {
  margin-top: auto;
  padding-top: 40px;
  color: #2a1c1c;
  font: 22px/1.5 var(--serif);
}

.menu-contact p {
  margin: 0;
}

.menu-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  align-items: center;
}

.menu-socials a {
  font: 22px/1 var(--serif);
  color: #2a1c1c;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}

.menu-socials a:hover { background: rgba(253,249,240,.5); }

.menu-socials a.is-active {
  background: var(--cream);
  color: #2a1c1c;
}

.view {
  display: none;
}

.view.is-active {
  display: block;
}

.hero {
  width: var(--page);
  aspect-ratio: 1650 / 737;
  height: auto;
  margin: 0 auto 180px;
  border-radius: 40px;
  background: var(--pink) url("assets/elements/hero-rectangle-1.png") center / 100% 100% no-repeat;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 70px rgba(177, 157, 120, .22);
}

.hero-copy {
  position: absolute;
  z-index: 1;
  left: 9.45%;
  top: 32.7%;
}

h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 400; }

.hero h1 {
  color: var(--cream);
  font-size: clamp(40px, 3.5vw, 64px);
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 34px;
}

.pill {
  border: 0;
  border-radius: 999px;
  min-width: 255px;
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font: 34px/1 var(--serif);
  transition: transform .2s ease, box-shadow .2s ease;
}

.pill:hover,
.outline:hover {
  transform: translateY(-3px);
}

.pill.light { background: var(--cream); color: #6a6a6a; }
.pill.dark { background: #858585; color: #fff; }
.pill.coral { background: var(--pink); color: #fff; }

.screen-float {
  position: absolute;
  z-index: 2;
  right: 8.36%;
  top: 18.45%;
  width: 41.75%;
  animation: float 4.8s ease-in-out infinite;
  perspective: 1400px;
}

.screen {
  position: relative;
  padding: 19px;
  border-radius: 28px;
  background: var(--cream);
  box-shadow: 0 30px 60px rgba(70, 30, 30, .22);
  transform-style: preserve-3d;
  will-change: transform;
  cursor: pointer;
}

.screen img {
  width: 100%;
  border-radius: 18px;
  transform: translateZ(40px);
}

.stand {
  position: absolute;
  z-index: 1;
  top: 72.2%;
  width: 1.34%;
  height: 29.6%;
  background: var(--cream);
  border-radius: 14px;
  opacity: .95;
}

.stand-one { left: 59%; }
.stand-two { left: 80.9%; }

.dots {
  position: absolute;
  z-index: 3;
  left: 68.3%;
  top: 75.9%;
  display: flex;
  gap: .8vw;
}

.dots i {
  width: clamp(10px, 1vw, 19px);
  height: clamp(10px, 1vw, 19px);
  border-radius: 50%;
  background: rgba(255,255,255,.35);
}

.dots .active { background: #fff; }

.about-strip,
.divisions,
.services,
.projects,
.people,
.awards {
  width: min(86vw, 1500px);
  margin: 0 auto;
}

.about-strip {
  min-height: 540px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: start;
}

.about-strip h2,
.divisions h2,
.services h2 {
  color: var(--pink-soft);
  font-size: clamp(46px, 3.5vw, 66px);
  margin-bottom: 42px;
}

.about-strip p,
.services-copy p {
  max-width: 1000px;
  color: #302b2c;
  font-size: clamp(24px, 1.6vw, 31px);
  line-height: 1.35;
  margin: 0 0 42px;
}

.reel-mark {
  --spin: 0deg;
  width: min(28vw, 500px);
  aspect-ratio: 491 / 590;
  justify-self: end;
  margin-top: -42px;
  position: relative;
  transform: translateY(var(--lift, 0));
}

.reel-disc {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  transform: rotate(var(--spin));
  transform-origin: 50% 50%;
  will-change: transform;
  filter: drop-shadow(0 18px 30px rgba(245, 107, 111, .12));
}

.reel-elephant {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 26%;
  transform: translateX(-50%);
  will-change: transform;
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 160px;
}

.division-card {
  text-decoration: none;
  color: #000;
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow .25s ease;
  border-radius: 16px;
  padding: 4px;
}

.division-card:hover {
  box-shadow: 0 24px 50px rgba(80, 50, 50, .18);
}

.dc-img {
  display: block;
  width: 100%;
  height: 250px;
  border-radius: 16px;
  overflow: hidden;
  transform: translateZ(30px);
}

.division-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.division-card h3 {
  font-size: 38px;
  margin-top: 30px;
  transform: translateZ(50px);
}

.division-card p {
  margin: 8px 0 0;
  font-size: 24px;
  transform: translateZ(40px);
}

.idea-band {
  min-height: 470px;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 12.8vw;
  margin-bottom: 140px;
}

.idea-band h2 {
  color: var(--pink-soft);
  font-size: clamp(50px, 4.1vw, 78px);
  line-height: 1.12;
}

.idea-band .pill {
  justify-self: end;
  width: min(42vw, 550px);
  height: 86px;
}

.services {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 70px;
  margin-bottom: 130px;
}

.service-tabs {
  display: grid;
  gap: 18px;
  margin-top: 90px;
}

.service-tabs button {
  border: 0;
  background: transparent;
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  text-align: left;
  font: 38px/1.1 var(--serif);
}

.service-tabs button::before {
  content: "";
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: inset 0 0 0 18px var(--cream);
}

.service-tabs .is-selected { color: var(--pink); }

.service-art {
  min-height: 710px;
  border-radius: 36px;
  background: #eeeeee;
  position: relative;
  overflow: hidden;
}

.service-art > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-art article {
  position: absolute;
  right: 9%;
  bottom: 8%;
  width: 46%;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,.25);
}

.service-art h3 {
  font-size: 52px;
  margin-bottom: 30px;
}

.service-art p {
  font-size: 26px;
  line-height: 1.35;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 36px;
  align-items: start;
  margin-bottom: 130px;
}

.poster {
  border: 0;
  background: transparent;
  padding: 0;
  transform-style: preserve-3d;
  will-change: transform;
  transition: filter .25s ease, box-shadow .25s ease;
  border-radius: 4px;
}

.poster:hover {
  filter: saturate(1.08);
  box-shadow: 0 30px 60px rgba(40, 30, 40, .25);
}

.poster img {
  width: 100%;
  border-radius: 2px;
  transform: translateZ(20px);
}

.poster.tall { grid-row: span 2; }

.about-hero {
  min-height: 760px;
  text-align: center;
  padding-top: 130px;
  background: var(--cream);
}

.about-hero h1 {
  color: var(--pink-soft);
  font-size: clamp(76px, 6vw, 118px);
  margin-bottom: 48px;
}

.about-hero h2 {
  color: var(--pink-soft);
  font-size: clamp(48px, 4vw, 78px);
  line-height: 1.08;
  margin-bottom: 70px;
}

.outline {
  min-width: 360px;
  min-height: 76px;
  border: 3px solid #111;
  border-radius: 999px;
  background: transparent;
  font: 38px/1 var(--serif);
  transition: transform .2s ease;
}

.people {
  display: grid;
  grid-template-columns: .9fr 1.2fr;
  gap: 80px;
  margin-top: 40px;
  margin-bottom: 150px;
}

.people-copy {
  padding-top: 40px;
}

.people-copy h2,
.awards h2 {
  color: var(--pink-soft);
  font-size: clamp(62px, 6.2vw, 116px);
  line-height: 1.05;
  margin-bottom: 70px;
}

.people-copy p {
  font-size: 31px;
  line-height: 1.45;
  color: #302b2c;
}

.team-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.join-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 44px 44px;
  border-radius: 34px;
  background: linear-gradient(160deg, var(--pink) 0%, var(--pink-deep) 100%);
  color: var(--cream);
  text-decoration: none;
  min-height: 470px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}

.join-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 6px 6px;
  opacity: .6;
  z-index: -1;
}

.join-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}

.join-arrow {
  position: absolute;
  top: 32px;
  right: 36px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--pink-deep);
  display: grid;
  place-items: center;
  font-size: 30px;
  transition: transform .35s var(--ease-out);
}

.join-card:hover .join-arrow { transform: translate(6px, -6px) rotate(-12deg); }

.join-card h3 {
  font-size: 46px;
  line-height: 1.05;
  margin-bottom: 14px;
}

.join-card p {
  font: 19px/1.4 var(--sans);
  margin: 0;
  max-width: 280px;
  opacity: .9;
}

.person {
  position: relative;
  min-height: 470px;
  transform-style: preserve-3d;
  will-change: transform;
}

.person.featured {
  transition: box-shadow .3s ease;
}

.person.featured:hover {
  box-shadow: 0 30px 60px rgba(40, 30, 30, .18);
  border-radius: 34px;
}

.person.featured img {
  transform: translateZ(40px);
}

.person.featured h3,
.person.featured p {
  transform: translateZ(20px);
}

.person img,
.placeholder::before {
  width: 100%;
  aspect-ratio: .8;
  object-fit: cover;
  border-radius: 34px;
}

.person-link {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 3;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink-soft);
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}

.person-link:hover {
  background: var(--ink-soft);
  color: var(--cream);
  transform: scale(1.08);
}

.person-link svg {
  width: 22px;
  height: 22px;
}

.person h3 {
  font-size: 38px;
  margin-top: 24px;
}

.person p {
  margin: 2px 0 0;
  font: 30px/1.2 var(--serif);
}

.placeholder {
  padding-top: 440px;
}

.placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #d4d4d4;
}

.placeholder.small {
  grid-column: 1;
  margin-top: -130px;
}

.awards {
  text-align: center;
  min-height: 560px;
  padding-bottom: 80px;
}

.awards h2 { font-size: clamp(54px, 4.2vw, 82px); margin-bottom: 80px; }

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

.award-card {
  position: relative;
  padding: 56px 32px 44px;
  border-radius: 32px;
  background: var(--cream);
  color: var(--pink-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}

.award-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.laurel {
  width: 130px;
  height: 145px;
  color: var(--pink-deep);
}

.award-year {
  font: 14px/1 var(--sans);
  letter-spacing: .25em;
  color: var(--pink-deep);
  text-transform: uppercase;
  margin-top: 8px;
}

.award-card h3 {
  color: var(--ink-soft);
  font-size: 30px;
  letter-spacing: -.01em;
}

.award-card p {
  margin: 0;
  color: var(--muted);
  font: 17px/1.45 var(--sans);
  max-width: 220px;
}

.contact-card {
  width: min(92vw, 1780px);
  margin: 80px auto 120px;
  border-radius: 70px 0 0 0;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  padding: 120px 100px 100px;
}

.contact-card h1 {
  color: var(--pink-soft);
  font-size: clamp(40px, 3.6vw, 68px);
  line-height: 1.08;
  letter-spacing: -.02em;
}

.contact-reel {
  width: min(26vw, 360px);
  margin: 56px 0 32px;
  justify-self: start;
  animation: float 5.6s ease-in-out infinite;
}

.contact-reel .reel-disc {
  filter: drop-shadow(0 22px 36px rgba(245, 107, 111, .18));
}

.contact-left p {
  font: 18px/1.5 var(--sans);
  color: var(--ink-soft);
  margin-top: 8px;
}

.contact-left p strong { color: var(--pink-deep); font-weight: 600; }

.contact-actions {
  padding-top: 8px;
}

.contact-actions h2 {
  font: 500 clamp(28px, 2.6vw, 40px)/1.15 var(--serif);
  color: var(--ink-soft);
  letter-spacing: -.015em;
}

.contact-actions p {
  font: 17px/1.5 var(--sans);
  color: var(--muted);
  margin: 12px 0 56px;
  max-width: 420px;
}

.contact-actions .outline {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(440px, 100%);
  height: 68px;
  margin: 0 0 22px;
  padding: 0 28px 0 32px;
  font: 500 19px/1 var(--sans);
  border-width: 2px;
  text-align: left;
}

.contact-actions .outline span {
  position: static;
  width: auto;
  height: auto;
  background: transparent;
  color: inherit;
  display: inline;
  flex: 1;
}

.contact-actions .outline i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform .25s var(--ease-out), background .25s var(--ease);
}

.contact-actions .outline:hover i {
  transform: translateX(6px) rotate(-12deg);
  background: var(--pink-deep);
}

.footer {
  min-height: 216px;
  border-radius: 38px 38px 0 0;
  background: var(--pink);
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 60px);
  padding: 36px 5vw;
  color: var(--cream);
  position: relative;
}

.footer-logo {
  width: 180px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.footer nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(20px, 2.6vw, 56px);
}

.footer a {
  text-decoration: none;
  color: var(--cream);
  font: 22px/1 var(--serif);
  white-space: nowrap;
  letter-spacing: .02em;
  transition: opacity .2s ease, transform .2s ease;
}

.footer a:hover { opacity: .85; transform: translateY(-2px); }

.footer-socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  color: var(--cream);
  transition: background .2s ease, transform .2s ease;
}

.footer-socials a:hover {
  background: var(--cream);
  color: var(--pink-deep);
  transform: translateY(-3px);
}

.footer-socials svg {
  width: 20px;
  height: 20px;
}

.modal {
  width: min(560px, 92vw);
  border: 0;
  border-radius: 28px;
  padding: 42px;
  background: var(--cream);
}

.modal::backdrop {
  background: rgba(0,0,0,.28);
}

.modal h2 {
  color: var(--pink);
  font-size: 46px;
  margin-bottom: 28px;
}

.modal form {
  display: grid;
  gap: 18px;
}

.modal input,
.modal textarea {
  width: 100%;
  border: 2px solid #111;
  border-radius: 22px;
  background: #fff;
  padding: 18px 22px;
  font: 20px/1.2 var(--sans);
}

.modal textarea {
  min-height: 150px;
  resize: vertical;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 18px;
  border: 0;
  background: transparent;
  font-size: 24px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeSlide {
  from { opacity: .01; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- v4: about-page sections, atmosphere, motion ---------- */

.manifesto {
  width: min(86vw, 1500px);
  margin: 0 auto 140px;
  text-align: center;
  position: relative;
  padding: 80px 40px;
}

.quote-mark {
  display: block;
  font: 200px/0.8 var(--serif);
  color: var(--pink);
  opacity: .25;
  margin-bottom: -40px;
}

.manifesto blockquote {
  font: 500 clamp(34px, 3.4vw, 60px)/1.25 var(--serif);
  color: var(--ink-soft);
  margin: 0 auto 40px;
  max-width: 920px;
  letter-spacing: -.015em;
}

.manifesto blockquote em {
  font-style: italic;
  color: var(--pink-deep);
  font-weight: 600;
}

.manifesto cite {
  font: 500 14px/1 var(--sans);
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

.stats {
  width: min(86vw, 1500px);
  margin: 0 auto 140px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 60px 50px;
  border-radius: 36px;
  background: linear-gradient(135deg, var(--cream) 0%, #ffeae6 100%);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 107, 111, .12) 0%, transparent 60%);
  animation: blobDrift 14s ease-in-out infinite;
  pointer-events: none;
}

.stat {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat .num,
.stat .suffix {
  font: 500 clamp(56px, 5.2vw, 96px)/1 var(--serif);
  color: var(--pink-deep);
  display: inline-block;
  letter-spacing: -.03em;
}

.stat .suffix { color: var(--pink); }

.stat p {
  margin: 12px 0 0;
  font: 500 15px/1.3 var(--sans);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.pillars {
  width: min(86vw, 1500px);
  margin: 0 auto 140px;
  text-align: center;
}

.pillars h2 {
  color: var(--pink-soft);
  font-size: clamp(46px, 3.6vw, 70px);
  margin-bottom: 80px;
  text-align: center;
  position: relative;
  display: inline-block;
}

.pillars h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 60px;
  height: 3px;
  background: var(--pink);
  border-radius: 2px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform .8s var(--ease-out) .3s;
}

.pillars.is-visible h2::after { transform: translateX(-50%) scaleX(1); }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
  text-align: left;
}

.pillar {
  position: relative;
  padding: 40px 0 0;
  border-top: 1px solid rgba(40, 25, 25, .15);
  transition: border-color .3s var(--ease);
}

.pillar:hover {
  border-color: var(--pink);
}

.pillar-num {
  display: block;
  font: 500 14px/1 var(--sans);
  letter-spacing: .35em;
  color: var(--pink-deep);
  margin-bottom: 28px;
}

.pillar h3 {
  font-size: clamp(34px, 2.6vw, 44px);
  letter-spacing: -.02em;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.pillar p {
  margin: 0;
  font: 17px/1.55 var(--sans);
  color: var(--muted);
}

.marquee-band {
  margin: 0 0 140px;
  padding: 60px 0;
  background: var(--ink-soft);
  color: var(--cream);
  overflow: hidden;
  position: relative;
}

.marquee-label {
  display: block;
  text-align: center;
  font: 500 13px/1 var(--sans);
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 28px;
}

.marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  width: max-content;
  animation: marqueeScroll 38s linear infinite;
}

.marquee-track span {
  font: 500 clamp(28px, 2.4vw, 42px)/1 var(--serif);
  letter-spacing: -.01em;
}

.marquee-track i {
  font-style: normal;
  color: var(--pink);
  font-size: 28px;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-8%, 10%) scale(1.15); }
}

.hero {
  isolation: isolate;
}

.about-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  top: -20%;
  right: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 107, 111, .35) 0%, transparent 65%);
  filter: blur(40px);
  z-index: -1;
  animation: blobDrift 18s ease-in-out infinite;
}

.about-hero::after {
  content: "";
  position: absolute;
  width: 45vw;
  height: 45vw;
  max-width: 600px;
  max-height: 600px;
  bottom: -25%;
  left: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 249, 240, 1) 0%, rgba(253, 249, 240, 0) 60%);
  filter: blur(30px);
  z-index: -1;
}

.divisions h2,
.about-strip h2,
.services h2 {
  position: relative;
  display: inline-block;
}

.divisions h2::after,
.about-strip h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 56px;
  height: 3px;
  background: var(--pink);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .8s var(--ease-out) .3s;
}

.divisions.is-visible h2::after,
.about-strip.is-visible h2::after { transform: scaleX(1); }

@media (max-width: 900px) {
  .stats { grid-template-columns: 1fr 1fr; gap: 24px; padding: 40px 24px; }
  .pillar-grid { grid-template-columns: 1fr; gap: 16px; }
  .manifesto { margin: 0 auto 80px; padding: 30px 16px; }
  .marquee-band { margin-bottom: 80px; padding: 36px 0; }
}

/* ---------- Premium polish: loader, cursor, grain, reveal, transitions ---------- */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--cream);
  display: grid;
  place-items: center;
  transition: opacity .8s var(--ease-out), visibility .8s var(--ease-out);
}

.page-loader img {
  width: 140px;
  animation: loaderPulse 1.4s ease-in-out infinite;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: .9; }
  50% { transform: scale(1.08); opacity: 1; }
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 100;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--pink-deep);
  border-radius: 50%;
  transition: width .25s var(--ease), height .25s var(--ease), opacity .25s var(--ease);
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--pink-deep);
  border-radius: 50%;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), background .25s var(--ease), border-color .25s var(--ease), opacity .25s var(--ease);
}

.cursor-active .cursor-dot { width: 0; height: 0; opacity: 0; }
.cursor-active .cursor-ring {
  width: 64px;
  height: 64px;
  background: rgba(217, 73, 77, .12);
  border-color: var(--pink-deep);
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

@media (hover: hover) and (pointer: fine) {
  body, a, button, [data-tilt], .menu-toggle, .menu-close { cursor: none; }
  input, textarea { cursor: text; }
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
  opacity: .045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/></svg>");
  background-size: 240px 240px;
}

.split-h1 .line {
  display: block;
  overflow: hidden;
}

.split-h1 .word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  will-change: transform, opacity;
}

.is-loaded .split-h1 .word {
  animation: wordRise .9s var(--ease-out) forwards;
}

.is-loaded .split-h1 .line:nth-child(1) .word:nth-child(1) { animation-delay: .15s; }
.is-loaded .split-h1 .line:nth-child(1) .word:nth-child(2) { animation-delay: .22s; }
.is-loaded .split-h1 .line:nth-child(1) .word:nth-child(3) { animation-delay: .29s; }
.is-loaded .split-h1 .line:nth-child(2) .word:nth-child(1) { animation-delay: .38s; }
.is-loaded .split-h1 .line:nth-child(2) .word:nth-child(2) { animation-delay: .45s; }
.is-loaded .split-h1 .line:nth-child(3) .word:nth-child(1) { animation-delay: .54s; }

@keyframes wordRise {
  to { transform: translateY(0); opacity: 1; }
}

.is-loaded .hero-copy .pill {
  animation: ctaFade 1s var(--ease-out) .9s both;
}

.is-loaded .screen-float {
  animation: float 4.8s ease-in-out infinite, screenDrop 1.1s var(--ease-out) .4s both;
}

@keyframes ctaFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes screenDrop {
  from { opacity: 0; transform: translateY(-30px) scale(.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.magnetic {
  will-change: transform;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}

.pill:focus-visible,
.outline:focus-visible,
.menu-toggle:focus-visible,
.menu-close:focus-visible {
  outline: 3px solid var(--pink-deep);
  outline-offset: 4px;
}

.view {
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}

.view.is-leaving {
  opacity: 0;
  transform: translateY(8px);
}

.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  :root { --page: 92vw; }
  .topbar { height: 115px; }
  .brand img { width: 150px; }
  .hero { height: 660px; margin-bottom: 90px; }
  .hero-copy { left: 8%; top: 12%; }
  .screen-float { width: 78%; right: 11%; top: 44%; }
  .stand, .dots { display: none; }
  .about-strip, .services, .people, .contact-card, .idea-band { grid-template-columns: 1fr; }
  .division-grid, .project-grid, .awards-grid { grid-template-columns: 1fr; }
  .menu-card { width: 100%; margin: 0; border-radius: 0; padding: 90px 28px 50px; }
  .menu-links a { font-size: clamp(42px, 11vw, 72px); }
  .menu-close { right: 24px; top: 28px; }
  .footer { flex-direction: column; padding: 36px 24px; gap: 28px; text-align: center; }
  .footer nav { flex-wrap: wrap; }
  .contact-card { padding: 80px 28px; min-height: auto; }
  .contact-actions .outline { width: 100%; }
  .contact-actions span { right: 12px; width: 140px; }
  .contact-reel { width: 260px; margin: 60px auto 24px; justify-self: center; }
  .team-stack { grid-template-columns: 1fr; }
  .join-card { min-height: 360px; }
}
