/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  --canvas:        #FFFFFF;
  --canvas-soft:   #F7F7F8;
  --ink:           #0A0A0A;
  --ink-soft:      #1D1D1F;
  --text-secondary:#6E6E73;
  --rule:          #E5E5E7;
  --accent:        #E9233D;   /* scraped from dreamartcorporate.com */
  --accent-soft:   rgba(233, 35, 61, 0.10);

  --h1: clamp(2.75rem, 6vw, 4.5rem);
  --h2: clamp(2rem, 4vw, 3rem);
  --h3: clamp(1.5rem, 2.6vw, 2rem);
  --h4: 1.5rem;
  --body: 1.0625rem;
  --small: 0.875rem;
  --caption: 0.75rem;

  --font-display: -apple-system, BlinkMacSystemFont, 'Inter Tight', 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', ui-monospace, monospace;

  --maxw: 1280px;
  --gutter: 1.5rem;
  --section-pad: clamp(96px, 12vw, 160px);
  --radius: 12px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ============================================================
   2. RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-display);
  font-size: var(--body);
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}
img, video, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ============================================================
   3. TYPOGRAPHY UTILITIES
   ============================================================ */
h1, h2, h3 { font-weight: 600; color: var(--ink); line-height: 1.08; letter-spacing: -0.02em; }
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
h4 { font-size: var(--h4); font-weight: 600; letter-spacing: -0.01em; }
p { color: var(--text-secondary); }

.caption {
  font-family: var(--font-mono);
  font-size: var(--caption);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============================================================
   4. LAYOUT PRIMITIVES
   ============================================================ */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-pad) 0; }
.section--soft { background: var(--canvas-soft); }
.section--soft + .section--soft { border-top: 1px solid var(--rule); }
.section-head { max-width: 720px; margin-bottom: clamp(48px, 6vw, 80px); }
.section-head .caption { display: block; margin-bottom: 1rem; }
.section-head h2 { margin-bottom: 0.75rem; }
.section-head p { font-size: 1.125rem; }

/* ============================================================
   5. COMPONENTS — buttons
   ============================================================ */
.btn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-size: var(--small); font-weight: 600;
  border-radius: 999px;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), background 0.2s var(--ease);
}
/* glass gloss highlight */
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0.05) 48%, rgba(255,255,255,0) 100%);
}
/* sheen sweep */
.btn::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -85%; width: 45%; z-index: -1;
  pointer-events: none; transform: skewX(-20deg);
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.5), transparent);
  transition: left 0.6s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::after { left: 135%; }
