:root{
  --bg:#0b0b0f;
  --surface:#111117;
  --surface-2:#151520;
  --text:#ffffff;
  --muted:rgba(255,255,255,.72);
  --border:rgba(255,255,255,.10);

  --accent:#e1061b;   /* red */
  --accent-2:#ff3a4c; /* brighter red */
  --shadow: 0 18px 45px rgba(0,0,0,.35);

  --radius:18px;
  --max:1100px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth; font-size:18px;}
body{
  margin:0;
  font-family: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
  background: #0b0b0f;
  color:var(--text);
  line-height:1.55;
}


/* ===== TYPOGRAPHY: Cormorant Garamond for headings ===== */
h1, h2, h3, h4, h5, h6,
.hero-title, .section-title, .about-headline,
.subs-text h3, .subs-item h3, .pl-card h3,
.cta720 h2, .ml-pillar-text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,11,15,.70);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 0;
  height: 72px;
}
.brand{
  display:flex; align-items:baseline; gap:10px;
  font-weight:800; letter-spacing:.3px;
}
.brand-mark{
  display:inline-flex; align-items:center; justify-content:center;
  width:46px; height:34px;
  border-radius:12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: var(--shadow);
}
.brand-name{font-weight:700; opacity:.95}

.nav{display:flex; align-items:center; gap:18px}
.nav a{opacity:.86}
.nav a:hover{opacity:1}
.nav a.active{opacity:1; position:relative}
.nav a.active::after{
  content:""; position:absolute; left:0; bottom:-8px; width:100%; height:2px;
  background: var(--accent);
  border-radius:999px;
}

.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background:transparent;
  color:var(--text);
  border-radius:12px;
  padding:10px 12px;
}

/* ===== GTM-like HERO BAND (720 colors) ===== */
.hero{ padding: 56px 0 30px; }

.hero-band{
  position: relative;
  text-align: center;
  isolation: isolate;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero .container{
  max-width: 1400px;
}


/* The big blended panel */
.hero-band-bg{
  position:absolute;
  inset: 0;
  z-index: -2;
  background: #060606;
}

/* Breathing red pulse on top of black */
.hero-band-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 65% at 50% 46%,
    rgba(225, 6, 27, 0.62) 0%,
    rgba(225, 6, 27, 0.18) 40%,
    transparent 70%
  );
  animation: heroBreath 3.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroBreath {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.12); }
}

/* Side fade/vignette like GTM edges */
.hero-band-vignette{
  position:absolute;
  inset: 0;
  z-index: -1;
  pointer-events:none;

  background:
    /* darker edges */
    radial-gradient(900px 480px at -10% 50%, rgba(0,0,0,.72), transparent 55%),
    radial-gradient(900px 480px at 110% 50%, rgba(0,0,0,.72), transparent 55%),
    /* soft top/bottom fade */
    linear-gradient(to bottom, rgba(0,0,0,.55), transparent 22%, transparent 78%, rgba(0,0,0,.65));
}

/* Keep your hero layout the same, just improve spacing/contrast */
.hero-grid{
  display:flex;
  align-items:flex-start;
}
.hero-grid > div{
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;  
}


.kicker{
  display:inline-block;
  color: rgba(255,255,255,.90);
  border:1px solid rgba(255,255,255,.16);
  padding:8px 12px;
  border-radius:999px;
  background: rgba(0,0,0,.18);
  margin:0 0 14px;
}

h1{
  font-size: clamp(38px, 4.2vw, 60px);
  line-height:1.02;
  margin:0 0 12px;
}

.lead{
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  margin:0 0 18px;
  max-width: none;
}

/* Slightly “panel-ish” cards like GTM sections */
.hero-card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(10,10,14,.35);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  overflow:hidden;
}

/* Optional: make the hero card look more like a floating window */
.hero-card-top{
  display:flex; gap:8px; padding:14px;
  border-bottom:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}

.dot{ width:10px; height:10px; border-radius:999px; background: rgba(255,255,255,.22); }

/* Responsive */
@media (max-width: 900px){
  .hero-band{ padding: 58px 0 36px; }
  .hero-grid{ grid-template-columns: 1fr; }
}


/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  font-weight:650;
  transition: transform .08s ease, opacity .2s ease;
  white-space:nowrap;
}
.btn:active{transform: translateY(1px)}
.btn-primary{
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
}
.btn-ghost{background: transparent}
.btn:hover{opacity:.96}

/* Hero */
.hero{padding:56px 0 30px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.3fr .9fr;
  gap:26px;
  align-items:stretch;
}
.kicker{
  display:inline-block;
  color: rgba(255,255,255,.86);
  border:1px solid var(--border);
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.03);
  margin:0 0 12px;
}
h1{font-size: clamp(34px, 4vw, 54px); line-height:1.05; margin:0 0 12px}
.lead{font-size: 1.05rem; color: var(--muted); margin:0 0 18px; max-width: 60ch}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin: 0 0 16px}

.trust-row{display:flex; gap:10px; flex-wrap:wrap}
.pill{
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  padding:8px 10px;
  border-radius:999px;
  color: rgba(255,255,255,.84);
  font-size:.9rem;
}


/* Cards & sections */
.section{padding:44px 0}
.section-alt{
  background: rgba(255,255,255,.02);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section-head{margin-bottom:16px}
.section-head h2{margin:0 0 8px; font-size:1.9rem}
.section-foot{margin-top:16px}

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

.card{
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  padding:18px;
  box-shadow: 0 6px 22px rgba(0,0,0,.18);
}
.card h3{margin:0 0 6px}
.muted{color: var(--muted)}
.small{font-size:.92rem}

.hero-card{
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-card-top{
  display:flex; gap:8px; padding:14px;
  border-bottom:1px solid var(--border);
  background: rgba(255,255,255,.03);
}
.dot{width:10px; height:10px; border-radius:999px; background: rgba(255,255,255,.2)}
.hero-card-body{padding:18px}
.quote{font-size:1.1rem; margin: 8px 0}
.text-link:hover{text-decoration: underline}

.checklist{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.checklist li{
  padding-left:28px;
  position:relative;
  color: rgba(255,255,255,.86);
}
.checklist li::before{
  content:"✓";
  position:absolute; left:0; top:0;
  color: var(--accent-2);
  font-weight:800;
}

.spacer{height:14px}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  align-items:start;
}
.form .form-row{display:grid; gap:6px; margin-bottom:12px}
label{font-size:.92rem; color: rgba(255,255,255,.86)}
input, textarea{
  width:100%;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.22);
  color: var(--text);
  padding:12px 12px;
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(225,6,27,.75);
  box-shadow: 0 0 0 4px rgba(225,6,27,.16);
}
.form-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:6px}

.contact-items{display:grid; gap:12px; margin-top:12px}
.contact-item{
  display:flex; justify-content:space-between; gap:14px;
  border-bottom:1px dashed rgba(255,255,255,.12);
  padding-bottom:10px
}
.contact-item .label{color: rgba(255,255,255,.62)}
.divider{height:1px; background: rgba(255,255,255,.10); margin:14px 0}

/* Footer */
.site-footer{
  padding:26px 0;
  border-top:1px solid var(--border);
  background: rgba(11,11,15,.65);
}
.footer-inner{display:flex; justify-content:space-between; align-items:flex-start; gap:16px; flex-wrap:wrap}
.footer-links{display:flex; gap:14px; opacity:.85}
.footer-links a:hover{opacity:1}

/* Responsive */
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .nav{display:none}
  .nav-toggle{display:inline-flex}
  .nav.open{
    display:flex;
    flex-direction:column;
    position:absolute;
    right:20px;
    top:70px;
    background: rgba(11,11,15,.95);
    border:1px solid var(--border);
    border-radius:16px;
    padding:12px;
    min-width: 220px;
  }
}

.cta-row{
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.center-hero {
  display: flex;
  justify-content: center;
}


.lead {
  text-align: center;
}
.work-slider-section {
  padding: 64px 0;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}
.capabilities-title {
  font-weight: 700;            /* stronger presence */
  letter-spacing: -0.02em;     /* tighter, more premium */
  position: relative;
  display: inline-block;
}
.capabilities-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 14px;
  background: #e11d2e;
  box-shadow: 0 0 8px rgba(225, 29, 46, 0.5);
}

.section-subtitle {
  font-size: 1rem;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.work-slider { 
  position: relative; 
}

.work-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
}

.work-prev { left: -22px; }
.work-next { right: -22px; }

.work-track {
  display: flex;
  gap: 18px;

  overflow-x: auto;          /* allow horizontal scrolling */
  overflow-y: hidden;

  scroll-behavior: smooth;

  scroll-snap-type: x mandatory;   /* optional but recommended */

  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* old Edge / IE */
}

.work-track::-webkit-scrollbar {
  display: none;              /* Chrome / Safari */
}



.work-card {
  min-width: 320px;
  flex: 0 0 320px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0,0,0,0.35);
}

.work-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;

  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);

  color: #ffffff;
}

.work-icon .icon {
  width: 32px;
  height: 32px;
}


.work-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.work-card p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

/* Responsive: show 1 card at a time on small screens */
@media (max-width: 900px) {
  .work-card {
    min-width: 85%;
    flex-basis: 85%;
  }
}

.work-prev,
.work-next {
  display: none;
}

.subsidiaries {
  min-height: 50vh;            /* half page feel */
  display: flex;
  align-items: center;         /* vertical center */
  justify-content: center;     /* horizontal center */
  text-align: center;
  padding: 80px 20px;
}


.subs-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  margin-top: 28px;
}

.subs-list {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.subs-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  padding: 10px 0;
}

.subs-item h3 {
  font-size: 56px;     /* big editorial title like your screenshot */
  line-height: 1.05;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.subs-item p {
  margin: 0;
  font-size: 18px;
  color: rgba(255,255,255,0.75);
}

.subs-bullet {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 22px;
  background: rgba(255,45,45,0.95); /* 720 red accent */
  box-shadow: 0 0 0 6px rgba(255,45,45,0.12);
  flex: 0 0 auto;
}

.subs-divider {
  height: 1px;
  background: rgba(255,255,255,0.14);
  width: 100%;
}

.subs-visual {
  display: flex;
  justify-content: flex-end;
}

.subs-image-placeholder {
  width: min(420px, 100%);
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

/* Hover: subtle premium lift */
.subs-item:hover h3 {
  opacity: 0.95;
}
.subs-item:hover .subs-bullet {
  box-shadow: 0 0 0 6px rgba(255,45,45,0.18);
}

/* Responsive */
@media (max-width: 1000px) {
  .subs-grid {
    grid-template-columns: 1fr;
  }
  .subs-visual {
    justify-content: flex-start;
  }
  .subs-item h3 {
    font-size: 44px;
  }
}

/* Subsidiary item typography + spacing */
.subs-text h3 {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 750;
  margin: 0 0 10px;
  line-height: 1.05;
}

.subs-text p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* Give each subsidiary item its own “module” feel */
.subs-item {
  display: flex;
  gap: 14px;
  padding: 26px 0;
  text-decoration: none;
  color: inherit;
}

.subs-item + .subs-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}


.product-lines {
  padding: 90px 0 110px;
}

.pl-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pl-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  padding: 26px 22px 22px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.35);
  position: relative;
}

.pl-icon {
  width: 68px;
  height: 68px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;

  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.95);
}

