@font-face {
  font-family: 'Halenoir';
  src: url('halenoir-demibold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Halenoir';
  src: url('halenoir-bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg: #e0e7e7;
  --ink: #311B42;
  --mint: #7ABFAB;
  --deep: #121016;
  --ff: 'DM Sans', sans-serif;
  --ff-display: 'Halenoir', 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

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

/* ── LIQUID GLASS ── */
.glass-card {
  position: relative;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.72);
  background-image:
    radial-gradient(closest-side, rgba(122,191,171,0.22), transparent),
    radial-gradient(closest-side, rgba(49,27,66,0.11), transparent),
    radial-gradient(closest-side, rgba(88,179,147,0.16), transparent);
  background-size: 130% 130%, 115% 115%, 95% 95%;
  background-repeat: no-repeat;
  background-position: -20% -30%, 120% 120%, 60% -40%;
  animation: meshDrift 16s ease-in-out infinite alternate;
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  box-shadow:
    0 8px 32px rgba(49, 27, 66, 0.08),
    0 2px 0 rgba(255,255,255,0.9) inset,
    0 -1px 0 rgba(49,27,66,0.04) inset;
  border: 1px solid rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

/* gradient rim light — the real glass edge */
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(49,27,66,0.5) 0%,
    rgba(224,231,231,0.1) 40%,
    rgba(122,191,171,0.6) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.glass-card > * { position: relative; z-index: 3; }

@keyframes meshDrift {
  to { background-position: 110% 40%, -30% -20%, 20% 130%; }
}

/* aesthetic pop on hover: a springy rise, no shadow bloom */
.service-card, .work-card, .net-card, .step-card, .founder-card, .maison-card, .faq-card, .contact-card, .subheadline-card, .feature-card, .stat-tile {
  transform-origin: 50% 100%;
  transition: transform 450ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.glass-card.service-card:hover, .glass-card.work-card:hover, .glass-card.net-card:hover, .glass-card.step-card:hover, .glass-card.founder-card:hover, .glass-card.maison-card:hover, .glass-card.faq-card:hover, .glass-card.contact-card:hover, .glass-card.subheadline-card:hover, .glass-card.feature-card:hover, .glass-card.stat-tile:hover {
  transform: translateY(-8px) scale(1.015) !important;
  z-index: 20;
}


.glass-card.popular::before {
  background: linear-gradient(
    135deg,
    rgba(49,27,66,0.8) 0%,
    rgba(224,231,231,0.15) 35%,
    rgba(122,191,171,0.9) 100%
  );
}

/* ── PAGE LOAD ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.load-in {
  animation: fadeUp 1100ms cubic-bezier(0.22, 1, 0.36, 1) both;
  opacity: 0;
}
.load-fade { animation: fadeIn 1100ms cubic-bezier(0.22, 1, 0.36, 1) both; opacity: 0; }
.d0  { animation-delay: 0ms; }
.d1  { animation-delay: 120ms; }
.d2  { animation-delay: 240ms; }
.d3  { animation-delay: 360ms; }
.d4  { animation-delay: 480ms; }

/* scroll reveal */
.fade-up {
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  transition: opacity 700ms cubic-bezier(0.16,1,0.3,1), transform 750ms cubic-bezier(0.34,1.56,0.64,1);
}
.fade-up.visible { opacity: 1; transform: none; }
/* large card perf: these sit on flat background, so blur adds nothing but cost; drop the continuous mesh animation and backdrop-filter */
.founder-card, .maison-card, .feature-card, .contact-card {
  animation: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background-color: rgba(250, 251, 250, 0.82);
}

/* large blurred cards: reveal with opacity only, animating a scaled backdrop-blur janks on load */
.founder-card.fade-up, .maison-card.fade-up, .feature-card.fade-up, .contact-card.fade-up {
  transform: none;
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
.founder-card.fade-up.visible, .maison-card.fade-up.visible, .feature-card.fade-up.visible, .contact-card.fade-up.visible {
  transform: none;
}
.fade-up.delay-1 { transition-delay: 80ms; }
.fade-up.delay-2 { transition-delay: 160ms; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: backdrop-filter 400ms ease, background 400ms ease, border-color 400ms ease;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  background: rgba(224,231,231,0.75);
  border-bottom-color: rgba(49,27,66,0.07);
}
.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 400ms ease;
}
nav.scrolled .nav-logo img { filter: none; }
.nav-contact {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 200ms, color 400ms ease;
}
nav.scrolled .nav-contact { color: var(--ink); opacity: 0.6; }
.nav-contact:hover { opacity: 1; }

/* ── HERO ── */
#hero {
  height: 100vh;
  height: 100svh;
  background: var(--deep) url('poster.jpg') center / cover no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 120px 52px 52px;
  overflow: hidden;
}
#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 700ms ease;
  pointer-events: none;
}
#hero-video.on { opacity: 0.8; }
#hero.video-on { background-image: none; }
#hero-video::-webkit-media-controls,
#hero-video::-webkit-media-controls-enclosure,
#hero-video::-webkit-media-controls-panel,
#hero-video::-webkit-media-controls-play-button,
#hero-video::-webkit-media-controls-overlay-play-button,
#hero-video::-webkit-media-controls-overlay-enclosure,
#hero-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15,15,15,0.55) 0%,
    rgba(15,15,15,0.1) 50%,
    rgba(15,15,15,0.6) 100%
  );
}
.hero-top, .hero-bottom {
  position: relative;
  z-index: 2;
}
.hero-descriptor {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e0e7e7;
  opacity: 0.7;
}
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(52px, 8vw, 108px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #e0e7e7;
  line-height: 0.92;
}
.hero-scroll {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: #e0e7e7;
  opacity: 0.45;
  text-transform: uppercase;
  padding-bottom: 6px;
}

