/* =====================================================
   DC GROUPS — DREAM COMMUNITY
   Main Stylesheet v1.0 | dcgroups.com.au
   Design: Japanese Minimal × Australian Spirit
   ===================================================== */

/* === 1. DESIGN TOKENS ======================================== */
:root {
  --bg:       #F2E8DC;
  --bg-dark:  #1E1E1E;
  --text:     #1E1E1E;
  --muted:    #A79785;
  --accent:   #E73C37;
  --blue:     #758696;
  --yellow:   #F0B420;
  --green:    #67C56B;
  --cream:    #F6EEE5;
  --tan:      #A79785;
  --white:    #FFFFFF;
  --border:   rgba(30,30,30,0.12);

  --font: 'Inter', 'Helvetica Neue', ui-sans-serif, system-ui, sans-serif;
  --font-display: 'Tay Bea', 'Bricolage Grotesque', 'Helvetica Neue', serif;

  --ease-1: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-2: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-3: cubic-bezier(0.87, 0, 0.13, 1);

  --nav-h: 68px;
  --max:   1400px;
  --pad:   clamp(20px, 5.5vw, 88px);
  --pv:    clamp(72px, 10vw, 148px);
}
/* Editorial display headings */
h1, h2, .hero-h1, .page-h1, .wp-h2, .results-h2, .insights-h2, .svc-row-title, .about-statement, .contact-info-title { font-family: var(--font-display); letter-spacing: -0.03em; }


/* === 2. RESET ================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { border: none; background: none; font-family: inherit; cursor: pointer; }
body.is-loading { overflow: hidden; }

/* Grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 9997;
}

/* Scrollbar */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* === 3. PRELOADER ============================================= */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pre-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--pad);
}

.pre-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  overflow: hidden;
}

.pre-dream {
  display: block;
  font-size: clamp(52px, 14vw, 180px);
  font-weight: 200;
  color: var(--white);
  letter-spacing: 0.35em;
  line-height: 1;
  transform: translateY(110%);
  opacity: 0;
  transition: none;
  text-transform: uppercase;
}

.pre-community {
  display: block;
  font-size: clamp(18px, 4.5vw, 64px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.28em;
  line-height: 1;
  transform: translateY(-110%);
  opacity: 0;
  transition: none;
  text-transform: uppercase;
}

.pre-divider {
  width: 1px;
  height: 0;
  background: rgba(255,255,255,0.15);
  margin: 20px auto;
}

.pre-tagline {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  opacity: 0;
}

.pre-bottom {
  position: absolute;
  bottom: var(--pad);
  left: var(--pad);
  right: var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.pre-location {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  opacity: 0;
}

.pre-counter {
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 700;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}

.pre-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.08);
}

.pre-progress {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.05s linear;
}

/* === 4. CUSTOM CURSOR (removed — use native OS cursor) ========= */
#cursor-wrap, .cursor-dot, .cursor-ring { display: none !important; }

/* === 5. NAVIGATION ============================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.5s var(--ease-1), border-color 0.5s;
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: rgba(252,252,244,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

#nav.nav-dark {
  background: transparent;
}

#nav.nav-dark.scrolled {
  background: rgba(30,30,30,0.92);
  border-bottom-color: rgba(255,255,255,0.08);
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  z-index: 1001;
  color: var(--text);
  transition: color 0.3s;
}

.nav-logo svg { width: 160px; height: auto; }
#nav.nav-dark .nav-logo { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  position: relative;
  transition: color 0.3s;
}

#nav.nav-dark .nav-link { color: rgba(255,255,255,0.8); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.35s var(--ease-2);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--accent); }

.nav-cta {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--bg-dark);
  padding: 10px 24px;
  border-radius: 2px;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--accent); }
#nav.nav-dark .nav-cta { background: rgba(255,255,255,0.12); }
#nav.nav-dark .nav-cta:hover { background: var(--accent); }

/* ── LANGUAGE SWITCHER ───────────────────────────────── */
.nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-right: 4px;
  user-select: none;
}
.nav-lang-link {
  color: var(--text);
  opacity: 0.45;
  transition: opacity 0.25s, color 0.25s;
  padding: 4px 2px;
}
.nav-lang-link:hover { opacity: 0.85; color: var(--accent); }
.nav-lang-link.is-active {
  opacity: 1;
  color: var(--text);
  font-weight: 600;
}
.nav-lang-sep {
  width: 1px;
  height: 12px;
  background: currentColor;
  opacity: 0.2;
}
#nav.nav-dark .nav-lang-link { color: rgba(255,255,255,0.85); }
#nav.nav-dark .nav-lang-link.is-active { color: var(--white); }

/* Mobile menu language switcher — fixed at top of overlay */
.mob-lang {
  position: absolute;
  top: calc(var(--nav-h, 64px) + 16px);
  left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding-bottom: 18px;
  z-index: 1;
}
.mob-lang::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 36px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  transform: translateX(-50%);
}
.mob-lang-link {
  color: rgba(255,255,255,0.45);
  padding: 6px 4px;
  transition: color 0.25s, opacity 0.25s;
}
.mob-lang-link.is-active { color: var(--white); }
.mob-lang-link:hover { color: var(--accent); }
.mob-lang-sep {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.25);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5.5px;
  padding: 4px;
  z-index: 1001;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: transform 0.35s var(--ease-2), opacity 0.3s;
}
#nav.nav-dark .nav-burger span { background: var(--white); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
#mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.6s var(--ease-2);
}
#mobile-nav.open { clip-path: inset(0 0 0% 0); }