.pl-icon .icon {
  width: 30px;
  height: 30px;
}

.pl-card h3 {
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.pl-card p {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.pl-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: rgba(255,45,45,0.95);
  font-weight: 600;
}

.pl-card:hover {
  border-color: rgba(255,45,45,0.28);
}

.pl-card:hover .pl-icon {
  color: rgba(255,45,45,0.95);
  border-color: rgba(255,45,45,0.35);
}

@media (max-width: 1100px) {
  .pl-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .pl-grid { grid-template-columns: 1fr; }
}
/* Default icon state */
.work-icon {
  color: #fff; /* icon stroke uses currentColor */
  transition: color 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

/* Hover state: when the whole card is hovered */
.work-card:hover .work-icon {
  color: #e11d2e; /* your brand red */
  filter: drop-shadow(0 0 8px rgba(225, 29, 46, 0.6));
  transform: translateY(-2px);
}
.collabs {
  padding: 90px 0;
  background: radial-gradient(900px 400px at 50% 0%, rgba(225, 29, 46, 0.12), transparent 60%);
}

.collabs-inner {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.collabs-header h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.collabs-header p {
  margin: 0;
  opacity: 0.85;
  max-width: 620px;
}

.collabs-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 28px 0 34px;
}

/* Logo wall */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;                     /* ⬅️ spacing between cards */
  justify-items: center;         /* ⬅️ center each logo-chip */
  align-items: center;
  margin: 0 auto;                /* ⬅️ center the whole group */
}


.logo-chip {
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.logo-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 29, 46, 0.55);
  background: rgba(225, 29, 46, 0.08);
}

/* Details box */
.collabs-details {
  border-radius: 22px;
  padding: 26px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.collabs-details h3 {
  margin: 0 0 12px;
  font-size: 18px;
  opacity: 0.9;
}

.collabs-details ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.collabs-details li {
  line-height: 1.6;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 980px) {
  .logo-wall { grid-template-columns: repeat(3, minmax(120px, 1fr)); }
}

@media (max-width: 520px) {
  .logo-wall { grid-template-columns: repeat(2, minmax(120px, 1fr)); }
  .logo-chip { height: 56px; border-radius: 14px; }
}
.logo-img{
  max-height: 28px;
  max-width: 120px;
  opacity: 0.92;
  filter: grayscale(100%);
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.logo-chip:hover .logo-img{
  filter: grayscale(0%);
  opacity: 1;
}
.logo-chip {
  height: 150px;              /* ⬅️ bigger stage */
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}


/* Single logos */
.logo-img {
  max-height: 54px;
  max-width: 170px;
  width: auto;
  opacity: 0.95;
  filter: grayscale(100%);
  transition: 
    filter 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}

.logo-chip:hover .logo-img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.06);
}

/* Dual logo refinement */
.dual-logo .logo-img {
  max-height: 44px;
}
/* Default (BBC, Spotify) */
.logo-img {
  max-height: 62px;
  max-width: 190px;
  width: auto;
}

/* Logos that need presence */
.logo-lg {
  max-height: 90px;           /* 🔥 THIS is the jump */
  max-width: 260px;
}

/* Dual logos (Gondwana + Komplex) */
.dual-logo .logo-lg {
  max-height: 72px;
}
.logo-chip {
  overflow: visible;
}
.logo-chip:hover .logo-img {
  transform: scale(1.08);
}

body {
  background: #07070b;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 50% 30%, rgba(225, 29, 46, 0.28), transparent 60%),
    radial-gradient(700px 420px at 80% 15%, rgba(225, 29, 46, 0.18), transparent 62%);
}

.hero h1 {
  text-shadow:
    0 0 30px rgba(225, 29, 46, 0.25),
    0 0 80px rgba(225, 29, 46, 0.15);
}

@keyframes glowDrift {
  0% { background-position: 50% 30%, 80% 15%; }
  100% { background-position: 48% 32%, 78% 18%; }
}

body::before {
  animation: glowDrift 20s ease-in-out infinite alternate;
}

.btn-primary {
  box-shadow: 0 10px 30px rgba(225, 29, 46, 0.45);
}

.btn-secondary {
  opacity: 0.85;
}

.nav {
  background: rgba(7, 7, 11, 0.55);
  backdrop-filter: blur(12px);
}

.hero {
  padding-bottom: 140px;
}

.section-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.15),
    transparent
  );
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 90px; /* adjust to match your navbar height */
}

.cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
}

@media (max-width: 600px) {
  .cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cta-row .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 16px; /* bigger tap target */
    border-radius: 14px;
  }
}

.hero-subtext {
  text-align: center;
  margin: 18px auto 28px;
  max-width: 520px;
  opacity: 0.85;
  font-size: clamp(14px, 2.5vw, 18px);
  line-height: 1.6;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* Logo size + rotation */
.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  animation: logo-spin 14s linear infinite;
  transform-origin: center;
}

/* Smooth continuous rotation */
@keyframes logo-spin {
  from { transform: rotate(0deg) scale(1.8); }
  to   { transform: rotate(360deg) scale(1.8); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-logo {
    animation: none;
  }
}

.brand:hover .brand-logo {
  animation-play-state: paused;
}

.header-inner {
  min-height: 80px;
}

.brand-logo{
  transform: scale(1.8);       /* try 1.4 – 1.8 */
  transform-origin: center;
}

.header,
.header-inner{
  overflow: visible;
}

.site-footer {
  background: #000;
  padding: 70px 24px 30px;
  color: #fff;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
}

/* Brand / Subscribe */
.footer-brand {
  background: #121212;
  border-radius: 18px;
  padding: 28px;
}

.footer-logo {
  width: 90px;
  height: auto;
  margin-bottom: 16px;
}

.footer-brand h4 {
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 18px;
}

.subscribe-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  margin-bottom: 12px;
}

.subscribe-form button {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #e11d2e; /* 720 red */
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.subscribe-form button:hover {
  background: #ff2f45;
}

/* Columns */
.footer-col h4 {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

/* Contact */
.contact-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-icon {
  color: #e11d2e;
}

.footer-phone {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 18px;
  background: #1a1a1a;
  color: #e11d2e;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.footer-email {
  display: block;
  margin-top: 10px;
  color: #ccc;
  text-decoration: none;
}

.footer-email:hover {
  color: #fff;
}

/* Divider */
.footer-divider {
  margin: 50px auto 20px;
  max-width: 1200px;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #777;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    order: 1;
  }
}


.subsidiaries {
  min-height: 50vh;              /* half-page feel */
  display: flex;
  align-items: center;           /* vertical centering */
  justify-content: center;       /* horizontal centering */
  text-align: center;
  padding: 80px 20px;
}

.subsidiaries .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

.highlight-720 {
  color: #e11d2e; /* your red */
}

.section-subtitle {
  margin-bottom: 18px;     /* space before 720 Music Lab */
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
}

.ecosystem-eyebrow {
  margin-top: 14px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: #e11d2e; /* 720 red */
  position: relative;
  display: inline-block;
  opacity: 0.9;
}

.ecosystem-eyebrow::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 8px;
  background: #e11d2e;
  box-shadow: 0 0 6px rgba(225, 29, 46, 0.4); /* subtle glow */
}

.pl-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.pl-card {
  pointer-events: auto;
}

.pl-card::before,
.pl-card::after {
  pointer-events: none;
}

html {
  scroll-behavior: smooth;
}

#contact {
  scroll-margin-top: 120px;
}

/* About Intro (NEW) */
/* About intro — more dramatic */
.about-intro{
  max-width: 1020px;
  margin: 0 0 40px;
  padding: 28px 26px 18px;
  border-left: 2px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.18);
  border-radius: 18px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}


.about-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  opacity: 0.9;
  margin: 0 0 16px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}

/* tiny red dot like the ecosystem bullets */
.about-kicker::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.95);
  box-shadow: 0 0 18px rgba(220, 38, 38, 0.35);
}


.about-headline{
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 3.2vw, 3.1rem);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.about-lead:last-of-type{
  margin-bottom: 18px;
}

.about-chips{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
}


.about-lead {
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.75;
  opacity: 0.88;
}

/* Optional: tighten the existing subtitle spacing since we added an intro */
.work-slider-section .section-subtitle {
  margin-top: 18px;
}

/* Make the intro feel like a manifesto */
.about-intro {
  margin-top: 60px;
  max-width: 980px;
  margin: 0 0 28px;
  padding: 18px 18px 0;
  border-left: 2px solid rgba(255,255,255,0.12);
}

.about-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  opacity: 0.9;
}

/* Proof chips */
.about-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip{
  font-size: 0.88rem;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  opacity: 0.92;
  backdrop-filter: blur(10px);
}
/* Section spacing divider (luxury breathing space) */
.about-divider{
  margin-top: clamp(48px, 8vw, 90px);  /* the “space” before the whole slider block */
  padding-top: clamp(28px, 5vw, 60px); /* 👈 this pushes the subtitle down INSIDE the slider */
}

/* Slider intro text */
.slider-intro {
  margin-top: 0;
  margin-bottom: 28px;
  max-width: 600px;
  opacity: 0.8;
}

/* Red highlight for key words */
.highlight {
  color: #dc2626; /* your brand red */
  font-weight: 600;
}

/* =========================
   MUSIC LAB PILLARS (dramatic)
   ========================= */

.ml-pillars{
  padding: 70px 0 110px;
}

.ml-pillars-kicker{
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  margin: 0 0 28px;
}

.ml-pillars-list{
  display: grid;
  gap: 26px;
}

.ml-pillar{
  position: relative;
  padding-left: 56px; /* room for the cut-off card */
}