.btn--primary { background: var(--ink); color: #fff; box-shadow: 0 6px 18px rgba(10,10,10,0.22); }
.btn--primary:hover { box-shadow: 0 10px 26px rgba(10,10,10,0.30); }
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(233,35,61,0.32); }
.btn--accent:hover { box-shadow: 0 10px 28px rgba(233,35,61,0.42); }
.btn--ghost {
  color: var(--ink);
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
}
.btn--ghost:hover { background: rgba(255,255,255,0.72); border-color: var(--ink); }
.arrow { transition: transform 0.2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   6. NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 var(--rule);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 30px; width: auto; transition: filter 0.3s var(--ease); }
.nav.scrolled .nav-logo img { filter: brightness(0); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: var(--small); font-weight: 500; color: var(--ink-soft); transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
.nav-links a:not(.nav-cta) { position: relative; }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: 0 50%;
  transition: transform 0.25s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta { padding: 0.6rem 1.2rem; }
.nav-toggle { display: none; width: 40px; height: 40px; flex-direction: column; gap: 5px; justify-content: center; align-items: center; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   7. HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-video-wrap {
  position: absolute; inset: 0; overflow: hidden; z-index: -2;
  opacity: 0.5;
}
.hero-video-wrap iframe {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: max(100vw, 177.78vh); max-width: none; aspect-ratio: 16 / 9; height: auto;
  border: 0; pointer-events: none;
}
.hero-fallback {
  position: absolute; inset: 0; z-index: -3;
  background: linear-gradient(135deg, #1d1d1f 0%, #0a0a0a 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top right, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.55) 38%, rgba(255,255,255,0) 70%);
}
.hero-content { padding-bottom: clamp(72px, 10vw, 128px); padding-top: 120px; max-width: 760px; }
.hero-pill {
  display: inline-block; margin-bottom: 1.5rem;
  padding: 0.45rem 0.9rem;
  background: var(--accent-soft); border-radius: 999px;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero-sub { font-size: 1.25rem; color: var(--ink-soft); margin-bottom: 2rem; max-width: 540px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

/* hero load-in — JS adds .anim-ready; content stays visible if JS never runs */
@keyframes heroIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero.anim-ready .hero-pill,
.hero.anim-ready h1,
.hero.anim-ready .hero-sub,
.hero.anim-ready .hero-ctas { animation: heroIn 0.7s var(--ease) backwards; }
.hero.anim-ready .hero-pill { animation-delay: 0.10s; }
.hero.anim-ready h1         { animation-delay: 0.22s; }
.hero.anim-ready .hero-sub  { animation-delay: 0.38s; }
.hero.anim-ready .hero-ctas { animation-delay: 0.52s; }

/* ============================================================
   8. TRUST STRIP
   ============================================================ */
.trust { padding: clamp(56px, 7vw, 88px) 0; border-bottom: 1px solid var(--rule); }
.trust .caption { text-align: center; display: block; margin-bottom: 2.5rem; }
.logo-marquee { position: relative; overflow: hidden; }
.logo-marquee::before, .logo-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: clamp(48px, 8vw, 120px);
  z-index: 2; pointer-events: none;
}
.logo-marquee::before { left: 0; background: linear-gradient(to right, var(--canvas), transparent); }
.logo-marquee::after { right: 0; background: linear-gradient(to left, var(--canvas), transparent); }
.trust--repeat { border-bottom: none; border-top: 1px solid var(--rule); }
.logo-track {
  display: flex; align-items: center; width: max-content;
  animation: marquee 54s linear infinite;
}
.logo-track img {
  height: clamp(66px, 8vw, 116px); width: auto; object-fit: contain; flex: none;
  padding: 0 clamp(1.75rem, 4vw, 3.75rem);
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-track--rev { animation-direction: reverse; }

/* large marquee — larger full-color logos */
.logo-marquee--lg .logo-track { animation-duration: 64s; }
.logo-marquee--lg .logo-track img {
  height: clamp(96px, 12vw, 156px);
  padding: 0 clamp(2.25rem, 5vw, 4.75rem);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .logo-track { animation: none; } }

/* ============================================================
   9. SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.service-card {
  padding: 1.5rem 1.4rem; background: var(--canvas); border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.service-card:hover { transform: translateY(-4px); border-color: var(--ink); }
.service-icon {
  width: 32px; height: 32px; margin-bottom: 1rem;
  color: var(--accent);
  transition: transform 0.3s var(--ease);
}
.service-card:hover .service-icon { transform: scale(1.14) rotate(-4deg); }
.service-card h4 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.service-card p { font-size: var(--small); }

/* ============================================================
   10. FEATURED WORK
   ============================================================ */
.video-embed {
  position: relative; aspect-ratio: 16 / 9;
  border-radius: var(--radius); overflow: hidden; background: var(--ink);
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.work-type { display: block; margin-bottom: 0.5rem; }

.work-feature { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.feature-tag {
  display: inline-block; margin-bottom: 0.85rem; padding: 0.32rem 0.75rem;
  background: var(--accent); color: #fff; border-radius: 999px;
  font-family: var(--font-mono); font-size: var(--caption); font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.work-feature .work-info { margin-top: 1.5rem; max-width: 780px; }
.work-feature h3 { margin-bottom: 0.5rem; }
.work-feature .work-info p { font-size: 1.0625rem; }

.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.75rem, 3.5vw, 2.75rem); }
.work-item .video-embed { margin-bottom: 1rem; }
.work-item h4 { margin-bottom: 0.35rem; }
.work-item p { font-size: var(--small); }

/* ============================================================
   10b. TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  padding: 2rem; border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: linear-gradient(158deg, #ffffff 0%, #eceef1 100%);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.testi-card > * { position: relative; z-index: 1; }
/* glass gloss highlight */
.testi-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 32%);
}
/* sheen sweep on hover */
.testi-card::after {
  content: ""; position: absolute; top: -40%; bottom: -40%; left: -65%; width: 36%;
  pointer-events: none; z-index: 0;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.9), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease);
}
.testi-card:hover { transform: translateY(-4px); border-color: var(--ink); box-shadow: 0 18px 40px rgba(10,10,10,0.08); }
.testi-card:hover::after { left: 135%; }
.testi-mark {
  font-family: var(--font-display); font-size: 3rem; font-weight: 700;
  color: var(--accent); line-height: 0.4; height: 1.4rem;
}
.testi-quote { font-size: var(--body); color: var(--ink-soft); line-height: 1.6; flex: 1; margin-bottom: 1.5rem; }
.testi-person { display: flex; align-items: center; gap: 0.75rem; }
.testi-person img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testi-name { font-weight: 600; color: var(--ink); font-size: var(--small); }

/* ============================================================
   11. PROCESS
   ============================================================ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.process-step { position: relative; padding-top: 2.5rem; border-top: 2px solid var(--rule); }
.process-step .num {
  position: absolute; top: -0.2rem; left: 0;
  font-family: var(--font-mono); font-size: 2.5rem; font-weight: 500;
  color: var(--accent); line-height: 1;
}
.process-step h4 { margin-bottom: 0.5rem; }
.process-step p { font-size: var(--small); }

/* ============================================================
   12. TEAM
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-card { }
.team-photo {
  aspect-ratio: 1; border-radius: var(--radius); overflow: hidden;
  background: var(--canvas-soft); margin-bottom: 1rem;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-card h4 { margin-bottom: 0.15rem; }
.team-card .role { font-size: var(--small); color: var(--accent); font-weight: 500; margin-bottom: 0.5rem; }
.team-card .credit { font-size: var(--small); }

/* ============================================================
   13. SISTER COMPANIES
   ============================================================ */
.sisters-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 760px; }
.sister-card {
  padding: 2rem 1.75rem; background: var(--canvas); border: 1px solid var(--rule);
  border-radius: var(--radius); transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.sister-card:hover { border-color: var(--ink); transform: translateY(-4px); }
.sister-mark {
  width: 40px; height: 40px; border-radius: 9px; margin-bottom: 1.25rem;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.05rem;
}
.sister-card h4 { font-size: 1.125rem; margin-bottom: 0.35rem; }
.sister-card p { font-size: var(--small); margin-bottom: 1rem; }
.sister-card .ext { font-size: var(--small); font-weight: 600; color: var(--ink); display: inline-flex; gap: 0.35rem; }
.sister-card .ext:hover { color: var(--accent); }

/* ============================================================
   14. CONTACT
   ============================================================ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: start;
}
.contact-intro .caption { display: block; }
.contact-intro h2 { margin: 1rem 0 0.75rem; }
.contact-intro p { font-size: 1.125rem; }
.contact-direct { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.4rem; font-size: var(--small); }
.contact-direct a { font-weight: 600; color: var(--ink); }
.contact-direct a:hover { color: var(--accent); }
.contact-direct span { color: var(--text-secondary); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-family: var(--font-mono); font-size: var(--caption);
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-secondary);
}
.field input, .field textarea {
  font: inherit; font-size: var(--body); color: var(--ink);
  background: var(--canvas); border: 1px solid var(--rule); border-radius: 10px;
  padding: 0.8rem 0.95rem; transition: border-color 0.2s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 110px; }
.contact-form .btn { align-self: flex-start; margin-top: 0.4rem; }
.form-status { font-size: var(--small); min-height: 1.2em; }
.form-status.ok { color: #1A7F37; }
.form-status.err { color: var(--accent); }

/* ============================================================
   15. FOOTER
   ============================================================ */
.footer { background: var(--ink); color: #fff; padding: clamp(64px, 8vw, 96px) 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer h5 {
  font-family: var(--font-mono); font-size: var(--caption); font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: #8a8a8e; margin-bottom: 1.25rem;
}
.footer-logo { height: 34px; width: auto; margin-bottom: 1.25rem; }
.footer-brand p, .footer a { color: #c7c7cc; }
.footer-brand p { font-size: var(--small); margin-bottom: 0.35rem; }
.footer-col a { display: block; font-size: var(--small); margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: clamp(48px, 6vw, 72px); padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between;
  font-size: var(--caption); color: #8a8a8e;
}

/* ============================================================
   16. SCROLL REVEAL + MOTION
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(30px) scale(0.985); filter: blur(12px);
  transition: opacity 0.7s var(--ease), transform 0.8s var(--ease), filter 0.7s var(--ease);
  will-change: opacity, transform, filter;
}
.reveal.in,
.reveal.is-visible { opacity: 1; transform: none; filter: blur(0); }

/* scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 200;
  background: linear-gradient(to right, var(--accent), #ff5a6e);
  transform: scaleX(0); transform-origin: 0 50%;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .scroll-progress { display: none; }
  .hero-pill, .hero h1, .hero-sub, .hero-ctas { opacity: 1; animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   17. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 1.25rem;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    padding: 1.75rem var(--gutter); box-shadow: 0 1px 0 var(--rule);
  }
  .work-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-sub { font-size: 1.125rem; }
}
@media (max-width: 520px) {
  .services-grid, .process-grid, .team-grid, .sisters-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { flex: 1 1 auto; justify-content: center; }
}

/* ============================================================
   ADS SECTION (Savora-ported, no proof needed)
   ============================================================ */
#ads { background: #0a0a0a; color: #f5f2eb; overflow: hidden; position: relative; }
#ads .caption { color: #E9233D; }
#ads h1, #ads h2, #ads h3, #ads h4 { color: #ffffff; }
#ads p { color: rgba(245,242,235,0.78); }
#ads a { color: #ffffff; }
#ads .ads-hero h2 em,
#ads .ads-radar-wrap h2 em { color: #E9233D; font-style: italic; }
.ads-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(233,35,61,0.10) 0%, rgba(233,35,61,0.03) 28%, transparent 58%),
    linear-gradient(180deg, #0d0d0e 0%, #0a0a0a 45%, #0a0a0a 100%);
}
.ads-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 3px 3px;
  -webkit-mask-image: radial-gradient(100% 60% at 50% 30%, black 40%, transparent 100%);
          mask-image: radial-gradient(100% 60% at 50% 30%, black 40%, transparent 100%);
  opacity: 0.6;
}
#ads .wrap { position: relative; z-index: 1; }

/* Ads hero — 2 col */
.ads-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 760px) { .ads-hero { grid-template-columns: 1fr; } }
.ads-hero h2 em { font-style: italic; color: #E9233D; }
.ads-hero-stat {
  position: absolute; right: -16px; bottom: -16px;
  padding: 12px 16px; border-radius: 14px;
  background: rgba(15,15,16,0.92); border: 1px solid rgba(233,35,61,0.4);
  backdrop-filter: blur(12px);
}
.ads-hero-stat strong { display: block; font-size: 1.4rem; font-weight: 700; color: #E9233D; }
.ads-hero-stat span { font-size: 0.7rem; color: rgba(245,242,235,0.6); letter-spacing: 0.05em; }

/* 3D phone */
.phone-3d-wrap { display: flex; justify-content: center; perspective: 1400px; position: relative; }
.phone-3d {
  position: relative; width: 280px; border-radius: 3rem; overflow: hidden;
  border: 5px solid rgba(255,255,255,0.11); background: #0a0a0a;
  transform: rotateY(-13deg) rotateX(3deg); transform-style: preserve-3d;
  box-shadow:
    28px 55px 100px rgba(0,0,0,0.65),
    -6px 15px 30px rgba(0,0,0,0.3),
    0 0 60px -10px rgba(233,35,61,0.22);
}
.phone-3d-island { position: absolute; left: 50%; top: 12px; transform: translateX(-50%); width: 82px; height: 22px; border-radius: 999px; background: #000; z-index: 20; }
.phone-3d-iframe { position: relative; aspect-ratio: 9/16; }
.phone-3d-iframe iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.phone-3d-header {
  display: flex; align-items: center; gap: 10px; padding: 36px 12px 8px; background: #000;
}
.phone-3d-avatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366); flex-shrink: 0; }
.phone-3d-name { font-size: 0.7rem; color: #fff; line-height: 1.1; }
.phone-3d-name span { display: block; font-size: 0.6rem; color: rgba(255,255,255,0.5); }
.phone-3d-actions { display: flex; gap: 14px; padding: 10px 12px 16px; background: #000; color: #fff; align-items: center; }
.phone-3d-actions svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.75; }
.phone-3d-cta { margin-left: auto; padding: 4px 10px; border: 1px solid rgba(255,255,255,0.2); border-radius: 6px; font-size: 0.62rem; font-weight: 600; }
.phone-3d-glare {
  position: absolute; inset: 0; z-index: 30; border-radius: inherit; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 30%, transparent 58%);
}
.phone-3d-glow { position: absolute; left: 50%; bottom: -10px; transform: translateX(-50%); width: 220px; height: 30px; border-radius: 50%; background: rgba(233,35,61,0.5); filter: blur(40px); opacity: 0.4; }

/* Radar */
.ads-radar-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: clamp(80px, 12vw, 140px); }
@media (max-width: 760px) { .ads-radar-wrap { grid-template-columns: 1fr; } }
.radar {
  position: relative; width: 340px; height: 340px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.radar-grid {
  position: absolute; inset: 0; border-radius: 50%;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(circle, black 42%, transparent 70%);
          mask-image: radial-gradient(circle, black 42%, transparent 70%);
}
.radar-ring {
  position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.55);
  box-shadow: 0 0 24px rgba(255,255,255,0.18);
  animation: adsRipple 3.2s ease-out infinite;
}
.radar-ring:nth-child(2) { animation-delay: 0.8s; }
.radar-ring:nth-child(3) { animation-delay: 1.6s; }
.radar-ring:nth-child(4) { animation-delay: 2.4s; }
@keyframes adsRipple {
  0%   { transform: scale(0.08); opacity: 0.9; }
  100% { transform: scale(1);    opacity: 0; }
}
.radar-dot {
  position: absolute; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6); background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  animation: adsDot 2.5s ease-in-out infinite;
  backdrop-filter: blur(4px);
}
@keyframes adsDot {
  0%, 100% { opacity: 0.45; transform: scale(0.85); }
  50%      { opacity: 1; transform: scale(1.1); }
}
.radar-dot svg { width: 14px; height: 14px; color: #ffffff; fill: currentColor; }
.radar-center {
  position: relative; z-index: 10; width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #E9233D, #b21929);
  border: 1px solid rgba(255,182,194,0.6);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(233,35,61,0.6), inset 0 1px 0 rgba(255,255,255,0.3);
}
.radar-center svg { width: 24px; height: 24px; color: #1a0606; fill: currentColor; }

/* 3-step flow */
.ads-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: clamp(80px, 12vw, 140px); }
@media (max-width: 760px) { .ads-steps { grid-template-columns: 1fr; } }
.ads-step {
  position: relative; padding: 32px; border-radius: 24px;
  background: rgba(15,15,16,0.6); backdrop-filter: blur(12px);
  border: 1px solid rgba(233,35,61,0.3);
}
.ads-step-icon {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(233,35,61,0.08); border: 1px solid rgba(233,35,61,0.4); color: #E9233D;
}
.ads-step h4 { margin: 18px 0 8px; color: #fff; font-size: 1.2rem; font-weight: 700; }
.ads-step p { font-size: 0.92rem; color: rgba(245,242,235,0.65); }
.ads-step-num { position: absolute; right: 22px; top: 22px; font-family: var(--font-mono); font-size: 0.7rem; color: rgba(233,35,61,0.3); }

/* ============================================================
   BRANDING SECTION (DreamArt's own brand as proof)
   ============================================================ */
#branding { background: #F5F2EB; color: #1C1B1A; }
#branding .section-head .caption { color: #A09344; }
#branding h2 em { font-style: italic; color: #A09344; }
.branding-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 760px) { .branding-hero { grid-template-columns: 1fr; } }
.branding-logo-stage {
  aspect-ratio: 1; max-width: 460px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: #ffffff; border-radius: 24px;
  box-shadow: 0 30px 80px -30px rgba(40,40,41,0.2);
}
.branding-logo-anim { width: 60%; height: auto; }
.branding-logo-anim path,
.branding-logo-anim circle,
.branding-logo-anim ellipse,
.branding-logo-anim line,
.branding-logo-anim rect { stroke-dasharray: 1000; stroke-dashoffset: 1000; transition: stroke-dashoffset 2.5s var(--ease); }
.reveal.is-visible .branding-logo-anim path,
.reveal.is-visible .branding-logo-anim circle,
.reveal.is-visible .branding-logo-anim ellipse,
.reveal.is-visible .branding-logo-anim line,
.reveal.is-visible .branding-logo-anim rect { stroke-dashoffset: 0; }
.branding-logo-anim text { opacity: 0; transition: opacity 1s var(--ease) 1.8s; }
.reveal.is-visible .branding-logo-anim text { opacity: 1; }

/* Brand system grid: palette + type + voice + guidelines */
.brand-system { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: clamp(60px, 8vw, 100px); }
@media (max-width: 760px) { .brand-system { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .brand-system { grid-template-columns: 1fr; } }
.brand-tile {
  padding: 24px; border-radius: 16px; background: #ffffff;
  border: 1px solid rgba(40,40,41,0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.brand-tile:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -15px rgba(40,40,41,0.15); }
.brand-tile-label { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: #7A6E33; margin-bottom: 14px; }
.brand-tile h4 { font-size: 1rem; margin: 0 0 6px; }
.brand-tile p { font-size: 0.85rem; color: #4A4744; margin: 0; }

/* Palette swatches inside tile */
.palette-row { display: flex; gap: 6px; margin-bottom: 14px; }
.palette-swatch { width: 32px; height: 32px; border-radius: 8px; border: 1px solid rgba(0,0,0,0.06); }

/* Type sample */
.type-sample-serif { font-family: 'Cinzel', Georgia, serif; font-size: 1.6rem; line-height: 1; margin-bottom: 6px; letter-spacing: -0.01em; }
.type-sample-sans { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: #4A4744; }

/* Guidelines book mock */
.book-mock {
  width: 80px; height: 100px; margin: 0 auto 14px;
  background: linear-gradient(135deg, #282829, #1C1B1A);
  border-radius: 4px 8px 8px 4px; position: relative;
  box-shadow: 6px 8px 20px -4px rgba(40,40,41,0.3);
}
.book-mock::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: rgba(160,147,68,0.6); border-radius: 4px 0 0 4px; }
.book-mock::after { content: "DA"; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); font-family: 'Cinzel', serif; font-size: 1rem; color: #A09344; }

/* ============================================================
   MULTI-PAGE ADDITIONS — project grid, case studies, anchors
   ============================================================ */

/* Active nav indicator */
.nav-links a.is-active { color: var(--accent); position: relative; }
.nav-links a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.nav.scrolled .nav-links a.is-active { color: var(--accent); }

/* PROJECT GRID (homepage) */
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 960px) { .project-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .project-grid { grid-template-columns: 1fr; } }
.project-card {
  display: block; text-decoration: none; color: inherit;
  border-radius: 14px; overflow: hidden; background: var(--canvas);
  border: 1px solid var(--rule);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.project-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -20px rgba(10,10,10,0.18); }
.project-card .video-embed {
  position: relative; aspect-ratio: 16/9; overflow: hidden; background: #0a0a0a;
}
.project-card .video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.project-card-body { padding: 22px 22px 26px; }
.project-card .work-type {
  display: inline-block; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-secondary); margin-bottom: 10px;
}
.project-card h3 {
  font-size: 1.35rem; margin: 0 0 8px; font-weight: 600; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 8px;
}
.project-card h3::after {
  content: "→"; opacity: 0; transform: translateX(-6px); transition: all 0.3s var(--ease);
  color: var(--accent);
}
.project-card:hover h3::after { opacity: 1; transform: translateX(0); }
.project-card p { font-size: 0.95rem; color: var(--text-secondary); margin: 0; line-height: 1.5; }
.project-card .feature-tag {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent); font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 12px;
}

/* Feature card spans 2 cols on desktop */
.project-card--feature { grid-column: span 2; }
@media (max-width: 960px) { .project-card--feature { grid-column: span 2; } }
@media (max-width: 600px) { .project-card--feature { grid-column: span 1; } }
.project-card--feature .video-embed { aspect-ratio: 21/9; }
.project-card--feature h3 { font-size: 1.8rem; }

/* CASE-STUDY PAGES */
.cs-hero {
  position: relative; min-height: 70svh; display: flex; align-items: flex-end;
  overflow: hidden; color: var(--canvas);
}
.cs-hero-video { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.cs-hero-video iframe {
  position: absolute; top: 50%; left: 50%;
  width: 100vw; height: 56.25vw; min-height: 100%; min-width: 177.78vh;
  transform: translate(-50%, -50%); border: 0; pointer-events: none;
}
.cs-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.2) 40%, rgba(10,10,10,0.85) 100%);
}
.cs-hero-content { padding: 140px 0 64px; }
.cs-hero-eyebrow {
  display: inline-block; padding: 6px 14px; border: 1px solid rgba(255,255,255,0.32);
  border-radius: 999px; backdrop-filter: blur(6px);
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 28px;
}
.cs-hero h1 { color: var(--canvas); font-size: clamp(2.2rem, 5vw, 4.4rem); margin: 0 0 18px; }
.cs-hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.8); max-width: 620px; margin: 0; }

