/* =============================================
   YOUR EVIDENT SOLUTION - Global Stylesheet
   Design System: Refined Editorial Dark
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  /* Palette */
  --void: #080808;
  --obsidian: #111111;
  --charcoal: #1C1C1C;
  --graphite: #2A2A2A;
  --slate: #404040;
  --ash: #686868;
  --mist: #A0A0A0;
  --silver: #C8C8C8;
  --pearl: #E8E6E0;
  --cream: #F5F3EE;
  --white: #FAFAF8;
  --gold: #B8965A;
  --gold-light: #D4AD6F;
  --gold-pale: #F0E4CC;
  --teal: #2C7A6E;
  --teal-light: #3A9B8C;
  --teal-pale: #E0F2EF;

  /* Typography */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;

  /* Spacing */
  --nav-h: 76px;
  --section-pad: 8rem 6vw;
  --section-pad-sm: 5rem 6vw;

  /* Radius */
  --r-sm: 3px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Shadows */
  --shadow-card: 0 4px 32px rgba(0,0,0,0.06);
  --shadow-hover: 0 16px 64px rgba(0,0,0,0.12);
  --shadow-gold: 0 0 0 1px rgba(184,150,90,0.3);
}

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

/* --- NAVIGATION --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6vw;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.4s;
}
.nav.light {
  background: rgba(250,250,248,0.94);
  border-bottom-color: rgba(0,0,0,0.08);
}
.nav-logo {
  display: flex;
  align-items: center;
  color: var(--white);
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.78; }
.nav.light .nav-logo { color: var(--obsidian); }
.nav-logo-svg { height: 34px; width: auto; display: block; }

.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.25s;
  position: relative;
}
.nav.light .nav-links a { color: var(--ash); }
.nav-links a:hover { color: var(--white); }
.nav.light .nav-links a:hover { color: var(--obsidian); }
.nav-links a.active { color: var(--gold); }
.nav-links a.nav-featured { font-weight: 500; }
.nav.light .nav-links a.nav-featured { color: var(--obsidian); font-weight: 500; }
.nav-links a.nav-featured:hover { color: var(--gold); }
.nav.light .nav-links a.nav-featured:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--void);
  padding: 0.6rem 1.5rem;
  border-radius: var(--r-sm);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.2s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav-mobile-btn {
  display: none;
  background: none; border: none;
  color: var(--white);
  font-size: 1.4rem;
  padding: 0; line-height: 0;
}
.nav-mobile-btn svg { width: 26px; height: 26px; display: block; }
.nav.light .nav-mobile-btn { color: var(--obsidian); }
.nav-links.is-open {
  display: flex !important; flex-direction: column;
  position: absolute; top: var(--nav-h); left: 0; right: 0;
  background: rgba(8,8,8,0.97);
  padding: 2rem 6vw; gap: 1.5rem; z-index: 999;
}
/* CTA shown only inside the mobile dropdown menu */
.nav-cta-mobile { display: none; }
.nav-links.is-open .nav-cta-mobile { display: block; margin-top: 0.4rem; }
.nav-links.is-open .nav-cta-mobile a {
  display: inline-block;
  background: var(--gold); color: var(--void) !important;
  padding: 0.7rem 1.5rem; border-radius: var(--r-sm);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
}

/* --- STICKY CTA --- */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--obsidian);
  border-top: 1px solid rgba(184,150,90,0.2);
  padding: 1rem 6vw;
  display: flex; align-items: center; justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar p { font-size: 0.88rem; color: var(--silver); }
.sticky-bar p strong { color: var(--white); font-weight: 500; }
.sticky-bar .btn-gold { padding: 0.6rem 1.5rem; font-size: 0.8rem; }

/* --- TYPOGRAPHY --- */
.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.display-xl { font-size: clamp(3.2rem, 7vw, 7rem); }
.display-lg { font-size: clamp(2.6rem, 5vw, 5rem); }
.display-md { font-size: clamp(2rem, 3.5vw, 3.5rem); }
.display-sm { font-size: clamp(1.6rem, 2.5vw, 2.4rem); }

.eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--gold);
  margin-right: 10px;
  vertical-align: middle;
}

.lead {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 300;
  color: var(--ash);
  line-height: 1.85;
  max-width: 580px;
}

/* --- BUTTONS --- */
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold);
  color: var(--void);
  padding: 0.9rem 2.2rem;
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(184,150,90,0.3); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.25s;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.06); transform: translateY(-2px); }

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--obsidian);
  padding: 0.9rem 2.2rem;
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(0,0,0,0.2);
  transition: all 0.25s;
}
.btn-outline-dark:hover { border-color: var(--obsidian); background: var(--obsidian); color: var(--white); transform: translateY(-2px); }

.btn-text {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: none; border: none;
  transition: gap 0.2s;
}
.btn-text:hover { gap: 0.8rem; }
.btn-text .arrow { transition: transform 0.2s; }
.btn-text:hover .arrow { transform: translateX(4px); }

/* --- SECTIONS --- */
.section { padding: var(--section-pad); }
.section-sm { padding: var(--section-pad-sm); }
.section-dark { background: var(--obsidian); color: var(--white); }
.section-void { background: var(--void); color: var(--white); }
.section-cream { background: var(--cream); }
.section-charcoal { background: var(--charcoal); color: var(--white); }

.section-header { margin-bottom: 4rem; }
.section-header .eyebrow { margin-bottom: 1.2rem; display: block; }
.section-header .display { margin-bottom: 1.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .lead { margin: 0 auto; }
.section-header.centered .eyebrow::before { display: none; }
.section-header.centered .eyebrow { display: block; }

/* --- GRID --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: start; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
.grid-equal { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

/* --- CARDS --- */
.card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--r-lg);
  padding: 2.2rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.card-dark {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: 2.2rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.card-dark:hover { box-shadow: 0 16px 64px rgba(0,0,0,0.4); transform: translateY(-4px); }

.card-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
.card-icon-gold { background: var(--gold-pale); }

.card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  line-height: 1.3;
}
.card-dark h3 { color: var(--pearl); }
.card p { font-size: 0.9rem; color: var(--ash); line-height: 1.75; }
.card-dark p { color: rgba(200,200,200,0.6); }

/* --- CASE STUDY CARDS --- */
.work-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow 0.3s, transform 0.3s;
}
.work-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.work-thumb {
  height: 220px;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 1.5rem;
}
.work-thumb-re { background: linear-gradient(160deg, #0D2E22 0%, #1A5A44 100%); }
.work-thumb-d2c { background: linear-gradient(160deg, #1E1030 0%, #4A2080 100%); }
.work-thumb-saas { background: linear-gradient(160deg, #091830 0%, #163E6A 100%); }
.work-thumb-ps { background: linear-gradient(160deg, #201408 0%, #4A2E10 100%); }
.work-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}
.work-body { padding: 1.8rem; }
.work-body h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.work-body p { font-size: 0.87rem; color: var(--ash); margin-bottom: 1.2rem; line-height: 1.7; }
.work-metrics { display: flex; gap: 1.8rem; padding-top: 1rem; border-top: 1px solid rgba(0,0,0,0.06); }
.work-metric strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.work-metric span { font-size: 0.7rem; color: var(--mist); letter-spacing: 0.06em; text-transform: uppercase; }

/* --- STAT BLOCKS --- */
.stat-block { padding: 2rem 0; border-top: 1px solid rgba(255,255,255,0.08); }
.stat-block:first-child { border-top: none; }
.stat-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label { font-size: 0.82rem; color: rgba(200,200,200,0.55); margin-top: 0.4rem; }

/* --- PROCESS STEPS --- */
.process-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  align-items: start;
}
.process-item:last-child { border-bottom: none; }
.process-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(0,0,0,0.12);
  line-height: 1;
}
.section-dark .process-num { color: rgba(255,255,255,0.1); }
.process-content h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.process-content p { font-size: 0.9rem; color: var(--ash); max-width: 520px; line-height: 1.8; }
.section-dark .process-content p { color: rgba(200,200,200,0.55); }
.process-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem; }
.process-tag {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  background: var(--teal-pale);
  color: var(--teal);
  border: 1px solid rgba(44,122,110,0.2);
}
.section-dark .process-tag { background: rgba(44,122,110,0.15); color: var(--teal-light); border-color: rgba(58,155,140,0.2); }

/* --- TESTIMONIAL --- */
.testimonial {
  padding: 3rem;
  border-radius: var(--r-xl);
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 0; left: 1.5rem;
  line-height: 1;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
  color: var(--pearl);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-author { font-size: 0.82rem; color: var(--mist); }
.testimonial-author strong { color: var(--silver); font-weight: 500; display: block; margin-bottom: 0.2rem; }

/* --- FORM --- */
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: var(--cream);
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  color: var(--obsidian);
  transition: border-color 0.25s, background 0.25s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%;
  background: var(--obsidian);
  color: var(--white);
  padding: 1.1rem;
  border: none;
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.2s;
  cursor: pointer;
}
.form-submit:hover { background: var(--teal); transform: translateY(-2px); }

/* --- TRUST BAR --- */
.trust-bar {
  padding: 1.8rem 6vw;
  background: var(--cream);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex; align-items: center; gap: 3rem; flex-wrap: wrap;
}
.trust-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mist); white-space: nowrap; }
.trust-logos { display: flex; gap: 3rem; align-items: center; flex-wrap: wrap; }
.trust-logo { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: rgba(0,0,0,0.2); letter-spacing: 0.02em; }

/* --- DIVIDER --- */
.divider { height: 1px; background: rgba(0,0,0,0.07); margin: 0 6vw; }
.divider-dark { height: 1px; background: rgba(255,255,255,0.07); margin: 0 6vw; }

/* --- TAGS / PILLS --- */
.pill {
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  border: 1px solid;
}
.pill-gold { background: var(--gold-pale); color: var(--gold); border-color: rgba(184,150,90,0.25); }
.pill-teal { background: var(--teal-pale); color: var(--teal); border-color: rgba(44,122,110,0.2); }
.pill-dark { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.1); }

/* --- FOOTER --- */
footer {
  background: var(--void);
  color: var(--white);
  padding: 6rem 6vw 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 3rem;
}
.footer-brand-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
}
.footer-brand-name span { color: var(--gold); }
.footer-logo-svg { height: 62px; width: auto; display: block; }
.footer-logo-img { height: 72px; width: auto; display: block; }
.footer-brand-desc { font-size: 0.87rem; color: rgba(255,255,255,0.35); line-height: 1.75; max-width: 260px; margin-bottom: 2rem; }
.footer-col h4 { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 1.5rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col a { font-size: 0.87rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-copyright { font-size: 0.78rem; color: rgba(255,255,255,0.52); }
.footer-tagline { font-family: var(--serif); font-size: 0.88rem; font-style: italic; color: rgba(255,255,255,0.52); }

/* --- ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* --- UTILITY --- */
.container { max-width: 1280px; margin: 0 auto; }
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.text-white { color: var(--white); }
.text-muted { color: var(--ash); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.flex-gap { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.italic { font-style: italic; }
.serif { font-family: var(--serif); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  :root { --section-pad: 3.5rem 6vw; --section-pad-sm: 2.75rem 6vw; }
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
  /* Standalone CTA is too wide for the bar; it lives in the menu instead */
  .nav-cta { display: none; }
  .nav { padding: 0 5vw; gap: 0.85rem; }
  /* Group toggle + hamburger on the right; logo stays left */
  .nav .theme-toggle { margin-left: auto; }
  .grid-2, .grid-3, .grid-equal, .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; gap: 1.5rem; }
  .grid-4 { grid-template-columns: 1fr; }
  .form-group-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .trust-bar { gap: 1.5rem; }
  .trust-logos { gap: 1.5rem; }
  .sticky-bar { flex-direction: column; gap: 0.8rem; text-align: center; }
  .process-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .process-num { font-size: 2rem; }
}

/* --- PAGE HERO VARIANTS --- */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) 6vw 5rem;
  background: var(--obsidian);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,150,90,0.4), transparent);
}
.page-hero-inner { max-width: 800px; }
.page-hero .eyebrow { margin-bottom: 1.5rem; display: block; }
.page-hero .display { color: var(--white); margin-bottom: 1.5rem; }
.page-hero .lead { color: rgba(255,255,255,0.55); max-width: 600px; }