/* ── SHARED LAYOUT ── */
#work, #brand-film, #brand-partner, #maison, #founders, #contact { scroll-margin-top: 72px; }
.section-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 52px;
}

/* ── SUBHEADLINE ── */
#subheadline {
  padding: 120px 52px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.subheadline-card {
  width: 78%;
  padding: 60px 68px;
}
.subheadline-card p {
  font-family: var(--ff-display);
  font-size: clamp(18px, 3.2vw - 9px, 31px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.2;
  text-align: center;
  text-wrap: balance;
}

/* ── SERVICES ── */
#services {
  padding: 60px 52px 100px;
  max-width: 1280px;
  margin: 0 auto;
}
.service-block { margin-bottom: 88px; }
.service-intro {
  font-size: clamp(14px, 1.4vw, 16.5px);
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.8;
  max-width: 620px;
  margin: -18px 0 30px;
}
.service-block:last-child { margin-bottom: 0; }

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}
.section-header-left {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.section-num {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--mint);
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-meta {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.4;
}
.section-rule {
  height: 1px;
  background: var(--ink);
  opacity: 0.1;
  margin-bottom: 36px;
}

.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
}
.card-tier {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
.popular-badge {
  display: block;
  height: 20px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 10px;
}
.card-spacer {
  display: block;
  height: 20px;
  margin-bottom: 10px;
}
.card-divider {
  height: 1px;
  background: var(--ink);
  opacity: 0.08;
  margin-bottom: 18px;
}
.card-features {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}
.card-features li {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
  opacity: 0.72;
  padding: 6px 0;
  border-bottom: 1px solid rgba(49,27,66,0.05);
}
.card-features li:last-child { border-bottom: none; }
.card-best {
  font-size: 11px;
  color: var(--ink);
  opacity: 0.45;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.5;
}
.card-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--mint);
  text-decoration: none;
  transition: color 200ms, letter-spacing 200ms;
  display: inline-block;
}
.card-cta:hover { color: var(--ink); letter-spacing: 0.06em; }

/* ── MAISON ── */
#maison {
  padding: 0 52px 100px;
  max-width: 1280px;
  margin: 0 auto;
}
.maison-card {
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: center;
}
.maison-mock {
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 24px 60px rgba(49,27,66,0.16);
  animation: mockFloat 7s ease-in-out infinite alternate;
  will-change: transform;
}
.maison-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 16px;
}
.maison-headline {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 20px;
}
.maison-copy {
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 400;
  color: var(--ink);
  opacity: 0.8;
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 36px;
}
.maison-items {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.maison-item {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.5;
  padding-top: 14px;
  border-top: 1px solid rgba(49,27,66,0.15);
  min-width: 160px;
}

.maison-soon {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #4a8f7b;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(122,191,171,0.3);
  max-width: 340px;
}

/* ── FOUNDERS ── */
#founders {
  padding: 0 52px 100px;
  max-width: 1280px;
  margin: 0 auto;
}
.founder-card {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.founder-card + .founder-card { margin-top: 26px; }
.founder-card.flip {
  grid-template-columns: 1.8fr 1fr;
}
.founder-portrait-col {
  padding: 56px 48px;
  border-right: 1px solid rgba(49,27,66,0.08);
  display: flex;
  align-items: flex-start;
}
.founder-card.flip .founder-portrait-col {
  order: 2;
  border-right: none;
  border-left: 1px solid rgba(49,27,66,0.08);
}
.founder-portrait {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  display: block;
}
.founder-portrait-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: rgba(49,27,66,0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 400;
  color: rgba(49,27,66,0.45);
  letter-spacing: 0.06em;
}
.founder-content-col {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founder-name {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1.0;
  margin-bottom: 10px;
}
.founder-role {
  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: 500;
  color: var(--mint);
  margin-bottom: 28px;
}
.founder-bio {
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 400;
  color: var(--ink);
  opacity: 0.8;
  line-height: 1.75;
}
.founder-bio.has-stats { margin-bottom: 36px; }
.founder-stats {
  display: flex;
  flex-direction: row;
  gap: 36px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.stat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--mint);
  text-transform: uppercase;
}

/* ── CONTACT ── */
#contact {
  padding: 100px 52px 120px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.contact-card {
  width: 72%;
  padding: 80px 80px;
  text-align: center;
}
.contact-booking {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.45;
  margin-bottom: 20px;
}
.contact-headline {
  font-family: var(--ff-display);
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 44px;
}
.contact-links {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-bottom: 44px;
}
.contact-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 200ms;
  letter-spacing: 0.02em;
}
.contact-links a:hover { opacity: 1; }
.cta-btn {
  display: inline-block;
  background: var(--mint);
  color: var(--ink);
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 44px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background 250ms, transform 150ms;
}
.cta-btn:hover { background: #68b09b; transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(49,27,66,0.08);
  padding: 28px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-text, .footer-copy {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.35;
}

/* ── NAV RIGHT + HAMBURGER (all screen sizes) ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

/* ── MENU DRAWER ── */
#menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26,15,36,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
  z-index: 1500;
}
#menu-backdrop.open { opacity: 1; pointer-events: auto; }
#menu {
  position: fixed;
  top: 0; right: 0;
  height: 100dvh;
  width: min(400px, 88vw);
  background: rgba(224,231,231,0.92);
  backdrop-filter: blur(40px) saturate(160%);
  -webkit-backdrop-filter: blur(40px) saturate(160%);
  border-left: 1px solid rgba(255,255,255,0.9);
  box-shadow: -24px 0 60px rgba(49,27,66,0.18);
  transform: translateX(103%);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1600;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 96px 44px 44px;
}
#menu.open { transform: none; }
#menu-close {
  position: absolute;
  top: 28px; right: 44px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.6;
  transition: opacity 200ms;
}
#menu-close:hover { opacity: 1; }
.menu-links { display: flex; flex-direction: column; }
#menu .menu-link, #menu .menu-foot {
  opacity: 0;
  transform: translateX(32px);
}
#menu.open .menu-link, #menu.open .menu-foot {
  opacity: 1;
  transform: none;
  transition: opacity 450ms ease, transform 550ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