/* Case-study section blocks */
.cs-section { padding: clamp(64px, 9vw, 120px) 0; }
.cs-section--dark { background: #0a0a0a; color: var(--canvas); }
.cs-section--dark p,
.cs-section--dark .cs-block p,
.cs-section--dark li,
.cs-section--dark strong,
.cs-section--dark .metric-label { color: rgba(255,255,255,0.78); }
.cs-section--dark h1,
.cs-section--dark h2,
.cs-section--dark h3,
.cs-section--dark h4,
.cs-section--dark .cs-block h2 { color: #ffffff; }
.cs-section--dark .caption { color: #E9233D; }
.ysl-block .cs-block p,
.ysl-block .cs-block h2,
.ysl-block .cs-block .caption { /* keep dark-section rules consistent */ }
.cs-section--soft { background: var(--canvas-soft); }
.cs-block { max-width: 760px; margin: 0 auto; }
.cs-block--wide { max-width: 1100px; }
.cs-block .caption { color: var(--accent); }
.cs-block h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); margin: 12px 0 20px; }
.cs-block p { font-size: 1.075rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 14px; }
.cs-section--dark .cs-block h2 { color: var(--canvas); }
.cs-section--dark .cs-block .caption { color: var(--accent); }

/* Two-column meta block (Client / Goal / Role / Year) */
.cs-meta-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--rule);
}
@media (max-width: 760px) { .cs-meta-grid { grid-template-columns: repeat(2, 1fr); } }
.cs-meta-item .caption { display: block; margin-bottom: 6px; color: var(--text-secondary); }
.cs-meta-item strong { font-weight: 600; font-size: 0.98rem; color: var(--ink); }