/* ═══════════════════════════════════════════
   THEME TOGGLE WIDGET
   ═══════════════════════════════════════════ */
.theme-toggle {
  display: inline-flex; align-items: center; gap: 0.55rem;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  border-radius: 999px;
  padding: 0.42rem 0.75rem 0.42rem 0.5rem;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
  cursor: pointer;
}
.theme-toggle:hover {
  border-color: rgba(184,150,90,0.55);
  background: rgba(184,150,90,0.12);
  color: var(--white);
}
.theme-toggle-track {
  width: 34px; height: 18px; border-radius: 999px;
  background: rgba(255,255,255,0.18); position: relative; flex-shrink: 0;
}
.theme-toggle-knob {
  position: absolute; top: 3px; left: 3px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); transition: transform 0.25s;
}
/* Light nav (contact page) */
.nav.light .theme-toggle {
  border-color: rgba(0,0,0,0.14);
  background: rgba(0,0,0,0.04);
  color: var(--ash);
}
.nav.light .theme-toggle:hover {
  border-color: rgba(184,150,90,0.55);
  background: var(--gold-pale);
  color: var(--obsidian);
}
/* Knob position: light = right, dark = left */
html[data-theme="light"] .theme-toggle-knob { transform: translateX(16px); }
html[data-theme="dark"]  .theme-toggle-knob { transform: translateX(0); }
/* Mobile: hide label to save space, keep track */
@media (max-width: 768px) {
  .theme-toggle-label { display: none; }
  .theme-toggle { padding: 0.42rem 0.5rem; }
}

/* ═══════════════════════════════════════════
   DARK MODE OVERRIDES
   Default (light) = current appearance.
   Dark mode = cream/white sections go dark.
   ═══════════════════════════════════════════ */

/* Body */
html[data-theme="dark"] body {
  background: var(--void);
  color: var(--pearl);
}

/* Nav - force dark nav on all pages */
html[data-theme="dark"] .nav,
html[data-theme="dark"] .nav.light {
  background: rgba(8,8,8,0.95);
  border-bottom-color: rgba(255,255,255,0.08);
}
html[data-theme="dark"] .nav-logo { color: var(--white); }
html[data-theme="dark"] .nav-links a,
html[data-theme="dark"] .nav.light .nav-links a,
html[data-theme="dark"] .nav-links a[style] { color: rgba(255,255,255,0.62) !important; }
html[data-theme="dark"] .nav-links a:hover,
html[data-theme="dark"] .nav.light .nav-links a:hover { color: var(--white) !important; }
html[data-theme="dark"] .nav-links a.active { color: var(--gold) !important; }
html[data-theme="dark"] .nav-mobile-btn,
html[data-theme="dark"] .nav.light .nav-mobile-btn { color: var(--white); }
html[data-theme="dark"] .theme-toggle {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
}
html[data-theme="dark"] .nav.light .theme-toggle { border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.7); }

/* -- Light sections → dark backgrounds -- */
html[data-theme="dark"] .trust-bar,
html[data-theme="dark"] .problem-section,
html[data-theme="dark"] .work-preview,
html[data-theme="dark"] .ind-strip,
html[data-theme="dark"] .manifesto-section,
html[data-theme="dark"] .values-section,
html[data-theme="dark"] .team-section,
html[data-theme="dark"] .engagement-section,
html[data-theme="dark"] .process-section,
html[data-theme="dark"] .pillar,
html[data-theme="dark"] .pillar:nth-child(even),
html[data-theme="dark"] .ind-section,
html[data-theme="dark"] .ind-section:nth-child(even),
html[data-theme="dark"] .other-ways,
html[data-theme="dark"] .fit-section,
html[data-theme="dark"] .contact-right,
html[data-theme="dark"] .photo-gallery-section,
html[data-theme="dark"] .process-callout-inner,
html[data-theme="dark"] .section-cream,
html[data-theme="dark"] [style*="background:var(--cream)"],
html[data-theme="dark"] [style*="background: var(--cream)"] {
  background: var(--void) !important;
  color: var(--pearl);
}

/* Inline-white elements are cards (e.g. client cards) - give them a raised dark surface */
html[data-theme="dark"] [style*="background:var(--white)"],
html[data-theme="dark"] [style*="background: var(--white)"] {
  background: var(--obsidian) !important;
  border-color: rgba(255,255,255,0.09) !important;
  color: var(--pearl);
}

/* Filter bar (Work gallery, Insights) */
html[data-theme="dark"] .filter-bar,
html[data-theme="dark"] .insights-filter {
  background: var(--void) !important;
  border-bottom-color: rgba(255,255,255,0.08) !important;
}
html[data-theme="dark"] .filter-label { color: rgba(255,255,255,0.4) !important; }
html[data-theme="dark"] .filter-btn { border-color: rgba(255,255,255,0.18) !important; color: rgba(255,255,255,0.6) !important; }
html[data-theme="dark"] .filter-btn:hover { border-color: var(--white) !important; color: var(--white) !important; }
html[data-theme="dark"] .filter-btn.active { background: var(--white) !important; color: var(--void) !important; border-color: var(--white) !important; }

/* -- Cards -- */
html[data-theme="dark"] .work-card,
html[data-theme="dark"] .value-card,
html[data-theme="dark"] .team-card,
html[data-theme="dark"] .pillar-service,
html[data-theme="dark"] .engagement-card:not(.featured),
html[data-theme="dark"] .other-way-card,
html[data-theme="dark"] .contact-form-wrap,
html[data-theme="dark"] .ind-service-card,
html[data-theme="dark"] .ind-stat-item,
html[data-theme="dark"] .insight-card,
html[data-theme="dark"] .sidebar-widget {
  background: var(--obsidian) !important;
  border-color: rgba(255,255,255,0.09) !important;
}

/* -- Headings -- */
html[data-theme="dark"] h1,
html[data-theme="dark"] h2,
html[data-theme="dark"] h3,
html[data-theme="dark"] h4,
html[data-theme="dark"] .display,
html[data-theme="dark"] .problem-quote,
html[data-theme="dark"] .manifesto-quote,
html[data-theme="dark"] .footer-brand-name,
html[data-theme="dark"] [style*="color:var(--obsidian)"],
html[data-theme="dark"] [style*="color: var(--obsidian)"],
html[data-theme="dark"] [style*="color:var(--void)"],
html[data-theme="dark"] [style*="color: var(--void)"] { color: var(--pearl) !important; }

/* -- Body text / muted -- */
html[data-theme="dark"] p,
html[data-theme="dark"] .lead,
html[data-theme="dark"] .pillar-intro,
html[data-theme="dark"] .manifesto-right p,
html[data-theme="dark"] .footer-brand-desc,
html[data-theme="dark"] .footer-col a,
html[data-theme="dark"] .footer-copyright,
html[data-theme="dark"] .footer-tagline,
html[data-theme="dark"] [style*="color:var(--ash)"],
html[data-theme="dark"] [style*="color: var(--ash)"],
html[data-theme="dark"] [style*="color:var(--mist)"],
html[data-theme="dark"] [style*="color: var(--mist)"],
html[data-theme="dark"] [style*="color:rgba(0,0,0,0.45"],
html[data-theme="dark"] [style*="color: rgba(0,0,0,0.45"],
html[data-theme="dark"] [style*="color:rgba(0,0,0,0.5"],
html[data-theme="dark"] [style*="color: rgba(0,0,0,0.5"],
html[data-theme="dark"] [style*="color:rgba(0,0,0,0.55"],
html[data-theme="dark"] [style*="color: rgba(0,0,0,0.55"] { color: rgba(250,250,248,0.6) !important; }