.ml-pillar-text h2{
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.ml-pillar-text p{
  margin: 10px 0 0;
  font-size: 1.05rem;
  opacity: 0.85;
}

.ml-line{
  margin-top: 22px;
  height: 1px;
  width: min(880px, 100%);
  background: linear-gradient(90deg,
    rgba(220,38,38,0.0),
    rgba(220,38,38,0.45),
    rgba(255,255,255,0.10)
  );
  opacity: 0.9;
}

/* The “incomplete card” accent */
.ml-peek{
  position: absolute;
  left: 0;
  top: 10px;
  width: 42px;
  height: 64px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    radial-gradient(120px 80px at 60% 20%, rgba(220,38,38,0.22), transparent 65%),
    rgba(255,255,255,0.04);
  box-shadow: 0 18px 70px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

/* Make it feel “cut off” + more designed */
.ml-peek::before{
  content:"";
  position:absolute;
  left: -14px;
  top: 12px;
  width: 70px;
  height: 70px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  opacity: 0.55;
}

.ml-peek::after{
  content:"";
  position:absolute;
  right: -22px;
  bottom: -22px;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(220,38,38,0.18);
  filter: blur(1px);
  opacity: 0.7;
}

/* Subtle hover: feels premium */
.ml-pillar:hover .ml-peek{
  border-color: rgba(220,38,38,0.35);
}
.ml-pillar:hover .ml-line{
  background: linear-gradient(90deg,
    rgba(220,38,38,0.0),
    rgba(220,38,38,0.65),
    rgba(255,255,255,0.10)
  );
}

/* Scale up Music Lab pillars typography */
.ml-pillars .subs-text h2 {
  font-size: 45px;        /* adjust: 42–48px sweet spot */
  line-height: 1.15;
}

.ml-pillars .subs-text p {
  font-size: 17px;
  margin-top: 8px;
}

/* Space after 720 Tech before Contact section */
.subs-tech {
  margin-bottom: 160px;
}

/* ===== 720 CTA Card ===== */
.cta720 {
  padding: 70px 0;
}

.cta720-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 52px 56px;
  max-width: 1180px;
  margin: 0 auto;

  /* 720 theme background */
  background:
    radial-gradient(900px 400px at 75% 30%, rgba(180, 0, 35, 0.35), transparent 60%),
    radial-gradient(700px 420px at 30% 70%, rgba(255, 0, 60, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(10, 10, 10, 0.96));

  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cta720-content {
  max-width: 650px;
}

.cta720 h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 650;
  color: #fff;
}

.cta720 p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
}

/* Button */
.cta720-btn {
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;

  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.cta720-btn:hover {
  transform: translateY(-50%) scale(1.03);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.cta720-btn:active {
  transform: translateY(-50%) scale(0.99);
}

/* Scribble accents */
.cta720-scribble {
  position: absolute;
  width: 280px;
  height: 120px;
  opacity: 0.22;
  filter: blur(0.2px);
  background:
    repeating-linear-gradient(
      10deg,
      rgba(255, 0, 60, 0.9) 0px,
      rgba(255, 0, 60, 0.9) 10px,
      transparent 10px,
      transparent 22px
    );
  border-radius: 999px;
  pointer-events: none;
}

.cta720-scribble--tl {
  top: -38px;
  left: -30px;
  transform: rotate(-8deg);
}

.cta720-scribble--br {
  bottom: -42px;
  right: -34px;
  transform: rotate(12deg);
}

/* Responsive */
@media (max-width: 900px) {
  .cta720-card {
    padding: 42px 26px;
  }

  .cta720-btn {
    position: static;
    transform: none;
    margin-top: 22px;
  }

  .cta720-btn:hover,
  .cta720-btn:active {
    transform: none;
  }
}
html {
  scroll-behavior: smooth;
}

/* ===== Home services teaser (lighter pl-card variant) ===== */
.services-teaser {
  padding: 90px 0;
}

.services-teaser-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.pl-card--tease {
  display: flex;
  align-items: center;
  gap: 18px;

  padding: 22px 24px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.pl-card--tease:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

/* tighten typography */
.pl-card--tease h3 {
  font-size: 22px;
  margin: 0;
}

.pl-card--tease p {
  font-size: 14.5px;
  margin-top: 6px;
  opacity: 0.75;
}

/* icon slightly smaller */
.pl-card--tease .pl-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

/* CTA */
.services-teaser-cta {
  margin-top: 28px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;

  font-weight: 600;
  text-decoration: none;
  color: #fff;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

section[id] {
  scroll-margin-top: 110px; /* match navbar height */
}

#about h2 {
  margin-bottom: 100px;
}

section[id] { scroll-margin-top: 110px; }



/* ===== HERO: TRUE CENTERED VERSION ===== */
#home .container.hero-grid.center-hero {
  display: grid;
  place-items: center;          /* centers content horizontally + vertically */
  text-align: center;
}

/* Limit width so it feels premium */
#home .container.hero-grid.center-hero > div {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

/* Center all hero text */
#home .kicker,
#home h1,
#home .hero-subtext {
  text-align: center;
}

/* Center CTA buttons */
#home .cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Default (desktop): hide hamburger */
.nav-toggle {
  display: none;
}

/* Mobile: show hamburger + hide desktop links */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav .nav-link,
  .nav .btn {
    display: none;
  }
}

/* Desktop: hide hamburger */
.nav-toggle { display: none; }

/* Mobile menu base */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  /* turn your nav into a slide-down panel */
  .nav {
    position: absolute;
    top: 72px;              /* adjust to your navbar height */
    right: 16px;
    left: 16px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(10,10,12,0.92);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);

    display: none;          /* hidden by default */
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
  }

  /* show menu when header/nav is open */
  .nav.is-open {
    display: flex;
  }

  /* make links look good in the panel */
  .nav .nav-link { display: block; }
  .nav .btn { width: 100%; text-align: center; }
}

@media (max-width: 900px) {
  .nav {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav.is-open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.footer-socials {
  display: flex;
  gap: 18px;              /* more breathing room */
  margin-top: 14px;
}

.footer-socials a {
  width: 48px;            /* ⬅️ bigger click area */
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bdbdbd;
  border-radius: 50%;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-socials svg {
  width: 26px;            /* ⬅️ actual icon size */
  height: 26px;
}

.footer-socials a:hover {
  color: #ff1f3d;         /* 720 red */
  transform: translateY(-3px);
}

/* Mobile hamburger menu */
.nav-toggle {
  width: 36px;
  height: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fff; /* matches your nav text */
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Always hide hamburger by default (desktop) */
.nav-toggle {
  display: none !important;
}

/* Show hamburger only on mobile */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex !important;
  }
}

.brand-name {
  margin-top: 14px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: #e11d2e; /* 720 red */
  position: relative;
  display: block;
  opacity: 0.9;
  width: fit-content;
  margin-bottom: 10px;
}

.brand-name::after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 8px;
  background: #e11d2e;
  box-shadow: 0 0 6px rgba(225, 29, 46, 0.4);
}

.hero-labels{
  display: flex;
  flex-direction: column;
  align-items: center; /* use center if your hero is centered */
  gap: 10px;
}

/* Show line breaks on desktop */
.br-desktop { display: inline; }

/* Hide those line breaks on mobile */
@media (max-width: 600px){
  .br-desktop { display: none; }
}

.hero-title .line{
  display: block;
}



/* ===== MARQUEE STRIP ===== */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  background: rgba(255,255,255,0.015);
  white-space: nowrap;
  user-select: none;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}

.marquee-track span {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 24px;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s ease;
}

.marquee-dot {
  color: #e11d2e !important;
  padding: 0 2px !important;
  font-size: 0.7rem !important;
  letter-spacing: 0 !important;
  opacity: 0.9;
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-strip:hover .marquee-track span:not(.marquee-dot) {
  color: rgba(255,255,255,0.9);
}

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

/* ===== CUSTOM CURSOR ===== */
@media (pointer: fine) {
  body,
  a, button, input, textarea,
  [role="button"] {
    cursor: none !important;
  }

  .cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 7px;
    height: 7px;
    background: #e11d2e;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.15s ease, height 0.15s ease, background 0.15s ease;
    will-change: left, top;
  }

  .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(225, 29, 46, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition:
      width 0.35s ease,
      height 0.35s ease,
      border-color 0.3s ease,
      background 0.3s ease;
    will-change: left, top;
  }

  /* Hovering a link or card — ring expands */
  body.cursor-hover .cursor-ring {
    width: 62px;
    height: 62px;
    border-color: rgba(225, 29, 46, 0.9);
    background: rgba(225, 29, 46, 0.07);
  }

  body.cursor-hover .cursor-dot {
    background: #fff;
    width: 5px;
    height: 5px;
  }

  /* Click — ring contracts sharply */
  body.cursor-click .cursor-ring {
    width: 24px;
    height: 24px;
    background: rgba(225, 29, 46, 0.18);
  }

  body.cursor-click .cursor-dot {
    width: 10px;
    height: 10px;
  }
}

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

/* ===== STATS COUNTER SECTION ===== */
.stats-section {
  padding: 100px 20px;
  background:
    radial-gradient(800px 300px at 50% 50%, rgba(225, 29, 46, 0.07), transparent 65%),
    rgba(255,255,255,0.01);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.stats-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 0 36px;
}

.stat-number-row {
  display: inline-flex;
  align-items: flex-start;
  line-height: 1;
  gap: 3px;
}

.stat-number {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-suffix {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: #e11d2e;
  line-height: 1;
  margin-top: 6px;
}

.stat-label {
  margin: 14px 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 70px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px 0;
  }
  .stat-divider { display: none; }
  .stat-item {
    padding: 0 16px;
  }
}

/* ===== WHY 720° SECTION ===== */
.why720-section {
  padding: 120px 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background:
    radial-gradient(900px 500px at 70% 50%, rgba(225,29,46,0.06), transparent 65%);
}

.why720-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}

.why720-text {
  width: 100%;
}

.why720-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e11d2e;
  margin: 0 0 18px;
  font-weight: 600;
}

.why720-heading {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 24px;
}

.why720-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin: 0 0 14px;
}

.why720-body em {
  color: #fff;
  font-style: normal;
  font-weight: 600;
}

.why720-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

/* SVG */
.why720-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  width: 100%;
}

.why720-svg {
  width: 100%;
  max-width: 380px;
  display: block;
}

/* Faint guide ring */
.circle-track {
  fill: none;
  stroke: rgba(255,255,255,0.07);
  stroke-width: 1.5;
}

/* First rotation — white */
.circle-first {
  fill: none;
  stroke: rgba(255,255,255,0.80);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 1005.3;
  stroke-dashoffset: 1005.3;
  transform-box: fill-box;
  transform-origin: center;
  transform: rotate(-90deg);
}

/* Second rotation — red */
.circle-second {
  fill: none;
  stroke: #e11d2e;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 1005.3;
  stroke-dashoffset: 1005.3;
  transform-box: fill-box;
  transform-origin: center;
  transform: rotate(-90deg);
  filter: drop-shadow(0 0 10px rgba(225,29,46,0.65));
}

/* SVG center text */
.svg-num {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: 64px;
  font-weight: 800;
  fill: rgba(255,255,255,0.92);
}

.svg-num--red {
  fill: #e11d2e;
}

.svg-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  fill: rgba(255,255,255,0.50);
  letter-spacing: 0.06em;
}

/* Responsive */
@media (max-width: 900px) {
  .why720-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .why720-visual {
    order: -1;
  }
  .why720-svg {
    max-width: 280px;
  }
}

/* ===================================
   CIRCULAR SERVICES DIAGRAM
   =================================== */

.sc-section {
  padding: 80px 0 60px;
}

.sc-subtitle {
  text-align: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  margin: 8px 0 60px;
}

/* Two-column layout: circle + detail panel */
.sc-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* ── Circle diagram ── */
.sc-diagram-wrap {
  flex-shrink: 0;
}

.sc-diagram {
  position: relative;
  width: 500px;
  height: 500px;
}

/* SVG connector lines */
.sc-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.sc-line {
  stroke: rgba(255,255,255,0.10);
  stroke-width: 1;
  transition: stroke 0.3s ease, stroke-width 0.3s ease;
}

.sc-line.active {
  stroke: #e11d2e;
  stroke-width: 1.5;
  filter: drop-shadow(0 0 4px rgba(225,29,46,0.5));
}

/* Center logo */
.sc-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 40px rgba(225,29,46,0.12);
}

.sc-center-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