#menu.open .menu-link:nth-child(1) { transition-delay: 90ms; }
#menu.open .menu-link:nth-child(2) { transition-delay: 150ms; }
#menu.open .menu-link:nth-child(3) { transition-delay: 210ms; }
#menu.open .menu-link:nth-child(4) { transition-delay: 270ms; }
#menu.open .menu-link:nth-child(5) { transition-delay: 330ms; }
#menu.open .menu-link:nth-child(6) { transition-delay: 390ms; }
#menu.open .menu-foot { transition-delay: 470ms; }
.menu-link {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 15px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(49,27,66,0.08);
}
.menu-link:last-child { border-bottom: none; }
.menu-num {
  font-size: 12px;
  color: var(--mint);
  letter-spacing: 0.1em;
}
.menu-label {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: transform 250ms cubic-bezier(0.22,1,0.36,1), color 200ms;
}
.menu-link:hover .menu-label { transform: translateX(6px); color: #5ea38f; }
.menu-foot { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.menu-cta { border-radius: 0; }
.menu-mail {
  font-size: 13px;
  color: var(--ink);
  opacity: 0.6;
  text-decoration: none;
  transition: opacity 200ms;
}
.menu-mail:hover { opacity: 1; }

/* ── WORK ── */
#work {
  padding: 0 52px 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.work-card { padding: 0; }
.work-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.work-card:hover img { transform: scale(1.04); }
.work-info { padding: 18px 22px 20px; }
.work-name {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.work-line {
  font-size: 11px;
  color: var(--ink);
  opacity: 0.5;
  margin-top: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── MOBILE ── */
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #ffffff;
  transition: all 300ms, background 400ms ease;
}
nav.scrolled .nav-hamburger span { background: var(--ink); }

@media (max-width: 900px) {
  nav { padding: 18px 24px; }
  .nav-contact { display: none; }
  #menu { padding: 84px 32px 36px; }
  #menu-close { right: 32px; }

  #work { padding: 0 24px 32px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .work-info { padding: 14px 16px 16px; }

  #hero { padding: 90px 24px 40px; }
  .hero-title { font-size: 48px; }

  #subheadline { padding: 72px 24px; }
  .subheadline-card { width: 100%; padding: 36px 28px; }

  #services { padding: 40px 24px 80px; }
  .cards-row { grid-template-columns: 1fr; gap: 14px; }

  #maison { padding: 0 24px 72px; }
  .maison-card { padding: 36px 26px; grid-template-columns: 1fr; gap: 34px; }
  .maison-items { gap: 20px; }
  .maison-item { min-width: 130px; }

  #founders { padding: 0 24px 72px; }
  .founder-card, .founder-card.flip { grid-template-columns: 1fr; }
  .founder-portrait-col,
  .founder-card.flip .founder-portrait-col {
    order: 0;
    padding: 40px 28px;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid rgba(49,27,66,0.08);
  }
  .founder-portrait, .founder-portrait-placeholder { max-width: 220px; }
  .founder-content-col { padding: 40px 28px; }
  .founder-stats { flex-wrap: wrap; gap: 24px; }

  #contact { padding: 72px 24px 100px; }
  .contact-card { width: 100%; padding: 48px 28px; }
  .contact-links { flex-direction: column; gap: 14px; align-items: center; }

  footer { padding: 24px; flex-direction: column; gap: 10px; text-align: center; }
}

/* ── SUBPAGES ── */
.page-head {
  max-width: 1280px;
  margin: 0 auto;
  padding: 150px 52px 30px;
}
.page-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 14px;
}
.page-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1.0;
  margin-bottom: 18px;
}
.page-intro {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--ink);
  opacity: 0.8;
  line-height: 1.75;
  max-width: 680px;
}
.page-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 52px 60px;
}
.work-note {
  font-size: 13px;
  color: var(--ink);
  opacity: 0.6;
  margin-top: 28px;
}
.work-note a { color: var(--ink); text-decoration: none; border-bottom: 1px solid rgba(49,27,66,0.3); }
.work-note a:hover { color: #5ea38f; }
.work-card .work-desc {
  font-size: 13px;
  color: var(--ink);
  opacity: 0.65;
  line-height: 1.6;
  margin-top: 8px;
}
.founders-close {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: center;
  padding: 30px 0 10px;
}
.net-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.net-card { padding: 30px 28px 32px; }
.net-card h3 {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.net-card p {
  font-size: 13.5px;
  color: var(--ink);
  opacity: 0.72;
  line-height: 1.7;
}
.founder-more {
  display: inline-block;
  margin-top: 26px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
  opacity: 0.65;
  text-decoration: none;
  transition: color 300ms ease, opacity 300ms ease, transform 300ms cubic-bezier(0.22,1,0.36,1);
}
.founder-more:hover { color: #4a8f7b; opacity: 1; transform: translateY(-2px); }
@media (max-width: 900px) {
  .page-head { padding: 120px 24px 20px; }
  .page-section { padding: 28px 24px 48px; }
  .net-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* cursor glow, light theme */
#glow {
  position: fixed;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,191,171,0.16) 0%, rgba(122,191,171,0.05) 45%, transparent 70%);
  pointer-events: none;
  z-index: 5;
  transform: translate(-50%, -50%);
}
@media (hover: none) { #glow { display: none; } }

/* ── WORK CARDS v2 ── */
.work-media {
  position: relative;
  overflow: hidden;
}

.work-chip {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(122,191,171,0.35);
  border: 1px solid rgba(122,191,171,0.6);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 12px;
}

/* ── ROLE TICKER (network) ── */
.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(49,27,66,0.1);
  border-bottom: 1px solid rgba(49,27,66,0.1);
  padding: 16px 0;
  margin: 10px 0 40px;
  mask-image: linear-gradient(to right, transparent 0, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 12%, black 88%, transparent 100%);
}
.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 52s linear infinite;
}
.ticker span {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.4;
  white-space: nowrap;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── PAGE BACKDROPS ── */
body.dotgrid {
  background-image: radial-gradient(rgba(49,27,66,0.09) 1px, transparent 1px);
  background-size: 26px 26px;
}

/* ── FOUNDERS TIMELINE ── */
.timeline {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 52px 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.tl-node { position: relative; padding-top: 18px; }
.tl-node::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: -18px;
  height: 1px;
  background: rgba(49,27,66,0.15);
}
.tl-node:last-child::before { right: 0; }
.tl-node::after {
  content: '';
  position: absolute;
  top: -3.5px; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
}
.tl-year {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
.tl-text {
  font-size: 12.5px;
  color: var(--ink);
  opacity: 0.65;
  line-height: 1.6;
}

/* ── MAISON PAGE ── */
.maison-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 150px 52px 30px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.maison-hero-copy .page-label { margin-bottom: 14px; }
.maison-hero-copy .page-title { margin-bottom: 18px; }
.mock {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(49,27,66,0.22);
  animation: mockFloat 7s ease-in-out infinite alternate;
}
@keyframes mockFloat { from { transform: translateY(0) rotate(-0.4deg); } to { transform: translateY(-14px) rotate(0.4deg); } }
.mock-bar {
  display: flex;
  gap: 6px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(49,27,66,0.08);
}
.mock-bar i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(49,27,66,0.15);
}
.mock-bar i:first-child { background: var(--mint); }
.mock-body {
  display: grid;
  grid-template-columns: 130px 1fr;
  min-height: 320px;
}
.mock-side {
  border-right: 1px solid rgba(49,27,66,0.08);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mock-side i {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: rgba(49,27,66,0.12);
}
.mock-side i:first-child { background: rgba(122,191,171,0.7); width: 70%; }
.mock-side i:nth-child(2) { width: 85%; }
.mock-side i:nth-child(3) { width: 60%; }
.mock-side i:nth-child(4) { width: 75%; }
.mock-main { padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.mock-row { display: flex; gap: 12px; }
.mock-tile {
  flex: 1;
  border: 1px solid rgba(49,27,66,0.08);
  border-radius: 10px;
  padding: 14px;
  background: rgba(255,255,255,0.5);
}
.mock-tile i {
  display: block;
  height: 7px;
  border-radius: 4px;
  background: rgba(49,27,66,0.12);
  margin-bottom: 8px;
}
.mock-tile i:last-child { margin-bottom: 0; width: 55%; }
.mock-tile.approve i:first-child { background: rgba(122,191,171,0.8); width: 40%; }
.mock-progress {
  height: 8px;
  border-radius: 4px;
  background: rgba(49,27,66,0.08);
  overflow: hidden;
}
.mock-progress i {
  display: block;
  height: 100%;
  width: 68%;
  border-radius: 4px;
  background: var(--mint);
  animation: fill 3.2s ease-in-out infinite alternate;
}
@keyframes fill { from { width: 34%; } to { width: 82%; } }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step-card { padding: 30px 28px 32px; }
.step-num {
  font-size: 12px;
  color: var(--mint);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}
.step-card h3 {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 13.5px;
  color: var(--ink);
  opacity: 0.72;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .timeline { grid-template-columns: repeat(2, 1fr); padding: 10px 24px 40px; }
  .maison-hero { grid-template-columns: 1fr; padding: 120px 24px 20px; gap: 36px; }
  .steps { grid-template-columns: 1fr; gap: 14px; }
}

/* ── NETWORK CONSTELLATION ── */
.constellation {
  position: relative;
  aspect-ratio: 1.12;
  max-width: 520px;
  justify-self: end;
  width: 100%;
}
.cn-lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.cn-node {
  position: absolute;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.95);
  box-shadow: 0 10px 26px rgba(49,27,66,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink);
  z-index: 2;
  transform: translate(-50%, -50%);
  cursor: grab;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}
.cn-node:active { cursor: grabbing; }
.cn-node.sm { width: 60px; height: 60px; font-size: 8px; }
.cn-node.lg { width: 86px; height: 86px; font-size: 7.5px; letter-spacing: 0.06em; }
.cn-node.dragging {
  background: rgba(122,191,171,0.6);
  border-color: rgba(122,191,171,0.95);
  box-shadow: 0 0 38px rgba(122,191,171,0.8);
}
.cn-center.dragging { background: rgba(122,191,171,0.5); }
.cn-center {
  width: 96px; height: 96px;
  cursor: grab;
  background: rgba(255,255,255,0.95);
}
.cn-center img { height: 30px; width: auto; }
.cn-ring {
  position: absolute;
  left: 50%; top: 50%;
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 1px solid rgba(122,191,171,0.7);
  transform: translate(-50%, -50%);
  animation: ringOut 3.2s ease-out infinite;
  z-index: 1;
  pointer-events: none;
}
@keyframes ringOut {
  from { width: 96px; height: 96px; opacity: 0.8; }
  to { width: 320px; height: 320px; opacity: 0; }
}

/* ── FILM TIMELINE MOCK ── */
.filmmock { position: relative; }
.film-tracks { padding: 18px; display: flex; flex-direction: column; gap: 10px; position: relative; }
.film-row { display: flex; gap: 8px; height: 34px; }
.film-clip { border-radius: 7px; background: rgba(49,27,66,0.1); }
.film-clip.mint { background: rgba(122,191,171,0.55); }
.film-clip.deep { background: rgba(49,27,66,0.22); }
.playhead {
  position: absolute;
  top: 10px; bottom: 10px;
  width: 2px;
  border-radius: 2px;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(122,191,171,0.9);
  animation: scrub 7s linear infinite;
  z-index: 4;
}
@keyframes scrub { from { left: 4%; } to { left: 96%; } }
.film-time {
  display: flex;
  justify-content: space-between;
  padding: 0 18px 14px;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--ink);
  opacity: 0.4;
}

/* ── MONTH GRID MOCK ── */
.calmock { padding: 22px; }
.cal-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 14px;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.cal-cell {
  aspect-ratio: 1;
  border-radius: 9px;
  background: rgba(49,27,66,0.06);
}
.cal-cell.shoot {
  background: rgba(122,191,171,0.65);
  animation: cellPulse 3s ease-in-out infinite;
}
.cal-cell.post { border: 1.5px solid rgba(122,191,171,0.8); background: rgba(255,255,255,0.6); }
@keyframes cellPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.12); } }
.cal-legend {
  display: flex;
  gap: 22px;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.6;
}
.cal-legend i {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 3px;
  margin-right: 6px;
  vertical-align: -1px;
}
.cal-legend .k-shoot i { background: rgba(122,191,171,0.85); }
.cal-legend .k-post i { border: 1.5px solid rgba(122,191,171,0.9); background: rgba(255,255,255,0.7); }