/* small uppercase labels */
html[data-theme="dark"] .form-group label,
html[data-theme="dark"] .form-section-label,
html[data-theme="dark"] .footer-col h4 { color: rgba(250,250,248,0.38) !important; }

/* -- Form inputs -- */
html[data-theme="dark"] .form-group input,
html[data-theme="dark"] .form-group textarea,
html[data-theme="dark"] .form-group select,
html[data-theme="dark"] .subscribe-input {
  background: var(--charcoal) !important;
  border-color: rgba(255,255,255,0.12) !important;
  color: var(--pearl) !important;
}
html[data-theme="dark"] .form-group input::placeholder,
html[data-theme="dark"] .form-group textarea::placeholder { color: rgba(250,250,248,0.32); }

/* -- Service checklist (contact page) -- */
html[data-theme="dark"] .service-check-item {
  background: var(--charcoal) !important;
  border-color: rgba(255,255,255,0.1) !important;
}
html[data-theme="dark"] .service-check-item label { color: rgba(250,250,248,0.62) !important; }
html[data-theme="dark"] .service-check-item:has(input:checked) { background: rgba(184,150,90,0.15) !important; }
html[data-theme="dark"] .service-check-item:has(input:checked) label { color: var(--pearl) !important; }

/* -- Tags / expertise pills -- */
html[data-theme="dark"] .team-expertise span,
html[data-theme="dark"] .pillar-service-tags span,
html[data-theme="dark"] .process-tag { background: var(--charcoal) !important; border-color: rgba(255,255,255,0.1) !important; color: rgba(250,250,248,0.62) !important; }

/* -- Trust bar fades -- */
html[data-theme="dark"] .trust-bar-label-col { background: var(--void) !important; }
html[data-theme="dark"] .trust-marquee-wrap::before { background: linear-gradient(to right, var(--void), transparent) !important; }
html[data-theme="dark"] .trust-marquee-wrap::after  { background: linear-gradient(to left,  var(--void), transparent) !important; }
html[data-theme="dark"] .trust-logo-item { color: rgba(255,255,255,0.28); }
html[data-theme="dark"] .trust-logo-item:hover { color: rgba(255,255,255,0.62); }
html[data-theme="dark"] .trust-logo-item img { filter: invert(1) grayscale(1); opacity: 0.55; }
html[data-theme="dark"] .trust-logo-item:hover img { opacity: 0.85; }
html[data-theme="dark"] .trust-logo-item img.logo-boxed { filter: grayscale(1); }
html[data-theme="dark"] .trust-logo-item:hover img.logo-boxed { filter: grayscale(0); }

/* -- Borders / dividers -- */
html[data-theme="dark"] .contact-detail,
html[data-theme="dark"] .ind-stat-item,
html[data-theme="dark"] .footer-grid { border-color: rgba(255,255,255,0.09) !important; }
html[data-theme="dark"] .divider { background: rgba(255,255,255,0.07); }

/* -- btn-outline-dark adapts to white outline in dark mode -- */
html[data-theme="dark"] .btn-outline-dark {
  color: var(--pearl);
  border-color: rgba(255,255,255,0.24);
}
html[data-theme="dark"] .btn-outline-dark:hover {
  background: var(--white);
  color: var(--void);
}

/* -- About CTA (gold bg) - keep gold, fix text contrast -- */
html[data-theme="dark"] .about-cta p { color: rgba(0,0,0,0.6) !important; }

/* -- Contact left panel (already obsidian) - stays dark, fine -- */

/* -- Sticky bar -- */
html[data-theme="dark"] .sticky-bar { background: var(--obsidian); }

/* -- Industry sub-nav bar -- */
html[data-theme="dark"] .ind-nav-bar {
  background: rgba(8,8,8,0.96) !important;
  border-bottom-color: rgba(255,255,255,0.09) !important;
}
html[data-theme="dark"] .ind-nav-link { color: rgba(255,255,255,0.45); }
html[data-theme="dark"] .ind-nav-link:hover { color: var(--white); border-bottom-color: var(--white); }
html[data-theme="dark"] .ind-nav-link.active { color: var(--gold); border-bottom-color: var(--gold); }

/* -- Mobile nav open state in dark mode -- */
html[data-theme="dark"] .nav-links.is-open {
  background: rgba(8,8,8,0.97);
}

/* -- Decorative watermark numbers (pillar, value, manifesto) -- */
html[data-theme="dark"] .pillar-num,
html[data-theme="dark"] .value-num,
html[data-theme="dark"] .manifesto-num,
html[data-theme="dark"] .ind-card-num { color: rgba(255,255,255,0.07) !important; }

/* -- Problem section: .pillar-intro and .pillar-service p inherit from p override -- */

/* -- What We Do CTA strip (gold bg) - stays gold, void text is fine on gold -- */

/* -- Testimonial on index inside .testi-section (already dark charcoal) -- */
html[data-theme="dark"] .testimonial blockquote { color: rgba(250,250,248,0.72); }
html[data-theme="dark"] .testimonial-author { color: rgba(250,250,248,0.45); }

/* -- Work page work-body text -- */
html[data-theme="dark"] .work-body h3 { color: var(--pearl) !important; }
html[data-theme="dark"] .work-body p { color: rgba(250,250,248,0.6) !important; }
html[data-theme="dark"] .work-metric strong { color: var(--pearl) !important; }
html[data-theme="dark"] .work-metric span { color: rgba(250,250,248,0.42) !important; }

/* -- Ind-card (already obsidian) fine in dark mode -- */

/* -- Process section steps -- */
html[data-theme="dark"] .process-item h3 { color: var(--pearl) !important; }
html[data-theme="dark"] .process-content p { color: rgba(250,250,248,0.6) !important; }

/* -- Contact left panel (already obsidian) - text inside needs no override -- */
/* -- cd-text strong/span already uses rgba(200,200,200) so fine -- */

/* -- Fit section lists -- */
html[data-theme="dark"] .not-fit-item,
html[data-theme="dark"] .good-fit-item { color: rgba(250,250,248,0.65) !important; }


/* ===================================================================
   PAGE-SPECIFIC STYLES (moved from inline <style> blocks)
   =================================================================== */

/* === HOME === */

/* HOME-SPECIFIC STYLES */
/* -- VIDEO HERO ----------------------------------- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 4rem) 6vw 5rem;
  position: relative;
  overflow: hidden;
}
/* Video background */
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;           /* subtle - brand content stays readable */
}
/* Gradient overlay on top of video */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(8,8,8,0.31);
}
/* Decorative grid lines */
.hero-bg-lines {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 119px,
      rgba(255,255,255,0.02) 119px, rgba(255,255,255,0.02) 120px);
  pointer-events: none;
}
/* Glow orbs */
.hero-orb {
  position: absolute; z-index: 1;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,90,0.10) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.hero-orb-2 {
  position: absolute; z-index: 1;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(44,122,110,0.08) 0%, transparent 70%);
  bottom: 0; left: 10%; pointer-events: none;
}
/* Fallback gradient when no video supplied */
.hero-fallback-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #080808 0%, #111 60%, #1a1a1a 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1000px;
}
.hero-eyebrow {
  display: none;
}
.hero-eyebrow span {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
}
.hero-eyebrow-line {
  display: none;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 300; line-height: 1.0;
  letter-spacing: -0.02em; margin-bottom: 2.5rem;
  color: #ffffff;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero h1 .line-indent { padding-left: 0; display: block; }
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.75); font-weight: 300;
  max-width: 520px; line-height: 1.85; margin-bottom: 3rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 5rem; }
.hero-proof {
  display: grid; grid-template-columns: repeat(3, auto);
  gap: 3rem; padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  width: fit-content;
}
.hero-proof-num {
  font-family: var(--serif); font-size: 2.8rem;
  font-weight: 300; color: var(--white); line-height: 1; display: block;
}
.hero-proof-num span { color: var(--gold); }
.hero-proof-label {
  font-size: 0.72rem; color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.3rem;
}