.mob-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mob-link {
  font-size: clamp(36px, 10vw, 60px);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
  transition: color 0.3s;
  padding: 8px 0;
}
.mob-link:hover { color: var(--accent); }

.mob-footer {
  position: absolute;
  bottom: var(--pad);
  left: var(--pad); right: var(--pad);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* === 6. LAYOUT ================================================ */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section { padding: var(--pv) 0; }
.section-sm { padding: calc(var(--pv) * 0.65) 0; }

.s-dark { background: var(--bg-dark); color: var(--white); }
.s-accent { background: var(--accent); color: var(--white); }
.s-cream { background: var(--cream); }

/* === 7. TYPOGRAPHY UTILITIES ================================== */
.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.label-num {
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}
.s-dark .label { color: rgba(255,255,255,0.35); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(40px, 5vw, 72px);
  padding-bottom: clamp(24px, 3vw, 40px);
  border-bottom: 1px solid var(--border);
}
.s-dark .section-head { border-bottom-color: rgba(255,255,255,0.08); }

/* === 8. BUTTONS =============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.2s;
  cursor: pointer;
}
.btn-solid {
  background: var(--accent);
  color: var(--white);
}
.btn-solid:hover { background: #d94d1e; transform: translateY(-1px); }

.btn-outline {
  border: 1px solid var(--text);
  color: var(--text);
}
.btn-outline:hover { background: var(--text); color: var(--bg); }

.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
}
.btn-outline-light:hover { border-color: var(--accent); background: var(--accent); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.3s, gap 0.3s var(--ease-2);
}
.link-arrow::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.35s var(--ease-2);
}
.link-arrow:hover { gap: 14px; color: var(--accent); }
.link-arrow:hover::after { width: 100%; }

.arrow-icon { display: inline-block; transition: transform 0.3s var(--ease-2); }
.link-arrow:hover .arrow-icon { transform: translateX(4px); }

/* === 9. HERO (split layout: art panel + content) ============== */
#hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 88px) var(--pad);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

/* Right-side content stack */
.hero-content { display: flex; flex-direction: column; align-items: flex-start; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(20px, 3vw, 36px);
}

.pulse-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

.hero-eyebrow-text {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 clamp(20px, 2.5vw, 32px);
  color: var(--text);
}
.hero-h1 em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
}

.hero-sub {
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.55;
  font-weight: 400;
  color: var(--text);
  max-width: 480px;
  margin: 0 0 clamp(28px, 3.5vw, 44px);
  opacity: 0.78;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform 0.25s var(--ease-2), background 0.25s, color 0.25s, border-color 0.25s;
  text-decoration: none;
  white-space: nowrap;
}
.hero-btn-primary {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}
.hero-btn-primary:hover { background: #1E1E1E; border-color: #1E1E1E; transform: translateY(-2px); }
.hero-btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(30,30,30,0.25);
}
.hero-btn-secondary:hover { background: var(--text); color: var(--bg); transform: translateY(-2px); }

/* Left-side art panel */
.hero-art {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.1;
  border-radius: 18px;
  background: #1E1E1E;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art svg { width: 100%; height: 100%; display: block; }

/* Animated shapes inside the art panel */
.art-blob   { transform-origin: center; animation: artBlob   12s ease-in-out infinite; }
.art-ring   { transform-origin: center; animation: artRing   9s  ease-in-out infinite; }
.art-orbit  { transform-origin: center; animation: artOrbit  16s linear infinite; }
.art-square { transform-origin: center; animation: artSquare 11s ease-in-out infinite; }

@keyframes artBlob {
  0%,100% { transform: translate(0,0) scale(1)   rotate(0deg);  }
  33%     { transform: translate(8%,-4%) scale(1.07) rotate(60deg); }
  66%     { transform: translate(-6%,5%) scale(0.94) rotate(-40deg); }
}
@keyframes artRing {
  0%,100% { transform: scale(1)   translate(0,0); opacity: 0.85; }
  50%     { transform: scale(1.14) translate(4%,-3%); opacity: 1; }
}
@keyframes artOrbit { to { transform: rotate(360deg); } }
@keyframes artSquare {
  0%,100% { transform: rotate(0deg)   translate(0,0); }
  50%     { transform: rotate(45deg)  translate(-3%,3%); }
}

/* Mobile: stack art above content, smaller art */
@media (max-width: 860px) {
  .hero-wrap { grid-template-columns: 1fr; gap: 36px; }
  .hero-art  { aspect-ratio: 4 / 3; order: -1; max-height: 360px; }
  .hero-h1   { font-size: clamp(38px, 9vw, 56px); }
}

/* === 10. CLIENT LOGO STRIP ==================================== */
.logo-strip {
  padding: clamp(56px, 8vw, 96px) 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.logo-strip .wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.logo-strip-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin: 0 0 28px;
}
.logo-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 28px;
}
.logo-strip-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  transition: opacity 0.25s;
  filter: grayscale(1);
}
.logo-strip-grid a:hover { opacity: 1; filter: grayscale(0); }
.logo-strip-grid img { max-height: 36px; width: auto; height: auto; max-width: 100%; }
@media (max-width: 720px) {
  .logo-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .logo-strip-grid a:nth-child(3) { grid-column: 1 / -1; }
}