/* ── FAQ ── */
.faq-card { padding: 10px 32px; }
.faq-card details { border-bottom: 1px solid rgba(49,27,66,0.08); padding: 18px 0; }
.faq-card details:last-child { border-bottom: none; }
.faq-card summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq-card summary::-webkit-details-marker { display: none; }
.faq-card summary::after {
  content: '+';
  font-family: var(--ff);
  font-size: 20px;
  color: var(--mint);
  transition: transform 250ms ease;
}
.faq-card details[open] summary::after { transform: rotate(45deg); }
.faq-card details p {
  padding-top: 10px;
  font-size: 13.5px;
  color: var(--ink);
  opacity: 0.72;
  line-height: 1.7;
  max-width: 560px;
}

.steps.four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .constellation { max-width: 100%; justify-self: stretch; }
  .steps.four { grid-template-columns: 1fr; }
  .faq-card { padding: 6px 22px; }
}

/* ── THE PAPER (founder bio pages) ── */
.paper-wrap { max-width: 1120px; margin: 0 auto; padding: 140px 40px 80px; }
.paper {
  padding: 52px 60px 40px;
  color: var(--ink);
}
.paper-masthead {
  text-align: center;
  font-family: var(--ff-display);
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: 2.5px solid var(--ink);
  padding-bottom: 12px;
}
.paper-dateline {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
  border-bottom: 1px solid rgba(49,27,66,0.25);
  padding: 9px 0;
  margin-bottom: 36px;
}
.paper-headline {
  font-family: var(--ff-display);
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 14px;
}
.paper-byline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 34px;
}
.paper-body-region { min-width: 0; }
.paper-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 44px;
  align-items: start;
}
.paper-figure img {
  width: 100%;
  display: block;
  border: 1px solid rgba(49,27,66,0.15);
}
.paper-figure figcaption {
  font-family: var(--ff);
  font-style: italic;
  font-size: 12.5px;
  opacity: 0.6;
  padding-top: 8px;
  line-height: 1.5;
}
.paper-figure .founder-portrait-placeholder { border: 1px solid rgba(49,27,66,0.15); border-radius: 0; }
.paper-body {
  font-family: var(--ff);
  font-size: 15.5px;
  line-height: 1.85;
  max-width: 34em;
  text-align: left;
  color: var(--ink);
}
.paper-body p { opacity: 0.82; }
.paper-body p { margin-bottom: 14px; }
.paper-body.lead p:first-child::first-letter {
  font-family: var(--ff-display);
  font-size: 52px;
  font-weight: 700;
  float: left;
  line-height: 0.9;
  padding: 3px 9px 0 0;
  color: var(--ink);
}
.pull-quote {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.45;
  text-align: center;
  border-top: 1px solid rgba(49,27,66,0.3);
  border-bottom: 1px solid rgba(49,27,66,0.3);
  padding: 18px 8px;
  margin: 10px auto 22px;
  max-width: 24em;
}
.briefs { margin-top: 44px; border-top: 2.5px solid var(--ink); padding-top: 16px; }
.briefs h2 {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.brief-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.brief { border-top: 1px solid rgba(49,27,66,0.2); padding-top: 10px; }
.brief h3 {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 5px;
}
.brief p {
  font-size: 12.5px;
  line-height: 1.6;
  opacity: 0.72;
}
.paper-foot {
  display: flex;
  justify-content: space-between;
  border-top: 2.5px solid var(--ink);
  margin-top: 44px;
  padding-top: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
}
.paper-nav {
  display: flex;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 40px 0;
}

/* clickable founder cards */
.founder-card.tap { cursor: pointer; }
.founder-card.tap .card-link { position: absolute; inset: 0; z-index: 5; }
@media (max-width: 900px) {
  .paper-wrap { padding: 110px 16px 60px; }
  .paper { padding: 30px 22px 26px; }
  .paper-body-region { min-width: 0; }
.paper-grid { grid-template-columns: 1fr; gap: 28px; }
  .paper-body { column-count: 1; }
  .brief-grid { grid-template-columns: 1fr; gap: 18px; }
  .paper-nav { padding: 18px 16px 0; }
}

/* ── WORK v3 ── */
.feature-card {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  padding: 0;
  margin-bottom: 24px;
}
.feature-card .work-media { height: 100%; }
.feature-card .work-media img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: auto; }
.feature-card .work-info { padding: 40px 44px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.feature-card .work-name { font-size: clamp(24px, 2.6vw, 34px); }
.feature-card .work-line { font-size: 12px; margin-top: 8px; }
.feature-card .work-desc { font-size: 14.5px; margin-top: 14px; max-width: 480px; }
.work-grid.two { grid-template-columns: repeat(2, 1fr); gap: 24px; }
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 26px;
}
.stat-tile { padding: 26px 26px 28px; }
.stat-tile .stat-number { font-size: clamp(26px, 3vw, 38px); display: block; }
.stat-tile .stat-label { display: block; margin-top: 4px; }
@media (max-width: 900px) {
  .feature-card { grid-template-columns: 1fr; }
  .feature-card .work-info { padding: 24px 22px; }
  .work-grid.two { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ── PAPER v3: newspaper structure, URAL skin ── */
body.paper-page { background: var(--bg); }
body.paper-page .paper-wrap { max-width: 1160px; padding: 130px 40px 60px; }
body.paper-page .paper {
  padding: 48px 56px 36px;
  animation: fadeIn 900ms ease both;
}
.paper > * { animation: floatA 9s ease-in-out infinite alternate; }
.paper > *:nth-child(2n) { animation-name: floatB; animation-duration: 12s; animation-delay: 1.4s; }
.paper > *:nth-child(3n) { animation-duration: 10s; animation-delay: 0.6s; }
body.paper-page .paper-body-region { min-width: 0; }
.paper-grid { animation: none; }
.paper-masthead { animation: mastIn 1100ms cubic-bezier(0.16,1,0.3,1) both, floatA 11s 1.4s ease-in-out infinite alternate !important; }
@keyframes floatA {
  from { transform: translateY(0) rotate(0deg); }
  to { transform: translateY(-7px) rotate(0.15deg); }
}
@keyframes floatB {
  from { transform: translateY(0) rotate(0deg); }
  to { transform: translateY(-10px) rotate(-0.18deg); }
}
@keyframes paperFloat {
  from { transform: translateY(0) rotate(-0.12deg); }
  to { transform: translateY(-10px) rotate(0.12deg); }
}
#readbar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--mint);
  z-index: 2000;
}
.paper-masthead { animation: mastIn 1100ms cubic-bezier(0.16,1,0.3,1) both; }
@keyframes mastIn {
  from { letter-spacing: 0.3em; opacity: 0; }
  to { letter-spacing: 0.04em; opacity: 1; }
}
.paper-headline .hw {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}
.paper-headline .hw span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 800ms cubic-bezier(0.16,1,0.3,1);
}
.paper-headline.in .hw span { transform: none; }
.paper-figure { overflow: hidden; }
.paper-figure img {
  opacity: 0;
  transform: scale(1.05) translateY(10px);
  transition: opacity 900ms ease, transform 1100ms cubic-bezier(0.16,1,0.3,1);
  border-radius: 12px;
  border: none;
}
.paper-figure img.in { opacity: 1; transform: none; }