/* -- MARQUEE TRUST BAR ----------------------------- */
.trust-bar {
  padding: 0;
  background: var(--cream);
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  display: flex; align-items: stretch;
}
.trust-bar-label-col {
  flex-shrink: 0;
  display: flex; align-items: center;
  padding: 1.4rem 2rem 1.4rem 6vw;
  background: var(--cream);
  border-right: 1px solid rgba(0,0,0,0.07);
  position: relative;
  z-index: 2;
}
.trust-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--mist); white-space: nowrap;
}
/* Marquee track */
.trust-marquee-wrap {
  flex: 1; overflow: hidden;
  display: flex; align-items: center;
  position: relative;
}
/* Left + right fade edges */
.trust-marquee-wrap::before,
.trust-marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.trust-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--cream), transparent);
}
.trust-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--cream), transparent);
}
.trust-marquee-track {
  display: flex; align-items: center;
  gap: 0;
  animation: marqueeScroll 28s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.trust-marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-logo-item {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0 3rem;
  border-right: 1px solid rgba(0,0,0,0.07);
  font-family: var(--serif); font-size: 1rem; font-weight: 600;
  color: rgba(0,0,0,0.18); letter-spacing: 0.02em;
  white-space: nowrap; flex-shrink: 0;
  transition: color 0.3s;
}
.trust-logo-item:hover { color: rgba(0,0,0,0.45); }
/* Logo image variant - real client logos */
.trust-logo-item img {
  height: 38px; width: auto; max-width: 260px;
  object-fit: contain;
  opacity: 0.6; filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
}
.trust-logo-item:hover img { opacity: 1; filter: grayscale(0%); }
.trust-logo-item img.logo-boxed { border-radius: 4px; }
/* squarish marks need more height to read at ticker scale */
.trust-logo-item img[src*="ncb"],
.trust-logo-item img[src*="bilwa"],
.trust-logo-item img[src*="enliv"],
.trust-logo-item img[src*="bhookh"] { height: 54px; }
@media (max-width: 768px) {
  /* narrower edge fades + tighter spacing so wide logos aren't swallowed */
  .trust-marquee-wrap::before,
  .trust-marquee-wrap::after { width: 32px; }
  .trust-logo-item { padding: 0 1.6rem; }
  .trust-logo-item img { height: 32px; max-width: 220px; }
  .trust-logo-item img[src*="ncb"],
  .trust-logo-item img[src*="bilwa"],
  .trust-logo-item img[src*="enliv"],
  .trust-logo-item img[src*="bhookh"] { height: 44px; }
}
/* Dot separator between text logos */
.trust-logo-dot {
  display: inline-block; width: 4px; height: 4px;
  border-radius: 50%; background: rgba(0,0,0,0.12);
}

/* PROBLEM SECTION */
.problem-section {
  padding: 8rem 6vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.problem-quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--obsidian);
  border-left: 2px solid var(--gold);
  padding-left: 2rem;
}
.problem-quote em { color: var(--gold); font-style: italic; }

/* APPROACH STRIP */
.approach-strip {
  background: var(--obsidian);
  color: var(--white);
  padding: 5rem 6vw;
}
.approach-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 3rem;
}
.approach-item {
  padding: 2.5rem;
  border-left: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.approach-item:first-child { border-left: none; }
.approach-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 2.5rem;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.approach-item:hover::after { width: calc(100% - 2.5rem); }
.approach-step { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.approach-item h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--pearl); margin-bottom: 0.7rem; }
.approach-item p { font-size: 0.87rem; color: rgba(200,200,200,0.45); line-height: 1.75; }

/* WORK PREVIEW */
.work-preview { padding: 8rem 6vw; background: var(--cream); }

/* INDUSTRIES STRIP */
.ind-strip { padding: 6rem 6vw; }
.ind-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.ind-card {
  background: var(--obsidian);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  text-decoration: none;
}
.ind-card:hover { transform: translateY(-5px); }
.ind-card-num {
  font-family: var(--serif);
  font-size: 5rem; font-weight: 300;
  color: rgba(255,255,255,0.42);
  position: absolute; top: -0.5rem; right: 1rem;
  line-height: 1;
}
.ind-icon { font-size: 1.8rem; margin-bottom: 1.5rem; display: block; color: var(--gold); line-height: 1; }
.ind-icon svg { width: 30px; height: 30px; display: block; }
.ind-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--pearl); margin-bottom: 0.5rem; }
.ind-card p { font-size: 0.82rem; color: rgba(200,200,200,0.4); line-height: 1.7; margin-bottom: 1.5rem; }
.ind-card-link { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }

/* TESTIMONIAL SECTION */
.testi-section { padding: 8rem 6vw; background: var(--charcoal); }

/* PARTNER CTA */
.partner-cta {
  padding: 8rem 6vw;
  background: var(--void);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.partner-cta h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
}
.partner-cta h2 em { color: var(--gold); font-style: italic; }
.partner-cta p { font-size: 0.95rem; color: rgba(255,255,255,0.4); line-height: 1.8; margin-bottom: 2rem; }
.partner-cta-right { border-left: 1px solid rgba(255,255,255,0.07); padding-left: 5rem; }
.commitment-list { display: flex; flex-direction: column; gap: 1.2rem; }
.commitment-item { display: flex; gap: 1rem; align-items: flex-start; }
.commitment-check { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.commitment-text h4 { font-size: 0.92rem; font-weight: 500; color: var(--silver); margin-bottom: 0.2rem; }
.commitment-text p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }

@media (max-width: 768px) {
  .problem-section, .partner-cta { grid-template-columns: 1fr; gap: 2.5rem; }
  .approach-items { grid-template-columns: 1fr 1fr; }
  .ind-strip-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 .line-indent { padding-left: 2rem; }
  .hero-proof { grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
  .partner-cta-right { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 2.5rem; }
}
@media (max-width: 500px) {
  .approach-items { grid-template-columns: 1fr; }
  .ind-strip-grid { grid-template-columns: 1fr; }
}
  

/* === WHAT WE DO === */

.wwd-hero {
  min-height: 70vh;
  background: var(--void);
  color: var(--white);
  display: flex; align-items: flex-end;
  padding: calc(var(--nav-h) + 3rem) 6vw 6rem;
  position: relative;
  overflow: hidden;
}
.wwd-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(184,150,90,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(44,122,110,0.05) 0%, transparent 60%);
}
.wwd-hero-inner { position: relative; z-index: 1; }
.wwd-hero h1 { color: var(--white); max-width: 820px; margin-bottom: 2rem; }
.wwd-hero .lead { color: rgba(255,255,255,0.45); max-width: 560px; }

/* AGILE HIGHLIGHT BADGE */
.new-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(184,150,90,0.15); border: 1px solid rgba(184,150,90,0.3);
  color: var(--gold); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: 100px;
  margin-bottom: 1rem; display: inline-block;
}

/* PILLAR SECTION */
.pillar {
  padding: 7rem 6vw;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.pillar:nth-child(even) { background: var(--cream); }
.pillar-inner { display: grid; grid-template-columns: 1fr 1.8fr; gap: 6rem; align-items: start; }
.pillar-label {
  position: sticky; top: calc(var(--nav-h) + 3rem);
}
.pillar-num {
  font-family: var(--serif);
  font-size: 5rem; font-weight: 300;
  color: rgba(0,0,0,0.07);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.pillar h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.pillar-intro { font-size: 0.95rem; color: var(--ash); line-height: 1.85; }
.pillar-services { display: flex; flex-direction: column; gap: 1.5rem; }
.pillar-service {
  padding: 2rem 2.2rem;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid rgba(0,0,0,0.07);
  border-left: 3px solid var(--gold);
  transition: box-shadow 0.3s, transform 0.3s;
}
.pillar:nth-child(even) .pillar-service { background: var(--white); }
.pillar-service:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.08); transform: translateX(4px); }
.pillar-service h3 {
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 600;
  margin-bottom: 0.5rem;
}
.pillar-service p { font-size: 0.88rem; color: var(--ash); line-height: 1.75; margin-bottom: 0.8rem; }
.pillar-service-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.pillar-service-tags span {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.25rem 0.6rem; background: var(--cream); border-radius: 100px; color: var(--ash);
}

/* WHAT MAKES US DIFFERENT */
.diff-section {
  padding: 8rem 6vw;
  background: var(--obsidian);
  color: var(--white);
}
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(255,255,255,0.06); border-radius: var(--r-xl); overflow: hidden; margin-top: 3rem; }
.diff-item { background: var(--obsidian); padding: 3rem 2.5rem; }
.diff-item:hover { background: var(--charcoal); }
.diff-item span { display: block; font-family: var(--serif); font-size: 2.5rem; font-weight: 300; color: var(--gold); margin-bottom: 0.5rem; }
.diff-item h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--pearl); margin-bottom: 0.6rem; }
.diff-item p { font-size: 0.87rem; color: rgba(200,200,200,0.45); line-height: 1.75; }

/* ENGAGEMENT MODELS */
.engagement-section { padding: 8rem 6vw; }
.engagement-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.engagement-card {
  border-radius: var(--r-xl);
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all 0.3s;
  position: relative;
}
.engagement-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.engagement-card.featured {
  background: var(--obsidian);
  border-color: transparent;
  color: var(--white);
}
.engagement-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--void);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 1rem; border-radius: 100px;
}
.eng-type { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.engagement-card h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; margin-bottom: 0.6rem; }
.engagement-card.featured h3 { color: var(--pearl); }
.engagement-card p { font-size: 0.87rem; color: var(--ash); line-height: 1.75; margin-bottom: 1.5rem; }
.engagement-card.featured p { color: rgba(200,200,200,0.5); }
.eng-includes { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.eng-includes li { font-size: 0.85rem; display: flex; align-items: center; gap: 0.6rem; color: var(--ash); }
.engagement-card.featured .eng-includes li { color: rgba(200,200,200,0.6); }
.eng-includes li::before { content: '✦'; color: var(--gold); font-size: 0.6rem; flex-shrink: 0; }

/* PROCESS */
.process-section { padding: 8rem 6vw; background: var(--cream); }

/* CTA STRIP */
.cta-strip {
  padding: 6rem 6vw;
  background: var(--gold);
  color: var(--void);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.cta-strip h2 { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 600; max-width: 600px; line-height: 1.2; }
.cta-strip .btn-outline-dark { border-color: rgba(0,0,0,0.3); color: var(--void); }
.cta-strip .btn-outline-dark:hover { background: var(--void); color: var(--white); border-color: var(--void); }

@media (max-width: 1024px) {
  .pillar-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .pillar-label { position: static; }
  .engagement-cards { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 768px) {
  .cta-strip { flex-direction: column; text-align: center; }
}
  

/* === ABOUT === */

/* MANIFESTO */
.manifesto-section {
  padding: 8rem 6vw;
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 7rem; align-items: start;
}
.manifesto-left { position: sticky; top: calc(var(--nav-h) + 3rem); }
.manifesto-num { font-family: var(--serif); font-size: 8rem; font-weight: 300; color: rgba(0,0,0,0.06); line-height: 1; display: block; }
.manifesto-quote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 300; font-style: italic;
  line-height: 1.4;
  color: var(--obsidian);
  border-left: 3px solid var(--gold);
  padding-left: 2rem;
  margin: 1.5rem 0;
}
.manifesto-attr { font-size: 0.8rem; color: var(--mist); padding-left: 2rem; }
.manifesto-right p { font-size: 1rem; color: var(--ash); line-height: 1.9; margin-bottom: 2rem; }
.manifesto-right h3 { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; margin-bottom: 1rem; margin-top: 2.5rem; }

/* ORIGIN */
.origin-section {
  padding: 8rem 6vw;
  background: var(--obsidian); color: var(--white);
}
.origin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.origin-text h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 300; line-height: 1.2; color: var(--pearl); margin-bottom: 1.5rem; }
.origin-text h2 em { color: var(--gold); font-style: italic; }
.origin-text p { font-size: 0.92rem; color: rgba(200,200,200,0.5); line-height: 1.9; margin-bottom: 1.5rem; }
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,0.08); }
.timeline-item { position: relative; padding: 0 0 2.5rem 2rem; }
.timeline-item::before { content: ''; position: absolute; left: -4px; top: 6px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.timeline-year { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; display: block; }
.timeline-item h4 { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--pearl); margin-bottom: 0.3rem; }
.timeline-item p { font-size: 0.82rem; color: rgba(200,200,200,0.35); line-height: 1.7; }

