@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@700;800;900&family=Inter:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital@1&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --red:      #E8251A;
  --red-h:    #C41E14;
  --black:    #111111;
  --charcoal: #1A1A1A;
  --grey-mid: #6B6B6B;
  --grey-lt:  #F2F2F2;
  --white:    #FFFFFF;

  --font-display: 'Nunito Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  --ease: ease-in-out;
  --trans: 0.3s ease-in-out;

  --max-w: 1280px;
  --nav-h: 120px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; -webkit-user-drag: none; user-select: none; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
.t-hero {
  font-family: var(--font-display);
  font-size: clamp(72px, 8vw, 400px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.t-h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.t-h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
}
.t-h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.3;
}
.t-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.t-body { font-family: var(--font-body); font-size: 16px; font-weight: 400; line-height: 1.7; }
.t-body-sm { font-family: var(--font-body); font-size: 14px; font-weight: 400; line-height: 1.6; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-charcoal { background: var(--charcoal); color: var(--white); }
.section-light { background: var(--grey-lt); color: var(--black); }
.section-red { background: var(--red); color: var(--white); }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: var(--trans);
}
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-h); transform: translateY(-1px); }
.btn-outline { border: 1.5px solid currentColor; }
.btn-outline-white { border: 1.5px solid var(--white); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--black); }
.btn-lg { padding: 18px 44px; font-size: 16px; }

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: var(--black);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}
.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { position: relative; display: flex; align-items: center; }
.nav-logo img { height: 82px; width: auto; transition: opacity 0.4s var(--ease); }
.nav-logo .logo-dark { position: absolute; top: 50%; left: 0; transform: translateY(-50%); opacity: 0; }
.nav.scrolled .nav-logo .logo-white { opacity: 0; }
.nav.scrolled .nav-logo .logo-dark { opacity: 1; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.85;
  transition: opacity var(--trans);
}
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; border-bottom: 1px solid var(--red); padding-bottom: 2px; }
.nav-cta { margin-left: 24px; }
.nav-links a.btn-white { color: var(--red); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--trans);
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
}
.nav-mobile a:hover { color: var(--red); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: none;
  text-align: left;
}
.hero-eyebrow {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--red);
}
.hero-title { color: var(--white); margin-bottom: 24px; }
.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 16px; }

/* Shared hero background (index + story + any inner page using hero-background.png) */
.hero-bg-standard {
  background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.2)),
              url('../assets/hero-background.png') center/cover no-repeat;
}
.hero-bg-standard .hero-eyebrow { color: rgba(255,255,255,0.75); }
.hero-bg-standard .hero-motif { display: none; }

/* Serif italic emphasis in hero titles (Playfair Display) */
.hero-title .hero-strategy {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

/* Curved SVG motif */
@keyframes blobFloat {
  0%, 100% { transform: translateY(-50%) rotate(0deg) scale(1); }
  33%       { transform: translateY(-53%) rotate(7deg) scale(1.03); }
  66%       { transform: translateY(-47%) rotate(-4deg) scale(0.97); }
}

.hero-motif {
  position: absolute;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  width: 700px; height: 700px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
  animation: blobFloat 20s ease-in-out infinite;
}

/* ─── STAT STRIP ─────────────────────────────────────────── */
.stat-strip {
  background: var(--charcoal);
  padding: 50px 0;
}
.stat-strip-inner {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
}
.stat-item {
  padding: 0 56px;
  text-align: center;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.55); letter-spacing: 0.08em; text-transform: uppercase; }

/* ─── SECTION HEADER ─────────────────────────────────────── */
.section-header { margin-bottom: 64px; }
.section-header-center { text-align: center; }
.section-eyebrow { color: var(--red); margin-bottom: 16px; display: block; }