/* Individual service nodes */
.sc-node {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 3;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sc-node-inner {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.sc-node-num {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.sc-node-label {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.3s ease;
  text-align: center;
}

/* Hover: node glows */
.sc-node.active .sc-node-inner,
.sc-node:hover .sc-node-inner {
  background: rgba(225,29,46,0.12);
  border-color: rgba(225,29,46,0.6);
  box-shadow: 0 0 20px rgba(225,29,46,0.3);
  transform: scale(1.12);
}

.sc-node.active .sc-node-num,
.sc-node:hover .sc-node-num {
  color: #e11d2e;
}

.sc-node.active .sc-node-label,
.sc-node:hover .sc-node-label {
  color: rgba(255,255,255,0.9);
}

/* ── Detail panel ── */
.sc-detail {
  width: 300px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-detail-default {
  text-align: center;
}

.sc-hint {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin: 0 0 12px;
}

.sc-hint-arrow {
  font-size: 1.8rem;
  color: rgba(225,29,46,0.4);
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% { opacity: 0.4; transform: translate(0,0); }
  50%       { opacity: 0.9; transform: translate(-4px,-4px); }
}

.sc-detail-content {
  display: none;
}

.sc-detail-num {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e11d2e;
  margin: 0 0 10px;
  font-weight: 600;
}

.sc-detail-name {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.1;
}

.sc-detail-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin: 0 0 28px;
}

.sc-detail-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e11d2e;
  text-decoration: none;
  border-bottom: 1px solid rgba(225,29,46,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s ease, gap 0.2s ease;
}

.sc-detail-cta:hover {
  border-color: #e11d2e;
  gap: 10px;
}

/* Hide the old pl-grid cards section */
.sc-cards-section {
  display: none;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .sc-diagram {
    width: 340px;
    height: 340px;
  }
  .sc-center { width: 72px; height: 72px; }
  .sc-center-logo { width: 46px; height: 46px; }
  .sc-node-inner { width: 50px; height: 50px; }
  .sc-detail { width: 100%; min-height: auto; padding: 24px 0; }
  .sc-layout { gap: 32px; }
}

@media (max-width: 500px) {
  .sc-diagram { width: 280px; height: 280px; }
}

/* ===== FLOATING CTA BUTTON ===== */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9990;

  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;

  background: #e11d2e;
  color: #fff;
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;

  box-shadow:
    0 8px 32px rgba(225,29,46,0.45),
    0 2px 8px rgba(0,0,0,0.3);

  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.25s ease,
    gap 0.25s ease;
}

.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta:hover {
  box-shadow:
    0 12px 40px rgba(225,29,46,0.6),
    0 2px 8px rgba(0,0,0,0.3);
  gap: 14px;
}

.floating-cta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  animation: floatDotPulse 2s ease-in-out infinite;
}

@keyframes floatDotPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.3); }
}

.floating-cta-arrow {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.floating-cta:hover .floating-cta-arrow {
  transform: translateX(3px);
}

@media (max-width: 600px) {
  .floating-cta {
    bottom: 20px;
    right: 20px;
    padding: 12px 18px;
    font-size: 0.82rem;
  }
}

/* ===== PAGE TRANSITION OVERLAY ===== */
.page-overlay {
  position: fixed;
  inset: 0;
  z-index: 99990;
  background: #07070b;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.page-overlay.is-active {
  opacity: 1;
  pointer-events: all;
}

/* ===== MAGNETIC BUTTONS ===== */
.btn-primary,
.btn-secondary,
.floating-cta {
  transition:
    transform 0.18s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.25s ease,
    background 0.2s ease,
    gap 0.25s ease,
    opacity 0.2s ease;
}

/* Stats kicker label */
.stats-kicker {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e11d2e;
  font-weight: 600;
  margin: 0 0 48px;
  opacity: 0.85;
}

/* Wider padding now that it's 3 items */
.stats-inner .stat-item {
  padding: 0 52px;
}

/* ===================================
   3D ROTATING CUBE — Why 720 section
   =================================== */
:root {
  --cube-size: 380px;
  --cube-half: 190px;
}

.cube-scene {
  width: var(--cube-size);
  height: var(--cube-size);
  perspective: 800px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.cube-scene:active { cursor: grabbing; }

.cube-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-12deg) rotateY(0deg);
  will-change: transform;
}

/* ── Faces ── */
.cube-face {
  position: absolute;
  width: var(--cube-size);
  height: var(--cube-size);
  background: rgba(10,10,14,0.92);
  border: 1px solid rgba(255,255,255,0.09);
  border-left: 2px solid #e11d2e;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 28px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.4);
}

.cube-front  { transform: translateZ(var(--cube-half)); }
.cube-back   { transform: rotateY(180deg)  translateZ(var(--cube-half)); }
.cube-right  { transform: rotateY(90deg)   translateZ(var(--cube-half)); }
.cube-left   { transform: rotateY(-90deg)  translateZ(var(--cube-half)); }
.cube-top    { transform: rotateX(90deg)   translateZ(var(--cube-half)); }
.cube-bottom { transform: rotateX(-90deg)  translateZ(var(--cube-half)); }

/* Top face — special styling */
.cube-top {
  background: rgba(225,29,46,0.06);
  border: 1px solid rgba(225,29,46,0.18);
  border-left: 1px solid rgba(225,29,46,0.18);
  align-items: center;
  justify-content: center;
}

.cube-top-text {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(225,29,46,0.75);
  text-align: center;
}

/* Bottom face */
.cube-bottom {
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.04);
  border-left: 1px solid rgba(255,255,255,0.04);
}

/* Face content */
.cube-num {
  display: block;
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #e11d2e;
  margin-bottom: 14px;
}

.cube-title {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 12px;
  color: #fff;
}

.cube-desc {
  font-size: 0.84rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.58);
  margin: 0;
}

/* Hint below cube */
.cube-hint {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.30);
  margin: 0;
  text-align: center;
  align-self: center;
}

/* ── Mobile ── */
@media (max-width: 900px) {
  :root {
    --cube-size: 300px;
    --cube-half: 150px;
  }

  .why720-visual {
    order: -1; /* cube above text on mobile */
  }

  .cube-face {
    padding: 24px 20px;
  }

  .cube-title {
    font-size: 1rem;
  }

  .cube-desc {
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  :root {
    --cube-size: 200px;
    --cube-half: 100px;
  }
}

/* ===== ABOUT SECTION — CYCLING WORD & HIGHLIGHT UNDERLINES ===== */
.cycling-word {
  display: inline-block;
  color: #e11d2e;
  min-width: 120px;
  overflow: hidden;
  transition: opacity 0.2s ease;
}

.hl-word {
  position: relative;
  display: inline;
  white-space: nowrap;
}
.hl-word::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #e11d2e;
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(225, 29, 46, 0.4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.hl-word.is-visible::after {
  transform: scaleX(1);
}

/* ===== HERO CYCLING BACKGROUND WORD ===== */
.hero-word-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.hero-word {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(10rem, 22vw, 22rem);
  font-weight: 700;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  text-stroke: 1px rgba(255, 255, 255, 0.12);
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.hero-word.fade-out {
  opacity: 0;
}

/* Make sure hero content sits above the word */
.hero-grid {
  position: relative;
  z-index: 2;
}

/* ===== HERO PINNED SCROLL SEQUENCE ===== */

/* Brand label — top-left of hero, under navbar logo */
.hero-brand-label {
  position: absolute;
  top: 2.2rem;
  left: 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  z-index: 3;
  animation: labelPulse 3.8s ease-in-out infinite;
}

@keyframes labelPulse {
  0%, 100% { opacity: 0.35; letter-spacing: 0.22em; }
  50%       { opacity: 0.75; letter-spacing: 0.26em; }
}

/* All four words stacked on top of each other */
.hero-word {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  user-select: none;
  will-change: transform, opacity;
}

/* The big Bebas Neue word */
.hw-word {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(7rem, 15vw, 15rem);
  font-weight: 400;
  color: transparent;
  background-image: linear-gradient(
    160deg,
    rgba(210, 20, 38, 0.75) 0%,
    rgba(180, 8, 24, 0.60) 50%,
    rgba(130, 4, 16, 0.50) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
}

/* The small italic companion phrase */
.hw-phrase {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.18em;
  text-transform: lowercase;
}

/* Step counter — top right */
.hero-counter {
  position: absolute;
  top: 2.2rem;
  right: 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.3);
  z-index: 3;
  transition: color 0.3s ease;
}
#heroCounterNum {
  color: rgba(225, 6, 27, 0.7);
  font-weight: 600;
}
.hero-counter-denom {
  color: rgba(255, 255, 255, 0.25);
}

/* Mouse-tracking glow */
.hero-mouse-glow {
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 6, 27, 0.28) 0%, transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  z-index: 0;
  transition: left 0.08s linear, top 0.08s linear;
}

/* Scroll indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
}
.scroll-hint-line {
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.25);
  animation: scrollLineGrow 1.6s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLineGrow {
  0%, 100% { transform: scaleY(1); opacity: 0.25; }
  50% { transform: scaleY(0.4); opacity: 0.6; }
}
.scroll-hint-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ===== STATEMENT SECTION ===== */
.statement-section {
  padding: clamp(6rem, 12vh, 10rem) 0 clamp(5rem, 10vh, 8rem);
  border-bottom: 1px solid var(--border);
}

.statement-kicker {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.6rem;
  opacity: 0.9;
}

.statement-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
}

.statement-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 2.8rem;
  max-width: 480px;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .hero-brand-label { left: 1.2rem; top: 1.5rem; }
  .statement-headline { font-size: clamp(2.6rem, 10vw, 4rem); }
}

/* ===== HERO SCROLL PROGRESS LINE ===== */
.hero-progress-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #e1061b, rgba(225,6,27,0.3));
  transform: scaleX(0);
  transform-origin: left;
  z-index: 4;
  box-shadow: 0 0 10px rgba(225, 6, 27, 0.6), 0 0 24px rgba(225, 6, 27, 0.3);
}

/* ===== WORD-BY-WORD SCROLL REVEAL ===== */
.reveal-word {
  display: inline;
  will-change: opacity;
}

/* ===== WHY 720 — DRAMATIC GHOST NUMBER BULLETS ===== */
.why-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 2rem;
}

.why-bullet {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 5.5rem;
  overflow: visible;
  /* initial opacity/transform handled entirely by GSAP */
}

/* Giant ghost number watermark */
.why-bullet-num {
  position: absolute;
  left: -0.6rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 9vw, 8.5rem);
  line-height: 1;
  color: rgba(225, 6, 27, 0.08);
  user-select: none;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.02em;
}

/* Statement text sits in front of the ghost number */
.why-bullet-text {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-left: 4.5rem;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.01em;
}

/* Thin red left border accent */
.why-bullet::before {
  content: '';
  position: absolute;
  left: 3.8rem;
  top: 20%;
  height: 60%;
  width: 1.5px;
  background: rgba(225, 6, 27, 0.45);
  border-radius: 999px;
  z-index: 1;
}

@media (max-width: 600px) {
  .why-bullet-text { padding-left: 3.5rem; }
  .why-bullet::before { left: 2.8rem; }
}

/* ===== 720 MUSIC LAB — FEATURED SUBSIDIARY BLOCK ===== */
.subs-music-lab {
  display: block;
  padding: 2.8rem 0 3.2rem;
  position: relative;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.4s ease;
  overflow: hidden;
}

.subs-music-lab:hover {
  background: rgba(225, 6, 27, 0.04);
}

/* Big headline */
.subs-ml-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: #ffffff;
  margin: 0;
}

/* Header row: bullet + title */
.subs-ml-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.subs-ml-header .subs-bullet {
  flex-shrink: 0;
}

/* Description */
.subs-ml-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
  margin: 0 0 3.2rem;
}

/* CTA row */
.subs-ml-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.subs-ml-btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  background: #e1061b;
  padding: 0.72rem 2rem;
  border-radius: 999px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(225, 6, 27, 0.3);
}