/* === 11. INTRO / ABOUT STRIP ================================== */
.intro-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.sticky-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: sticky;
  top: calc(var(--nav-h) + 32px);
  flex-direction: column;
}
.sticky-label .label { flex-direction: column; align-items: flex-start; gap: 4px; }

.intro-body {}

.intro-statement {
  font-size: clamp(22px, 3.2vw, 42px);
  font-weight: 300;
  line-height: 1.38;
  letter-spacing: -0.015em;
  margin-bottom: 40px;
}

.intro-statement em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.intro-rule {
  width: 56px; height: 1px;
  background: var(--border);
  margin-bottom: 40px;
}

.intro-statement-2 {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300;
  line-height: 1.75;
  color: #555;
  margin-bottom: 56px;
}

.intro-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.intro-kpi { text-align: right; }
.kpi-num {
  display: block;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}
.kpi-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* === 12. SERVICES PREVIEW ===================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}

.svc-card {
  background: var(--bg-dark);
  padding: clamp(28px, 3.5vw, 52px);
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.5s var(--ease-2);
}
.svc-card:hover::before { width: 100%; }
.svc-card:hover { background: #2c2d32; }

.svc-num {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.2);
  margin-bottom: 28px;
  font-variant-numeric: tabular-nums;
}

.svc-title {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.25;
}

.svc-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 28px;
}

.svc-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

/* === 13. WORKS PREVIEW ======================================== */
.works-list { display: flex; flex-direction: column; }

.work-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding: clamp(32px, 4vw, 64px) 0;
  border-bottom: 1px solid var(--border);
  transition: gap 0.5s var(--ease-2);
}
.work-row:first-child { border-top: 1px solid var(--border); }
.work-row:hover { gap: clamp(36px, 5vw, 80px); }

.work-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 2px;
  background: var(--cream);
}

.work-thumb {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 900;
  color: rgba(255,255,255,0.18);
  letter-spacing: -0.05em;
  transition: transform 0.7s var(--ease-2);
}
.work-row:hover .work-thumb { transform: scale(1.04); }

.work-info { padding: 16px 0; }

