/* ============================================================
   KALEA CONSULTING — shared stylesheet
   Document palette lives in kalea_base.js (cool teal).
   THIS is the web palette (warm navy / mauve / cream).
   ============================================================ */

:root {
  --navy:   #2a3d53;
  --mauve:  #bc948d;
  --cream:  #feebc7;
  --white:  #ffffff;
  --cream-light: #fdf6ec;
  --navy-light: #3a5068;
  --text-body: #4a4a4a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAV ───────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 5vw;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(42,61,83,0.08);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(42,61,83,0.10); }

.nav-logo { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--mauve);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--mauve); }
.nav-links a:hover::after { width: 100%; }

/* current-page highlight */
.nav-links a.active { color: var(--mauve); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 2px;
  letter-spacing: 0.1em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--navy-light) !important; color: var(--white) !important; }
.nav-cta::after { display: none !important; }

/* hamburger — hidden on desktop, shown on mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  margin: 0 auto;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO (home) ───────────────────────────────────────── */
#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream-light);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 0% 50%, rgba(42,61,83,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 100% 80%, rgba(188,148,141,0.12) 0%, transparent 70%),
    linear-gradient(160deg, #fdf6ec 0%, #feebc7 40%, #fdf6ec 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42,61,83,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,61,83,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 5vw 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4rem;
  width: 100%;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-text { max-width: 900px; width: 100%; text-align: center; margin: 0 auto; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 1.2rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(188,148,141,0.4);
  border-radius: 2px;
}
.hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.hero-heading em { font-style: italic; color: var(--mauve); }

.hero-subtext {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: #5a6272;
  max-width: 850px;
  margin: 0 auto 2.5rem auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--navy-light); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.btn-secondary:hover { color: var(--mauve); }
.btn-secondary svg { transition: transform 0.2s; }
.btn-secondary:hover svg { transform: translateX(3px); }

.hero-banner-wrap {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(42,61,83,0.18), 0 8px 20px rgba(42,61,83,0.10);
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
  transition: transform 0.4s ease;
}
.hero-banner-wrap:hover { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }
.hero-banner-wrap img { width: 100%; height: auto; display: block; }

.hero-accent-line {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  width: 120px; height: 120px;
  border: 1.5px solid rgba(188,148,141,0.4);
  border-radius: 2px;
  z-index: -1;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(42,61,83,0.10);
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a8f9a;
  margin-top: 0.3rem;
}

/* ── SERVICES STRIP (navy, used on home) ──────────────── */
.services-strip { background: var(--navy); padding: 3.5rem 5vw; }
.services-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-pill {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.service-pill:hover { border-color: rgba(188,148,141,0.5); background: rgba(255,255,255,0.04); }
.service-icon { width: 36px; height: 36px; flex-shrink: 0; color: var(--mauve); }
.service-pill-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.service-pill-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
/* optional link under the strip on the homepage */
.services-strip-more {
  max-width: 1100px;
  margin: 2rem auto 0;
  text-align: center;
}
.services-strip-more a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.services-strip-more a:hover { color: var(--mauve); }
.services-strip-more svg { transition: transform 0.2s; }
.services-strip-more a:hover svg { transform: translateX(3px); }

/* ── SECTION SHARED ───────────────────────────────────── */
section { padding: 6rem 5vw; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 0.8rem;
}
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/* ── INTERIOR PAGE HERO (services / pricing / case studies) ── */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--cream-light);
  padding: 11rem 5vw 5rem;
  text-align: center;
}
.page-hero .hero-bg { z-index: 0; }
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}
.page-hero .hero-eyebrow { margin-bottom: 1.4rem; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.3rem;
}
.page-hero h1 em { font-style: italic; color: var(--mauve); }
.page-hero p {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.8;
  color: #5a6272;
  max-width: 640px;
  margin: 0 auto;
}

/* ── SERVICE DETAIL BLOCKS ────────────────────────────── */
.services-detail { background: var(--white); padding: 5rem 5vw; }
.services-detail-inner { max-width: 1000px; margin: 0 auto; }

.svc-block {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 3rem;
  padding: 3.5rem 0;
  border-top: 1px solid rgba(42,61,83,0.10);
}
.svc-block:first-child { border-top: none; padding-top: 1rem; }