.subs-music-lab:hover .subs-ml-btn {
  background: #ff1a2e;
  transform: translateX(5px);
  box-shadow: 0 6px 28px rgba(225, 6, 27, 0.5);
}

.subs-ml-arrow {
  font-size: 1.5rem;
  color: rgba(225, 6, 27, 0.65);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}

.subs-music-lab:hover .subs-ml-arrow {
  transform: translateX(10px);
}

/* Animated red underline — drawn on scroll */
.subs-ml-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1.5px;
  width: 100%;
  background: linear-gradient(90deg, #e1061b 0%, rgba(225,6,27,0.15) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.subs-music-lab.line-visible .subs-ml-line {
  transform: scaleX(1);
}



/* ============================================================
   720 MUSIC LAB v2 — Light/Dark Hybrid Redesign
   ============================================================ */

/* ── Shared section label ── */
.ml2-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 20px;
  display: block;
}

/* ===================== HERO ===================== */
.ml2-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.ml2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #060606;
}

.ml2-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 65% at 50% 46%,
    rgba(225, 6, 27, 0.60) 0%,
    rgba(225, 6, 27, 0.16) 42%,
    transparent 70%
  );
  animation: heroBreath 3.8s ease-in-out infinite;
  pointer-events: none;
}

.ml2-hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 480px at -10% 50%, rgba(0,0,0,.75), transparent 55%),
    radial-gradient(900px 480px at 110% 50%, rgba(0,0,0,.75), transparent 55%),
    linear-gradient(to bottom, rgba(0,0,0,.55), transparent 22%, transparent 78%, rgba(0,0,0,.70));
}

.ml2-hero-inner {
  position: relative;
  z-index: 1;
  padding: 0 40px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding-top: 60px;
}

.ml2-hero-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0 0 28px;
  font-family: 'DM Sans', sans-serif;
}

.ml2-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(96px, 14vw, 190px);
  line-height: 0.90;
  margin: 0 0 32px;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.ml2-title-line {
  display: block;
}

.ml2-title-outline {
  -webkit-text-stroke: 2px rgba(255,255,255,0.38);
  color: transparent;
}

.ml2-hero-sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.68);
  margin: 0 0 40px;
  letter-spacing: 0.02em;
}

.ml2-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ml2-btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.80);
  transition: border-color 0.25s ease, color 0.25s ease;
}
.ml2-btn-ghost:hover {
  border-color: rgba(255,255,255,0.55);
  color: #fff;
  opacity: 1;
}

/* Scroll hint */
.ml2-scroll-hint {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.30);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
}

.ml2-scroll-hint-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.30), transparent);
  animation: ml2ScrollPulse 2.2s ease-in-out infinite;
}

@keyframes ml2ScrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); transform-origin: top; }
  50%       { opacity: 0.8; transform: scaleY(1.25); transform-origin: top; }
}

/* ===================== STATEMENT (WHITE) ===================== */
.ml2-statement {
  background: #ffffff;
  color: #0b0b0f;
  padding: 120px 0 100px;
}

.ml2-statement .ml2-label { color: var(--accent); }

.ml2-statement-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #0b0b0f;
  margin: 0 0 44px;
}

.ml2-statement-headline em {
  font-style: italic;
  color: var(--accent);
}

.ml2-statement-body {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  color: rgba(11,11,15,0.60);
  line-height: 1.9;
  max-width: 680px;
}

/* ===================== SERVICES (WHITE) ===================== */
.ml2-services {
  background: #ffffff;
  color: #0b0b0f;
  padding: 0 0 110px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.ml2-services .container { padding-top: 80px; }
.ml2-services .ml2-label { color: var(--accent); }

.ml2-services-list { margin-top: 40px; }

.ml2-svc-item {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: start;
  gap: 44px;
  padding: 52px 0;
  transition: background 0.2s ease;
}

.ml2-svc-item:hover { background: rgba(0,0,0,0.015); }

.ml2-svc-divider {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(0,0,0,0.07);
}

.ml2-svc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 8vw, 108px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,0.10);
  user-select: none;
  letter-spacing: -0.02em;
  padding-top: 6px;
  transition: -webkit-text-stroke 0.35s ease;
}

.ml2-svc-item:hover .ml2-svc-num {
  -webkit-text-stroke: 1px rgba(225,6,27,0.30);
}

.ml2-svc-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  font-weight: 600;
  color: #0b0b0f;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.ml2-svc-body p {
  font-size: 1rem;
  color: rgba(11,11,15,0.58);
  line-height: 1.80;
  max-width: 600px;
  margin: 0;
}

/* ===================== GALLERY (WHITE) ===================== */
.ml2-gallery {
  background: #ffffff;
  color: #0b0b0f;
  padding: 0 0 110px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.ml2-gallery .container { padding-top: 80px; }
.ml2-gallery .ml2-label { color: var(--accent); }

.ml2-gallery-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 300;
  color: #0b0b0f;
  line-height: 1.08;
  margin: 0 0 10px;
  letter-spacing: -0.025em;
}

.ml2-gallery-note {
  font-size: 0.85rem;
  color: rgba(11,11,15,0.35);
  margin: 0 0 52px;
  font-style: italic;
}

/* Editorial 3-col grid, center item spans 2 rows */
.ml2-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 290px;
  gap: 10px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.ml2-gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
}

.ml2-gallery-item--tall {
  grid-row: span 2;
}

.ml2-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ml2-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}

.ml2-gallery-item:hover .ml2-img-placeholder { transform: scale(1.04); }

.ml2-ph--dark    { background: #0f0f14; }
.ml2-ph--mid     { background: #160808; }
.ml2-ph--charcoal{ background: #131318; }
.ml2-ph--deep    { background: #0a0a10; }
.ml2-ph--red     { background: rgba(225,6,27,0.12); border: 1px solid rgba(225,6,27,0.15); }

.ml2-ph-icon {
  font-size: 1.6rem;
  color: rgba(255,255,255,0.12);
}

.ml2-ph-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  font-family: 'DM Sans', sans-serif;
}

/* Caption overlay — slides up on hover */
.ml2-gallery-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 18px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.30) 60%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.ml2-gallery-item:hover .ml2-gallery-meta {
  opacity: 1;
  transform: translateY(0);
}

.ml2-gallery-client-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}

.ml2-gallery-type {
  font-size: 0.68rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-family: 'DM Sans', sans-serif;
}

/* ===================== CLIENTS (WHITE) ===================== */
.ml2-clients {
  background: #ffffff;
  color: #0b0b0f;
  padding: 100px 0 110px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.ml2-clients .ml2-label { color: var(--accent); }

.ml2-clients-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: #0b0b0f;
  margin: 0 0 60px;
  letter-spacing: -0.025em;
}

.ml2-clients-list { display: grid; gap: 0; }

.ml2-client-row {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 36px;
  padding: 28px 0;
  transition: padding-left 0.2s ease, background 0.2s ease;
  border-radius: 6px;
}

.ml2-client-row:hover {
  padding-left: 14px;
  background: rgba(0,0,0,0.02);
}

.ml2-client-rule {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(0,0,0,0.07);
}

.ml2-client-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.ml2-client-logo-img {
  max-height: 30px;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.45;
  transition: filter 0.35s ease, opacity 0.35s ease;
}

.ml2-client-row:hover .ml2-client-logo-img {
  filter: grayscale(0%);
  opacity: 1;
}

.ml2-logo-round {
  border-radius: 50%;
  max-height: 34px;
  max-width: 34px;
}

.ml2-client-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ml2-client-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0b0b0f;
  line-height: 1.1;
}

.ml2-client-context {
  font-size: 0.875rem;
  color: rgba(11,11,15,0.48);
  line-height: 1.5;
  font-family: 'DM Sans', sans-serif;
}

/* ===================== CTA CLOSE (DARK) ===================== */
.ml2-cta {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  isolation: isolate;
}

.ml2-cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #060606;
}

.ml2-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 110% 80% at 50% 100%,
    rgba(225, 6, 27, 0.52) 0%,
    rgba(225, 6, 27, 0.10) 45%,
    transparent 70%
  );
}

.ml2-cta-vignette {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 28%, transparent 72%, rgba(0,0,0,.55));
}

.ml2-cta-inner { max-width: 820px; }

.ml2-cta-kicker {
  font-size: 0.70rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin: 0 0 22px;
  font-family: 'DM Sans', sans-serif;
}

.ml2-cta-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(58px, 11vw, 138px);
  line-height: 0.90;
  margin: 0 0 30px;
  color: #fff;
  letter-spacing: -0.01em;
}

.ml2-cta-line1 { display: block; }

.ml2-cta-line2 {
  display: block;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.48);
  color: transparent;
}

.ml2-cta-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.80;
  margin: 0 0 44px;
  max-width: 560px;
}

.ml2-cta-btn {
  font-size: 1rem;
  padding: 15px 34px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1000px) {
  .ml2-hero-inner { padding: 60px 24px 0; }
  .ml2-statement { padding: 90px 0 70px; }
  .ml2-gallery-grid { grid-auto-rows: 240px; }
}

@media (max-width: 768px) {
  .ml2-hero-title { font-size: clamp(72px, 18vw, 120px); }
  .ml2-statement-headline { font-size: clamp(2.2rem, 8vw, 3.4rem); }
  .ml2-svc-item { grid-template-columns: 70px 1fr; gap: 22px; padding: 38px 0; }
  .ml2-svc-num  { font-size: clamp(46px, 10vw, 70px); }
  .ml2-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 210px;
  }
  .ml2-gallery-item--tall { grid-row: span 1; }
  .ml2-client-row { grid-template-columns: 80px 1fr; gap: 20px; }
  .ml2-cta { padding: 100px 0; }
  .ml2-cta-headline { font-size: clamp(48px, 14vw, 88px); }
}

@media (max-width: 520px) {
  .ml2-hero-inner { padding: 60px 20px 0; }
  .ml2-hero-title { font-size: clamp(64px, 20vw, 96px); }
  .ml2-svc-item { grid-template-columns: 1fr; gap: 6px; }
  .ml2-svc-num  { font-size: 52px; }
  .ml2-gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .ml2-gallery-item--tall { grid-row: span 1; }
  .ml2-client-row { grid-template-columns: 1fr; }
  .ml2-client-logo-wrap { display: none; }
  .ml2-cta { padding: 80px 0; }
}


/* ===================== CLIENTS v2 — Names as hero ===================== */
.ml2-client-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 0;
  cursor: default;
  transition: padding-left 0.25s ease;
  border-radius: 6px;
}

.ml2-client-row:hover {
  padding-left: 10px;
  background: none;
}

.ml2-client-details {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

.ml2-client-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 300;
  color: #0b0b0f;
  line-height: 1.05;
  letter-spacing: -0.02em;
  transition: color 0.25s ease;
}

.ml2-client-row:hover .ml2-client-name {
  color: var(--accent);
}