/* ── CLIENT ARTICLES ── */
.article-wrap { max-width: 820px; margin: 0 auto; padding: 140px 28px 40px; }
.article-cat {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(122,191,171,0.35);
  border: 1px solid rgba(122,191,171,0.6);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 18px;
}
.article-title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.04;
  color: var(--ink);
  margin-bottom: 16px;
}
.article-standfirst {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.78;
  margin-bottom: 22px;
}
.article-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.55;
  border-top: 1px solid rgba(49,27,66,0.12);
  border-bottom: 1px solid rgba(49,27,66,0.12);
  padding: 11px 0;
  margin-bottom: 28px;
}
.article-hero { padding: 0; margin-bottom: 34px; }
.article-hero img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.article-body {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--ink);
}
.article-body p { opacity: 0.82; margin-bottom: 16px; }
.article-body h2 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 30px 0 12px;
}
.article-list { padding: 26px 32px; margin: 26px 0; }
.article-list ul { list-style: none; }
.article-list li {
  padding: 9px 0 9px 22px;
  position: relative;
  font-size: 14px;
  opacity: 0.82;
  border-bottom: 1px solid rgba(49,27,66,0.06);
}
.article-list li:last-child { border-bottom: none; }
.article-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
}
.article-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 36px;
  padding-top: 16px;
  border-top: 1px solid rgba(49,27,66,0.12);
}
/* tappable work cards */
.work-card, .feature-card { position: relative; }
.work-card .card-link, .feature-card .card-link { position: absolute; inset: 0; z-index: 5; }