.svc-aside { }
.svc-aside .service-icon { color: var(--mauve); width: 40px; height: 40px; margin-bottom: 1rem; }
.svc-kicker {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mauve);
}
.svc-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.svc-block p {
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.8;
  color: #5a6272;
  margin-bottom: 1.5rem;
}
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 400;
  line-height: 1.5;
}
.svc-list li::before {
  content: '';
  width: 18px; height: 1.5px;
  background: var(--mauve);
  flex-shrink: 0;
  margin-top: 0.6rem;
}

/* ── CTA BAND (navy) ──────────────────────────────────── */
.cta-band { background: var(--navy); padding: 5rem 5vw; text-align: center; }
.cta-band-inner { max-width: 680px; margin: 0 auto; }
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.cta-band p {
  font-size: 0.98rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.btn-cream {
  display: inline-block;
  background: var(--cream);
  color: var(--navy);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.btn-cream:hover { background: #fff3da; transform: translateY(-1px); }

/* ── ABOUT ────────────────────────────────────────────── */
#about { background: var(--cream-light); }
#about .section-label, #about .section-heading { text-align: center; }
#about .section-heading { max-width: 700px; margin-left: auto; margin-right: auto; }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
  margin: 3rem auto 0;
  max-width: 1100px;
}
.about-grid > div:first-child,
.about-grid > div:last-child { width: 100%; max-width: 520px; }
.about-grid > div:first-child { justify-self: start; }
.about-grid > div:last-child { justify-self: end; }

.about-intro {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: #5a6272;
  margin-bottom: 2rem;
}
.about-values { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.about-values li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 400;
}
.about-values li::before {
  content: '';
  width: 20px; height: 1.5px;
  background: var(--mauve);
  flex-shrink: 0;
}

.team-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.team-card {
  background: var(--white);
  border-radius: 3px;
  padding: 1.8rem;
  border: 1px solid rgba(42,61,83,0.08);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.team-card:hover { box-shadow: 0 8px 30px rgba(42,61,83,0.10); transform: translateY(-2px); }
.team-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  flex-shrink: 0;
}
.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.15rem;
}
.team-role {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 0.6rem;
}
.team-bio {
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.7;
  color: #6a7080;
}

/* ── CONTACT ──────────────────────────────────────────── */
#contact { background: var(--white); }
#contact .section-inner { display: flex; flex-direction: column; align-items: center; }
#contact .section-label, #contact .section-heading { text-align: center; }
#contact .section-heading { max-width: 700px; margin-left: auto; margin-right: auto; }

.contact-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}
.contact-intro {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: #5a6272;
  margin-bottom: 2rem;
}
.contact-detail { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.contact-detail svg { color: var(--mauve); flex-shrink: 0; }
.contact-detail a, .contact-detail span {
  font-size: 0.9rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 400;
}
.contact-detail a:hover { color: var(--mauve); }

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--cream-light);
  border: 1px solid rgba(42,61,83,0.14);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--mauve); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--navy-light); transform: translateY(-1px); }

/* ── FOOTER ───────────────────────────────────────────── */
footer { background: var(--navy); padding: 2.5rem 5vw; }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo { display: flex; align-items: center; gap: 0.65rem; }
.footer-logo img { height: 36px; width: auto; object-fit: contain; opacity: 0.95; }
.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.01em;
}
.footer-copy { font-size: 0.76rem; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; }

/* ── ANIMATIONS ───────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-up { opacity: 1; transform: none; transition: none; }
  .hero-banner-wrap { transform: none; }
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { padding-top: 8rem; }
  .hero-visual { display: none; }
  .services-strip-inner { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .svc-block { grid-template-columns: 1fr; gap: 1.2rem; padding: 2.5rem 0; }

  /* mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(42,61,83,0.10);
    padding: 0 5vw;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .nav-links.open { max-height: 340px; padding: 0.5rem 5vw 1.2rem; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(42,61,83,0.06);
  }
  .nav-links a::after { display: none; }
  .nav-cta {
    margin-top: 0.8rem;
    text-align: center;
    border-bottom: none !important;
  }
}

@media (max-width: 600px) {
  .hero-stats { flex-direction: column; gap: 1rem; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ── PRICING PAGE ─────────────────────────────────────── */
.pricing-intro-band {
  background: var(--navy);
  padding: 2.5rem 5vw;
}
.pricing-intro-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
}
.pricing-intro-inner strong {
  color: var(--cream);
  font-weight: 600;
}

