 /* ── PAGE HERO ── */
  .page-hero {
    background: var(--dark-teal);
    padding: 10rem 5rem 0;
    position: relative; overflow: hidden;
  }
  .page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(0deg, rgba(212,168,83,0.04) 0, rgba(212,168,83,0.04) 1px, transparent 0, transparent 60px);
  }
  .page-hero::after {
    content: '"';
    position: absolute; top: -4rem; right: 4rem;
    font-family: 'Playfair Display', serif;
    font-size: 22rem; font-weight: 900;
    color: rgba(212,168,83,0.05);
    line-height: 1; pointer-events: none;
  }
  .page-hero-inner {
    max-width: 1100px; margin: 0 auto;
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: flex-start;
  }
  .section-label {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.2rem;
  }
  .page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.6rem);
    font-weight: 900; line-height: 1.08;
    color: white; letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
  }
  .page-hero h1 em { font-style: italic; color: var(--gold); }
  .page-hero p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-weight: 300; line-height: 1.8;
    color: rgba(250,245,237,0.72);
    max-width: 500px;
  }
  .hero-stat-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  }
  .hero-stat-card {
    background: rgba(250,245,237,0.06);
    border: 1px solid rgba(212,168,83,0.15);
    border-radius: 20px; padding: 1.6rem;
    text-align: center;
  }
  .hero-stat-card .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem; font-weight: 900;
    color: var(--gold); line-height: 1;
    margin-bottom: 0.4rem;
  }
  .hero-stat-card .lbl {
    font-size: 0.75rem; color: rgba(250,245,237,0.5);
    font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em;
  }

  /* ── FILTER BAR ── */
  .filter-bar {
    padding: 2.5rem 5rem;
    background: var(--soft-cream);
    border-bottom: 1px solid rgba(196,98,45,0.1);
    display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  }
  .filter-label { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-right: 0.5rem; }
  .filter-btn {
    padding: 0.45rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.8rem; font-weight: 600;
    border: 2px solid rgba(196,98,45,0.2);
    background: white; color: var(--text-muted);
    cursor: pointer; transition: all 0.25s;
    letter-spacing: 0.02em;
  }
  .filter-btn:hover { border-color: var(--terracotta); color: var(--terracotta); }
  .filter-btn.active { background: var(--terracotta); color: white; border-color: var(--terracotta); }

  /* ── FEATURED CASE STUDY ── */
  .featured-section {
    padding: 5rem 5rem 3rem;
    max-width: 1200px; margin: 0 auto;
  }
  .featured-card {
    background: white;
    border-radius: 28px;
    border: 1px solid rgba(196,98,45,0.1);
    overflow: hidden;
    display: grid; grid-template-columns: 1fr 1.1fr;
    box-shadow: 0 20px 60px rgba(44,24,16,0.08);
    position: relative;
  }
  .featured-visual {
    background: linear-gradient(135deg, #C4622D 0%, #2C1810 100%);
    padding: 3.5rem;
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative; overflow: hidden;
    min-height: 480px;
  }
  .featured-visual::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(45deg, rgba(212,168,83,0.06) 0, rgba(212,168,83,0.06) 1px, transparent 0, transparent 40px),
      repeating-linear-gradient(-45deg, rgba(212,168,83,0.06) 0, rgba(212,168,83,0.06) 1px, transparent 0, transparent 40px);
  }
  .featured-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(212,168,83,0.15);
    border: 1px solid rgba(212,168,83,0.3);
    border-radius: 2rem; padding: 0.4rem 1rem;
    font-size: 0.72rem; font-weight: 700;
    color: var(--gold); letter-spacing: 0.08em;
    text-transform: uppercase; width: fit-content;
    position: relative; z-index: 1;
  }
  .featured-avatar {
    position: relative; z-index: 1; text-align: center;
    flex: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 1rem;
  }
  .avatar-emoji {
    width: 110px; height: 110px; border-radius: 50%;
    background: rgba(250,245,237,0.12);
    border: 3px solid rgba(212,168,83,0.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 3.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  }
  .avatar-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 700;
    color: white;
  }
  .avatar-meta { font-size: 0.8rem; color: rgba(250,245,237,0.6); }
  .outcome-pill {
    position: relative; z-index: 1;
    background: rgba(250,245,237,0.1);
    border: 1px solid rgba(212,168,83,0.25);
    border-radius: 14px; padding: 1rem 1.2rem;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .outcome-pill-icon { font-size: 1.4rem; }
  .outcome-pill-text { font-size: 0.82rem; color: rgba(250,245,237,0.85); line-height: 1.5; }
  .outcome-pill-text strong { color: white; display: block; font-size: 0.9rem; margin-bottom: 0.1rem; }

  .featured-content {
    padding: 3.5rem;
    display: flex; flex-direction: column; justify-content: center;
  }
  .featured-tag {
    display: inline-block;
    background: var(--soft-cream); color: var(--terracotta);
    font-size: 0.7rem; font-weight: 700;
    padding: 0.25rem 0.8rem; border-radius: 1rem;
    text-transform: uppercase; letter-spacing: 0.06em;
    margin-bottom: 1.2rem;
  }
  .featured-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    font-weight: 900; color: var(--dark-teal);
    letter-spacing: -0.02em; line-height: 1.2;
    margin-bottom: 1.2rem;
  }
  .featured-content h2 em { font-style: italic; color: var(--terracotta); }
  .featured-content .lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 300; line-height: 1.85;
    color: var(--text-muted); margin-bottom: 1.5rem;
  }
  .timeline {
    list-style: none; position: relative;
    border-left: 2px solid rgba(196,98,45,0.15);
    padding-left: 1.5rem; margin-bottom: 2rem;
  }
  .timeline li {
    position: relative; margin-bottom: 1rem;
  }
  .timeline li::before {
    content: '';
    position: absolute; left: -1.85rem; top: 0.45rem;
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--terracotta);
    border: 2px solid white;
    box-shadow: 0 0 0 2px rgba(196,98,45,0.3);
  }
  .tl-phase { font-size: 0.7rem; font-weight: 700; color: var(--terracotta); text-transform: uppercase; letter-spacing: 0.08em; }
  .tl-text { font-size: 0.88rem; color: var(--text); line-height: 1.6; margin-top: 0.1rem; }
  .result-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
  .result-tag {
    background: rgba(45,74,62,0.08); color: var(--deep-teal);
    border: 1px solid rgba(45,74,62,0.2);
    padding: 0.3rem 0.9rem; border-radius: 1rem;
    font-size: 0.75rem; font-weight: 600;
  }

  /* ── CASE STUDY GRID ── */
  .cases-section {
    padding: 3rem 5rem 5rem;
    max-width: 1200px; margin: 0 auto;
  }
  .cases-section .section-label { margin-bottom: 2rem; }
  .cases-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem;
  }
  .case-card {
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(196,98,45,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
  }
  .case-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
  }
  .cc-terracotta::before { background: linear-gradient(90deg, var(--terracotta), var(--gold)); }
  .cc-deep-teal::before { background: linear-gradient(90deg, var(--deep-teal), var(--sage)); }
  .cc-sky::before { background: linear-gradient(90deg, var(--sky), #7AB8D4); }
  .case-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(44,24,16,0.1); }

  .case-card-top {
    padding: 2rem 2rem 1.5rem;
    position: relative;
  }
  .case-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; }
  .case-avatar {
    width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
  }
  .ca-dark-teal { background: linear-gradient(135deg, rgba(196,98,45,0.15), rgba(212,168,83,0.15)); }
  .ca-deep-teal { background: linear-gradient(135deg, rgba(45,74,62,0.15), rgba(107,143,113,0.15)); }
  .ca-sky { background: linear-gradient(135deg, rgba(74,124,158,0.15), rgba(122,184,212,0.15)); }
  .case-id { flex: 1; }
  .case-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 700; color: var(--dark-teal);
    line-height: 1.2;
  }
  .case-meta { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.2rem; }
  .case-program-tag {
    display: inline-block;
    font-size: 0.68rem; font-weight: 700;
    padding: 0.2rem 0.7rem; border-radius: 1rem;
    text-transform: uppercase; letter-spacing: 0.05em;
    margin-top: 0.5rem;
  }
  .tag-dark-teal { background: rgba(196,98,45,0.1); color: var(--terracotta); }
  .tag-deep-teal { background: rgba(45,74,62,0.1); color: var(--deep-teal); }
  .tag-sky { background: rgba(74,124,158,0.1); color: var(--sky); }

  .case-card-top h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 700; color: var(--dark-teal);
    line-height: 1.25; margin-bottom: 0.8rem;
  }
  .case-card-top h3 em { font-style: italic; color: var(--terracotta); }
  .case-card-top p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.98rem; font-weight: 300; line-height: 1.8;
    color: var(--text-muted); margin-bottom: 1.2rem;
  }
  .case-divider {
    height: 1px; background: rgba(196,98,45,0.1); margin: 0 2rem;
  }
  .case-card-bottom { padding: 1.5rem 2rem 2rem; }
  .outcome-row {
    display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 0.9rem;
  }
  .outcome-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.05rem; }
  .outcome-text { font-size: 0.84rem; color: var(--text); line-height: 1.55; }
  .outcome-text strong { color: var(--dark-teal); font-weight: 600; }

  .case-quote {
    margin-top: 1.5rem;
    background: var(--soft-cream);
    border-left: 3px solid var(--terracotta);
    border-radius: 0 12px 12px 0;
    padding: 1rem 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem; font-style: italic; font-weight: 300;
    color: var(--text-muted); line-height: 1.7;
  }
  .case-quote cite {
    display: block; margin-top: 0.5rem;
    font-style: normal; font-size: 0.75rem; font-weight: 600;
    color: var(--terracotta); font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.02em;
  }

  /* ── IMPACT BANNER ── */
  .impact-banner {
    background: var(--deep-teal);
    padding: 5rem;
    position: relative; overflow: hidden;
  }
  .impact-banner::before {
    content: '';
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(107,143,113,0.06) 0, rgba(107,143,113,0.06) 1px, transparent 0, transparent 50px);
  }
  .impact-inner {
    max-width: 1100px; margin: 0 auto;
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  }
  .impact-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 900; color: white;
    letter-spacing: -0.02em; line-height: 1.15;
    margin-bottom: 1.2rem;
  }
  .impact-inner h2 em { font-style: italic; color: var(--warm-gold); }
  .impact-inner p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 300; line-height: 1.8;
    color: rgba(250,245,237,0.7);
    margin-bottom: 2rem;
  }
  .btn-gold {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold), var(--warm-gold));
    color: var(--dark-teal);
    padding: 1rem 2rem; border-radius: 3rem;
    font-weight: 700; font-size: 0.95rem;
    text-decoration: none; transition: all 0.3s;
  }
  .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212,168,83,0.4); }
  .impact-metrics {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  }
  .metric-card {
    background: rgba(250,245,237,0.06);
    border: 1px solid rgba(250,245,237,0.1);
    border-radius: 18px; padding: 1.4rem;
    text-align: center;
  }
  .metric-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem; font-weight: 900;
    color: var(--warm-gold); line-height: 1;
    margin-bottom: 0.4rem;
  }
  .metric-lbl { font-size: 0.75rem; color: rgba(250,245,237,0.55); text-transform: uppercase; letter-spacing: 0.05em; }

  /* ── TESTIMONIAL STRIP ── */
  .testimonials {
    padding: 6rem 5rem;
    background: var(--dark-teal);
    position: relative; overflow: hidden;
  }
  .testimonials::after {
    content: '"';
    position: absolute; top: -2rem; right: 4rem;
    font-family: 'Playfair Display', serif;
    font-size: 20rem; font-weight: 900;
    color: rgba(212,168,83,0.06);
    line-height: 1; pointer-events: none;
  }
  .testimonials .section-header { text-align: center; margin-bottom: 3rem; }
  .testimonials .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900; color: white;
    letter-spacing: -0.03em; line-height: 1.1;
    margin-bottom: 0.8rem;
  }
  .testimonials .section-header h2 em { font-style: italic; color: var(--gold); }
  .testimonials .section-header p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 300; line-height: 1.7;
    color: rgba(250,245,237,0.65); max-width: 540px; margin: 0 auto;
  }
  .t-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    max-width: 1100px; margin: 0 auto;
  }
  .t-card {
    background: rgba(250,245,237,0.06);
    border: 1px solid rgba(212,168,83,0.12);
    border-radius: 20px; padding: 2rem;
  }
  .t-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
  .t-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-weight: 300; line-height: 1.8;
    color: rgba(250,245,237,0.85); margin-bottom: 1.5rem;
  }
  .t-author { display: flex; align-items: center; gap: 0.8rem; }
  .t-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--terracotta), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
  }
  .t-name { font-size: 0.88rem; font-weight: 600; color: white; }
  .t-loc { font-size: 0.75rem; color: rgba(250,245,237,0.5); margin-top: 0.1rem; }

  /* ── CTA ── */
  .cta-section {
    padding: 6rem 5rem;
    background: var(--soft-cream);
    text-align: center;
  }
  .cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900; color: var(--dark-teal);
    letter-spacing: -0.03em; line-height: 1.1;
    margin-bottom: 1rem;
  }
  .cta-section h2 em { font-style: italic; color: var(--terracotta); }
  .cta-section p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-weight: 300; line-height: 1.8;
    color: var(--text-muted); max-width: 540px; margin: 0 auto 2.5rem;
  }
  .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--terracotta); color: white;
    padding: 1rem 2rem; border-radius: 3rem;
    font-weight: 600; font-size: 0.95rem;
    text-decoration: none; transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 0.5rem;
  }
  .btn-primary:hover { background: var(--dark-teal); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(44,24,16,0.2); }
  .btn-secondary {
    background: transparent; color: var(--dark-teal);
    padding: 1rem 2rem; border-radius: 3rem;
    font-weight: 600; font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid var(--dark-teal);
    transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 0.5rem;
  }
  .btn-secondary:hover { background: var(--dark-teal); color: white; transform: translateY(-2px); }

  /* ── FOOTER ── */
  footer {
    background: #0F0806;
    padding: 3rem 5rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1.5rem;
  }
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 700; color: white;
  }
  .footer-logo span { color: var(--gold); }
  .footer-tagline { font-size: 0.78rem; color: rgba(250,245,237,0.35); margin-top: 0.3rem; }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a { font-size: 0.8rem; color: rgba(250,245,237,0.5); text-decoration: none; transition: color 0.3s; }
  .footer-links a:hover { color: var(--gold); }
  .footer-copy { font-size: 0.75rem; color: rgba(250,245,237,0.25); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .fade-up { animation: fadeUp 0.8s ease both; }
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  .delay-3 { animation-delay: 0.3s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .page-hero { padding: 8rem 1.5rem 4rem; }
    .page-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    .hero-stat-grid { grid-template-columns: 1fr 1fr; }
    .filter-bar { padding: 1.5rem; }
    .featured-section { padding: 3rem 1.5rem 2rem; }
    .featured-card { grid-template-columns: 1fr; }
    .featured-visual { min-height: 320px; }
    .cases-section { padding: 2rem 1.5rem 4rem; }
    .cases-grid { grid-template-columns: 1fr; }
    .impact-banner { padding: 4rem 1.5rem; }
    .impact-inner { grid-template-columns: 1fr; gap: 3rem; }
    .testimonials { padding: 5rem 1.5rem; }
    .t-grid { grid-template-columns: 1fr; }
    .cta-section { padding: 4rem 1.5rem; }
    footer { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
  }