/* ═══════════════════════════════════════════════════════════
   Taiga Associates — Design System
   Blue/Orange/White palette, Cormorant Garamond + Outfit
   ═══════════════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --blue-deep:#0B1E33;
  --blue:#0E2A45;
  --blue-mid:#1A4470;
  --blue-light:#2B6EA0;
  --blue-pale:#3D82B5;
  --blue-bright:#5A9AC5;
  --orange:#E89830;
  --orange-light:#F0AC50;
  --orange-pale:#f5d49d;
  --orange-dim:rgba(232,152,48,0.15);
  --cream:#F5F7FA;
  --cream-dark:#E8ECF0;
  --white:#FAFBFC;
  --text-light:#c8d4e0;
  --text-muted:#7b8fa5;
  --text-dark:#1a2535;
  --border-dark:rgba(255,255,255,0.06);
  --border-orange:rgba(232,152,48,0.25);
  --font-serif:'Cormorant Garamond',Georgia,serif;
  --font-sans:'Lexend',system-ui,sans-serif;
  --max-w:1200px;
  --px:clamp(1.25rem,4vw,2.5rem);
}
html{scroll-behavior:smooth;scroll-padding-top:80px}
body{
  font-family:var(--font-sans);color:var(--text-dark);
  background:var(--blue-deep);-webkit-font-smoothing:antialiased;
  line-height:1.6;overflow-x:hidden;
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
ul{list-style:none}

/* ── ANIMATIONS ── */
@keyframes fadeUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes slideLeft{from{opacity:0;transform:translateX(40px)}to{opacity:1;transform:translateX(0)}}
@keyframes lineGrow{from{transform:scaleX(0)}to{transform:scaleX(1)}}
.fade-up{animation:fadeUp .8s ease-out both}
.fade-up-d1{animation:fadeUp .8s ease-out .1s both}
.fade-up-d2{animation:fadeUp .8s ease-out .2s both}
.fade-up-d3{animation:fadeUp .8s ease-out .3s both}
.fade-up-d4{animation:fadeUp .8s ease-out .4s both}
.fade-up-d5{animation:fadeUp .8s ease-out .5s both}