/* ─── SERVICES GRID ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.service-card {
  position: relative;
  aspect-ratio: 3/5;
  overflow: hidden;
  padding: 0;
  background: var(--charcoal);
}
.service-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-in-out;
  filter: brightness(0.7);
}
.service-card:hover .service-card-img { transform: scale(1.05); filter: brightness(0.88); }
.service-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, transparent 100%);
}
.service-card-content h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.service-card-content p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ─── PROJECT CARDS / GRID ───────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.project-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: var(--charcoal);
}
.project-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.project-card-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(232,37,26,0.9) 0%, transparent 50%);
  opacity: 1;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.project-card:hover .project-card-img { transform: scale(1.04); }
.project-card-info h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.project-card-info span { font-size: 12px; color: rgba(255,255,255,0.7); letter-spacing: 0.1em; text-transform: uppercase; }
.project-card-ghost h3 { color: rgba(255,255,255,0.25); font-family: var(--font-display); font-size: 15px; font-weight: 700; }
.project-card-ghost span { font-size: 11px; color: rgba(255,255,255,0.15); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px; display: block; }

/* ─── ARTIST TILES ───────────────────────────────────────── */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.artist-tile {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: default;
  background: #1c1c1c;
}
.artist-tile-bg {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #1a1a1a, #2d2d2d);
  display: flex;
  align-items: center;
  justify-content: center;
}
.artist-tile-pattern {
  font-size: 72px;
  opacity: 0.08;
}
.artist-tile-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}
.artist-tile-label h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.artist-tile-label span { font-size: 12px; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; text-transform: uppercase; }

/* ─── NEWS CARDS ─────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  transition: box-shadow var(--trans), transform var(--trans);
}
.news-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-3px); }
.news-card-img {
  aspect-ratio: 10/7;
  background: linear-gradient(135deg, #e0e0e0, #f0f0f0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 13px;
  font-weight: 500;
}
.news-card-body { padding: 24px; }
.news-date { font-size: 12px; color: var(--red); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.news-card-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.news-card-body p { font-size: 14px; color: var(--grey-mid); line-height: 1.6; }

/* ─── CLIENT LOGOS WALL ──────────────────────────────────── */
.logos-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.07);
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.logo-cell {
  background: var(--grey-lt);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
  transition: background var(--trans);
}
.logo-cell:hover { background: var(--white); }
.logo-cell span {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #999;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.logo-cell.filled span { color: #444; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-img { height: 90px; margin-bottom: 20px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 280px; }
.footer-chinese {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 700;
  color: var(--red);
  font-family: var(--font-display);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  transition: color var(--trans);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col address {
  font-style: normal;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.25); }

/* ─── MODAL ──────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-card {
  background: var(--white);
  max-width: 400px;
  width: 100%;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease);
}
.modal-overlay.open .modal-card { transform: translateY(0); }
.modal-img { width: 100%; max-height: 600px; object-fit: contain; background: var(--black); }
.modal-body { padding: 36px; }
.modal-eyebrow { color: var(--red); font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 12px; }
.modal-body h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}
.modal-body p { font-size: 15px; color: var(--grey-mid); margin-bottom: 28px; line-height: 1.6; text-overflow: ellipsis; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; text-align: justify;}
.modal-actions { display: flex; gap: 12px; }
.modal-close-x {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--trans);
  z-index: 10;
}
.modal-close-x:hover { background: rgba(255,255,255,0.2); }
.modal-overlay { position: fixed; }

/* ─── PORTFOLIO POPUP ────────────────────────────────────── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 3000;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.popup-overlay.open { opacity: 1; pointer-events: auto; }
.popup-inner {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 24px 80px;
  color: var(--white);
}
.popup-close {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  cursor: pointer;
  transition: color var(--trans);
  padding: 16px 0;
}
.popup-close:hover { color: var(--white); }
.popup-header { margin-bottom: 48px; }
.popup-category { color: var(--red); font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 12px; }
.popup-header h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.popup-header p { font-size: 18px; color: rgba(255,255,255,0.6); max-width: 640px; line-height: 1.7; }

.popup-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 48px;
  overflow-x: auto;
}
.popup-tab {
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--trans);
  white-space: nowrap;
  margin-bottom: -1px;
}
.popup-tab:hover { color: rgba(255,255,255,0.8); }
.popup-tab.active { color: var(--white); border-bottom-color: var(--red); }

.popup-section { display: none; }
.popup-section.active { display: block; }

.popup-img-grid { columns: 2; column-gap: 10px; }
.popup-img-grid .popup-img-full { break-inside: avoid; margin-bottom: 10px; border-radius: 4px; display: block; width: 100%; height: auto; }
.popup-img-full { width: 100%; height: auto; display: block; }
.popup-img-wide { column-span: all; break-inside: avoid; margin-bottom: 10px; border-radius: 4px; display: block; width: 100%; height: auto; }
.popup-img-half { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.popup-video { width: 100%; aspect-ratio: 16/9; border-radius: 2px; }
.popup-video--portrait { aspect-ratio: 9/16; max-height: 560px; width: auto; margin: 0 auto; display: block; }
.popup-caption { margin-top: 16px; font-size: 13px; color: rgba(255,255,255); }

/* ─── STORY PAGE ─────────────────────────────────────────── */

.hero-eyebrow-row {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

/* Quote bridge strip */
.story-bridge {
  background: var(--black);
  border-top: 1px solid var(--red);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.story-bridge-motif {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  width: 100%;
  height: 100%;
}
.story-bridge-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.story-bridge-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
}
.story-bridge-text span { color: var(--red); }

/* Interactive timeline */
.timeline-interactive { max-width: 960px; margin: 0 auto; }
.tl-nodes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 0;
  position: relative;
}
.tl-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
  flex: 1;
  max-width: 240px;
}
.tl-dot {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,0.4);
  transition: all 0.35s var(--ease);
  background: var(--black);
  position: relative;
  z-index: 2;
}
.tl-node:hover .tl-dot {
  border-color: var(--red);
  color: var(--red);
}
.tl-node.active .tl-dot {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 0 0 6px rgba(232,37,26,0.15);
}
.tl-year-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 12px;
  transition: color 0.3s;
}
.tl-node.active .tl-year-label { color: var(--red); }
.tl-connector {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.1);
  position: relative;
  top: -20px;
  max-width: 120px;
  transition: background 0.3s;
}
.tl-panels {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.tl-panel {
  display: none;
  padding: 48px 0 0;
  animation: tlFadeUp 0.4s ease-out both;
}
.tl-panel.active { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: start; }
@keyframes tlFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tl-stamp {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.04em;
  user-select: none;
  min-width: 180px;
  text-align: center;
}
.tl-content h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.tl-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 560px;
}
.tl-content .tl-quote {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-display);
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  border-left: 3px solid var(--red);
  padding-left: 20px;
  margin-bottom: 20px;
}