/* ── PAPER AURA: light at the top, greens below, moving ── */
.aura {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.aura::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 44%;
  background: linear-gradient(to bottom, rgba(238,243,242,0.96) 0%, rgba(238,243,242,0.6) 45%, transparent 100%);
  z-index: 2;
}
.aura span {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}
.aura span:nth-child(1) {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(122,191,171,0.7), rgba(122,191,171,0.2) 55%, transparent 72%);
  top: -140px; left: -100px;
  animation: drift1 17s ease-in-out infinite alternate;
}
.aura span:nth-child(2) {
  width: 760px; height: 760px;
  background: radial-gradient(circle, rgba(88,179,147,0.5), rgba(88,179,147,0.15) 55%, transparent 72%);
  top: 24%; right: -200px;
  animation: drift2 21s ease-in-out infinite alternate;
}
.aura span:nth-child(3) {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(88,179,147,0.6), rgba(88,179,147,0.18) 55%, transparent 72%);
  bottom: -160px; left: 26%;
  animation: drift3 15s ease-in-out infinite alternate;
}
.aura span:nth-child(4) {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(49,27,66,0.18), transparent 70%);
  top: 46%; left: 40%;
  animation: drift2 25s ease-in-out infinite alternate-reverse;
}
@keyframes drift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(240px, 180px) scale(1.25); } }
@keyframes drift2 { from { transform: translate(0,0) scale(1.15); } to { transform: translate(-260px, -140px) scale(0.85); } }
@keyframes drift3 { from { transform: translate(0,0) scale(0.9); } to { transform: translate(220px, -200px) scale(1.3); } }