.work-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.work-cat {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.work-yr { font-size: 10.5px; letter-spacing: 0.1em; color: var(--muted); }

.work-title {
  font-size: clamp(20px, 2.8vw, 38px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.result-pill {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 2px;
}

/* === 13b. WORKS FEATURED TABS ================================= */
.wf-section {
  padding: clamp(48px, 6vw, 80px) 0;
}

.wf-tabs {
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.wf-tabs::-webkit-scrollbar { display: none; }

.wf-tab {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: inherit;
  padding: 18px clamp(16px, 2.5vw, 36px);
  background: none;
  border: none;
  border-right: 1px solid var(--border);
  cursor: pointer;
  color: var(--muted);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.wf-tab.active              { background: var(--accent); color: var(--white); }
.wf-tab:hover:not(.active)  { background: var(--dark); color: var(--white); }

.wf-tab-all {
  margin-left: auto;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 18px clamp(16px, 2.5vw, 36px);
  background: var(--dark);
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(255,255,255,0.1);
  transition: opacity 0.25s;
}
.wf-tab-all:hover { opacity: 0.7; }

.wf-panel         { display: none; }
.wf-panel.active  { display: block; }

.wf-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: clamp(24px, 4vw, 52px) 0 clamp(16px, 2.5vw, 28px);
}

.wf-title {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 60%;
}

.wf-meta { text-align: right; }
.wf-yr {
  display: block;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.wf-cat {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.wf-rule {
  border: none;
  border-top: 1px dashed var(--border);
  margin: 0;
}

.wf-body {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: clamp(20px, 3vw, 44px);
  padding: clamp(24px, 4vw, 44px) 0 clamp(32px, 5vw, 60px);
  align-items: start;
}

.wf-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
}

.wf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.wf-tag {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 10px;
}

.wf-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1.5px solid var(--dark);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.wf-link:hover { color: var(--accent); border-color: var(--accent); }

.wf-visual {
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
}

.wf-thumb-main {
  width: 100%;
  height: 100%;
}

.wf-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wf-side-stat {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 300;
}
.wf-side-stat strong {
  display: block;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.03em;
  margin-bottom: 2px;
}

@media (max-width: 900px) {
  .wf-body { grid-template-columns: 1fr; }
  .wf-title { max-width: 100%; }
}

/* === 14. RESULTS / STATS ====================================== */
.results-header {
  margin-bottom: clamp(48px, 6vw, 88px);
}

.results-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.results-h2 {
  font-size: clamp(52px, 9vw, 128px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.stats-row-2 { grid-template-columns: repeat(2, 1fr); }

.stat-box {
  background: rgba(255,255,255,0.04);
  padding: clamp(24px, 3vw, 44px);
}

.stat-top {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 14px;
}

.stat-n {
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

.stat-sfx {
  font-size: clamp(22px, 3.5vw, 48px);
  font-weight: 700;
  opacity: 0.35;
}

.stat-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  font-weight: 300;
}

/* === 15. SOCIAL SECTION ======================================= */
.social-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.social-h2 {
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.28;
  letter-spacing: -0.015em;
  margin-bottom: 44px;
}
.social-h2 em { font-style: italic; color: var(--accent); font-weight: 400; }

.platforms-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 44px;
}

.platform-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: border-color 0.3s, color 0.3s;
}
.platform-chip:hover { border-color: var(--accent); color: var(--accent); }
.platform-chip::before {
  content: '◆';
  font-size: 7px;
  color: var(--accent);
}

/* === 16. CTA STRIP ============================================ */
.cta-strip {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}

.cta-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
}

.cta-h2 {
  font-size: clamp(36px, 6.5vw, 88px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 48px;
}
.cta-h2 em { font-style: italic; color: var(--accent); }

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

/* === 17. FOOTER =============================================== */
#footer {
  background: var(--bg-dark);
  color: var(--white);
  overflow: hidden;
}

/* Top nav row */
.footer-top {
  display: flex;
  gap: clamp(32px, 6vw, 80px);
  padding: clamp(36px, 4.5vw, 56px) var(--pad) clamp(28px, 3.5vw, 44px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-col-end { margin-left: auto; }

.footer-col-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  transition: color 0.25s;
  line-height: 1.35;
}
.footer-col a:hover { color: var(--accent); }

/* Wordmark row */
.footer-wordmark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.18em;
  padding: clamp(14px, 2.5vw, 28px) var(--pad) 0;
  white-space: nowrap;
}

.footer-wordmark span {
  font-size: clamp(44px, 8.4vw, 152px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.88;
  color: var(--white);
  font-family: var(--font-display);
}

/* Animated smiley face */
.footer-face {
  width: clamp(36px, 7vw, 128px);
  height: clamp(36px, 7vw, 128px);
  flex-shrink: 0;
  animation: face-spin 12s linear infinite;
}

.footer-face svg {
  width: 100%;
  height: 100%;
  color: var(--white);
}

.footer-face .eye {
  animation: eye-blink 4s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes face-spin {
  to { transform: rotate(360deg); }
}

@keyframes eye-blink {
  0%, 88%, 100% { transform: scaleY(1); }
  93%            { transform: scaleY(0.08); }
}

/* Copyright bar */
.footer-copy-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(12px, 1.8vw, 20px) var(--pad);
}

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}

.footer-copy a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-copy a:hover {
  color: rgba(255,255,255,0.6);
}

/* === 18a. SLIM CONTACT BANNER ================================= */
.contact-slim {
  background: var(--text);
  color: var(--bg);
  padding: clamp(72px, 12vw, 140px) var(--pad);
  text-align: center;
}
.contact-slim-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.contact-slim-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.contact-slim-h {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--bg);
  margin: 0 0 20px;
}
.contact-slim-sub {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin: 0 auto 36px;
}
.contact-slim-ctas {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-slim .hero-btn-secondary {
  color: var(--bg);
  border-color: rgba(255,255,255,0.3);
}
.contact-slim .hero-btn-secondary:hover {
  background: var(--bg);
  color: var(--text);
}
@media (max-width: 540px) {
  .contact-slim-ctas { width: 100%; flex-direction: column; }
  .contact-slim-ctas .hero-btn { width: 100%; justify-content: center; }
}

/* === 19. WORKS PAGE =========================================== */
.page-hero {
  min-height: 52vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--border);
}

.page-h1 {
  font-size: clamp(48px, 9vw, 120px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.page-intro {
  max-width: 500px;
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 24px;
}

.page-hero-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.page-hero-count {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* Works Filter */
.filter-bar {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: clamp(24px, 3vw, 40px) 0;
}

.filter-btn {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--muted);
  transition: all 0.3s;
  cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--bg-dark);
  color: var(--white);
  border-color: var(--bg-dark);
}

/* Works Grid */
.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
  padding: clamp(24px, 3vw, 48px) 0;
}

.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

.work-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.work-card-thumb {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  font-weight: 900;
  color: rgba(255,255,255,0.15);
  letter-spacing: -0.05em;
  transition: transform 0.7s var(--ease-2);
}
.work-card:hover .work-card-thumb { transform: scale(1.06); }

.work-card-info {
  padding: 20px 0 8px;
}

.work-card-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.work-card-cat {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.work-card-title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Work card large (featured) */
.work-card.featured { grid-column: span 2; }
.work-card.featured .work-card-img { aspect-ratio: 21/9; }
.work-card.featured .work-card-title { font-size: clamp(24px, 3.5vw, 44px); }

/* === 19. SERVICES PAGE ======================================== */
.svc-list { display: flex; flex-direction: column; }

.svc-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 5vw, 80px);
  padding: clamp(48px, 5vw, 80px) 0;
  border-bottom: 1px solid var(--border);
  transition: gap 0.4s var(--ease-2);
}
.svc-row:first-child { border-top: 1px solid var(--border); }

.svc-row-left {}

.svc-row-num {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

.svc-row-title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.svc-row-right { padding-top: 8px; }

.svc-row-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #555;
  margin-bottom: 32px;
}

.svc-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.svc-feat {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
}

/* Process section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.process-step {
  background: var(--bg);
  padding: clamp(28px, 3.5vw, 48px);
}

.process-step-num {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
}

.process-step-title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.25;
}

.process-step-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* === 20. ABOUT PAGE =========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.about-statement {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.about-statement em { font-style: italic; color: var(--accent); font-weight: 400; }

.values-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
}

.value-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.value-item:first-child { border-top: 1px solid var(--border); }

.value-num {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding-top: 4px;
}

.value-title {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 500;
  margin-bottom: 8px;
}

.value-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}

.team-card { }

.team-photo {
  aspect-ratio: 3/4;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--cream);
}

.team-photo-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  font-weight: 700;
  color: rgba(30,30,30,0.12);
  transition: transform 0.6s var(--ease-2);
}
.team-card:hover .team-photo-inner { transform: scale(1.04); }

.team-name {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 7vw, 112px);
  align-items: start;
}

.contact-info-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 32px;
}
.contact-info-title em { font-style: italic; color: var(--accent); }

.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-detail-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-detail-value {
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
}
.contact-detail-value a:hover { color: var(--accent); }

/* Form */
.form-row { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  cursor: pointer;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-bottom-color: var(--accent); }

.form-textarea { resize: none; min-height: 120px; }

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: var(--bg-dark);
  color: var(--white);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
  margin-top: 8px;
  cursor: pointer;
}
.form-submit:hover { background: var(--accent); transform: translateY(-1px); }

/* === 21. SCROLL ANIMATIONS ==================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.85s var(--ease-2),
    transform 0.85s var(--ease-2);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-x {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.8s var(--ease-2),
    transform 0.8s var(--ease-2);
  transition-delay: var(--d, 0s);
}
.reveal-x.in { opacity: 1; transform: translateX(0); }

/* === 21b. GENERATED TYPOGRAPHIC THUMBNAILS =================== */
/* Editorial-style cards shown when no thumbnail image exists    */
.gen-thumb {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

/* Brand mark — DC logo, absolute top-center */
.gen-brand {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  pointer-events: none;
}
.gen-brand-mark {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--text);
  line-height: 1;
}
.gen-brand-sep {
  width: 4px;
  height: 4px;
  background: rgba(30, 30, 30, 0.4);
  border-radius: 50%;
  flex-shrink: 0;
}
.gen-brand-sub {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.gen-brand-sub span {
  font-family: var(--font);
  font-size: 6.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 300;
  color: rgba(30,30,30, 0.5);
  line-height: 1.25;
}

/* Hairline rule below brand mark */
.gen-rule {
  position: absolute;
  top: 60px;
  left: 20px;
  right: 20px;
  height: 0.5px;
  background: rgba(30,30,30, 0.12);
}

/* Text block — centered vertically in card */
.gen-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 48px 22px 0;
  width: 100%;
  text-align: center;
}

/* Eyebrow — small italic accent (only shown when title has a colon) */
.gen-eyebrow {
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

/* Main headline — large and dominant, clamp to 3 lines */
.gen-title-inner {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--text);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* === 22. INSIGHTS SECTION (homepage blog preview) ============= */
.insights-section {
  padding: clamp(44px, 5.5vw, 76px) 0;
}

/* Header row — headline + pill button */
.insights-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(28px, 3.5vw, 48px);
  gap: 24px;
}

.insights-h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
}