/* VALUES */
.values-section { padding: 8rem 6vw; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card {
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid rgba(0,0,0,0.07);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.value-num { font-family: var(--serif); font-size: 2.5rem; font-weight: 300; color: rgba(0,0,0,0.07); display: block; line-height: 1; margin-bottom: 1rem; }
.value-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; margin-bottom: 0.7rem; }
.value-card p { font-size: 0.87rem; color: var(--ash); line-height: 1.8; }

/* TEAM */
.team-section { padding: 8rem 6vw; background: var(--cream); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.team-card {
  background: var(--white); border-radius: var(--r-xl);
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden; transition: all 0.3s;
}
.team-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.team-avatar-area {
  height: 200px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.team-avatar-bg-1 { background: linear-gradient(135deg, #0a1a14, #1a3828); }
.team-avatar-bg-2 { background: linear-gradient(135deg, #1a0e08, #3a2018); }
.team-avatar-bg-3 { background: linear-gradient(135deg, #081428, #102448); }
.team-avatar-bg-4 { background: linear-gradient(135deg, #180818, #381830); }
.team-initials {
  font-family: var(--serif); font-size: 3.5rem; font-weight: 300;
  color: rgba(255,255,255,0.15); line-height: 1;
}
.team-body { padding: 1.8rem; }
.team-name { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.2rem; }
.team-role { font-size: 0.78rem; color: var(--gold); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.8rem; display: block; }
.team-bio { font-size: 0.82rem; color: var(--ash); line-height: 1.75; margin-bottom: 1rem; }
.team-expertise { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.team-expertise span { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.2rem 0.55rem; background: var(--cream); border-radius: 100px; color: var(--mist); }

/* HOW WE OPERATE */
.operate-section { padding: 8rem 6vw; background: var(--void); color: var(--white); }
.operate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.operate-card { padding: 2.5rem; border-radius: var(--r-xl); border: 1px solid rgba(255,255,255,0.07); }
.operate-card:hover { background: var(--charcoal); }
.operate-icon { font-size: 1.8rem; display: block; margin-bottom: 1rem; }
.operate-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--pearl); margin-bottom: 0.5rem; }
.operate-card p { font-size: 0.87rem; color: rgba(200,200,200,0.4); line-height: 1.8; }
.operate-num { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--gold); display: block; margin-bottom: 0.5rem; }

/* PHILOSOPHY */
.philosophy-section {
  padding: 8rem 6vw;
  background: var(--charcoal);
  color: var(--white);
}
.philosophy-statements { display: flex; flex-direction: column; max-width: 780px; }
.philosophy-item {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: grid; grid-template-columns: 100px 1fr; gap: 2rem; align-items: start;
}
.philosophy-item:last-child { border-bottom: none; }
.philosophy-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); padding-top: 0.3rem; }
.philosophy-item p { font-family: var(--serif); font-size: 1.15rem; font-weight: 300; color: var(--pearl); line-height: 1.6; }

/* CTA */
.about-cta { padding: 8rem 6vw; background: var(--gold); color: var(--void); display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-cta h2 { font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.2rem); font-weight: 600; line-height: 1.15; }
.about-cta p { font-size: 0.95rem; line-height: 1.85; color: rgba(0,0,0,0.55); margin-bottom: 2rem; }

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .manifesto-section, .origin-grid, .about-cta { grid-template-columns: 1fr; gap: 3rem; }
  .manifesto-left { position: static; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .operate-grid { grid-template-columns: 1fr; }
  .philosophy-item { grid-template-columns: 1fr; gap: 0.5rem; }
}
  

/* === CONTACT === */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: calc(100vh - 76px);
}
.contact-left {
  background: var(--obsidian);
  color: var(--white);
  padding: calc(var(--nav-h) + 5rem) 5vw 5rem;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.contact-right {
  padding: calc(var(--nav-h) + 5rem) 5vw 5rem;
  background: var(--cream);
}
.contact-left .eyebrow { margin-bottom: 1.5rem; display: block; }
.contact-left h1 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 300; line-height: 1.15; color: var(--pearl); margin-bottom: 1.5rem; }
.contact-left h1 em { color: var(--gold); font-style: italic; }
.contact-left > p { font-size: 0.92rem; color: rgba(200,200,200,0.5); line-height: 1.85; margin-bottom: 3rem; }

/* CONTACT DETAILS */
.contact-details { display: flex; flex-direction: column; gap: 0; margin-bottom: 3rem; }
.contact-detail {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-detail:first-child { padding-top: 0; }
.contact-detail:last-child { border-bottom: none; }
.cd-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: var(--r-md);
  background: rgba(184,150,90,0.12);
  border: 1px solid rgba(184,150,90,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--gold);
}
.cd-icon svg { width: 19px; height: 19px; display: block; }
.cd-text strong { display: block; font-size: 0.88rem; font-weight: 500; color: var(--silver); margin-bottom: 0.2rem; }
.cd-text span { font-size: 0.82rem; color: rgba(200,200,200,0.35); }

/* WHAT TO EXPECT */
.expect-section { margin-top: 2rem; }
.expect-title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(200,200,200,0.3); margin-bottom: 1.2rem; display: block; }
.expect-steps { display: flex; flex-direction: column; gap: 1rem; }
.expect-step { display: flex; gap: 1rem; align-items: flex-start; }
.expect-num { width: 24px; height: 24px; border-radius: 50%; background: rgba(184,150,90,0.15); border: 1px solid rgba(184,150,90,0.25); color: var(--gold); font-size: 0.68rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.1rem; }
.expect-text { font-size: 0.84rem; color: rgba(200,200,200,0.4); line-height: 1.7; }
.expect-text strong { color: rgba(200,200,200,0.65); font-weight: 500; }

/* TESTIMONIAL PULL */
.contact-testi { margin-top: 3rem; padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.07); }
.contact-testi blockquote { font-family: var(--serif); font-size: 1.05rem; font-style: italic; font-weight: 300; color: rgba(200,200,200,0.5); line-height: 1.65; margin-bottom: 0.8rem; }
.contact-testi cite { font-size: 0.75rem; color: rgba(200,200,200,0.25); font-style: normal; }

/* FORM SIDE */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid rgba(0,0,0,0.07);
  padding: 3rem;
  box-shadow: var(--shadow-card);
}
.form-header { margin-bottom: 2.5rem; }
.form-header h2 { font-family: var(--serif); font-size: 1.8rem; font-weight: 600; margin-bottom: 0.5rem; }
.form-header p { font-size: 0.88rem; color: var(--ash); }
.form-section-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mist); margin: 2rem 0 1rem; display: block; padding-bottom: 0.6rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ash); margin-bottom: 0.45rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 0.85rem 1.1rem;
  background: var(--cream); border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--r-sm); font-size: 0.9rem; color: var(--obsidian);
  transition: border-color 0.2s, background 0.2s; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; background: var(--obsidian); color: var(--white);
  padding: 1.1rem; border: none; border-radius: var(--r-sm);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 0.25s, transform 0.2s; cursor: pointer; font-family: var(--sans);
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--teal); transform: translateY(-2px); }
.form-note { font-size: 0.75rem; color: var(--mist); text-align: center; margin-top: 1rem; }

/* SERVICE CHECKLIST */
.service-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.service-check-item {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: var(--cream);
}
.service-check-item:hover { border-color: var(--gold); background: var(--gold-pale); }
.service-check-item input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--gold);
  flex-shrink: 0; cursor: pointer;
  margin: 0;
}
.service-check-item label {
  font-size: 0.83rem; color: var(--ash);
  cursor: pointer; user-select: none; line-height: 1.3;
}
/* Checked state highlight */
.service-check-item:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-pale);
}
.service-check-item:has(input:checked) label { color: var(--obsidian); font-weight: 500; }

/* SUCCESS STATE */
.form-success {
  display: none; text-align: center; padding: 3rem 1rem;
}
.form-success-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.form-success h3 { font-family: var(--serif); font-size: 1.8rem; font-weight: 600; margin-bottom: 0.8rem; }
.form-success p { font-size: 0.92rem; color: var(--ash); max-width: 380px; margin: 0 auto; line-height: 1.8; }