/* Founders panel — full bleed with overlay */
.founders-panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  width: 100%;
}

/* Journey prose — replaces interactive timeline */
.journey-prose {
  /* max-width: 800px; */
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.journey-prose p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height: 1.75;
}

/* Art form tiles — clickable indicator */
.mq-tile { cursor: pointer; transition: opacity 0.2s, transform 0.2s; }
.mq-tile:hover { opacity: 0.8; transform: translateY(-3px); }

/* ─── STRENGTHS GRID (solution page) ────────────────────────── */
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.strength-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.strength-icon {
  font-size: 28px;
  color: var(--red);
  line-height: 1;
}
.strength-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.strength-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ─── PROCESS GRID (solution page) ──────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin-top: 48px;
  border: 1px solid rgba(255,255,255,0.08);
}
.process-step {
  background: var(--charcoal);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.process-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.1em;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
}
.process-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}
@media (max-width: 1024px) {
  .strengths-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr; }
}
.founders-photo {
  position: absolute;
  inset: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  display: block;
}
.founders-header {
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  z-index: 3;
  text-align: center;
  pointer-events: none;
}
.founders-header .t-label { color: var(--red); display: block; margin-bottom: 12px; }
.founders-header h2 { color: var(--white); }
.founders-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 28%, rgba(17,17,17,0.82) 50%, #111111 100%);
  z-index: 1;
}

/* Profile content overlay */
.founders-content-overlay {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 52px;
  gap: 40px;
}
.founder-profile { display: flex; flex-direction: column; gap: 0; }
.founder-profile + .founder-profile {
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.founder-profile h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.founder-profile .founder-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.founder-profile .founder-bio {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 14px;
}
.founder-badge {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
}
.badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.35);
}