.insights-h2 em {
  font-style: normal;
  color: var(--accent);
}

.insights-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.8);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 11px 20px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}
.insights-pill-btn:hover { background: rgba(255,255,255,0.13); color: var(--white); }

/* 3-column card grid */
.insights-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
}

/* Individual insight card */
.insight-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.35s var(--ease-2);
}
.insight-card:hover { transform: translateY(-4px); }

/* Card image / color block */
.insight-card-thumb {
  border-radius: 10px;
  aspect-ratio: 3/2;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  margin-bottom: 14px;
  background-size: cover !important;
  background-position: center !important;
  text-align: center;
}

/* Real thumbnail images: anchor left so left-aligned editorial content isn't cropped */
.insight-card-thumb.has-thumb {
  background-position: left center !important;
}

/* Below-card footer */
.insight-card-foot { padding: 0 2px; }

.insight-card-full-title {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.45;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-card-cat {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
}

/* === 23. RESPONSIVE =========================================== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .sticky-label { position: static; }
  .insights-cards { grid-template-columns: repeat(2, 1fr); }
  .insights-header { flex-direction: column; align-items: flex-start; }
  .svc-row { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: 1fr; }
  .work-card.featured { grid-column: span 1; }
  .work-card.featured .work-card-img { aspect-ratio: 4/3; }
  .work-card.featured .work-card-title { font-size: clamp(20px, 3vw, 32px); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .work-row { grid-template-columns: 1fr; }
  .hero-ctas { width: 100%; }
  .hero-btn { flex: 1; justify-content: center; }
  .intro-foot { flex-direction: column; align-items: flex-start; gap: 24px; }
  .intro-kpi { text-align: left; }
  .page-hero-foot { flex-direction: column; align-items: flex-start; gap: 16px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 520px) {
  .insights-cards { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-top { flex-wrap: wrap; gap: 24px; }
  .footer-col-end { margin-left: 0; }
  .footer-wordmark { gap: 0.12em; }
  .cta-buttons { flex-direction: column; gap: 16px; }
  /* Slightly taller on very small screens */
  .hero-collage__bg,
  .hero-collage__img,
  .hero-collage__dot1,
  .hero-collage__dot2 {
    height: 50vh;
    right: -8%;
  }
}

/* === 24. FEATURED WORKS — RIPPLE CARDS ======================= */
.wp-section {
  background: var(--bg);
}

.wp-head {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.wp-h2 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--text);
}
.wp-h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
}

/* 55 / 45 asymmetric grid */
.wp-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 12px;
}