/* interactive service visuals */
.mock { cursor: pointer; }
.filmmock { cursor: ew-resize; }
.filmmock:active { cursor: ew-resize; }
.film-tracks, .film-clip { pointer-events: none; }
.cal-grid .cal-cell { cursor: pointer; transition: transform 200ms ease, background 200ms ease; }
.cal-grid .cal-cell:hover { transform: scale(1.1); }

/* ── HERO PLAY BUTTON (shows only when autoplay is blocked) ── */
#hero-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 6;
  display: block;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease, transform 500ms cubic-bezier(0.22,1,0.36,1);
}
#hero.needs-play #hero-play {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.hp-circle {
  position: relative;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 32% 28%, rgba(122,191,171,0.55), rgba(49,27,66,0.4) 75%);
  border: 1px solid rgba(224,231,231,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 44px rgba(122,191,171,0.4), inset 0 0 18px rgba(255,255,255,0.15);
  transition: box-shadow 350ms ease, transform 400ms cubic-bezier(0.22,1,0.36,1);
}
.hp-circle svg {
  width: 27px; height: 27px;
  color: #e0e7e7;
  transform: translateX(0);
  transition: color 300ms ease;
}
/* pulse ring */
.hp-circle::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,191,171,0.5), transparent 70%);
  animation: playPulse 2.6s ease-out infinite;
}
@keyframes playPulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { opacity: 0; }
}
#hero-play:hover .hp-circle {
  box-shadow: 0 0 60px rgba(122,191,171,0.7), inset 0 0 18px rgba(255,255,255,0.25);
  transform: scale(1.08);
}
.hp-label {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e0e7e7;
  opacity: 0.85;
}