/* ── HEADER ── */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  background:rgba(11,30,51,0.85);backdrop-filter:blur(18px);
  border-bottom:1px solid var(--border-dark);
}
.header-inner{
  max-width:var(--max-w);margin:0 auto;padding:.75rem var(--px);
  display:flex;align-items:center;gap:1.5rem;
}
.logo{display:flex;align-items:center;font-size:1.65rem;font-weight:700;letter-spacing:-.01em;white-space:nowrap}
.logo .logo-taiga{color:var(--orange)}
.logo .logo-assoc{color:#fff;font-weight:400}
.logo-img{height:38px;width:auto}
.nav-desktop{display:flex;align-items:center;gap:.25rem;margin-left:auto;font-size:.875rem;font-weight:500}
.nav-desktop>a{color:var(--text-light);padding:.5rem .75rem;border-radius:6px;transition:color .2s,background .2s}
.nav-desktop>a:hover{color:#fff;background:rgba(255,255,255,.06)}
.header-phone{display:flex;align-items:center;gap:.35rem;color:var(--orange)!important;font-weight:600;white-space:nowrap}
.header-phone svg{width:16px;height:16px;flex-shrink:0}
.header-cta{
  background:var(--orange);color:#fff!important;padding:.5rem 1.25rem;border-radius:6px;
  font-weight:600;white-space:nowrap;transition:background .2s;
}
.header-cta:hover{background:var(--orange-light)}

/* ── DROPDOWN ── */
.has-dropdown{position:relative}
.dropdown-toggle{
  background:none;border:none;cursor:pointer;font:inherit;font-size:.875rem;font-weight:500;
  color:var(--text-light);padding:.5rem .75rem;border-radius:6px;transition:color .2s,background .2s;
}
.dropdown-toggle{display:inline-flex;align-items:center;gap:.25rem}
.dropdown-arrow{width:12px;height:12px;transition:transform .2s}
.has-dropdown:hover .dropdown-arrow{transform:rotate(180deg)}
.dropdown-toggle:hover{color:#fff;background:rgba(255,255,255,.06)}
.dropdown{
  position:absolute;top:100%;left:50%;transform:translateX(-50%) translateY(-8px);
  background:var(--blue);border:1px solid var(--border-dark);
  border-radius:10px;padding:.5rem;min-width:260px;
  box-shadow:0 20px 60px rgba(0,0,0,.4);
  padding-top:calc(.5rem + 10px);margin-top:0;
  opacity:0;visibility:hidden;
  transition:opacity .2s ease,transform .2s ease,visibility .2s;
}
/* Invisible bridge so hover survives the gap */
.has-dropdown::after{
  content:'';position:absolute;top:100%;left:0;right:0;height:10px;
}
.dropdown a{
  display:block;padding:.5rem .75rem;color:var(--text-light);border-radius:6px;
  font-size:.85rem;transition:background .15s,color .15s;white-space:nowrap;
}
.dropdown a:hover{background:rgba(255,255,255,.06);color:#fff}
.has-dropdown:hover .dropdown{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
.has-dropdown:hover .mega-dropdown{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}

/* ── MEGA DROPDOWN ── */
.mega-dropdown{
  position:absolute;top:100%;left:50%;transform:translateX(-50%) translateY(-8px);
  background:var(--blue);border:1px solid var(--border-dark);
  border-radius:12px;padding:1.25rem 1.5rem;padding-top:calc(1.25rem + 10px);
  box-shadow:0 20px 60px rgba(0,0,0,.4);margin-top:0;
  min-width:680px;
  opacity:0;visibility:hidden;
  transition:opacity .2s ease,transform .2s ease,visibility .2s;
}
.mega-inner{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem}
.mega-col-title{
  font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;
  color:var(--orange);margin-bottom:.5rem;padding:0 .5rem;
}
.mega-col a{
  display:block;padding:.35rem .5rem;color:var(--text-light);border-radius:5px;
  font-size:.8rem;line-height:1.4;transition:background .15s,color .15s;
}
.mega-col a:hover{background:rgba(255,255,255,.06);color:#fff}

/* ── MOBILE NAV ── */
.mobile-toggle{display:none;background:none;border:none;cursor:pointer;padding:.5rem;flex-direction:column;gap:5px}
.mobile-toggle span{display:block;width:22px;height:2px;background:var(--text-light);border-radius:2px;transition:transform .2s}
.nav-mobile{
  display:none;position:fixed;top:0;left:0;right:0;bottom:0;
  background:var(--blue-deep);z-index:999;
  flex-direction:column;padding:5rem var(--px) 2rem;gap:.25rem;
  overflow-y:auto;
}
.nav-mobile.open{display:flex}
.nav-mobile a{
  color:var(--text-light);padding:.75rem 0;font-size:1.1rem;font-weight:500;
  border-bottom:1px solid var(--border-dark);
}
.nav-mobile a:hover{color:#fff}
.mobile-nav-parent{color:var(--orange)!important;font-weight:700!important;font-size:1.2rem!important;border:none!important;margin-top:.5rem}
.mobile-group-title{
  font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;
  color:var(--orange-light);padding:.75rem 0 .25rem;
}
.mobile-group-link{padding-left:1rem!important;font-size:1rem!important}

@media(max-width:1100px){
  .nav-desktop{display:none}
  .mobile-toggle{display:flex}
}

/* ── HERO — Cinematic full-bleed ── */
.hero-cinematic{
  position:relative;min-height:70vh;display:flex;align-items:center;
  overflow:hidden;
}
.hero-cinematic-bg{position:absolute;inset:0}
.hero-cinematic-bg img{width:100%;height:100%;object-fit:cover}
.hero-cinematic-overlay{
  position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(11,30,51,.88) 0%,rgba(14,42,69,.7) 50%,rgba(26,68,112,.4) 100%);
}
.hero-cinematic-inner{
  position:relative;z-index:1;max-width:var(--max-w);margin:0 auto;width:100%;
  padding:8rem var(--px) 4rem;
}
.hero-split{display:grid;grid-template-columns:1fr 1fr;gap:3.5rem;align-items:center}
.hero-split-left .hero-eyebrow{
  font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.12em;
  color:var(--orange);margin-bottom:1.25rem;
}
.hero-cinematic-title{
  font-family:var(--font-serif);font-size:clamp(2.2rem,4.5vw,3.2rem);
  font-weight:400;color:#fff;line-height:1.15;
}
.hero-cinematic-title em{font-style:italic;color:var(--orange)}
.hero-cinematic-sub{
  color:var(--text-light);font-size:1.05rem;line-height:1.8;margin-bottom:1rem;
}
.hero-cinematic-actions{display:flex;align-items:center;gap:1.25rem;flex-wrap:wrap}
.hero-cinematic-phone{
  display:inline-flex;align-items:center;gap:.4rem;
  color:var(--orange);font-weight:600;font-size:.95rem;
}
.hero-cinematic-phone svg{width:18px;height:18px}

@media(max-width:800px){
  .hero-split{grid-template-columns:1fr;gap:2rem}
}
.btn-primary{
  display:inline-flex;align-items:center;gap:.5rem;
  background:var(--orange);color:#fff;padding:.85rem 2rem;border-radius:8px;
  font-weight:600;font-size:.95rem;transition:background .2s,transform .1s;
}
.btn-primary:hover{background:var(--orange-light);transform:translateY(-1px)}
.btn-secondary{
  display:inline-flex;align-items:center;gap:.5rem;
  border:1px solid rgba(255,255,255,.2);color:#fff;padding:.85rem 1.5rem;border-radius:8px;
  font-weight:500;font-size:.95rem;transition:border-color .2s,background .2s;
}
.btn-secondary svg{width:18px;height:18px}
.btn-secondary:hover{border-color:var(--orange);background:rgba(232,152,48,.08)}

/* Process strip */
.process-strip{background:var(--blue-deep);padding:3rem 0;border-bottom:1px solid var(--border-dark)}
.process-strip-grid{display:flex;align-items:flex-start;gap:2rem;justify-content:center}
.ps-step{display:flex;gap:1rem;align-items:first baseline;flex:1;max-width:320px}
.ps-num{font-family:var(--font-serif);font-size:2rem;color:var(--orange);font-weight:300;line-height:1;flex-shrink:0}
.ps-step h3{color:#fff;font-size:.95rem;font-weight:600;margin-bottom:.3rem}
.ps-step p{color:var(--text-muted);font-size:.85rem;line-height:1.5}
.ps-divider{width:1px;height:60px;background:var(--border-dark);flex-shrink:0;align-self:center}

@media(max-width:900px){
  .hero-cinematic{min-height:auto}
  .hero-cinematic-inner{padding:7rem var(--px) 3rem}
  .hero-float-card{max-width:100%}
  .process-strip-grid{flex-direction:column;align-items:center}
  .ps-divider{width:60px;height:1px}
}

/* ── IMAGE BREAK ── */
.image-break{width:100%;height:280px;overflow:hidden;position:relative}
.image-break img{width:100%;height:100%;object-fit:cover;display:block}
.image-break::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg,var(--blue-deep) 0%,transparent 20%,transparent 80%,var(--blue-mid) 100%);
  opacity:.6;
}

/* ── SECTIONS ── */
.section-inner{max-width:var(--max-w);margin:0 auto;padding:0 var(--px)}
.section-eyebrow{
  font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.12em;
  color:var(--orange);margin-bottom:.75rem;
}
.section-title{font-family:var(--font-serif);font-size:clamp(1.8rem,3.5vw,2.8rem);font-weight:400;line-height:1.2;margin-bottom:1rem}
.section-title em{font-style:italic;color:var(--orange)}
.section-title.light{color:#fff}
.section-title.dark{color:var(--text-dark)}
.section-subtitle{font-size:1.05rem;line-height:1.7;max-width:600px;margin-bottom:2.5rem}
.section-subtitle.light-sub{color:var(--text-light)}
.section-subtitle.dark-sub{color:#555}

/* ── EMPATHY (about intro) ── */
.empathy{background:var(--blue);padding:5rem 0}
.empathy-inner{max-width:var(--max-w);margin:0 auto;padding:0 var(--px);display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start}
.empathy-quote{font-family:var(--font-serif);font-size:clamp(1.6rem,3vw,2.2rem);color:#fff;line-height:1.3;margin-bottom:1.5rem}
.empathy-quote em{color:var(--orange);font-style:italic}
.empathy-body{color:var(--text-light);font-size:.95rem;line-height:1.8}
.empathy-body strong{color:#fff}
.empathy-right{
  background:rgba(255,255,255,.03);border:1px solid var(--border-dark);
  border-radius:16px;padding:2rem;text-align:center;
}
.empathy-card-label{font-size:.7rem;text-transform:uppercase;letter-spacing:.1em;color:var(--orange);margin-bottom:.5rem}
.empathy-stat{font-family:var(--font-serif);font-size:3.5rem;color:var(--orange);font-weight:300}
.empathy-stat-label{color:var(--text-muted);font-size:.85rem;margin-bottom:1.5rem}
.empathy-list{text-align:left}
.empathy-list li{display:flex;gap:.75rem;margin-bottom:1.25rem;font-size:.9rem;color:var(--text-light);line-height:1.6}
.empathy-list .el-icon{width:20px;height:20px;color:var(--orange);flex-shrink:0;margin-top:3px}
@media(max-width:800px){.empathy-inner{grid-template-columns:1fr}}

/* ── SERVICES GRID (homepage) ── */
.services{background:var(--blue-mid);padding:5rem 0}
.services-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:1.25rem}
.service-card{
  background:rgba(255,255,255,.04);border:1px solid var(--border-dark);
  border-radius:12px;padding:1.75rem;transition:border-color .3s,background .3s;
  display:flex;flex-direction:column;
}
.service-card:hover{border-color:var(--border-orange);background:rgba(232,152,48,.04)}
.service-icon{
  width:44px;height:44px;border-radius:10px;background:var(--orange-dim);
  display:flex;align-items:center;justify-content:center;margin-bottom:1rem;
}
.service-icon svg{width:22px;height:22px;color:var(--orange)}
.service-card-body h3{color:#fff;font-size:1.05rem;font-weight:600;margin-bottom:.5rem}
.service-card-body p{color:var(--text-muted);font-size:.875rem;line-height:1.6;margin-bottom:1rem;flex-grow:1}
.service-link{
  display:inline-flex;align-items:center;gap:.4rem;color:var(--orange);
  font-size:.85rem;font-weight:600;transition:gap .2s;
}
.service-link svg{width:16px;height:16px}
.service-link:hover{gap:.65rem}

/* Featured service card */
.service-card.featured{
  grid-column:1/-1;display:grid;grid-template-columns:1.2fr .8fr;
  background:linear-gradient(135deg,rgba(232,152,48,.08),rgba(232,152,48,.02));
  border-color:var(--border-orange);
}
.featured-right{display:flex;flex-direction:column;justify-content:center;gap:.75rem;padding-left:2rem;border-left:1px solid var(--border-dark)}
.stat{font-family:var(--font-serif);font-size:2.5rem;color:var(--orange);font-weight:300}
.stat-desc{color:var(--text-muted);font-size:.8rem;line-height:1.5}
@media(max-width:700px){.service-card.featured{grid-template-columns:1fr}.featured-right{padding-left:0;padding-top:1.5rem;border-left:none;border-top:1px solid var(--border-dark)}}

/* ── HOW WE WORK ── */
.how-we-work{background:var(--cream);padding:5rem 0}
.process-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.process-step{position:relative;padding:1.5rem;border-radius:12px;border:1px solid var(--cream-dark);background:#fff;transition:border-color .3s}
.process-step:hover{border-color:var(--orange)}
.process-number{font-family:var(--font-serif);font-size:2rem;color:var(--orange);font-weight:300;margin-bottom:.5rem}
.process-step h3{font-size:1.1rem;font-weight:600;margin-bottom:.75rem;color:var(--text-dark)}
.process-step p{color:#555;font-size:.9rem;line-height:1.7}
.process-connector{display:none}
@media(max-width:700px){.process-grid{grid-template-columns:1fr}}

/* ── DIFFERENTIATORS ── */
.differentiators{background:var(--blue);padding:5rem 0}
.diff-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.diff-item{
  background:rgba(255,255,255,.03);border:1px solid var(--border-dark);
  border-radius:12px;padding:2rem;transition:border-color .3s;
}
.diff-item:hover{border-color:var(--border-orange)}
.diff-item h3{color:#fff;font-size:1.05rem;font-weight:600;margin-bottom:.75rem}
.diff-item p{color:var(--text-muted);font-size:.9rem;line-height:1.7}
@media(max-width:700px){.diff-grid{grid-template-columns:1fr}}

/* ── CASE STUDIES ── */
.case-studies{background:var(--cream);padding:5rem 0}
.cases-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(340px,1fr));gap:1.5rem}
.case-card{
  background:#fff;border:1px solid var(--cream-dark);border-radius:12px;padding:2rem;
  transition:border-color .3s,box-shadow .3s;display:flex;flex-direction:column;
}
.case-card:hover{border-color:var(--orange);box-shadow:0 8px 30px rgba(0,0,0,.06)}
.case-card-img{width:100%;height:180px;object-fit:cover;border-radius:8px;margin-bottom:1rem}
.insight-card-img{width:100%;height:160px;object-fit:cover;border-radius:8px;margin-bottom:1rem}
.case-label{font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--orange);margin-bottom:.5rem}
.case-card h3{font-size:1.1rem;font-weight:600;margin-bottom:.75rem;color:var(--text-dark)}
.case-card p{color:#555;font-size:.875rem;line-height:1.6;flex-grow:1;margin-bottom:1rem}
.case-result{display:flex;align-items:center;gap:.5rem;color:var(--blue-mid);font-size:.85rem;font-weight:600}
.case-result svg{width:18px;height:18px;color:var(--orange)}

/* ── INDUSTRIES ── */
.industries{background:var(--blue-mid);padding:4rem 0}
.ind-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:1rem}
.ind-item{
  display:flex;flex-direction:column;align-items:center;gap:.5rem;
  padding:1.25rem;background:rgba(255,255,255,.04);border:1px solid var(--border-dark);
  border-radius:10px;font-size:.85rem;color:var(--text-light);text-align:center;
  transition:border-color .3s;
}
.ind-item:hover{border-color:var(--border-orange)}
.ind-item svg{width:28px;height:28px;color:var(--orange)}

/* ── INSIGHTS ── */
.insights{background:var(--cream);padding:5rem 0}
.insights-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.5rem}
.insight-card{
  background:#fff;border:1px solid var(--cream-dark);border-radius:12px;padding:2rem;
  transition:border-color .3s,box-shadow .3s;display:flex;flex-direction:column;
}
.insight-card:hover{border-color:var(--orange);box-shadow:0 8px 30px rgba(0,0,0,.06)}
.insight-cat{font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--orange);margin-bottom:.5rem}
.insight-card h3{font-size:1.05rem;font-weight:600;margin-bottom:.75rem;color:var(--text-dark)}
.insight-card p{color:#555;font-size:.875rem;line-height:1.6;flex-grow:1;margin-bottom:1rem}
.read-link{display:inline-flex;align-items:center;gap:.4rem;color:var(--orange);font-size:.85rem;font-weight:600}
.read-link svg{width:16px;height:16px}
.insights-footer{text-align:center;margin-top:2rem}
.view-all{display:inline-flex;align-items:center;gap:.4rem;color:var(--orange);font-weight:600;font-size:.9rem}
.view-all svg{width:18px;height:18px}

/* ── CONTACT CTA ── */
.contact-cta{background:var(--blue);padding:5rem 0}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start}
.contact-tagline{font-family:var(--font-serif);font-size:clamp(1.8rem,3.5vw,2.6rem);color:#fff;font-weight:400;line-height:1.2;margin-bottom:1.25rem}
.contact-tagline em{color:var(--orange);font-style:italic}
.contact-body{color:var(--text-light);font-size:.95rem;line-height:1.7;margin-bottom:2rem}
.contact-direct{display:flex;flex-direction:column;gap:.75rem}
.contact-direct a{display:flex;align-items:center;gap:.5rem;color:var(--text-light);font-size:.9rem;transition:color .2s}
.contact-direct a:hover{color:var(--orange)}
.contact-direct svg{width:18px;height:18px;color:var(--orange);flex-shrink:0}
.phone-big{font-size:1.1rem!important;font-weight:600;color:var(--orange)!important}
.confidential-note{
  display:flex;gap:.75rem;margin-top:1.5rem;padding:1.25rem;
  background:rgba(255,255,255,.03);border:1px solid var(--border-dark);border-radius:10px;
}
.confidential-note svg{width:20px;height:20px;color:var(--orange);flex-shrink:0;margin-top:2px}
.confidential-note p{color:var(--text-muted);font-size:.8rem;line-height:1.6}
.confidential-note strong{color:var(--text-light)}
@media(max-width:800px){.contact-grid{grid-template-columns:1fr}}

/* ── CONTACT FORM ── */
.contact-form{
  background:rgba(255,255,255,.03);border:1px solid var(--border-dark);
  border-radius:16px;padding:2rem;
}
.form-row{margin-bottom:1.25rem}
.form-row.half{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-label{display:block;font-size:.8rem;font-weight:600;color:var(--text-light);margin-bottom:.4rem}
.form-input,.form-textarea{
  width:100%;padding:.75rem 1rem;background:rgba(255,255,255,.05);
  border:1px solid var(--border-dark);border-radius:8px;color:#fff;
  font-family:var(--font-sans);font-size:.9rem;transition:border-color .2s;
}
.form-input:focus,.form-textarea:focus{outline:none;border-color:var(--orange)}
.form-textarea{min-height:120px;resize:vertical}
.form-input::placeholder,.form-textarea::placeholder{color:var(--text-muted)}
.form-submit{
  width:100%;padding:.85rem;background:var(--orange);color:#fff;
  border:none;border-radius:8px;font-family:var(--font-sans);
  font-size:.95rem;font-weight:600;cursor:pointer;transition:background .2s;
}
.form-submit:hover{background:var(--orange-light)}
.form-submit:disabled{opacity:.6;cursor:not-allowed}
.form-status{display:none;padding:.75rem 1rem;border-radius:8px;font-size:.85rem;margin-bottom:1rem}
.form-status.success{background:rgba(34,197,94,.15);color:#22c55e;display:block}
.form-status.error{background:rgba(239,68,68,.15);color:#ef4444;display:block}
@media(max-width:500px){.form-row.half{grid-template-columns:1fr}}

/* ── COMPACT HERO (inner pages) ── */
.hero-compact{
  background:linear-gradient(135deg,var(--blue-deep),var(--blue),var(--blue-mid));
  padding:8rem 0 3.5rem;text-align:center;
}
.hero-compact h1{font-family:var(--font-serif);font-size:clamp(2rem,4vw,3rem);color:#fff;font-weight:400;margin-bottom:.75rem}
.hero-compact h1 em{color:var(--orange);font-style:italic}
.hero-compact p{color:var(--text-light);font-size:1.05rem;max-width:600px;margin:0 auto;line-height:1.7}

/* ── BREADCRUMBS ── */
.breadcrumbs{background:var(--blue);padding:.75rem 0;border-bottom:1px solid var(--border-dark)}
.breadcrumbs .section-inner{display:flex;align-items:center;gap:.5rem;font-size:.8rem}
.breadcrumbs a{color:var(--text-muted);transition:color .2s}
.breadcrumbs a:hover{color:var(--orange)}
.breadcrumbs .sep{color:var(--text-muted)}
.breadcrumbs span:last-child{color:var(--text-light)}

/* ── CONTENT SECTIONS ── */
.section-cream{background:var(--cream);padding:4rem 0}
.section-white{background:#fff;padding:4rem 0}
.section-navy{background:var(--blue);padding:4rem 0}
.section-navy-deep{background:var(--blue-deep);padding:4rem 0}

/* Service detail pages */
.service-content{max-width:740px}
.service-content h2{font-family:var(--font-serif);font-size:1.8rem;font-weight:400;margin-bottom:1rem;color:var(--text-dark)}
.service-content p{color:#444;font-size:.95rem;line-height:1.8;margin-bottom:1rem}
.service-content ul{margin:1rem 0 1.5rem 1.25rem;list-style:disc}
.service-content li{color:#444;font-size:.95rem;line-height:1.8;margin-bottom:.5rem}
.outcomes-box{
  background:var(--cream);border:1px solid var(--cream-dark);border-radius:12px;
  padding:1.75rem;margin:1.5rem 0;
}
.outcomes-box h3{color:var(--blue-mid);font-size:1rem;font-weight:700;margin-bottom:.75rem}
.outcomes-box ul{margin-left:1.25rem;list-style:disc}
.outcomes-box li{font-size:.9rem;line-height:1.7;margin-bottom:.4rem}

.back-link-section{background:#fff;padding:1rem 0;text-align:center}
.back-link-section a{display:inline-flex;align-items:center;gap:.5rem;color:var(--blue-mid);font-weight:600;font-size:.9rem}
.back-link-section svg{width:18px;height:18px}
.back-link-section a:hover{color:var(--orange)}

/* ── ABOUT PAGE ── */
.about-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:3rem;align-items:start}
.about-text h2{font-family:var(--font-serif);font-size:clamp(1.5rem,3vw,2.2rem);font-weight:400;margin-bottom:1.25rem}
.about-text h2 em{color:var(--orange);font-style:italic}
.about-text p{color:#444;font-size:.95rem;line-height:1.8;margin-bottom:1rem}
.about-image{border-radius:12px;overflow:hidden}
.about-image img{width:100%;height:auto;object-fit:cover}
.approach-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.approach-item{
  background:rgba(255,255,255,.04);border:1px solid var(--border-dark);
  border-radius:12px;padding:1.75rem;transition:border-color .3s;
}
.approach-item:hover{border-color:var(--border-orange)}
.approach-item h3{color:#fff;font-size:1.05rem;font-weight:600;margin-bottom:.75rem}
.approach-item p{color:var(--text-muted);font-size:.9rem;line-height:1.7}
@media(max-width:800px){.about-grid{grid-template-columns:1fr}.approach-grid{grid-template-columns:1fr}}

/* ── SERVICES PAGE GRID ── */
.services-page-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.25rem}
.sp-card{
  background:rgba(255,255,255,.04);border:1px solid var(--border-dark);
  border-radius:12px;padding:2rem;transition:border-color .3s;
  display:flex;flex-direction:column;
}
.sp-card:hover{border-color:var(--border-orange)}
.sp-card h3{color:#fff;font-size:1.1rem;font-weight:600;margin-bottom:.75rem}
.sp-card p{color:var(--text-muted);font-size:.9rem;line-height:1.7;margin-bottom:1rem;flex-grow:1}
.sp-group-title{
  grid-column:1/-1;font-size:.75rem;font-weight:700;text-transform:uppercase;
  letter-spacing:.12em;color:var(--orange);padding-top:1.5rem;
}
.sp-group-title:first-child{padding-top:0}

/* ── CTA BANNER ── */
.cta-banner{
  background:linear-gradient(135deg,var(--blue-mid),var(--blue-light));
  padding:4rem 0;text-align:center;
}
.cta-banner .section-eyebrow{color:var(--orange-pale)}
.cta-banner h2{font-family:var(--font-serif);font-size:clamp(1.5rem,3vw,2.2rem);color:#fff;font-weight:400;margin-bottom:1rem}
.cta-banner h2 em{color:var(--orange);font-style:italic}
.cta-banner p{color:var(--text-light);font-size:1rem;margin-bottom:2rem;max-width:500px;margin-left:auto;margin-right:auto}
.cta-banner .btn-primary{font-size:1rem;padding:1rem 2.5rem}

/* ── CONTACT PAGE ── */
.contact-page{background:var(--blue);padding:4rem 0}

/* ── CALENDLY ── */
.calendly-section{background:var(--blue-deep);padding:4rem 0}
.calendly-section h2{font-family:var(--font-serif);font-size:clamp(1.5rem,3vw,2rem);color:#fff;font-weight:400;margin-bottom:1rem}
.calendly-section h2 em{color:var(--orange);font-style:italic}
.calendly-section p{color:var(--text-light);font-size:.95rem;margin-bottom:2rem}
.calendly-note{margin-top:2rem}

/* ── CONTENT PAGE (privacy etc) ── */
.content-page{background:var(--cream);padding:4rem 0}
.content-inner{max-width:740px;margin:0 auto;padding:0 var(--px)}
.content-inner h2{font-family:var(--font-serif);font-size:1.5rem;font-weight:400;margin:2rem 0 .75rem;color:var(--text-dark)}
.content-inner p{color:#444;font-size:.95rem;line-height:1.8;margin-bottom:1rem}
.content-inner ul{margin:1rem 0 1.5rem 1.5rem;list-style:disc}
.content-inner li{color:#444;font-size:.95rem;line-height:1.8;margin-bottom:.35rem}
.content-inner a{color:var(--blue-mid);text-decoration:underline}
.content-inner a:hover{color:var(--orange)}
.article-img{width:100%;border-radius:12px;margin:2rem 0;box-shadow:0 4px 20px rgba(0,0,0,.08)}

/* ── RELATED SERVICES ── */
.related-services{background:var(--cream);padding:4rem 0}
.related-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:1.25rem}
.related-card{
  background:#fff;border:1px solid var(--cream-dark);border-radius:12px;padding:1.5rem;
  transition:border-color .3s,box-shadow .3s;display:block;
}
.related-card:hover{border-color:var(--orange);box-shadow:0 8px 30px rgba(0,0,0,.06)}
.related-card h3{font-size:1rem;font-weight:600;color:var(--text-dark);margin-bottom:.4rem}
.related-card p{font-size:.85rem;color:#555;line-height:1.5}

/* ── INSIGHTS/CASE STUDIES LANDING PAGES ── */
.insights-page{background:var(--cream);padding:4rem 0}
.insights-page-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.5rem}
.case-studies-page{background:var(--cream);padding:4rem 0}

/* ── PLACEHOLDER PAGES ── */
.placeholder-section{background:var(--blue);padding:5rem 0;text-align:center}
.placeholder-section p{color:var(--text-muted);font-size:1rem;margin-bottom:2rem}

/* ── FOOTER ── */
.site-footer{background:var(--blue-deep);border-top:1px solid var(--border-dark);padding:4rem 0 0}
.footer-inner{max-width:var(--max-w);margin:0 auto;padding:0 var(--px)}
.footer-grid{display:grid;grid-template-columns:1.3fr 1fr 1fr 1fr;gap:2rem;padding-bottom:3rem}
.footer-brand{margin-bottom:.75rem;font-size:1.2rem;font-weight:700;letter-spacing:-.01em}
.footer-brand .logo-taiga{color:var(--orange)}
.footer-brand .logo-assoc{color:#fff;font-weight:400}
.footer-desc{color:var(--text-muted);font-size:.85rem;line-height:1.6;margin-bottom:.75rem}
.footer-col h4{color:#fff;font-size:.8rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;margin-bottom:1rem}
.footer-col a{display:block;color:var(--text-muted);font-size:.85rem;margin-bottom:.5rem;transition:color .2s}
.footer-col a:hover{color:var(--orange)}
.footer-bottom{
  border-top:1px solid var(--border-dark);padding:1.5rem 0;
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:.5rem;
}
.footer-legal{color:var(--text-muted);font-size:.8rem}
.footer-reg{color:var(--text-muted);font-size:.75rem}
@media(max-width:700px){.footer-grid{grid-template-columns:1fr 1fr;gap:1.5rem}}
@media(max-width:480px){.footer-grid{grid-template-columns:1fr}}

/* ── COOKIE BANNER ── */
.cookie-banner{
  display:none;position:fixed;bottom:0;left:0;right:0;z-index:2000;
  background:var(--blue);border-top:1px solid var(--border-dark);
}
.cookie-banner-inner{
  max-width:var(--max-w);margin:0 auto;padding:1rem var(--px);
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
}
.cookie-banner p{color:var(--text-light);font-size:.85rem;margin:0}
.cookie-banner a{color:var(--orange);text-decoration:underline}
.cookie-dismiss{
  background:var(--orange);color:#fff;border:none;padding:.5rem 1.25rem;
  border-radius:6px;font-weight:600;cursor:pointer;font-size:.85rem;white-space:nowrap;
}

/* ── 7-STEP PROCESS ── */
.steps-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1.25rem;counter-reset:step}
.step-card{
  background:rgba(255,255,255,.04);border:1px solid var(--border-dark);
  border-radius:12px;padding:1.75rem;transition:border-color .3s;counter-increment:step;
}
.step-card:hover{border-color:var(--border-orange)}
.step-card::before{
  content:counter(step);display:block;
  font-family:var(--font-serif);font-size:2rem;color:var(--orange);font-weight:300;
  margin-bottom:.5rem;
}
.step-card h3{color:#fff;font-size:1rem;font-weight:600;margin-bottom:.5rem}
.step-card p{color:var(--text-muted);font-size:.875rem;line-height:1.6}