/* ── Individual card ── */
.fp-card {
  position: relative;
  display: block;
  height: clamp(300px, 36vw, 480px);
  border-radius: 14px;
  overflow: hidden;
  background: #161820;
  text-decoration: none;
  cursor: pointer;
}

/* Static full-resolution thumbnail */
.fp-static {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.45s ease, filter 0.45s ease;
  will-change: transform;
}
.fp-card:hover .fp-static {
  transform: scale(1.035);
  filter: brightness(0.85);
}

/* Content overlay — sits above canvas */
.fp-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

/* Giant ghosted index number — top-left decorative */
.fp-idx {
  display: block;
  padding: 20px 24px;
  font-size: clamp(64px, 9vw, 108px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  user-select: none;
  transition: color 0.5s ease;
}
.fp-card:hover .fp-idx {
  color: rgba(255, 255, 255, 0.08);
}

/* Bottom info bar with gradient scrim */
.fp-bottom {
  padding: 44px 24px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, transparent 100%);
  transform: translateY(6px);
  transition: transform 0.45s var(--ease-2);
}
.fp-card:hover .fp-bottom {
  transform: translateY(0);
}

.fp-cat {
  display: block;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 6px;
}

.fp-title {
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: #fff;
  margin: 0;
}

/* Arrow link button — top right */
.fp-arrow-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  transition:
    background   0.3s ease,
    border-color 0.3s ease,
    color        0.3s ease,
    transform    0.4s var(--ease-2);
}
.fp-card:hover .fp-arrow-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: scale(1.12);
}

/* View All button */
.wp-foot {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 3.5vw, 44px);
}

.wp-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 100px;
  border: 1.5px solid rgba(30,30,30, 0.25);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  transition: background 0.22s, color 0.22s, border-color 0.22s;
}
.wp-more-btn:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

/* ── Responsive ── */
@media (max-width: 760px) {
  .wp-grid {
    grid-template-columns: 1fr;
  }
  .fp-card {
    height: clamp(240px, 60vw, 320px);
  }
  .fp-idx {
    font-size: 56px;
  }
}


/* =====================================================
   WORKS LISTING PAGE — .wk- prefix
   Immersive full-width case study listing
   ===================================================== */

.wk-section {
  background: var(--bg-dark);
  padding: clamp(40px, 6vw, 80px) 0 0;
}

.wk-listing {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.wk-case {
  padding-bottom: clamp(40px, 5vw, 72px);
}

.wk-case-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.wk-case-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: clamp(24px, 3vw, 40px);
}

.wk-case-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-2);
}

.wk-case-link:hover .wk-case-img {
  transform: scale(1.03);
}

.wk-case-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  letter-spacing: -0.04em;
  transition: transform 0.6s var(--ease-2);
}

.wk-case-link:hover .wk-case-img-placeholder {
  transform: scale(1.03);
}

.wk-case-body {
  max-width: 780px;
}

.wk-case-client {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.wk-case-title {
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
}

.wk-case-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  max-width: 640px;
}

.wk-case-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.wk-case-cat {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.wk-case-year {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
}

.wk-case-meta .result-pill {
  font-size: 11px;
}

.wk-case-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent);
  transition: gap 0.3s var(--ease-2);
}

.wk-case-link:hover .wk-case-explore {
  gap: 14px;
}

.wk-case-sep {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-top: clamp(40px, 5vw, 72px);
}

.wk-case:last-child .wk-case-sep {
  display: none;
}

/* Works listing responsive */
@media (max-width: 760px) {
  .wk-case-title {
    font-size: clamp(20px, 5.5vw, 32px);
  }
  .wk-case-desc {
    font-size: 14px;
  }
}


/* =====================================================
   CASE DETAIL PAGE — .cd- prefix
   Immersive case study detail layout
   ===================================================== */

/* Hero */
.cd-hero {
  padding: calc(var(--nav-h) + clamp(40px, 5vw, 72px)) 0 clamp(48px, 6vw, 80px);
  background: var(--bg);
}

.cd-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  transition: color 0.25s;
}

.cd-back:hover {
  color: var(--accent);
}

.cd-client {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.cd-title {
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 900px;
  margin-bottom: 24px;
}

.cd-result-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Banner */
.cd-banner {
  width: 100%;
  overflow: hidden;
}

.cd-banner-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

/* Generic sections */
.cd-section {
  padding: clamp(48px, 7vw, 100px) 0;
}

.cd-section--light {
  background: var(--bg);
}

.cd-section--dark {
  background: var(--bg-dark);
  color: #fff;
}

.cd-wrap {
  max-width: 820px;
}

/* Section labels — "( Overview )" style */
.cd-section-label {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(24px, 3vw, 40px);
}

.cd-section-label--light {
  color: rgba(255,255,255,0.4);
}

/* Text blocks */
.cd-text {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: #3a3a3e;
}

.cd-text--light {
  color: rgba(255,255,255,0.75);
}

.cd-text h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 2em 0 0.8em;
  line-height: 1.25;
}

.cd-section--dark .cd-text h2 {
  color: #fff;
}

.cd-text h3 {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 500;
  margin: 1.8em 0 0.6em;
}

.cd-section--dark .cd-text h3 {
  color: rgba(255,255,255,0.9);
}

.cd-text p {
  margin-bottom: 1.4em;
}

.cd-text strong {
  font-weight: 600;
  color: var(--text);
}

.cd-section--dark .cd-text strong {
  color: #fff;
}