/* OTHER WAYS */
.other-ways { padding: 5rem 6vw; background: var(--white); }
.other-ways-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.other-way-card { padding: 2rem; border-radius: var(--r-lg); border: 1px solid rgba(0,0,0,0.07); text-align: center; transition: all 0.3s; }
.other-way-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.ow-icon { font-size: 2rem; margin-bottom: 1rem; display: block; color: var(--gold); line-height: 1; }
.ow-icon svg { width: 30px; height: 30px; display: inline-block; }
.other-way-card h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.other-way-card p { font-size: 0.85rem; color: var(--ash); margin-bottom: 1rem; }

/* NOT RIGHT FIT */
.fit-section { padding: 5rem 6vw; background: var(--cream); }
.fit-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 960px; }
.fit-inner h2 { font-family: var(--serif); font-size: clamp(1.8rem, 2.5vw, 2.4rem); font-weight: 600; margin-bottom: 1rem; }
.fit-inner p { font-size: 0.92rem; color: var(--ash); line-height: 1.85; }
.not-fit-list { display: flex; flex-direction: column; gap: 0.8rem; }
.not-fit-item { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.88rem; color: var(--ash); }
.not-fit-x { color: var(--mist); font-size: 0.8rem; flex-shrink: 0; margin-top: 0.15rem; }
.good-fit-list { display: flex; flex-direction: column; gap: 0.8rem; }
.good-fit-item { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.88rem; color: var(--ash); }
.good-fit-check { color: var(--teal); font-size: 0.8rem; flex-shrink: 0; margin-top: 0.15rem; }

@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-left { position: static; height: auto; padding: calc(var(--nav-h) + 3rem) 5vw 3rem; }
  .other-ways-grid { grid-template-columns: 1fr; }
  .fit-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .form-row-2 { grid-template-columns: 1fr; }
  .service-checklist { grid-template-columns: 1fr; }
}
  

/* === INDUSTRIES === */

.ind-nav-bar {
  position: sticky; top: var(--nav-h); z-index: 90;
  background: rgba(250,250,248,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 0 6vw;
  display: flex; gap: 0; overflow-x: auto;
}
.ind-nav-link {
  padding: 1.2rem 2rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ash); text-decoration: none; white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.25s;
}
.ind-nav-link:hover { color: var(--obsidian); border-bottom-color: var(--obsidian); }
.ind-nav-link.active { color: var(--gold); border-bottom-color: var(--gold); }

/* INDUSTRY SECTIONS */
.ind-section { padding: 8rem 6vw; }
.ind-section:nth-child(even) { background: var(--cream); }
.ind-header { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; margin-bottom: 5rem; }
.ind-icon-large {
  width: 80px; height: 80px;
  border-radius: var(--r-xl);
  background: var(--obsidian);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}
.ind-header h2 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 600; line-height: 1.15; margin-bottom: 1.2rem; }
.ind-header .lead { max-width: 500px; }
.ind-header-right { border-left: 1px solid rgba(0,0,0,0.07); padding-left: 6rem; }

.ind-stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid rgba(0,0,0,0.07); border-radius: var(--r-lg); overflow: hidden; }
.ind-stat-item { padding: 2rem; border-right: 1px solid rgba(0,0,0,0.07); border-bottom: 1px solid rgba(0,0,0,0.07); background: var(--white); }
.ind-stat-item:nth-child(even) { border-right: none; }
.ind-stat-item:nth-last-child(-n+2) { border-bottom: none; }
.ind-stat-num { font-family: var(--serif); font-size: 2.5rem; font-weight: 300; color: var(--teal); display: block; margin-bottom: 0.3rem; }
.ind-stat-label { font-size: 0.78rem; color: var(--ash); }

/* SERVICES FOR INDUSTRY */
.ind-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 4rem; }
.ind-service-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid rgba(0,0,0,0.07);
  transition: all 0.3s;
}
.ind-section:nth-child(even) .ind-service-card { background: var(--white); }
.ind-service-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.ind-service-card h4 { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.ind-service-card p { font-size: 0.85rem; color: var(--ash); line-height: 1.75; }

/* CASE STUDY INLINE */
.ind-case {
  background: var(--obsidian);
  border-radius: var(--r-xl);
  padding: 3.5rem;
  color: var(--white);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ind-case-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.ind-case h3 { font-family: var(--serif); font-size: clamp(1.4rem, 2vw, 2rem); font-weight: 600; color: var(--pearl); margin-bottom: 1rem; line-height: 1.3; }
.ind-case p { font-size: 0.9rem; color: rgba(200,200,200,0.55); line-height: 1.8; }
.ind-case-metrics { display: flex; flex-direction: column; gap: 1.5rem; }
.icm-item { padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.icm-item:last-child { border-bottom: none; padding-bottom: 0; }
.icm-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; color: var(--gold); display: block; line-height: 1; }
.icm-label { font-size: 0.75rem; color: rgba(200,200,200,0.4); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.3rem; }

/* TYPICAL RESULTS BAR */
.results-bar-section { margin: 3rem 0; }
.results-bar-section h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; margin-bottom: 2rem; }
.result-bar-item { margin-bottom: 1.5rem; }
.result-bar-label { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--ash); margin-bottom: 0.5rem; }
.result-bar-label span { font-weight: 600; color: var(--teal); }
.result-bar-track { height: 6px; background: rgba(0,0,0,0.07); border-radius: 3px; overflow: hidden; }
.result-bar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--teal), var(--gold)); transition: width 1.2s ease; }

/* BUYER PSYCHOLOGY */
.buyer-section { padding: 5rem 6vw; background: var(--charcoal); color: var(--white); }
.buyer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.05); margin-top: 3rem; border-radius: var(--r-lg); overflow: hidden; }
.buyer-item { background: var(--charcoal); padding: 2rem 1.5rem; }
.buyer-item h4 { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--pearl); margin-bottom: 0.5rem; }
.buyer-item p { font-size: 0.82rem; color: rgba(200,200,200,0.4); line-height: 1.7; }

@media (max-width: 1024px) {
  .ind-header { grid-template-columns: 1fr; gap: 3rem; }
  .ind-header-right { border-left: none; padding-left: 0; }
  .ind-case { grid-template-columns: 1fr; gap: 2.5rem; }
  .ind-case-metrics { flex-direction: row; flex-wrap: wrap; gap: 2rem; }
  .icm-item { border-bottom: none; border-right: 1px solid rgba(255,255,255,0.07); padding-right: 2rem; padding-bottom: 0; }
  .icm-item:last-child { border-right: none; }
  .buyer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .ind-services-grid { grid-template-columns: 1fr; }
  .ind-stat-grid { grid-template-columns: 1fr; }
  .ind-stat-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.07); }
  .buyer-grid { grid-template-columns: 1fr; }
}
  

/* === INSIGHTS === */

/* FEATURED ARTICLE */
.featured-article {
  padding: 5rem 6vw;
  background: var(--cream);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: center;
}
.featured-article-visual {
  height: 440px; border-radius: var(--r-xl);
  background: linear-gradient(135deg, #0a1a0a 0%, #1a3c26 50%, #0a2a1a 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 2.5rem;
}
.featured-article-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.featured-meta {
  position: relative; z-index: 1;
}
.featured-meta .pill-dark { margin-bottom: 1rem; }
.featured-meta-title { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--pearl); line-height: 1.3; }
.feat-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: block; }
.feat-title { font-family: var(--serif); font-size: clamp(1.8rem, 2.8vw, 2.6rem); font-weight: 600; line-height: 1.2; margin-bottom: 1rem; }
.feat-excerpt { font-size: 0.92rem; color: var(--ash); line-height: 1.85; margin-bottom: 1.5rem; }
.feat-info { display: flex; align-items: center; gap: 1.5rem; font-size: 0.78rem; color: var(--mist); margin-bottom: 1.5rem; }
.feat-info span { display: flex; align-items: center; gap: 0.4rem; }

/* FILTER */
.insights-filter {
  padding: 1.5rem 6vw;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  background: var(--white);
}
.filter-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mist); margin-right: 0.5rem; }
.filter-btn {
  padding: 0.45rem 1.1rem; border-radius: 100px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  border: 1.5px solid rgba(0,0,0,0.1); background: transparent; color: var(--ash);
  cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--obsidian); color: var(--obsidian); }
.filter-btn.active { background: var(--obsidian); color: var(--white); border-color: var(--obsidian); }