.ml2-client-context {
  font-size: 0.85rem;
  color: rgba(11,11,15,0.42);
  line-height: 1.5;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.ml2-client-arrow {
  font-size: 1.2rem;
  color: rgba(11,11,15,0.18);
  flex-shrink: 0;
  transition: color 0.25s ease, transform 0.25s ease;
}

.ml2-client-row:hover .ml2-client-arrow {
  color: var(--accent);
  transform: translateX(5px);
}

.ml2-client-rule {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(0,0,0,0.07);
}

/* Remove logo styles — no longer needed in this layout */
.ml2-client-logo-wrap { display: none; }


/* ===================== CLIENTS v3 — Pure logo strip ===================== */
.ml2-clients {
  background: #ffffff;
  color: #0b0b0f;
  padding: 90px 0 110px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.ml2-clients .ml2-label {
  color: var(--accent);
  margin-bottom: 48px;
}

.ml2-logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ml2-logo-chip {
  width: 170px;
  height: 110px;
  background: #0f0f14;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 28px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.28s cubic-bezier(0.25,0.46,0.45,0.94),
              border-color 0.28s ease,
              box-shadow 0.28s ease;
  cursor: default;
}

.ml2-logo-chip:hover {
  transform: translateY(-5px);
  border-color: rgba(225,6,27,0.35);
  box-shadow: 0 12px 36px rgba(0,0,0,0.22),
              0 0 0 1px rgba(225,6,27,0.12);
}

.ml2-logo-chip img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  object-fit: contain;
  /* All logos render as clean white/light on dark chip by default */
  filter: grayscale(1) brightness(2.2);
  opacity: 0.65;
  transition: filter 0.35s ease, opacity 0.35s ease;
}

.ml2-logo-chip:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

/* Entrance animation via GSAP — stagger in */
.ml2-logo-chip {
  will-change: transform, opacity;
}

@media (max-width: 768px) {
  .ml2-logo-strip { gap: 14px; }
  .ml2-logo-chip  { width: 140px; height: 90px; padding: 20px 22px; border-radius: 14px; }
  .ml2-logo-chip img { max-height: 40px; }
}

@media (max-width: 480px) {
  .ml2-logo-strip { gap: 12px; }
  .ml2-logo-chip  { width: calc(50% - 6px); height: 84px; }
}


/* ── Logo chip spotlight + tilt support ── */
.ml2-logo-chip {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}

.ml2-chip-spotlight {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1;
}

/* Keep logo image above spotlight */
.ml2-logo-chip img {
  position: relative;
  z-index: 2;
}


/* =====================================================
   HORIZONTAL SCROLL ABOUT — index.html
   ===================================================== */

.about-hscroll-section {
  background: var(--bg, #0b0b0f);
  overflow: hidden;
  position: relative;
}

.about-h-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.about-h-track {
  display: flex;
  width: 400vw;
  will-change: transform;
}

/* ── Base panel ── */
.about-panel {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b0b0f;
  color: #ffffff;
}

/* Small "About Us" label — top-left of every panel */
.about-panel-label {
  position: absolute;
  top: 28px;
  left: 52px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  z-index: 5;
}

/* ── Text content block ── */
.about-panel-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.about-panel--1 .about-panel-content {
  padding: 0 80px;
}

.about-panel--2 .about-panel-content {
  margin-left: clamp(60px, 10vw, 160px);
  padding-right: 40px;
}

.about-panel--3 .about-panel-content {
  margin-left: clamp(60px, 10vw, 160px);
  padding-right: 40px;
}

.about-panel--4 .about-panel-content {
  margin-left: auto;
  margin-right: clamp(60px, 10vw, 160px);
  padding-left: 40px;
}

.about-panel-content--5 {
  margin: 0 auto;
  max-width: 640px;
  text-align: center;
  padding: 0 40px;
}

/* ── Outlined stroke number accent ── */
.about-panel-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(225, 6, 27, 0.28);
  margin-bottom: 20px;
  pointer-events: none;
}

/* ── Panel 1: giant ghost "720" watermark ── */
.about-p1-deco {
  position: absolute;
  bottom: -0.08em;
  right: -0.04em;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(220px, 30vw, 440px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.035);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ── Panel 1: circle graphic — top-right corner ── */
.about-p1-graphic {
  position: absolute;
  top: -18%;
  right: -14%;
  width: clamp(320px, 50vw, 620px);
  height: clamp(320px, 50vw, 620px);
  pointer-events: none;
  z-index: 1;
}

/* ── Panel 1: scroll hint ── */
.about-panel-hint {
  margin-top: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}

.about-hint-line {
  display: block;
  width: 44px;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
  animation: hintPulse 2.4s ease-in-out infinite;
}

@keyframes hintPulse {
  0%, 100% { opacity: 0.4; transform: scaleX(1); }
  50%       { opacity: 1;   transform: scaleX(1.18); }
}

/* ── Panel 1 headline & kicker ── */
.about-panel--1 .about-kicker {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent, #e1061b);
  margin-bottom: 22px;
}

.about-panel--1 .about-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 600;
  line-height: 1.22;
  color: #ffffff;
  max-width: 600px;
  margin: 0;
}

/* cycling-word inherits existing styles — ensure transition */
.cycling-word {
  display: inline-block;
  color: var(--accent, #e1061b);
  transition: opacity 0.2s ease;
}

/* ── Panels 2 & 3: body copy ── */
.about-panel .about-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 400;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

/* ── Graphics: shared ── */
.about-graphic {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

/* Panel 2: concentric red arcs — bottom-right corner */
.about-graphic--arc {
  width: clamp(280px, 44vw, 580px);
  height: clamp(280px, 44vw, 580px);
  bottom: -18%;
  right: -14%;
}

/* Panel 3: Swiss squares — left side */
.about-graphic--shapes {
  width: clamp(180px, 26vw, 360px);
  height: clamp(180px, 26vw, 360px);
  left: 6vw;
  top: 50%;
  transform: translateY(-50%);
}

/* Panel 4: large centred graphic separator */
.about-graphic--shapes-lg {
  width: clamp(260px, 36vw, 520px);
  height: clamp(260px, 36vw, 520px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Ghost "720" watermark on graphic panel */
.about-graphic-deco {
  position: absolute;
  bottom: -0.06em;
  left: -0.04em;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(180px, 26vw, 380px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.03);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Panel 4 chips */
.about-panel--5 .about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}

/* ── Panel 4: decorative dot grid ── */
.about-p4-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(225, 6, 27, 0.20) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

/* ── Panel 4: diagonal slashes ── */
.about-p4-slash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.about-p4-slash::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -2%;
  width: 2px;
  height: 140%;
  background: linear-gradient(to bottom, transparent, rgba(225, 6, 27, 0.60), transparent);
  transform: rotate(-20deg);
  transform-origin: top center;
}
.about-p4-slash::after {
  content: '';
  position: absolute;
  top: -15%;
  right: 9%;
  width: 1px;
  height: 140%;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.07), transparent);
  transform: rotate(-20deg);
  transform-origin: top center;
}

/* ── Panel 4 text ── */
.about-p4-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 600;
  font-style: italic;
  color: #ffffff;
  margin-bottom: 36px;
  line-height: 1.15;
}

.about-panel--5 .about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}

.about-p4-cta {
  justify-content: center;
}

/* ── Mobile: panels stack vertically — no horizontal pin ── */
@media (max-width: 768px) {
  .about-h-track {
    width: 100% !important;
    flex-direction: column;
    transform: none !important;
  }
  .about-panel {
    width: 100% !important;
    height: auto;
    min-height: 100svh;
    padding: 100px 0 80px;
  }
  .about-panel-content {
    padding: 0 28px !important;
    margin: 0 !important;
    max-width: 100% !important;
  }
  .about-p1-deco { display: none; }
  .about-graphic--arc  { width: 200px; height: 200px; bottom: -6%; right: -8%; }
  .about-graphic--shapes {
    width: 120px; height: 120px;
    left: auto; right: 20px; top: 22px;
    transform: none;
  }
  .about-panel--graphic { min-height: 50svh; }
  .about-graphic--shapes-lg {
    width: 220px; height: 220px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }
  .about-panel-label { left: 28px; }
  .about-panel-content--5 { text-align: left; }
  .about-panel--5 .about-chips { justify-content: flex-start; }
  .about-p4-cta { justify-content: flex-start; }
}

@media (max-width: 520px) {
  .about-panel--1 .about-headline { font-size: 26px; }
  .about-p4-tagline { font-size: 28px; }
}


/* =====================================================
   ABOUT LANDING — chips + CTA below the scroll
   ===================================================== */
.about-landing {
  background: #0b0b0f;
  padding: 72px 0 80px;
  text-align: center;
  position: relative;
}

/* Thin red top line — marks the end of the scroll experience */
.about-landing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background: var(--accent, #e1061b);
}

.about-landing-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.about-landing .about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.about-landing-cta {
  justify-content: center;
}

@media (max-width: 520px) {
  .about-landing { padding: 56px 0 64px; }
  .about-landing-inner { padding: 0 24px; }
  .about-landing-cta { flex-direction: column; align-items: stretch; }
}


/* =====================================================
   WORK CARDS — 3D tilt + spotlight + numbered entrance
   ===================================================== */

/* Enable 3D on the track */
.work-track {
  perspective: 1200px;
}

/* Outlined stroke number */
.work-card-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(225, 6, 27, 0.30);
  margin-bottom: 12px;
  pointer-events: none;
  transition: -webkit-text-stroke-color 0.3s ease, color 0.3s ease;
}

.work-card:hover .work-card-num {
  -webkit-text-stroke-color: rgba(225, 6, 27, 0.75);
}

/* Cursor spotlight overlay */
.work-card-spotlight {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.work-card:hover .work-card-spotlight {
  opacity: 1;
}

/* Card needs position relative for spotlight + preserve 3d */
.work-card {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
}

.work-card:hover {
  border-color: rgba(225, 6, 27, 0.35);
  box-shadow: 0 20px 60px rgba(225, 6, 27, 0.08),
              0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Ensure card content sits above spotlight */
.work-card > *:not(.work-card-spotlight) {
  position: relative;
  z-index: 1;
}


/* ===================================================
   SCROLL-PINNED SERVICE STORIES  (.svc-reel)
   =================================================== */

.svc-reel {
  /* No extra padding — chapters are full-viewport each */
}

/* ── Each service chapter ── */
.svc-chapter {
  display: flex;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

/* Alternate: odd = text-left/stage-right, even = stage-left/text-right */
.svc-chapter:nth-child(even) {
  flex-direction: row-reverse;
}

/* ── Text panel (white) ── */
.svc-text {
  width: 40%;
  background: #ffffff;
  color: #0a0a0a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 80px) clamp(32px, 5vw, 72px);
  position: relative;
  z-index: 2;
}

.svc-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7.5vw, 104px);
  line-height: 1;
  color: #e11d2e;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.svc-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(30px, 3.8vw, 54px);
  font-weight: 600;
  line-height: 1.05;
  color: #0a0a0a;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.svc-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(17px, 1.9vw, 24px);
  font-style: italic;
  font-weight: 300;
  color: #3a3a3a;
  line-height: 1.4;
  margin: 0 0 20px;
}

.svc-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13.5px, 1vw, 15.5px);
  color: #555;
  line-height: 1.75;
  margin: 0 0 36px;
  max-width: 360px;
}

.svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a0a0a;
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 1.5px solid #0a0a0a;
  width: fit-content;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.svc-cta:hover {
  color: #e11d2e;
  border-color: #e11d2e;
}

.svc-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.svc-cta:hover .svc-arrow {
  transform: translateX(5px);
}