.cd-text em {
  font-style: italic;
}

.cd-text ul, .cd-text ol {
  margin: 1em 0 1.4em 1.4em;
}

.cd-text li {
  margin-bottom: 0.55em;
}

.cd-text blockquote {
  border-left: 3px solid var(--accent);
  margin: 1.6em 0;
  padding: 4px 0 4px 20px;
  color: var(--muted);
  font-style: italic;
}

.cd-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cd-text hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.4em 0;
}

/* Capabilities pills */
.cd-caps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cd-cap-pill {
  display: inline-block;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  color: rgba(255,255,255,0.7);
  background: transparent;
  transition: border-color 0.3s, color 0.3s;
}

.cd-cap-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Gallery — horizontal scroll with snap */
.cd-gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(20px, 3vw, 32px);
}

.cd-gallery-counter {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.cd-gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.cd-gallery::-webkit-scrollbar {
  display: none;
}

.cd-gallery-item {
  flex: 0 0 clamp(280px, 70vw, 720px);
  scroll-snap-align: start;
  border-radius: 6px;
  overflow: hidden;
}

.cd-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  transition: transform 0.5s var(--ease-2);
}

.cd-gallery-item:hover img {
  transform: scale(1.02);
}

/* Stats grid */
.cd-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-top: clamp(32px, 4vw, 56px);
  overflow: hidden;
}

.cd-stat {
  background: var(--bg);
  padding: clamp(24px, 3vw, 40px);
  text-align: center;
}

.cd-stat-num {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}

.cd-stat-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* Case detail responsive */
@media (max-width: 760px) {
  .cd-title {
    font-size: clamp(24px, 7vw, 36px);
  }
  .cd-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .cd-gallery-item {
    flex: 0 0 85vw;
  }
  .cd-cap-pill {
    font-size: 11px;
    padding: 6px 14px;
  }
}

/* ═══════════════════════════════════════════════════
   DESIGN UPGRADE 2026-06 — professional + light personality
   Benchmark: Purpose Talent. Footer intentionally untouched.
   Patterns rebuilt with DC brand assets (no copied assets).
   ═══════════════════════════════════════════════════ */

/* Editorial accent mark next to key headings (DC-red sparkle) */
.hdr-mark { display:inline-block; width:.6em; height:.6em; margin-left:.16em; vertical-align:.06em; color:var(--accent); }
.hdr-mark svg { display:block; width:100%; height:100%; fill:currentColor; }

/* Bigger, more confident display headlines */
.hero-h1 { font-size: clamp(46px, 6.6vw, 96px); letter-spacing:-.04em; }
.wp-h2, .results-h2, .insights-h2 { letter-spacing:-.03em; }

/* Card hover polish — subtle lift, no static tilt (keeps it professional) */
.svc-card { transition: background .4s var(--ease-2), transform .45s var(--ease-2); will-change:transform; }
.svc-card:hover { transform: translateY(-6px); }
.insight-card, .wp-card { transition: transform .5s var(--ease-2), box-shadow .5s var(--ease-2); }
.insight-card:hover, .wp-card:hover { transform: translateY(-6px) rotate(-.5deg); box-shadow: 0 24px 50px -24px rgba(30,30,30,.35); }

/* ── FOUNDER / TRUST SECTION (warm/light — approachable) ── */
.founder { background: var(--cream); color: var(--text); border-top: 1px solid var(--border); }
.founder-grid { display:grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: clamp(32px,5vw,80px); align-items:center; }
.founder-photo { position:relative; border-radius:18px; overflow:hidden; aspect-ratio:3/4; max-width:360px; box-shadow: 0 30px 60px -30px rgba(30,30,30,.4); }
.founder-photo img { width:100%; height:100%; object-fit:cover; display:block; }
.founder-photo::after { content:""; position:absolute; inset:0; border-radius:18px; box-shadow: inset 0 0 0 1px rgba(30,30,30,.10); pointer-events:none; }
.founder-tag { display:inline-flex; align-items:center; gap:8px; font-size:10.5px; letter-spacing:.2em; text-transform:uppercase; color:var(--muted); margin-bottom:18px; }
.founder-tag .label-num { color:var(--accent); font-variant-numeric:tabular-nums; font-weight:500; }
.founder-h2 { font-family:var(--font-display); font-size:clamp(30px,4.2vw,54px); font-weight:500; line-height:1.05; letter-spacing:-.03em; margin:0 0 22px; color:var(--text); }
.founder-h2 em { font-style:normal; color:var(--accent); font-weight:600; }
.founder-bio { font-size:clamp(15px,1.2vw,18px); line-height:1.6; color:rgba(30,30,30,.72); max-width:50ch; margin:0 0 26px; }
.founder-meta { display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.founder-name { font-weight:600; color:var(--text); }
.founder-role { color:var(--muted); font-size:14px; }
.founder-link { display:inline-flex; align-items:center; gap:7px; color:var(--text); font-size:14px; font-weight:600; border-bottom:1px solid rgba(30,30,30,.25); padding-bottom:2px; transition:border-color .3s; }
.founder-link:hover { border-color:var(--accent); }
@media (max-width:860px){ .founder-grid{ grid-template-columns:1fr; gap:32px; } .founder-photo{ max-width:260px; } }

/* Smooth scroll (Lenis) — JS-driven; respect reduced motion */
html.lenis { height:auto; }
.lenis.lenis-smooth { scroll-behavior:auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior:contain; }
.lenis.lenis-stopped { overflow:hidden; }
@media (prefers-reduced-motion: reduce){ .lenis.lenis-smooth { scroll-behavior:auto !important; } }

/* ── HOMEPAGE FAQ ACCORDION (added 2026-06) ─────────── */
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 26px 0; font-size: clamp(17px,1.6vw,21px); font-weight: 600; letter-spacing: -0.01em; color: var(--text); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-weight: 300; font-size: 28px; line-height: 1; color: var(--accent); transition: transform .3s var(--ease-2); flex: none; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 0 26px; max-width: 70ch; font-size: 16px; font-weight: 300; line-height: 1.8; color: rgba(30,30,30,.72); }
.faq-item .faq-a a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ── HERO hand-drawn illustration (licensed Purpose Talent assets) ── */
.hero-art-illus {
  background: transparent;
  overflow: visible;
  border-radius: 0;
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-character { width: min(88%, 480px); height: auto; display: block; }
.hero-shape-1 { width: clamp(56px, 8vw, 96px); top: 2%; right: 6%; animation: heroFloat 6s var(--ease-2) infinite; }
.hero-shape-2 { width: clamp(40px, 6vw, 68px); bottom: 6%; left: 2%; animation: heroFloat 7.5s var(--ease-2) infinite; animation-delay: -2s; }
@keyframes heroFloat { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-14px) rotate(5deg); } }
@media (prefers-reduced-motion: reduce) { .hero-shape { animation: none; } }
@media (max-width: 880px) {
  .hero-art-illus { aspect-ratio: auto; margin-bottom: 8px; }
  .hero-character { width: min(64%, 320px); }
}