/* Anchor sub-nav (Latino Summit) */
.cs-anchor-nav {
  position: sticky; top: 64px; z-index: 30;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
}
.cs-anchor-nav-inner { display: flex; gap: 28px; overflow-x: auto; }
.cs-anchor-nav a {
  flex: 0 0 auto; text-decoration: none; font-size: 0.85rem; letter-spacing: 0.04em;
  color: var(--text-secondary); padding: 4px 0; border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.cs-anchor-nav a:hover,
.cs-anchor-nav a.is-active { color: var(--accent); border-bottom-color: var(--accent); }

/* Yo Soy Latino horizontal strip — dark contrast block */
.ysl-block {
  background: linear-gradient(180deg, #0a0a0a 0%, #14110d 100%);
  padding: clamp(64px, 9vw, 120px) 0;
  color: var(--canvas);
}
.ysl-block .caption { color: var(--accent); }
.ysl-block h2 { color: var(--canvas); }
.ysl-block p { color: rgba(255,255,255,0.65); }
.ysl-strip {
  position: relative; overflow: hidden;
  padding: 30px 0 50px; margin-top: 40px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.ysl-track {
  display: flex; gap: 20px;
  width: max-content;
  animation: yslMarquee 80s linear infinite;
}
.ysl-track:hover { animation-play-state: paused; }
@keyframes yslMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ysl-track { animation: none; }
  .ysl-strip { overflow-x: auto; }
}
.ysl-card {
  flex: 0 0 auto; width: 360px; scroll-snap-align: center;
}
@media (max-width: 640px) { .ysl-card { width: 280px; } }
.ysl-card-video {
  position: relative; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden;
  background: #050505; border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.6);
}
.ysl-card-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.ysl-card-name { font-size: 1rem; font-weight: 600; margin: 16px 0 4px; color: var(--canvas); }
.ysl-card-bio { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.ysl-tag {
  display: inline-block; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-top: 8px;
}

/* Sponsor tier system block */
.sponsor-tiers { display: grid; gap: 28px; margin-top: 40px; }
.sponsor-tier {
  display: grid; grid-template-columns: 140px 1fr; gap: 32px; align-items: center;
  padding: 28px; border-radius: 16px; background: var(--canvas);
  border: 1px solid var(--rule);
}
@media (max-width: 600px) { .sponsor-tier { grid-template-columns: 1fr; } }
.sponsor-tier-label {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; color: var(--accent);
}
.sponsor-tier h4 { margin: 6px 0 4px; font-size: 1.2rem; }
.sponsor-tier p { font-size: 0.95rem; color: var(--text-secondary); margin: 0; }
.sponsor-tier-anim {
  width: 100%; aspect-ratio: 16/9; border-radius: 10px; overflow: hidden;
  background: #0a0a0a; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.sponsor-tier-anim video,
.sponsor-tier-anim img,
.sponsor-tier-anim iframe {
  width: 100%; height: 100%; object-fit: contain; border: 0;
  position: absolute; inset: 0;
}
/* Tier ring matches real sponsor-card thumbnail color coding */
.sponsor-tier--vip       { border: 2px solid #E9233D; }
.sponsor-tier--vip   .sponsor-tier-label { color: #E9233D; }
.sponsor-tier--gold      { border: 2px solid #E5C04A; }
.sponsor-tier--gold  .sponsor-tier-label { color: #B89014; }
.sponsor-tier--bronze    { border: 2px solid #D08442; }
.sponsor-tier--bronze .sponsor-tier-label { color: #A65A22; }
.sponsor-tier--cosponsor { border: 2px solid #3D7BC0; }
.sponsor-tier--cosponsor .sponsor-tier-label { color: #3D7BC0; }
/* Legacy "main" and "support" classes still rendered safely */
.sponsor-tier--main .sponsor-tier-label    { color: #c89b2a; }
.sponsor-tier--support .sponsor-tier-label { color: var(--text-secondary); }

/* Year-stacked block (MCC) */
.year-block { margin: 60px 0; padding-top: 60px; border-top: 1px solid var(--rule); }
.year-block:first-of-type { border-top: none; padding-top: 0; }
.year-label {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--accent); margin: 0 0 16px;
}
.year-block-video {
  position: relative; aspect-ratio: 16/9; border-radius: 12px; overflow: hidden;
  background: #0a0a0a; margin-bottom: 24px;
}
.year-block-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Results metric grid */
.metric-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-top: 40px;
}
@media (max-width: 760px) { .metric-grid { grid-template-columns: repeat(2, 1fr); } }
.metric-item .metric-value {
  font-family: var(--font-display); font-size: clamp(3.2rem, 6vw, 5rem);
  font-weight: 700; letter-spacing: -0.03em; color: var(--accent); line-height: 0.95;
}
.metric-item .metric-label {
  font-size: 0.95rem; color: var(--text-secondary); margin-top: 10px; line-height: 1.4;
}

/* Bigger cs-hero h1 (more weight on landing headline) */
.cs-hero h1 { font-size: clamp(2.6rem, 6vw, 5.2rem) !important; }
.cs-block h2 { font-size: clamp(1.8rem, 3.4vw, 3rem) !important; }

/* Pull-out emphasis for in-copy strong (key facts) */
.cs-block p strong { color: var(--ink); font-weight: 700; }
.cs-section--dark .cs-block p strong { color: #ffffff; }

/* Scroll-reveal base — already exists but ensure all .reveal subjects animate */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-visible,
.reveal.in { opacity: 1; transform: none; }

/* Count-up animation hint (visual cue that number "lands") */
.metric-value.is-counting { color: var(--accent); }
.metric-value.is-done {
  animation: metricLand 0.4s var(--ease);
}
@keyframes metricLand {
  0%   { transform: scale(0.97); }
  60%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}

/* Gallery */
.cs-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 32px;
}
@media (max-width: 760px) { .cs-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cs-gallery { grid-template-columns: 1fr; } }
.cs-gallery img,
.cs-gallery video {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 10px; cursor: zoom-in;
}

/* Next project block */
.next-project {
  border-top: 1px solid var(--rule); padding: 80px 0; text-align: center;
}
.next-project .caption { color: var(--text-secondary); }
.next-project a {
  display: inline-block; margin-top: 18px; font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 600; text-decoration: none;
  color: var(--ink); position: relative;
}
.next-project a::after {
  content: " →"; transition: transform 0.3s var(--ease); display: inline-block;
  color: var(--accent);
}
.next-project a:hover::after { transform: translateX(8px); }

/* ============================================================
   YSL verse blockquote (Carlos finale)
   ============================================================ */
.ysl-verse {
  margin: 40px auto 0; max-width: 720px; padding: 32px 36px;
  border-left: 3px solid #E9233D;
  background: rgba(233,35,61,0.04);
  border-radius: 0 14px 14px 0;
}
.ysl-verse p { font-size: 1.1rem; line-height: 1.6; color: rgba(255,255,255,0.85); margin: 0 0 14px; font-style: italic; }
.ysl-verse .ysl-verse-close {
  font-style: normal; font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600; color: #ffffff; letter-spacing: -0.005em;
}
.ysl-verse cite {
  display: block; margin-top: 16px; font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); font-style: normal;
}

/* ============================================================
   SPONSOR SHOWCASE — single big video + tier buttons
   ============================================================ */
.sponsor-showcase { margin-top: 40px; }
.sponsor-showcase-video {
  position: relative; width: 100%; max-width: 920px; margin: 0 auto;
  aspect-ratio: 16/9; border-radius: 18px; overflow: hidden;
  background: #050505; transition: box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  border: 3px solid #E9233D;
  box-shadow: 0 30px 80px -20px rgba(233,35,61,0.45);
}
.sponsor-showcase-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.sponsor-showcase-video[data-tier="gold"]      { border-color: #E5C04A; box-shadow: 0 30px 80px -20px rgba(229,192,74,0.45); }
.sponsor-showcase-video[data-tier="bronze"]    { border-color: #D08442; box-shadow: 0 30px 80px -20px rgba(208,132,66,0.45); }
.sponsor-showcase-video[data-tier="cosponsor"] { border-color: #3D7BC0; box-shadow: 0 30px 80px -20px rgba(61,123,192,0.45); }
.sponsor-showcase-video[data-tier="vip"]       { border-color: #E9233D; box-shadow: 0 30px 80px -20px rgba(233,35,61,0.45); }

.sponsor-showcase-meta {
  max-width: 720px; margin: 28px auto 0; text-align: center;
}
.sponsor-showcase-label {
  display: inline-block; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; padding: 4px 12px; border-radius: 999px; color: #E9233D;
  border: 1px solid currentColor; margin-bottom: 14px;
}
.sponsor-showcase-meta h4 { margin: 0 0 10px; font-size: 1.3rem; }
.sponsor-showcase-meta p { font-size: 0.98rem; color: var(--text-secondary); margin: 0; }

/* Tier-switcher buttons — fully colored chips */
.sponsor-tier-buttons {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-top: 36px;
}
.sponsor-tier-btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 999px; cursor: pointer;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.04em; color: var(--ink);
  background: var(--canvas); border: 1.5px solid var(--rule);
  transition: all 0.3s var(--ease);
}
.sponsor-tier-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(10,10,10,0.18); }
.sponsor-btn-swatch {
  display: inline-block; width: 14px; height: 14px; border-radius: 50%;
  background: #ccc; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}
.sponsor-tier-btn--vip       .sponsor-btn-swatch { background: #E9233D; }
.sponsor-tier-btn--gold      .sponsor-btn-swatch { background: #E5C04A; }
.sponsor-tier-btn--bronze    .sponsor-btn-swatch { background: #D08442; }
.sponsor-tier-btn--cosponsor .sponsor-btn-swatch { background: #3D7BC0; }

.sponsor-tier-btn.is-active {
  color: #ffffff; border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(10,10,10,0.25);
}
.sponsor-tier-btn--vip.is-active       { background: #E9233D; }
.sponsor-tier-btn--gold.is-active      { background: #E5C04A; color: #1a1a1a; }
.sponsor-tier-btn--bronze.is-active    { background: #D08442; }
.sponsor-tier-btn--cosponsor.is-active { background: #3D7BC0; }
.sponsor-tier-btn.is-active .sponsor-btn-swatch { background: rgba(255,255,255,0.95); }
.sponsor-tier-btn--gold.is-active .sponsor-btn-swatch { background: rgba(0,0,0,0.65); }

/* ============================================================
   YSL video modal (click card → watch large)
   ============================================================ */
.ysl-card { cursor: zoom-in; transition: transform 0.3s var(--ease); }
.ysl-card:hover { transform: translateY(-4px); }
.ysl-card-video::after {
  content: "▶"; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: rgba(255,255,255,0); transition: color 0.3s var(--ease), background 0.3s var(--ease);
}
.ysl-card:hover .ysl-card-video::after {
  color: #fff; background: rgba(10,10,10,0.35); backdrop-filter: blur(2px);
}

.ysl-modal {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  background: rgba(5,5,5,0.94); backdrop-filter: blur(8px);
  padding: 24px;
}
.ysl-modal.is-open { display: flex; }
.ysl-modal-inner {
  position: relative; width: 100%; max-width: 1200px;
  aspect-ratio: 16/9; max-height: 85vh;
  background: #000; border-radius: 14px; overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.7);
}
.ysl-modal-inner iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.ysl-modal-close {
  position: absolute; top: -48px; right: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff;
  font-size: 1.4rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.2s var(--ease);
}
.ysl-modal-close:hover { background: rgba(255,255,255,0.2); }
.ysl-modal-caption {
  position: absolute; bottom: -56px; left: 0; right: 0;
  text-align: center; color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.ysl-modal-caption strong { color: #fff; font-weight: 600; }
@media (max-width: 720px) {
  .ysl-modal-close { top: 8px; right: 8px; }
  .ysl-modal-caption { bottom: -44px; font-size: 0.85rem; }
}

/* YSL modal prev/next arrows */
.ysl-modal-nav {
  position: relative; flex: 0 0 auto;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: #fff;
  font-size: 2rem; line-height: 1; font-family: var(--font-display);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.16);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
  margin: 0 24px;
}
.ysl-modal-nav:hover { background: rgba(233,35,61,0.6); transform: scale(1.05); }
@media (max-width: 720px) {
  .ysl-modal-nav { width: 44px; height: 44px; font-size: 1.5rem; margin: 0 12px; }
}

/* ============================================================
   Our Role grid (Latino Summit)
   ============================================================ */
.role-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 40px;
}
@media (max-width: 760px) { .role-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .role-grid { grid-template-columns: 1fr; } }
.role-tile {
  padding: 28px 24px; border-radius: 16px;
  background: var(--canvas); border: 1px solid var(--rule);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.role-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(233,35,61,0.4);
  box-shadow: 0 18px 38px -16px rgba(10,10,10,0.18);
}
.role-tile svg {
  width: 24px; height: 24px;
  color: #E9233D;
  margin-bottom: 16px;
}
.role-tile h4 {
  font-size: 1.05rem; margin: 0 0 8px;
  color: var(--ink); font-weight: 600;
}
.role-tile p {
  font-size: 0.92rem; color: var(--text-secondary); margin: 0; line-height: 1.55;
}

/* Title Sponsor — top of the ladder, deeper red / black ring */
.sponsor-tier-btn--title .sponsor-btn-swatch { background: #1a0a0c; box-shadow: inset 0 0 0 2px #E9233D; }
.sponsor-tier-btn--title.is-active { background: #1a0a0c; color: #ffffff; border-color: transparent; box-shadow: 0 0 0 2px #E9233D, 0 14px 32px -10px rgba(233,35,61,0.4); }
.sponsor-tier-btn--title.is-active .sponsor-btn-swatch { background: #ffffff; box-shadow: none; }
.sponsor-showcase-video[data-tier="title"] { border-color: #E9233D; box-shadow: 0 30px 80px -20px rgba(233,35,61,0.5), inset 0 0 0 2px #1a0a0c; }

/* Carlos finale big video */
.carlos-finale {
  position: relative; width: 100%; max-width: 1080px; margin: 0 auto;
  aspect-ratio: 16/9; border-radius: 18px; overflow: hidden;
  background: #050505;
  border: 1px solid rgba(233,35,61,0.4);
  box-shadow: 0 40px 100px -30px rgba(233,35,61,0.45), 0 30px 80px -20px rgba(0,0,0,0.6);
}
.carlos-finale iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============================================================
   Logo journey row (UDLAP → BlackRock pattern)
   ============================================================ */
.logo-journey {
  display: flex; align-items: center; justify-content: center; gap: 28px;
  margin: 36px 0 32px; padding: 28px;
  border: 1px solid var(--rule); border-radius: 14px;
  background: var(--canvas-soft);
  flex-wrap: wrap;
}
.logo-journey-mark {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  min-width: 140px;
}
.logo-journey-mark img {
  height: 56px; width: auto; max-width: 200px;
  object-fit: contain;
}
.logo-journey-label {
  font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-secondary);
}
.logo-journey-arrow { color: var(--accent); display: flex; align-items: center; }
@media (max-width: 600px) { .logo-journey-arrow svg { transform: rotate(90deg); } }

/* Watchable full-film embed (UDLAP, Carlos finale, etc.) */
.film-watch {
  position: relative; width: 100%; max-width: 1080px; margin: 0 auto;
  aspect-ratio: 16/9; border-radius: 16px; overflow: hidden;
  background: #050505;
  border: 1px solid var(--rule);
  box-shadow: 0 30px 80px -25px rgba(10,10,10,0.45);
}
.film-watch iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Locked (non-clickable) project cards on index.
   Suppress hover lift + the "→" arrow that suggests navigability. */
.project-card[data-locked="true"] { cursor: default; }
.project-card[data-locked="true"]:hover { transform: none; box-shadow: none; }
.project-card[data-locked="true"] h3::after { display: none; }

/* ============================================================
   Live Campaigns grid (Ads page)
   ============================================================ */
.campaign-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  max-width: 920px; margin: 0 auto;
}
.campaign-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.campaign-card:hover {
  transform: translateY(-3px);
  border-color: rgba(233,35,61,0.4);
}
.campaign-logo {
  height: 72px;
  display: flex; align-items: center; justify-content: center;
  padding: 14px 24px;
  background: #ffffff;
  border-radius: 10px;
}
.campaign-logo img {
  max-height: 44px; max-width: 200px;
  width: auto; object-fit: contain;
}
.campaign-logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  color: #1a1a1a; letter-spacing: -0.01em;
}
.campaign-video {
  position: relative; aspect-ratio: 16/9; border-radius: 12px; overflow: hidden;
  background: #050505;
  border: 1px solid rgba(255,255,255,0.06);
  max-width: 100%; margin: 0 auto;
}
.campaign-video--vertical {
  aspect-ratio: 9/16;
  max-width: 360px;
}
.campaign-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.campaign-meta h4 { font-size: 1.15rem; font-weight: 600; letter-spacing: -0.01em; }
.campaign-meta p { font-size: 0.92rem; line-height: 1.55; }