/* Pullquote (philosophy) */
.pullquote {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.pullquote em { font-style: normal; color: var(--red); }

/* Network marquee */
.marquee-wrap {
  overflow: hidden;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.marquee-row {
  overflow: hidden;
  width: 100%;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 12px;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-row--ltr .marquee-track { animation: marquee-ltr 40s linear infinite; }
.marquee-row--rtl .marquee-track { animation: marquee-rtl 40s linear infinite; }
@keyframes marquee-ltr {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-rtl {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none !important; }
}
.mq-tile {
  width: 260px;
  height: 240px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.mq-art {
  font-size: 68px;
  line-height: 1;
  opacity: 0.75;
  user-select: none;
}
.mq-tile-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  z-index: 0;
}
.mq-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

/* mq-tile colour themes */
.mq-tile--1  { background: linear-gradient(135deg, #1a0a0a, #3a1010); }
.mq-tile--2  { background: linear-gradient(135deg, #0d1a0d, #1a2e1a); }
.mq-tile--3  { background: linear-gradient(135deg, #0d0d1a, #1a1a38); }
.mq-tile--4  { background: linear-gradient(135deg, #1a1206, #2e2010); }
.mq-tile--5  { background: linear-gradient(135deg, #1a0d16, #2e1626); }
.mq-tile--6  { background: linear-gradient(135deg, #0a1520, #14253a); }
.mq-tile--7  { background: linear-gradient(135deg, #1a1a1a, #2d2d2d); }
.mq-tile--8  { background: linear-gradient(135deg, #1a1006, #30200e); }
.mq-tile--9  { background: linear-gradient(135deg, #0d1a16, #152e26); }
.mq-tile--10 { background: linear-gradient(135deg, #1a0a12, #2e1020); }

/* CTA banner overrides */
.cta-banner {
  position: relative;
  overflow: hidden;
}
.cta-banner-content {
  position: relative;
  z-index: 2;
}
.cta-banner-motif {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.12;
  animation: flow-drift 30s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes flow-drift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(12px, -8px); }
}
.cta-banner-watermark {
  position: absolute;
  bottom: -10px;
  right: 40px;
  font-family: 'STHeiti Light', 'STHeiti', 'Heiti SC', sans-serif;
  font-size: 180px;
  font-weight: 300;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ─── RESPONSIVE — STORY ─────────────────────────────────── */
@media (max-width: 1024px) {
  .founders-content-overlay { width: 52%; padding: 48px 36px; }
  .tl-panel.active { grid-template-columns: 1fr; }
  .tl-stamp { display: none; }
}
@media (max-width: 768px) {
  /* Founders: stack image above, content below */
  .founders-panel { display: flex; flex-direction: column; min-height: auto; }
  .founders-header { position: static; pointer-events: auto; padding: 48px 24px 32px; text-align: center; }
  .founders-photo { position: static; width: 100%; height: 300px; object-fit: cover; object-position: left top; }
  .founders-gradient { display: none; }
  .founders-content-overlay {
    position: static;
    width: 100%;
    background: var(--charcoal);
    padding: 40px 24px;
    gap: 28px;
  }
  .tl-dot { width: 52px; height: 52px; font-size: 12px; }
  .tl-stamp { display: none; }
  .mq-tile { width: 160px; height: 160px; }
  .mq-art { font-size: 44px; }
  .cta-banner-watermark { font-size: 100px; }
}

/* ─── SOLUTION PAGE ──────────────────────────────────────── */
.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.05);
}
.comp-col {
  padding: 48px 36px;
  text-align: center;
}
.comp-col.highlight { background: var(--red); }
.comp-col:not(.highlight) { background: #1a1a1a; }
.comp-col h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.comp-col .comp-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  text-transform: uppercase;
  font-weight: 600;
}
.comp-col.highlight .comp-sub { color: rgba(255,255,255,0.75); }
.comp-row { padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.comp-row span { font-size: 14px; color: rgba(255,255,255,0.7); }
.comp-row .check { color: rgba(255,255,255,0.9); font-size: 15px; font-weight: 600; }
.comp-row .no { color: rgba(255,255,255,0.2); }
.comp-col.highlight .comp-row { border-top-color: rgba(255,255,255,0.2); }

.steps-container { max-width: 800px; margin: 0 auto; }
.step-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.step-item:last-child { border-bottom: none; }
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  min-width: 80px;
  text-align: right;
  flex-shrink: 0;
}
.step-content h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step-content p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.step-tbc { font-size: 12px; color: var(--red); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 8px; }

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.solution-card {
  background: var(--charcoal);
  padding: 36px 28px;
  border-top: 3px solid transparent;
  transition: border-color var(--trans), transform var(--trans);
}
.solution-card:hover { border-top-color: var(--red); transform: translateY(-4px); }
.solution-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.solution-card p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ─── PORTFOLIO PAGE ─────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-pill {
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all var(--trans);
  border-radius: 2px;
}
.filter-pill:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }
.filter-pill.active { background: var(--red); border-color: var(--red); color: var(--white); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.portfolio-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: var(--charcoal);
}
.portfolio-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.portfolio-card-bg {
  width: 100%; height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.portfolio-card:hover .portfolio-card-img { transform: scale(1.04); }
.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  transition: background var(--trans);
}
.portfolio-card:hover .portfolio-card-overlay { background: linear-gradient(to top, rgba(232,37,26,0.85) 0%, rgba(0,0,0,0.2) 70%); }
.portfolio-card-info .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.portfolio-card-info h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--white); line-height: 1.3; }
.portfolio-card.hidden { display: none; }

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 96px;
  align-items: start;
}
.form-group { margin-bottom: 32px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 12px;
}
.form-input {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color var(--trans);
  border-radius: 2px;
}
.form-input:focus { border-color: var(--red); }
.form-textarea { min-height: 140px; resize: vertical; }
.interest-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.interest-pill {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid rgba(0,0,0,0.12);
  cursor: pointer;
  transition: all var(--trans);
  border-radius: 2px;
  user-select: none;
}
.interest-pill:hover { border-color: var(--red); color: var(--red); }
.interest-pill.selected { background: var(--red); border-color: var(--red); color: var(--white); }

.contact-info { padding: 48px; background: var(--grey-lt); }
.contact-info h3 { font-family: var(--font-display); font-size: 20px; font-weight: 800; margin-bottom: 24px; }
.contact-detail { margin-bottom: 24px; }
.contact-detail-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-mid); margin-bottom: 6px; }
.contact-detail-value { font-size: 15px; color: var(--black); line-height: 1.6; }

/* ─── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: var(--red);
  padding: 96px 0;
  text-align: center;
}
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-banner p { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 40px; }

/* ─── HERO PAGE (minimal) ────────────────────────────────── */
.hero-minimal {
  background: var(--black);
  color: var(--white);
  padding: calc(var(--nav-h) + 80px) 0 80px;
}
.hero-minimal h1 { color: var(--white); margin-bottom: 16px; }
.hero-minimal p { font-size: 18px; color: rgba(255,255,255,0.5); max-width: 480px; }

/* ─── TEAM: flip cards ───────────────────────────────────── */
.team-section-header {
  text-align: center;
  margin-bottom: 40px;
}
.team-section-header .t-label { color: var(--red); display: block; margin-bottom: 16px; }
.team-section-header h2 { color: var(--white); }

/* Touch-only: explain interaction */
.team-tap-strip {
  display: none;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: -8px auto 40px;
  max-width: 420px;
  line-height: 1.5;
}
@media (hover: none) {
  .team-tap-strip { display: block; }
  .flip-card { cursor: pointer; }
}

.team-partner-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
  padding: 0 8px;
}

.team-grid-header {
  text-align: center;
  margin-bottom: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.team-grid-header h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.team-flip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: stretch;
}

.flip-card {
  perspective: 1200px;
  width: 100%;
  cursor: default;
  outline: none;
}
.flip-card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}
/* Partner card: wider footprint, shorter (landscape) than team portrait cards */
.flip-card--partner {
  max-width: 560px;
  width: min(100%, 560px);
}
.flip-card--partner .flip-inner {
  aspect-ratio: 4 / 3;
}
.flip-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4, 0.2, 0.2, 1);
}
@media (hover: hover) {
  .flip-card:hover .flip-inner { transform: rotateY(180deg); }
}
.flip-card.is-flipped .flip-inner { transform: rotateY(180deg); }

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.flip-front {
  background: #1a1a1a;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.flip-front::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 42%, transparent 62%);
  pointer-events: none;
  z-index: 1;
}
.flip-back {
  transform: rotateY(180deg);
  background: var(--red);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.flip-back.flip-back--partner {
  display: flex;
  flex-direction: row;
}
.flip-partner-bio {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
  overflow-y: auto;
  margin: 0;
  padding: 20px 18px;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  border-right: 1px solid rgba(255,255,255,0.15);
}
.flip-back.flip-back--partner .flip-motif {
  z-index: 0;
  opacity: 0.1;
}
.flip-contact.flip-contact--partner {
  flex: 0 0 190px;
  width: 190px;
  height: auto;
  justify-content: center;
  padding: 20px 16px;
  gap: 12px;
  background: rgba(0,0,0,0.14);
  z-index: 2;
}

.flip-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.flip-photo--emily { background-image: url('../assets/a2g-partner.jpg'); background-position: 18% center; }
.flip-photo--kiwi { background-position: 12% center; }
.flip-photo--aries { background-position: 50% center; }
.flip-photo--sam { background-position: 88% center; }

.flip-photo--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 800;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.06em;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}

.flip-partner-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.55);
  padding: 4px 10px;
  background: rgba(0,0,0,0.68);
  text-shadow: 0 1px 2px rgba(0,0,0,0.85);
}

.flip-hint {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,0.5);
  padding: 6px 10px;
  border-radius: 4px;
  transition: opacity 0.35s ease;
}
@media (hover: none) {
  .flip-hint { display: inline-block; }
}
.flip-card.hint-dismissed .flip-hint {
  opacity: 0;
  pointer-events: none;
}

.flip-nameplate {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 14px 18px;
  z-index: 2;
  text-align: left;
}
.flip-nameplate .flip-role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 4px;
}
.flip-nameplate h3 {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 800;
  color: var(--white);
  margin: 0;
  line-height: 1.15;
}
.flip-motif {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.18;
  pointer-events: none;
}

.flip-contact {
  position: relative;
  z-index: 1;
  padding: 20px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  text-align: left;
}
.flip-contact h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 2px;
}
.flip-contact .flip-role-back {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin: 0 0 8px;
}
.flip-contact a {
  display: block;
  font-size: 13px;
  color: var(--white);
  text-decoration: none;
  line-height: 1.35;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.flip-contact a:hover,
.flip-contact a:focus-visible {
  border-bottom-color: var(--white);
}
.flip-contact .flip-link-k {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 2px;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .team-flip-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .artists-grid { grid-template-columns: repeat(3, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .solutions-grid { grid-template-columns: repeat(3, 1fr); }
  .logos-wall { grid-template-columns: repeat(4, 1fr); }
  .story-origin { grid-template-columns: 1fr; gap: 48px; }
  .comparison-table { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .team-flip-grid { grid-template-columns: repeat(2, 1fr); }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .artists-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .logos-wall { grid-template-columns: repeat(3, 1fr); }
  .logo-cell { padding: 16px 8px; }
  .logo-cell span { font-size: 11px; letter-spacing: 0.02em; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .founders-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-strip-inner { flex-wrap: wrap; }
  .stat-item { border-right: none; padding: 20px 40px; width: 50%; }
  .popup-img-grid { columns: 1; }
  .popup-inner { margin: 20px auto; }
  .modal-card { margin: 0 16px; }
  #modalCloseBtnSecondary { display: none; }
  .hero-sub { font-size: 16px; }

  /* Partner card: hide bio on mobile, contact fills full card back */
  .flip-partner-bio { display: none; }
  .flip-contact.flip-contact--partner {
    flex: 1 1 auto;
    width: auto;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ─── SOLUTION PAGE v2 ───────────────────────────────────────── */

/* Hero two-column layout */
.hero--solution {
  background: linear-gradient(150deg, #0c0c0c 0%, #170d0c 55%, #1c1111 100%);
  min-height: 65vh;
}
.hero--solution::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(232,37,26,0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-left {
  position: relative; z-index: 2;
  padding: 80px 56px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-right {
  position: relative; height: 100%; min-height: 90vh; overflow: hidden;
}
.hero-img-main {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}
.hero-img-overlay {
  position: absolute; bottom: 60px; left: -40px;
  width: 280px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  border: 3px solid rgba(255,255,255,0.08);
  z-index: 3;
}
.hero-stat-pill {
  position: absolute; top: 80px; right: 40px;
  background: var(--red);
  color: var(--white);
  padding: 20px 28px;
  z-index: 4;
  text-align: center;
}
.hero-stat-pill .num {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 800; line-height: 1;
  display: block;
}
.hero-stat-pill .lbl {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  opacity: 0.9; margin-top: 6px; display: block;
}
/* Hero right motif (diagonal grid) */
.hero-right-motif {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 2; opacity: 0.22;
}

/* Callout strip */
.callout-strip {
  background: var(--red);
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}
.callout-strip-inner {
  display: flex; align-items: center; gap: 48px;
  white-space: nowrap;
}
.callout-strip-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.callout-strip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

/* Comparison (scoped to avoid conflict with .comparison-table) */
.comparison-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
}
.comparison-wrap .comp-col {
  padding: 40px 36px;
  border-right: 1px solid rgba(255,255,255,0.08);
  background: #1a1a1a;
  text-align: left;
}
.comparison-wrap .comp-col:last-child { border-right: none; }
.comparison-wrap .comp-col.highlight {
  background: linear-gradient(160deg, rgba(232,37,26,0.18) 0%, rgba(232,37,26,0.06) 100%);
  border-right: 1px solid rgba(232,37,26,0.2);
  border-left: 1px solid rgba(232,37,26,0.2);
}
.comparison-wrap .comp-col h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  margin-bottom: 6px; color: var(--white);
}
.comparison-wrap .comp-col.highlight h3 { color: var(--red); }
.comparison-wrap .comp-logo {
  display: block;
  height: 38px; width: auto;
  margin-bottom: 8px;
}
.comparison-wrap .comp-sub {
  font-size: 11px; color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 24px; font-weight: 600;
  display: block;
}
.comparison-wrap .comp-divider {
  height: 1px; background: rgba(255,255,255,0.08);
  margin-bottom: 20px;
}
.comparison-wrap .comp-row {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 12px; font-size: 14px;
  color: rgba(255,255,255,0.75); line-height: 1.5;
}
.comparison-wrap .comp-row .check { color: var(--red); font-weight: 800; font-size: 15px; min-width: 16px; flex-shrink: 0; }
.comparison-wrap .comp-row .no { color: rgba(255,255,255,0.2); font-weight: 800; font-size: 15px; min-width: 16px; flex-shrink: 0; }
.comparison-wrap .comp-col.highlight .comp-row { color: rgba(255,255,255,0.9); }

/* Scroll steps */
.steps-section {
  background: var(--charcoal);
  position: relative;
}
.steps-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  align-items: start;
}
.steps-sticky {
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  display: flex; flex-direction: column; justify-content: center;
  padding: 48px 48px 48px 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.steps-sticky-eyebrow {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 20px; display: block;
}
.steps-sticky-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800; line-height: 1.1;
  color: var(--white);
  margin-bottom: 32px;
}
.steps-sticky-title em { font-style: normal; color: var(--red); }
.steps-progress-track {
  position: relative;
  display: flex; flex-direction: column;
  isolation: isolate;
}
.steps-progress-line {
  position: absolute;
  left: 16px; top: 26px; bottom: 26px;
  width: 2px; background: rgba(255,255,255,0.1);
  z-index: -1;
}
.steps-progress-fill {
  position: absolute;
  left: 16px; top: 26px;
  width: 2px; background: var(--red);
  transition: height 0.15s linear;
  height: 0%;
  z-index: -1;
}
.step-dot-row {
  display: flex; align-items: center; gap: 16px;
  position: relative; z-index: 1;
  padding: 12px 0; cursor: pointer;
}
.step-dot {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 13px;
  font-weight: 800; color: rgba(255,255,255,0.3);
  transition: all 0.3s var(--ease);
  background: var(--charcoal);
  flex-shrink: 0;
}
.step-dot-row.active .step-dot {
  background: var(--red); border-color: var(--red);
  color: var(--white);
  box-shadow: 0 0 0 5px rgba(232,37,26,0.2);
}
.step-dot-row.done .step-dot {
  background: #2a0d0d; border-color: rgba(232,37,26,0.45);
  color: var(--red);
}
.step-dot-label {
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
  white-space: nowrap;
}
.step-dot-row.active .step-dot-label { color: var(--white); }
.step-dot-row.done .step-dot-label { color: rgba(255,255,255,0.5); }
.steps-panels {
  padding: 80px 0 80px 64px;
  display: flex; flex-direction: column;
}
.step-panel {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 0;
  opacity: 0.25;
  transition: opacity 0.5s var(--ease);
}
.step-panel.active { opacity: 1; }
.step-panel-number {
  font-family: var(--font-display);
  font-size: 120px; font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(232,37,26,0.12);
  margin-bottom: -24px; user-select: none;
  position: relative; z-index: 0;
}
.step-panel-content {
  position: relative; z-index: 1;
}
.step-panel-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(232,37,26,0.15);
  color: var(--red); font-size: 11px;
  font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 20px;
  border-radius: 2px;
}
.step-panel-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800; color: var(--white);
  margin-bottom: 20px; line-height: 1.15;
}
.step-panel-body {
  font-size: 17px; color: rgba(255,255,255,0.65);
  line-height: 1.75; max-width: 520px;
  margin-bottom: 32px;
}
.step-panel-visual {
  margin-top: 40px;
  border-radius: 4px; overflow: hidden;
  max-width: 560px;
}
.step-panel-visual img {
  width: 100%; display: block;
  transition: transform 0.6s var(--ease);
}
.step-panel:hover .step-panel-visual img { transform: scale(1.02); }
.step-panel-visual-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.08));
  display: flex; align-items: center; justify-content: center;
  border: 1px dashed rgba(255,255,255,0.1);
}
.step-panel-visual-placeholder span {
  font-size: 12px; color: rgba(255,255,255,0.2);
  font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
}
.step-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 0; max-width: 520px;
}
.step-detail {
  padding: 20px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
}
.step-detail h5 {
  font-family: var(--font-display); font-size: 14px;
  font-weight: 700; color: var(--red);
  margin-bottom: 6px;
}
.step-detail p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* Services bento */
.services-section {
  background: var(--black);
  padding: 104px 0;
}
.services-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.svc-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 6px;
  padding: 36px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: all 0.4s var(--ease);
  overflow: hidden;
  position: relative;
  min-height: 240px;
}
.svc-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(232,37,26,0.35);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(232,37,26,0.12);
}
.svc-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(232,37,26,0.08) 100%);
  pointer-events: none;
  transition: opacity 0.4s;
  opacity: 0;
}
.svc-card:hover::before { opacity: 1; }
.svc-card-num {
  position: absolute; top: 28px; right: 28px;
  font-family: var(--font-display); font-size: 64px;
  font-weight: 900; color: rgba(255,255,255,0.04);
  line-height: 1; user-select: none;
}
.svc-card h3 {
  font-family: var(--font-display); font-size: 20px;
  font-weight: 800; color: var(--white); margin-bottom: 10px;
}
.svc-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.65; }
.svc-card-tag {
  display: inline-block; margin-bottom: 16px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red);
  padding: 3px 10px; background: rgba(232,37,26,0.12);
  border-radius: 2px; width: fit-content;
}
.svc-1 { grid-column: span 5; }
.svc-2 { grid-column: span 7; }
.svc-3 { grid-column: span 4; }
.svc-4 { grid-column: span 4; }
.svc-5 { grid-column: span 4; }
.svc-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.2;
  transition: opacity 0.4s;
}
.svc-card:hover .svc-img { opacity: 0.35; }

/* CTA button group + white button */
.cta-btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--red); font-weight: 700; }
.btn-white:hover { background: var(--black); color: var(--white); transform: translateY(-1px); }

/* ─── RESPONSIVE — SOLUTION v2 ───────────────────────────────── */
@media (max-width: 1024px) {
  .comparison-wrap { grid-template-columns: 1fr; }
  .comparison-wrap .comp-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .comparison-wrap .comp-col:last-child { border-bottom: none; }
  .services-bento { grid-template-columns: repeat(2, 1fr); }
  .svc-1, .svc-2, .svc-3, .svc-4, .svc-5 { grid-column: span 1; }
}
@media (max-width: 900px) {
  .hero--solution { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { padding: 60px 24px; }
  .steps-inner { grid-template-columns: 1fr; padding: 0 24px; }
  .steps-sticky { position: static; height: auto; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 48px 0 32px; }
  .steps-panels { padding: 40px 0; }
  .step-panel { min-height: auto; padding: 48px 0; }
  .step-detail-grid { grid-template-columns: 1fr; }
  .services-bento { grid-template-columns: 1fr; }
}