/* ── Stage panel (dark, images) ── */
.svc-stage {
  width: 60%;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

/* Strip holds all images side-by-side, 3x wide */
.svc-strip {
  display: flex;
  width: 300%;
  height: 100%;
  will-change: transform;
}

/* Each image cell */
.svc-img {
  width: 33.333%;
  height: 100%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--c1, #111) 0%, var(--c2, #1e1e1e) 100%);
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Watermark labels removed */
.svc-img::after { display: none; }

/* Image counter — bottom left of stage */
.svc-counter {
  position: absolute;
  bottom: 22px;
  left: 26px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.08em;
  z-index: 5;
  pointer-events: none;
}

/* Dots — bottom right of stage */
.svc-dots {
  position: absolute;
  bottom: 26px;
  right: 26px;
  display: flex;
  gap: 9px;
  z-index: 5;
}

.svc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  transition: background 0.3s ease, transform 0.3s ease;
  display: block;
}

.svc-dot.is-active {
  background: #e11d2e;
  transform: scale(1.5);
}

/* Red progress bar — bottom edge of stage */
.svc-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #e11d2e;
  width: 0%;
  z-index: 5;
  pointer-events: none;
}

/* ── Mobile: stack vertically, horizontal swipe ── */
@media (max-width: 768px) {
  .svc-chapter,
  .svc-chapter:nth-child(even) {
    flex-direction: column;
    height: auto;
  }

  .svc-text {
    width: 100%;
    padding: 48px 24px 36px;
  }

  .svc-desc {
    max-width: 100%;
  }

  .svc-stage {
    width: 100%;
    height: 72vw;
    min-height: 240px;
    max-height: 400px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .svc-stage::-webkit-scrollbar {
    display: none;
  }

  /* On mobile the strip can be its natural width; stage scrolls */
  .svc-strip {
    width: 300%;
    height: 100%;
  }

  .svc-img {
    scroll-snap-align: start;
  }

  .svc-counter {
    display: none;
  }
}


/* ===================================================
   SVC-REEL: COLUMN LAYOUT OVERRIDES
   (text on top, images below — overrides row defaults)
   =================================================== */

/* Every chapter stacks vertically */
.svc-chapter,
.svc-chapter:nth-child(even) {
  flex-direction: column;
}

/* ── Text band (top, white) ── */
.svc-text {
  width: 100%;
  height: auto;
  min-height: 38vh;
  flex-direction: row;          /* two-column interior */
  align-items: flex-end;
  gap: clamp(32px, 5vw, 80px);
  padding: 48px clamp(32px, 7vw, 100px) 44px;
}

/* Left column: big number + service name */
.svc-lead {
  flex: 0 0 52%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Right column: tagline + desc + CTA */
.svc-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 6px;
}

/* Number — large Bebas, red */
.svc-num {
  font-size: clamp(14px, 1.2vw, 18px);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #e11d2e;
  margin-bottom: 14px;
}

/* Service name — very large, full width advantage */
.svc-name {
  font-size: clamp(48px, 7.5vw, 108px);
  line-height: 0.95;
  margin: 0;
  letter-spacing: -0.03em;
}

/* Tagline */
.svc-tagline {
  font-size: clamp(16px, 1.5vw, 20px);
  margin: 0 0 16px;
  color: #3a3a3a;
}

/* Description */
.svc-desc {
  font-size: clamp(13px, 1vw, 15px);
  color: #555;
  line-height: 1.75;
  margin: 0 0 28px;
  max-width: 400px;
}

/* ── Stage (images, bottom, dark) ── */
.svc-stage {
  width: 100%;
  flex: 1;
  min-height: 0;
}

/* ── Mobile overrides ── */
@media (max-width: 768px) {
  .svc-text {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 40px 24px 32px;
    gap: 0;
  }

  .svc-lead,
  .svc-body {
    width: 100%;
    flex: none;
  }

  .svc-lead { margin-bottom: 20px; }

  .svc-num {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .svc-name {
    font-size: clamp(40px, 11vw, 64px);
  }

  .svc-stage {
    height: 65vw;
    min-height: 220px;
    max-height: 380px;
    flex: none;
  }
}


/* ===================================================
   SERVICES PAGE HERO  (.svc-hero)
   =================================================== */

.svc-hero {
  height: 100vh;
  min-height: 600px;
  background: radial-gradient(ellipse at 28% 55%, #1c1c1c 0%, #0a0a0a 65%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 clamp(32px, 8vw, 120px);
  position: relative;
  overflow: hidden;
}

/* Grain texture overlay */
.svc-hero-grain {
  position: absolute;
  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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.028;
  pointer-events: none;
  z-index: 0;
}

/* Red accent — left edge vertical line */
.svc-hero::before {
  content: '';
  position: absolute;
  left: clamp(32px, 8vw, 120px);
  bottom: 0;
  width: 1px;
  height: 130px;
  background: linear-gradient(to top, transparent, #e11d2e 60%);
  opacity: 0.7;
}

/* Inner content sits above grain */
.svc-hero-inner {
  position: relative;
  z-index: 1;
}

/* Eyebrow label */
.svc-hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #e11d2e;
  margin: 0 0 28px;
}

/* Main headline */
.svc-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(96px, 17vw, 252px);
  line-height: 0.88;
  color: #ffffff;
  margin: 0 0 40px;
  letter-spacing: 0.015em;
  overflow: hidden;
}

/* Subline */
.svc-hero-sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(19px, 2.2vw, 30px);
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  letter-spacing: 0.01em;
}

/* Scroll cue */
.svc-hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
}

.svc-hero-scroll-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

.svc-hero-scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.35), transparent);
  animation: svcScrollPulse 2.2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes svcScrollPulse {
  0%   { opacity: 0.3; transform: scaleY(0.4); }
  50%  { opacity: 0.9; transform: scaleY(1); }
  100% { opacity: 0.3; transform: scaleY(0.4); }
}

/* Mobile */
@media (max-width: 768px) {
  .svc-hero {
    padding: 0 24px;
  }

  .svc-hero-title {
    font-size: clamp(72px, 20vw, 120px);
    margin-bottom: 28px;
  }

  .svc-hero-sub {
    font-size: clamp(17px, 5vw, 22px);
  }
}


/* ===================================================
   SVC-IMG: ROUNDED BOX TREATMENT
   =================================================== */

/* Stage cell — dark bg shows as border/frame around box */
.svc-img {
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 2.5vw, 32px);
}

/* The rounded box — max-width keeps the card proportional, not panoramic */
.svc-img-box {
  width: 100%;
  max-width: clamp(460px, 75vh, 820px);
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 4px 16px rgba(0, 0, 0, 0.35);
}

/* Image fills the box */
.svc-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

/* Subtle zoom on the active (visible) image */
.svc-img-box:hover img {
  transform: scale(1.03);
}

/* Mobile: slightly smaller radius */
@media (max-width: 768px) {
  .svc-img {
    padding: 14px;
  }
  .svc-img-box {
    border-radius: 12px;
  }
}



/* ===================================================
   SVC-CHAPTERS-STRIP: HORIZONTAL SCROLL LAYOUT
   All 6 chapters sit side-by-side, JS scrolls them
   =================================================== */

/* Clip the horizontal overflow */
.svc-reel {
  position: relative;
}

/* Vertical strip — chapters stack top to bottom */
.svc-chapters-strip {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Each chapter: full viewport height, column layout */
.svc-chapter,
.svc-chapter:nth-child(even) {
  width: 100%;
  min-width: 0;
  height: 100vh;
  min-height: 560px;
  flex-shrink: 0;
  flex-direction: column;
  overflow: hidden;
}

/* Text band — compact */
.svc-text {
  width: 100%;
  height: auto;
  padding: 36px clamp(32px, 7vw, 100px) 28px;
  flex-direction: row;
  align-items: flex-end;
  gap: clamp(28px, 5vw, 72px);
}

/* Stage — taller so photos breathe vertically */
.svc-stage {
  width: 100%;
  flex: 0 0 auto;
  height: 62vh;
  min-height: 300px;
  max-height: 560px;
  overflow: hidden;
}

/* Strip — stacked container, images crossfade on top of each other */
.svc-strip {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Each img cell — stacked absolutely, all centred, fade via GSAP */
.svc-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 2.5vw, 30px) clamp(40px, 8vw, 120px);
  opacity: 0;
  pointer-events: none;
}

.svc-img.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* ── Mobile: vertical stack, touch-swipe ── */
@media (max-width: 768px) {
  .svc-chapters-strip {
    flex-direction: column;
    width: 100%;
    transform: none !important;
  }

  .svc-chapter,
  .svc-chapter:nth-child(even) {
    width: 100%;
    min-width: 0;
    height: auto;
    flex-direction: column;
  }

  .svc-text {
    flex-direction: column;
    padding: 40px 24px 28px;
    gap: 0;
  }

  .svc-stage {
    height: 65vw;
    min-height: 220px;
    max-height: 380px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    flex: none;
  }

  .svc-stage::-webkit-scrollbar { display: none; }

  .svc-strip {
    width: 100%;
    height: 100%;
  }

  .svc-img {
    position: absolute;
    inset: 0;
    padding: 14px 24px;
    opacity: 0;
  }

  .svc-img.is-active { opacity: 1; }

  .svc-img-box {
    max-width: 100%;
  }
}


/* ===================== GALLERY CARD — VIEW PROJECT CTA ===================== */
.ml2-gallery-item { cursor: pointer; }

.ml2-card-cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -44%);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  z-index: 3;
  pointer-events: none;
}

.ml2-gallery-item:hover .ml2-card-cta {
  opacity: 1;
  transform: translate(-50%, -50%);
  pointer-events: all;
}


/* ===================== PROJECT MODAL OVERLAY ===================== */
.ml2-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: rgba(8,8,12,0.0);
}

.ml2-modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
  background: rgba(8,8,12,0.75);
}

.ml2-modal-panel {
  position: absolute;
  inset: 0;
  background: #161618;
  color: #f0ece4;
  display: grid;
  grid-template-columns: 42% 1fr;
  overflow: hidden;
  transform: translateY(36px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1), opacity 0.4s ease;
}

.ml2-modal-overlay.is-open .ml2-modal-panel {
  transform: translateY(0);
  opacity: 1;
}

.ml2-modal-close {
  position: absolute;
  top: 28px;
  right: 32px;
  background: none;
  border: 1px solid rgba(240,236,228,0.18);
  color: #f0ece4;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: border-color 0.2s ease, background 0.2s ease;
  font-family: 'DM Sans', sans-serif;
}

.ml2-modal-close:hover {
  background: rgba(240,236,228,0.07);
  border-color: rgba(240,236,228,0.45);
}

.ml2-modal-left {
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(240,236,228,0.07);
  overflow-y: auto;
}

.ml2-modal-kicker {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.ml2-modal-client {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  font-weight: 600;
  line-height: 1;
  color: #f0ece4;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.ml2-modal-type {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,236,228,0.38);
  margin-bottom: 36px;
}

.ml2-modal-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.93rem;
  line-height: 1.8;
  color: rgba(240,236,228,0.65);
  max-width: 400px;
  margin-bottom: 40px;
  font-weight: 300;
}

.ml2-modal-divider {
  width: 100%;
  height: 1px;
  background: rgba(240,236,228,0.10);
  margin-bottom: 30px;
}

.ml2-modal-meta { display: flex; flex-direction: column; gap: 12px; }