/* ── CLIENT REELS ── */
.reels-block { margin: 30px 0 8px; }
.reels-block h2 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.reel {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(49,27,66,0.16);
}
.reel img, .reel video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(0.22,1,0.36,1);
}
.reel:hover img, .reel:hover video { transform: scale(1.03); }
.reel-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(224,231,231,0.35);
  background: radial-gradient(circle at 32% 28%, rgba(122,191,171,0.65), rgba(49,27,66,0.5) 75%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 30px rgba(122,191,171,0.45), inset 0 0 14px rgba(255,255,255,0.15);
  cursor: pointer;
  z-index: 3;
  transition: opacity 320ms ease, transform 320ms cubic-bezier(0.22,1,0.36,1), box-shadow 320ms ease;
}
.reel-play svg { width: 20px; height: 20px; color: #e0e7e7; }
.reel-play .ic-play { transform: translateX(1px); }
.reel-play .ic-pause { display: none; }
.reel:hover .reel-play { box-shadow: 0 0 44px rgba(122,191,171,0.7), inset 0 0 14px rgba(255,255,255,0.25); transform: translate(-50%, -50%) scale(1.08); }
/* while playing: button fades so the reel shows, returns on hover; icon becomes pause bars */
.reel.playing .reel-play { opacity: 0; }
.reel.playing:hover .reel-play { opacity: 1; }
.reel.playing .reel-play .ic-play { display: none; }
.reel.playing .reel-play .ic-pause { display: block; }
@media (max-width: 620px) { .reel-grid { gap: 10px; } }

/* ── MAISON: floating team workspaces (Maison for your own team) ── */
.teams-stack { position: relative; min-height: 300px; }
.teams-card { position: absolute; left: 50%; top: 50%; }
.tc-a { transform: translate(-50%, -50%) translateX(-56px) rotate(-8deg); z-index: 1; }
.tc-b { transform: translate(-50%, -50%) translateX(56px) rotate(8deg); z-index: 2; }
.tc-c { transform: translate(-50%, -50%) rotate(0deg); z-index: 3; }
.tc-inner {
  width: 210px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: 0 18px 46px rgba(49,27,66,0.16);
  animation: tcFloat 7s ease-in-out infinite alternate;
  will-change: transform;
}
.tc-b .tc-inner { animation-duration: 9s; animation-delay: 0.9s; }
.tc-c .tc-inner { animation-duration: 8s; animation-delay: 0.5s; }
@keyframes tcFloat { from { transform: translateY(0); } to { transform: translateY(-12px); } }
.tc-bar { display: block; height: 8px; width: 46%; border-radius: 4px; margin-bottom: 13px; }
.tc-a .tc-bar { background: rgba(122,191,171,0.85); }
.tc-b .tc-bar { background: rgba(88,179,147,0.85); }
.tc-c .tc-bar { background: rgba(49,27,66,0.5); }
.tc-inner i { display: block; height: 7px; border-radius: 4px; background: rgba(49,27,66,0.1); margin-bottom: 9px; }
.tc-inner i:nth-child(3) { width: 84%; }
.tc-inner i:last-child { width: 58%; margin-bottom: 0; }
@media (max-width: 900px) { .teams-stack { min-height: 260px; margin-top: 10px; } }