/* INSIGHTS GRID */
.insights-grid-section { padding: 5rem 6vw; }
.insights-main-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: start; }
.insights-primary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.insight-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--r-xl); overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s; cursor: pointer;
}
.insight-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.insight-thumb { height: 180px; position: relative; display: flex; align-items: flex-end; padding: 1.5rem; }
.it1 { background: linear-gradient(135deg, #0e1a0a, #243020); }
.it2 { background: linear-gradient(135deg, #1a0a1a, #3a1440); }
.it3 { background: linear-gradient(135deg, #1a0e04, #3a2010); }
.it4 { background: linear-gradient(135deg, #081820, #104060); }
.it5 { background: linear-gradient(135deg, #0a1a12, #183428); }
.it6 { background: linear-gradient(135deg, #180a0a, #381820); }
.it7 { background: linear-gradient(135deg, #0a0a18, #181834); }
.it8 { background: linear-gradient(135deg, #101008, #282818); }
.insight-cat {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.1);
  padding: 0.28rem 0.7rem; border-radius: 100px;
}
.insight-body { padding: 1.8rem; }
.insight-body h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.6rem; line-height: 1.3; }
.insight-body p { font-size: 0.85rem; color: var(--ash); line-height: 1.75; margin-bottom: 1rem; }
.insight-footer { display: flex; align-items: center; justify-content: space-between; }
.insight-date { font-size: 0.72rem; color: var(--mist); }
.insight-read { font-size: 0.72rem; font-weight: 600; color: var(--gold); }

/* SIDEBAR */
.insights-sidebar { position: sticky; top: calc(var(--nav-h) + 2rem); display: flex; flex-direction: column; gap: 2rem; }
.sidebar-widget { background: var(--white); border: 1px solid rgba(0,0,0,0.07); border-radius: var(--r-xl); padding: 2rem; }
.sidebar-widget.dark { background: var(--obsidian); border: none; }
.sidebar-widget h4 { font-family: var(--serif); font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.sidebar-widget.dark h4 { color: var(--pearl); }
.sidebar-widget p { font-size: 0.85rem; color: var(--ash); line-height: 1.75; margin-bottom: 1rem; }
.sidebar-widget.dark p { color: rgba(200,200,200,0.5); }
.subscribe-input { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid rgba(0,0,0,0.1); border-radius: var(--r-sm); font-size: 0.85rem; color: var(--obsidian); background: var(--cream); margin-bottom: 0.6rem; }
.subscribe-input:focus { outline: none; border-color: var(--gold); }
.topic-list { display: flex; flex-direction: column; gap: 0.6rem; }
.topic-link { font-size: 0.82rem; color: var(--ash); text-decoration: none; padding: 0.5rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); display: flex; justify-content: space-between; align-items: center; transition: color 0.2s; }
.topic-link:hover { color: var(--obsidian); }
.topic-link:last-child { border-bottom: none; }
.topic-count { font-size: 0.72rem; color: var(--mist); }

/* FULL WIDTH ROW */
.insights-row { padding: 3rem 6vw; border-top: 1px solid rgba(0,0,0,0.06); }
.insight-list-item {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 2rem; align-items: center;
  padding: 2rem 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  cursor: pointer; transition: background 0.2s;
}
.insight-list-item:hover { background: var(--cream); margin: 0 -6vw; padding: 2rem 6vw; border-radius: var(--r-md); }
.insight-list-thumb { width: 120px; height: 80px; border-radius: var(--r-md); overflow: hidden; flex-shrink: 0; }
.insight-list-content h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.4rem; }
.insight-list-content p { font-size: 0.85rem; color: var(--ash); }
.insight-list-meta { display: flex; align-items: center; gap: 1rem; margin-top: 0.6rem; }
.insight-list-meta span { font-size: 0.72rem; color: var(--mist); }
.insight-list-meta .pill { font-size: 0.65rem; }

/* YES BRIEF */
.yes-brief {
  padding: 6rem 6vw;
  background: var(--obsidian);
  color: var(--white);
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.yes-brief h2 { font-family: var(--serif); font-size: clamp(1.8rem, 2.5vw, 2.5rem); font-weight: 600; line-height: 1.2; color: var(--pearl); margin-bottom: 1rem; }
.yes-brief p { font-size: 0.92rem; color: rgba(200,200,200,0.5); line-height: 1.85; margin-bottom: 1.5rem; }
.brief-stat { display: flex; gap: 3rem; margin-bottom: 2rem; }
.brief-stat-item strong { display: block; font-family: var(--serif); font-size: 2.2rem; font-weight: 300; color: var(--gold); }
.brief-stat-item span { font-size: 0.72rem; color: rgba(200,200,200,0.35); text-transform: uppercase; letter-spacing: 0.06em; }
.brief-form { display: flex; flex-direction: column; gap: 0.8rem; }
.brief-form input { padding: 0.9rem 1.2rem; border-radius: var(--r-sm); border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); color: var(--white); font-family: var(--sans); font-size: 0.9rem; }
.brief-form input::placeholder { color: rgba(255,255,255,0.3); }
.brief-form input:focus { outline: none; border-color: var(--gold); }

@media (max-width: 1024px) {
  .insights-main-grid { grid-template-columns: 1fr; }
  .insights-sidebar { position: static; }
}
@media (max-width: 768px) {
  .featured-article { grid-template-columns: 1fr; gap: 2.5rem; }
  .insights-primary-grid { grid-template-columns: 1fr; }
  .yes-brief { grid-template-columns: 1fr; gap: 3rem; }
}
  

/* === WORK === */

/* WORK FILTER */
.filter-bar {
  padding: 2rem 6vw;
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.filter-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mist); margin-right: 0.5rem; }
.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: transparent; color: var(--ash);
  cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--obsidian); color: var(--obsidian); }
.filter-btn.active { background: var(--obsidian); color: var(--white); border-color: var(--obsidian); }

/* FEATURED CASE */
.featured-case {
  padding: 6rem 6vw;
  background: var(--obsidian);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
}
.featured-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: block; }
.featured-case h2 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 600; line-height: 1.2; color: var(--pearl); margin-bottom: 1.2rem; }
.featured-case .situation { font-size: 0.92rem; color: rgba(200,200,200,0.5); line-height: 1.85; margin-bottom: 2rem; }
.featured-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feat-metric { padding: 1.5rem; background: rgba(255,255,255,0.04); border-radius: var(--r-md); border: 1px solid rgba(255,255,255,0.07); }
.feat-metric strong { display: block; font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 0.3rem; }
.feat-metric span { font-size: 0.72rem; color: rgba(200,200,200,0.4); letter-spacing: 0.06em; text-transform: uppercase; }
.featured-detail h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--pearl); margin-bottom: 1rem; }
.detail-section { margin-bottom: 2rem; }
.detail-section h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.detail-section p { font-size: 0.88rem; color: rgba(200,200,200,0.5); line-height: 1.8; }
.detail-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.8rem; }
.detail-tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.25rem 0.65rem; background: rgba(184,150,90,0.12); border: 1px solid rgba(184,150,90,0.2); border-radius: 100px; color: var(--gold); }

/* CASE GRID */
.cases-grid {
  padding: 5rem 6vw;
}
.cases-grid-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

.full-case-card {
  border-radius: var(--r-xl);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.full-case-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.case-visual {
  height: 240px;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 2rem;
}
.case-visual-re { background: linear-gradient(160deg, #0a1f14 0%, #1a4a32 100%); }
.case-visual-d2c { background: linear-gradient(160deg, #180c28 0%, #3a1a64 100%); }
.case-visual-saas { background: linear-gradient(160deg, #081228 0%, #102848 100%); }
.case-visual-ps { background: linear-gradient(160deg, #180e04 0%, #382010 100%); }
.case-visual-re2 { background: linear-gradient(160deg, #0a1a0a 0%, #1a3c1a 100%); }
.case-visual-d2c2 { background: linear-gradient(160deg, #28081a 0%, #5a1a36 100%); }
.case-number {
  position: absolute; top: 2rem; right: 2rem;
  font-family: var(--serif); font-size: 5rem; font-weight: 300;
  color: rgba(255,255,255,0.06); line-height: 1;
}
.case-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1);
  padding: 0.3rem 0.8rem; border-radius: 100px;
}
.case-body { padding: 2.5rem; }
.case-body h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; margin-bottom: 0.8rem; line-height: 1.25; }
.case-challenge { font-size: 0.88rem; color: var(--ash); line-height: 1.8; margin-bottom: 0.8rem; }
.case-solution { font-size: 0.88rem; color: var(--ash); line-height: 1.8; margin-bottom: 1.5rem; }
.case-divider { height: 1px; background: rgba(0,0,0,0.06); margin: 1.5rem 0; }
.case-metrics-row { display: flex; gap: 2rem; margin-bottom: 1.5rem; }
.case-metric-item strong { display: block; font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--teal); line-height: 1; }
.case-metric-item span { font-size: 0.7rem; color: var(--mist); text-transform: uppercase; letter-spacing: 0.06em; }
.case-services { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.case-services span { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.25rem 0.65rem; background: var(--cream); border-radius: 100px; color: var(--ash); }

/* RESULTS SUMMARY */
.results-summary {
  padding: 6rem 6vw;
  background: var(--charcoal);
  color: var(--white);
}
.results-summary-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.06); border-radius: var(--r-xl); overflow: hidden; margin-top: 3rem; }
.rs-item { background: var(--charcoal); padding: 3rem 2.5rem; }
.rs-item span { display: block; font-family: var(--serif); font-size: 3rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 0.5rem; }
.rs-item h4 { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--pearl); margin-bottom: 0.4rem; }
.rs-item p { font-size: 0.82rem; color: rgba(200,200,200,0.35); line-height: 1.7; }

/* PROCESS CALLOUT */
.process-callout { padding: 6rem 6vw; }
.process-callout-inner { background: var(--cream); border-radius: var(--r-xl); padding: 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.process-callout h2 { font-family: var(--serif); font-size: clamp(1.8rem, 2.5vw, 2.4rem); font-weight: 600; margin-bottom: 1rem; }
.process-callout p { font-size: 0.92rem; color: var(--ash); line-height: 1.85; }
.callout-steps { display: flex; flex-direction: column; gap: 1.2rem; }
.callout-step { display: flex; gap: 1.2rem; align-items: flex-start; }
.callout-step-num { width: 32px; height: 32px; border-radius: 50%; background: var(--gold); color: var(--void); font-size: 0.78rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.callout-step-text h4 { font-weight: 600; font-size: 0.92rem; margin-bottom: 0.2rem; }
.callout-step-text p { font-size: 0.82rem; color: var(--ash); }

@media (max-width: 768px) {
  .featured-case { grid-template-columns: 1fr; gap: 3rem; }
  .featured-metrics { grid-template-columns: 1fr 1fr 1fr; }
  .cases-grid-inner { grid-template-columns: 1fr; }
  .results-summary-grid { grid-template-columns: 1fr 1fr; }
  .process-callout-inner { grid-template-columns: 1fr; gap: 2rem; }
}
  
/* --- Photo gallery + lightbox --- */
.photo-gallery-section { padding: 8rem 6vw; background: var(--cream); }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 3rem;
}
.photo-cell {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--obsidian);
  cursor: pointer;
}
.photo-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, opacity 0.3s;
  opacity: 0.82;
  display: block;
}
.photo-cell:hover img { transform: scale(1.06); opacity: 1; }
.photo-cell-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, transparent 55%);
  display: flex; align-items: flex-end;
  padding: 1.2rem 1.5rem;
  opacity: 0; transition: opacity 0.3s;
}
.photo-cell:hover .photo-cell-overlay { opacity: 1; }
.photo-cell-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.88);
}
.photo-zoom-icon {
  position: absolute; top: 1rem; right: 1rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem; line-height: 1;
  opacity: 0; transform: scale(0.75);
  transition: opacity 0.3s, transform 0.3s;
}
.photo-cell:hover .photo-zoom-icon { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(4,4,4,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lb-img-wrap {
  max-width: 86vw; max-height: 82vh;
  display: flex; align-items: center; justify-content: center;
}
.lb-img {
  max-width: 100%; max-height: 82vh;
  object-fit: contain; border-radius: var(--r-md);
  transition: opacity 0.15s;
  display: block;
}
.lb-img.lb-loading { opacity: 0; }
.lb-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: rgba(255,255,255,0.5); font-size: 1.8rem; line-height: 1;
  cursor: pointer; transition: color 0.2s; padding: 0.5rem;
}
.lb-close:hover { color: white; }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.65); font-size: 1.8rem;
  width: 52px; height: 52px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s; flex-shrink: 0;
}
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.14); color: white; }
.lb-bottom {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 2rem; align-items: center; white-space: nowrap;
}
.lb-caption-text {
  font-size: 0.75rem; color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.lb-counter { font-size: 0.72rem; color: rgba(255,255,255,0.25); }

/* Embed / video lightbox panel */
.lb-embed-wrap {
  max-width: 86vw; max-height: 85vh;
  display: none; align-items: center; justify-content: center;
}
.lb-embed-wrap.portrait  iframe { width: min(420px, 88vw); aspect-ratio: 9/16; border: none; border-radius: var(--r-md); display: block; }
.lb-embed-wrap.landscape iframe { width: min(860px, 86vw); aspect-ratio: 16/9; border: none; border-radius: var(--r-md); display: block; }

/* Video cells in the grid */
.photo-cell .cell-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.82;
  transition: opacity 0.3s; display: block; pointer-events: none;
}
.photo-cell:hover .cell-video { opacity: 1; }
.cell-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}
.cell-play-btn::after {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent white;
  margin-left: 4px;
}
.photo-cell:hover .cell-play-btn {
  background: rgba(255,255,255,0.28);
  transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 768px) {
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .lb-prev { left: 0.5rem; }
  .lb-next { right: 0.5rem; }
  .lb-img-wrap { max-width: 96vw; }
  .lb-embed-wrap.portrait  iframe { width: 92vw; }
  .lb-embed-wrap.landscape iframe { width: 96vw; }
}

/* --- Case study cover images --- */
.case-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.45;
  transition: opacity 0.4s;
}
.full-case-card:hover .case-img { opacity: 0.6; }

/* --- Homepage work gallery --- */
.work-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 0.75rem;
  margin-top: 3rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--obsidian);
  display: block;
  text-decoration: none;
}
.gallery-item-tall { grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }
.gallery-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.65;
  transition: opacity 0.5s, transform 0.6s;
}
.gallery-item:hover img { opacity: 0.9; transform: scale(1.04); }
.gallery-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.86) 0%, rgba(0,0,0,0.35) 45%, transparent 75%);
}
.gallery-cat {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.4rem; display: block;
}
.gallery-title {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 600;
  color: var(--white); line-height: 1.3;
}
.gallery-item-tall .gallery-title { font-size: 1.3rem; }
.gallery-arrow {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.85rem;
  opacity: 0; transform: translateY(-4px);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .gallery-arrow { opacity: 1; transform: translateY(0); }
@media (max-width: 768px) {
  .work-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .gallery-item-tall { grid-row: span 1; }
  .gallery-item-wide { grid-column: span 2; }
  /* 4 items in a 2-col grid: let the 3rd go full width so no empty slot */
  .work-gallery .gallery-item:nth-child(3) { grid-column: span 2; }
  .gallery-overlay { padding: 1.2rem; }
  .gallery-title { font-size: 0.95rem; }
}

/* =============================================
   MOBILE REFINEMENT
   Tame oversized vertical padding, button sizing,
   and large-paragraph spacing on small screens.
   ============================================= */
@media (max-width: 768px) {
  /* Section vertical rhythm: every section class that hardcodes
     6rem-8rem padding gets pulled down to a phone-friendly scale. */
  .work-preview, .ind-strip, .testi-section, .partner-cta,
  .problem-section, .pillar, .diff-section, .cta-strip,
  .manifesto-section, .origin-section, .philosophy-section,
  .featured-article, .yes-brief, .featured-case, .cases-grid,
  .results-summary, .engagement-section, .process-section,
  .values-section, .team-section, .operate-section, .about-cta,
  .other-ways, .fit-section, .ind-section, .buyer-section,
  .insights-grid-section, .process-callout, .photo-gallery-section,
  .approach-strip {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
    padding-left: 6vw;
    padding-right: 6vw;
  }

  /* Heroes: keep clear of the fixed nav, drop the tall empty min-height */
  .wwd-hero {
    min-height: auto;
    align-items: flex-start;
    padding: calc(var(--nav-h) + 2rem) 6vw 3rem;
  }
  .page-hero {
    padding: calc(var(--nav-h) + 2rem) 6vw 3rem;
  }

  /* Section headers sit closer to their content */
  .section-header { margin-bottom: 2.5rem; }

  /* Buttons: trim the desktop bulk */
  .btn-gold, .btn-outline-white, .btn-outline-dark {
    padding: 0.78rem 1.6rem;
    font-size: 0.76rem;
    letter-spacing: 0.06em;
  }
  .nav-cta { padding: 0.55rem 1.1rem; font-size: 0.72rem; }
  /* Stacked CTA pairs go full-width so they read as buttons, not banners */
  .flex-gap, .hero-actions { gap: 0.75rem; }
  .hero-actions { flex-direction: column; align-items: stretch; margin-bottom: 3rem; }
  .flex-gap .btn-gold,
  .flex-gap .btn-outline-white,
  .flex-gap .btn-outline-dark,
  .hero-actions .btn-gold,
  .hero-actions .btn-outline-white,
  .hero-actions .btn-outline-dark { width: 100%; justify-content: center; }

  /* Deep / long paragraphs: smaller, tighter, easier to read on phones */
  .lead { line-height: 1.7; }
  .approach-strip p,
  .origin-text h2,
  .manifesto-section p { line-height: 1.65; }
  .approach-strip h2 br,
  .partner-cta h2 br { display: none; }

  /* Approach cards: comfortable inner padding instead of desktop 2.5rem */
  .approach-item { padding: 1.75rem 1.5rem; }
  .approach-items { margin-top: 1.75rem; }
}

@media (max-width: 480px) {
  .work-preview, .ind-strip, .testi-section, .partner-cta,
  .problem-section, .pillar, .diff-section, .cta-strip,
  .manifesto-section, .origin-section, .philosophy-section,
  .featured-article, .yes-brief, .featured-case, .cases-grid,
  .results-summary, .engagement-section, .process-section,
  .values-section, .team-section, .operate-section, .about-cta,
  .other-ways, .fit-section, .ind-section, .buyer-section,
  .insights-grid-section, .process-callout, .photo-gallery-section,
  .approach-strip {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .wwd-hero, .page-hero { padding: calc(var(--nav-h) + 1.5rem) 5vw 2.5rem; }
  .hero h1 { font-size: clamp(2.4rem, 12vw, 3.2rem); overflow-wrap: break-word; }
  .display-xl { font-size: clamp(2.4rem, 10.5vw, 3.2rem); overflow-wrap: break-word; }
  h1, h2, .display { overflow-wrap: break-word; }
}

/* ============ SKIP LINK (a11y) ============ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 2000;
  background: var(--gold);
  color: var(--void);
  padding: 0.7rem 1.4rem;
  border-radius: 0 0 6px 6px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

/* ============ VIDEO WORK (work.html) ============ */
.video-work {
  background: var(--obsidian);
  padding: clamp(3rem, 7vw, 7rem) 6vw;
}
.video-embed {
  max-width: 960px;
  margin: 0 auto;
}
.yt-lite {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--void);
  border-radius: var(--r-md, 12px);
  overflow: hidden;
  cursor: pointer;
}
.yt-lite img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.yt-lite:hover img { transform: scale(1.03); }
.yt-lite iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.72);
  border: 1px solid rgba(184, 150, 90, 0.6);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.yt-play svg { width: 30px; height: 30px; margin-left: 3px; }
.yt-lite:hover .yt-play {
  background: var(--gold);
  color: var(--void);
  transform: translate(-50%, -50%) scale(1.06);
}
.yt-lite.is-playing .yt-play { display: none; }
.yt-lite:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.video-caption {
  margin-top: 1.1rem;
  font-size: 0.85rem;
  color: var(--mist);
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .video-work { padding: 3.75rem 6vw; }
  .yt-play { width: 58px; height: 58px; }
  .yt-play svg { width: 24px; height: 24px; }
}