.pricing-models { background: var(--white); padding: 5rem 5vw; }

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.model-card {
  border: 1px solid rgba(42,61,83,0.10);
  border-radius: 3px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: box-shadow 0.2s, transform 0.2s;
  background: var(--white);
}
.model-card:hover {
  box-shadow: 0 12px 40px rgba(42,61,83,0.10);
  transform: translateY(-3px);
}

.model-header { display: flex; flex-direction: column; gap: 0.4rem; }
.model-icon { width: 36px; height: 36px; color: var(--mauve); margin-bottom: 0.6rem; }
.model-kicker {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mauve);
}
.model-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.model-price {
  font-size: 0.8rem;
  font-weight: 500;
  color: #8a8f9a;
  letter-spacing: 0.04em;
  padding-top: 0.2rem;
  border-top: 1px solid rgba(42,61,83,0.08);
  margin-top: 0.4rem;
  padding-top: 0.8rem;
}
.model-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: #5a6272;
}
.model-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.model-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 400;
  line-height: 1.45;
}
.model-list li::before {
  content: '';
  width: 16px; height: 1.5px;
  background: var(--mauve);
  flex-shrink: 0;
  margin-top: 0.55rem;
}
.model-fits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(42,61,83,0.07);
}
.fits-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a8f9a;
  width: 100%;
  margin-bottom: 0.2rem;
}
.fits-tag {
  font-size: 0.74rem;
  font-weight: 400;
  color: var(--navy);
  background: var(--cream-light);
  border: 1px solid rgba(42,61,83,0.08);
  border-radius: 2px;
  padding: 0.25rem 0.6rem;
}

/* Cost drivers */
.cost-drivers { background: var(--cream-light); padding: 5rem 5vw; }
.cost-drivers-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.cost-intro {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: #5a6272;
  margin-top: 1rem;
}
.cost-factors { display: flex; flex-direction: column; gap: 0; }
.cost-factor {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(42,61,83,0.09);
}
.cost-factor:first-child { padding-top: 0; }
.factor-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
}
.factor-desc {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: #5a6272;
}

/* ── OUR WORK PAGE ────────────────────────────────────── */
.work-filters {
  background: var(--white);
  border-bottom: 1px solid rgba(42,61,83,0.08);
  padding: 0 5vw;
  position: sticky;
  top: 64px;
  z-index: 50;
}
.work-filters-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 0;
}
.filter-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 1rem 1.4rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a8f9a;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}
.filter-btn:hover { color: var(--navy); }
.filter-btn.active { color: var(--navy); border-bottom-color: var(--mauve); }

.work-section { background: var(--white); padding: 4rem 5vw; }
.work-section--alt { background: var(--cream-light); }

.work-category-label { margin-bottom: 2rem; }

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.case-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(42,61,83,0.10);
  border-radius: 3px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.work-section--alt .case-card { background: var(--white); }
.case-card:hover {
  box-shadow: 0 12px 40px rgba(42,61,83,0.10);
  transform: translateY(-2px);
}
.case-card--placeholder {
  border-style: dashed;
  opacity: 0.7;
}
.case-card--placeholder:hover { transform: none; box-shadow: none; }

.case-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.case-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.case-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mauve);
  background: rgba(188,148,141,0.1);
  border-radius: 2px;
  padding: 0.2rem 0.55rem;
}
.case-industry {
  font-size: 0.72rem;
  font-weight: 400;
  color: #8a8f9a;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.case-ongoing-badge {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  border-radius: 2px;
  padding: 0.25rem 0.6rem;
}
.case-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.case-body { display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.case-block { display: flex; flex-direction: column; gap: 0.3rem; }
.case-block-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mauve);
}
.case-block p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: #5a6272;
}
.case-block a { color: var(--navy); }
.case-block a:hover { color: var(--mauve); }
.case-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(42,61,83,0.08);
}
.case-model {
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.06em;
}
.case-duration {
  font-size: 0.74rem;
  font-weight: 400;
  color: #8a8f9a;
}

/* ── RESPONSIVE ADDITIONS ─────────────────────────────── */
@media (max-width: 900px) {
  .model-grid { grid-template-columns: 1fr; }
  .cost-drivers-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .case-grid { grid-template-columns: 1fr; }
  .work-filters-inner { overflow-x: auto; }
}