/* ── DC INTRO PRELOADER (homepage, once per session) ──── */
#dc-preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
  animation: dcpOut .6s var(--ease-2) 1.5s forwards;
}
.dcp-inner {
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  color: #fff;
  animation: dcpIn .55s var(--ease-2) both;
}
.dcp-logo { width: clamp(150px, 26vw, 210px); height: auto; display: block; }
.dcp-count { font-family: var(--font-display); font-size: 13px; letter-spacing: .22em; color: rgba(255,255,255,.55); font-variant-numeric: tabular-nums; }
@keyframes dcpIn  { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes dcpOut { to { opacity: 0; visibility: hidden; pointer-events: none; } }
.intro-seen #dc-preloader { display: none !important; }
@media (prefers-reduced-motion: reduce) {
  #dc-preloader { animation: dcpOut .4s ease .4s forwards; }
  .dcp-inner { animation: none; }
}

/* ── TAY BEA display font (licensed from Purpose Talent) ─── */
@font-face {
  font-family: 'Tay Bea';
  src: url('/assets/fonts/tay-bea.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ── Hand-drawn shape accent on inner-page heroes ─────── */
.page-hero { position: relative; overflow: hidden; }
.page-shape-1 { width: clamp(72px, 9vw, 132px); top: 14%; right: 5%; animation: heroFloat 7s var(--ease-2) infinite; }
@media (max-width: 760px) { .page-shape-1 { width: 64px; top: auto; bottom: 10%; right: 4%; opacity: .55; } }

/* Keep Tay Bea for big headlines only; small headings stay sans for clarity */
h3, .svc-title, .svc-desc { font-family: var(--font); letter-spacing: -0.01em; }
.dcp-count { font-family: var(--font); }

/* ── Hand-drawn shape accents in dark sections ────────── */
.s-dark { position: relative; overflow: hidden; }
.sec-shape { position: absolute; mix-blend-mode: lighten; pointer-events: none; }
.sec-shape-r { width: clamp(68px,8vw,120px); top: 12%; right: 5%; animation: heroFloat 8s var(--ease-2) infinite; }
.sec-shape-i { width: clamp(56px,7vw,104px); bottom: 14%; left: 4%; animation: heroFloat 9s var(--ease-2) infinite; animation-delay: -3s; }
@media (max-width:760px){ .sec-shape { opacity:.5; width:56px !important; } }

/* Restore shape base rules (transparent webp now — no blend mode needed) */
.hero-shape { position: absolute; pointer-events: none; height: auto; }
.page-shape { position: absolute; pointer-events: none; }

/* ── Results stat tiles: client attribution + prefix ──── */
.stat-pfx { font-family: var(--font-display); font-weight: 500; color: var(--accent); }
.stat-client { display: block; margin-top: 8px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.results-cta { margin-top: clamp(40px,5vw,64px); }
.results-cta a { color: var(--white); }

/* ── Stat sparkline (mini upward trend, draws on reveal) ─ */
.stat-spark { width: clamp(58px,6vw,86px); height: auto; display: block; margin: 16px 0 6px; color: var(--accent); overflow: visible; }
.stat-spark .spark-line { stroke-dasharray: 130; stroke-dashoffset: 130; transition: stroke-dashoffset 1.1s var(--ease-2) .25s; }
.stat-spark .spark-dot { opacity: 0; transform-box: fill-box; transform-origin: center; transition: opacity .35s ease 1.05s; }
.reveal.in .stat-spark .spark-line { stroke-dashoffset: 0; }
.reveal.in .stat-spark .spark-dot { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .stat-spark .spark-line { transition: none; stroke-dashoffset: 0; }
  .stat-spark .spark-dot { transition: none; opacity: 1; }
}