.ml2-modal-meta-row {
  display: flex;
  gap: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
}

.ml2-modal-meta-label {
  color: rgba(240,236,228,0.32);
  min-width: 110px;
  letter-spacing: 0.05em;
}

.ml2-modal-meta-value {
  color: rgba(240,236,228,0.82);
  font-weight: 500;
}

.ml2-modal-right {
  padding: 80px 52px 80px 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  justify-content: center;
}

.ml2-modal-photos-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ml2-modal-photo {
  border-radius: 5px;
  overflow: hidden;
  background: #222228;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ml2-modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ml2-modal-photo-ph {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  color: rgba(240,236,228,0.12);
  text-transform: uppercase;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
}

.ml2-modal-photo-wide {
  border-radius: 5px;
  overflow: hidden;
  background: #1e1e22;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ml2-modal-photo-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 860px) {
  .ml2-modal-panel {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
  .ml2-modal-left {
    padding: 72px 28px 40px;
    border-right: none;
    border-bottom: 1px solid rgba(240,236,228,0.07);
    justify-content: flex-start;
  }
  .ml2-modal-right {
    padding: 32px 28px 60px;
    justify-content: flex-start;
  }
  .ml2-modal-photos-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .ml2-modal-client { font-size: 2.4rem; }
  .ml2-modal-photos-top { grid-template-columns: 1fr; }
  .ml2-modal-close { top: 16px; right: 18px; }
}


/* ===================== MODAL CUSTOM SCROLLBAR ===================== */
.ml2-modal-left::-webkit-scrollbar,
.ml2-modal-right::-webkit-scrollbar,
.ml2-modal-panel::-webkit-scrollbar {
  width: 3px;
}

.ml2-modal-left::-webkit-scrollbar-track,
.ml2-modal-right::-webkit-scrollbar-track,
.ml2-modal-panel::-webkit-scrollbar-track {
  background: transparent;
}

.ml2-modal-left::-webkit-scrollbar-thumb,
.ml2-modal-right::-webkit-scrollbar-thumb,
.ml2-modal-panel::-webkit-scrollbar-thumb {
  background: rgba(240,236,228,0.15);
  border-radius: 10px;
}

.ml2-modal-left::-webkit-scrollbar-thumb:hover,
.ml2-modal-right::-webkit-scrollbar-thumb:hover,
.ml2-modal-panel::-webkit-scrollbar-thumb:hover {
  background: rgba(240,236,228,0.30);
}


/* ===================== SCROLL-AWARE NAV — music-lab page only ===================== */

/* Smooth transition always on for ml2-page header */
.ml2-page .site-header {
  transition: background 0.4s ease,
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}

/* Light state — triggered when hero scrolls out of view */
.ml2-page .site-header.nav-light {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(0,0,0,0.07);
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}

/* Nav link text goes dark */
.ml2-page .site-header.nav-light .nav-link {
  color: #0b0b0f;
  opacity: 0.68;
}

.ml2-page .site-header.nav-light .nav-link:hover {
  color: #0b0b0f;
  opacity: 1;
}

/* Mobile nav dropdown background */
.ml2-page .site-header.nav-light .nav {
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(0,0,0,0.07);
}

.ml2-page .site-header.nav-light .nav .nav-link {
  color: #0b0b0f;
}

/* Hamburger lines go dark */
.ml2-page .site-header.nav-light .nav-toggle span {
  background: #0b0b0f;
}


/* ============================================================
   MOBILE POLISH — All Pages (safe overrides, desktop unchanged)
   ============================================================ */

/* ── Global: prevent images from ever overflowing their container ── */
img, video { max-width: 100%; }


/* ════════════════════════════════════════════════════════════
   SERVICES PAGE — Tablet + Mobile fixes
   ════════════════════════════════════════════════════════════ */

/* Intermediate tablet breakpoint: ease padding before full collapse */
@media (max-width: 1024px) {
  .svc-text {
    padding: 44px clamp(24px, 5vw, 60px) 40px;
  }
  .svc-lead { flex: 0 0 46%; }
}

/* Mobile: ensure chapter never forces 100vh height on small screens */
@media (max-width: 768px) {
  .svc-chapter,
  .svc-chapter:nth-child(even) {
    height: auto;
    min-height: unset;
  }
  /* Ensure description text is readable (not below 14px) */
  .svc-desc {
    font-size: 14px !important;
    max-width: 100%;
  }
}

/* Very small phones */
@media (max-width: 420px) {
  .svc-name {
    font-size: clamp(32px, 10vw, 50px) !important;
  }
  .svc-text {
    padding: 36px 20px 28px !important;
  }
}


/* ════════════════════════════════════════════════════════════
   MUSIC LAB — Hero title: proper clamp on all phone sizes
   ════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .ml2-hero-title  { font-size: clamp(52px, 16vw, 100px) !important; }
  .ml2-hero-sub    { font-size: clamp(1.05rem, 4.2vw, 1.5rem); }
  .ml2-hero-inner  { padding: 60px 22px 0; }
}

@media (max-width: 520px) {
  .ml2-hero-title  { font-size: clamp(44px, 17vw, 70px) !important; }
  .ml2-hero-sub    { font-size: 1rem; margin-bottom: 28px; }
  .ml2-hero-kicker { font-size: 0.65rem; margin-bottom: 20px; }
  .ml2-hero-actions { gap: 10px; }
  .ml2-btn-ghost   { font-size: 0.8rem; padding: 11px 18px; }
}

/* Gallery grid: better gap + a little breathing room on small screens */
@media (max-width: 520px) {
  .ml2-gallery-grid      { gap: 8px; }
  .ml2-gallery .container { padding-top: 52px; }
}


/* ════════════════════════════════════════════════════════════
   MUSIC LAB — Project modals: kick in earlier (700px not 860px)
   These rules override the 860px block defined earlier
   ════════════════════════════════════════════════════════════ */

@media (max-width: 700px) {
  .ml2-modal-panel {
    grid-template-columns: 1fr !important;
    overflow-y: auto;
  }
  .ml2-modal-left {
    padding: 72px 28px 36px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(240,236,228,0.07);
    justify-content: flex-start;
    overflow-y: unset;
  }
  .ml2-modal-right {
    padding: 24px 28px 56px !important;
    justify-content: flex-start;
    overflow-y: unset;
  }
  .ml2-modal-photos-top { grid-template-columns: repeat(2, 1fr); }
}

/* Small phones: tighten everything further */
@media (max-width: 480px) {
  .ml2-modal-client   { font-size: 2rem !important; }
  .ml2-modal-desc     { font-size: 0.87rem; line-height: 1.75; }
  .ml2-modal-kicker   { font-size: 0.62rem; margin-bottom: 14px; }
  .ml2-modal-type     { margin-bottom: 22px; }
  .ml2-modal-left     { padding: 60px 20px 30px !important; }
  .ml2-modal-right    { padding: 20px 20px 44px !important; }
  .ml2-modal-close    { top: 14px; right: 14px; width: 40px; height: 40px; font-size: 0.9rem; }
  .ml2-modal-photos-top { grid-template-columns: 1fr; }
  .ml2-modal-photo    { aspect-ratio: 4/3; }
  .ml2-card-cta       { font-size: 0.62rem; padding: 9px 16px; }
}


/* ════════════════════════════════════════════════════════════
   SCROLL-AWARE NAV — Mobile dropdown stays readable
   ════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .ml2-page .site-header.nav-light .nav {
    background: rgba(255,255,255,0.97) !important;
    border: 1px solid rgba(0,0,0,0.08);
  }
  .ml2-page .site-header.nav-light .nav .nav-link {
    color: #0b0b0f !important;
    opacity: 0.75;
  }
  .ml2-page .site-header.nav-light .nav .nav-link:hover {
    opacity: 1;
  }
  .ml2-page .site-header.nav-light .nav .btn-primary {
    color: #fff !important;
  }
}


/* ════════════════════════════════════════════════════════════
   NAV — Touch-friendly tap targets on mobile
   ════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .nav .nav-link {
    padding: 13px 10px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav .btn {
    margin-top: 4px;
    min-height: 44px;
    justify-content: center;
  }
}


/* ════════════════════════════════════════════════════════════
   FOOTER — Mobile stacking & readability
   ════════════════════════════════════════════════════════════ */

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    gap: 36px;
    padding: 52px 20px 36px;
  }
  .footer-col { width: 100%; }
  .subscribe-form {
    flex-direction: column;
    gap: 10px;
  }
  .subscribe-form input,
  .subscribe-form button {
    width: 100%;
    border-radius: 8px;
  }
  .footer-bottom {
    font-size: 0.75rem;
    padding: 20px;
    text-align: center;
  }
}


/* ===================== SCROLL-AWARE NAV — services page ===================== */

.svc-page .site-header {
  transition: background 0.4s ease,
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}

.svc-page .site-header.nav-light {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(0,0,0,0.07);
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}

.svc-page .site-header.nav-light .nav-link {
  color: #0b0b0f;
  opacity: 0.68;
}

.svc-page .site-header.nav-light .nav-link:hover {
  color: #0b0b0f;
  opacity: 1;
}

.svc-page .site-header.nav-light .nav-toggle span {
  background: #0b0b0f;
}

@media (max-width: 900px) {
  .svc-page .site-header.nav-light .nav {
    background: rgba(255,255,255,0.97) !important;
    border: 1px solid rgba(0,0,0,0.08);
  }
  .svc-page .site-header.nav-light .nav .nav-link {
    color: #0b0b0f !important;
    opacity: 0.75;
  }
  .svc-page .site-header.nav-light .nav .nav-link:hover {
    opacity: 1;
  }
  .svc-page .site-header.nav-light .nav .btn-primary {
    color: #fff !important;
  }
}


/* ============================================================
   FLOATING PILL NAVBAR — all pages
   ============================================================ */

/* 1. Full-width dark bar across the top */
.site-header {
  background: rgba(11,11,15,0.85) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.22) !important;
  padding: 0 !important;
}

/* 2. .header-inner: logo left, nav right, centered within max width */
.header-inner {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  height: 76px !important;
  min-height: unset !important;
  padding: 0 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

/* 3. Logo — restored to a larger size */
.header-inner .brand-logo {
  width: 64px !important;
  height: 64px !important;
  animation-name: logo-spin !important;
}

/* 4. Keep the bar dark even with nav-light */
.site-header.nav-light {
  background: rgba(11,11,15,0.85) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.22) !important;
}

.site-header.nav-light .header-inner {
  background: transparent !important;
}

.site-header.nav-light .nav-link {
  color: #ffffff !important;
  opacity: 0.86 !important;
}

.site-header.nav-light .nav-link:hover {
  opacity: 1 !important;
}

.site-header.nav-light .nav-toggle span {
  background: #ffffff !important;
}

/* 5. Mobile — full-width bar, dropdown below it */
@media (max-width: 900px) {
  .site-header {
    padding: 0 !important;
  }

  .header-inner {
    height: 64px !important;
    padding: 0 16px !important;
  }

  /* Dropdown sits just below the bar */
  .nav {
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 0 0 18px 18px !important;
  }

  .header-inner .brand-logo {
    width: 52px !important;
    height: 52px !important;
  }
}

@media (max-width: 420px) {
  .header-inner { height: 56px !important; padding: 0 14px !important; }
  .nav { top: 56px !important; }
}
