
  :root {
    /* Official Inner Harmony Brand Palette (IH-BRANDING.pdf) */
    --teal: #0b7784;          /* Peacock Teal — primary brand */
    --teal-deep: #074a52;
    --teal-soft: #2a96a3;
    --navy: #0c344d;          /* Deep Navy — primary dark */
    --navy-deep: #061d2e;
    --terracotta: #9c6145;    /* Warm Terracotta */
    --terracotta-deep: #6e4530;
    --gold: #d3b070;          /* Gold/Tan */
    --gold-soft: #e0c694;
    --sage: #71d3c7;          /* Mint Teal — bright accent */
    --sage-pale: #b8e6df;
    --cream: #efecdc;         /* Cream/Ivory — light background */
    --cream-warm: #e5e0c8;
    --ink: #1A1F2A;
    --ink-soft: #4A5260;
    --ink-mute: #7A828F;
    --line: rgba(12,52,77,0.12);
    --line-soft: rgba(12,52,77,0.06);
    --serif: "Cormorant Garamond", "Times New Roman", serif;
    --sans: "Montserrat", system-ui, -apple-system, sans-serif;
  }
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-wrap: pretty;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; }

  .wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
  .wrap-narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; }

  /* ========== TYPE ========== */
  .eyebrow {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.22em;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--gold);
    display: inline-block;
  }
  .eyebrow.no-line::before { display: none; }

  h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 500;
    color: var(--navy);
    letter-spacing: -0.01em;
    line-height: 1.08;
    margin: 0;
    text-wrap: balance;
  }
  h1 { font-size: clamp(40px, 4.8vw, 72px); }
  h2 { font-size: clamp(36px, 4.4vw, 60px); }
  h3 { font-size: clamp(22px, 2vw, 28px); }
  h4 { font-size: 18px; font-family: var(--sans); font-weight: 600; letter-spacing: 0; }

  .lead {
    font-size: clamp(17px, 1.4vw, 20px);
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 60ch;
    margin: 0;
    text-wrap: pretty;
  }

  /* ========== BUTTONS ========== */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--terracotta);
    color: #fff;
    box-shadow: 0 4px 18px rgba(184,92,62,0.28);
  }
  .btn-primary:hover {
    background: var(--terracotta-deep);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(184,92,62,0.36);
  }
  .btn-ghost {
    color: var(--navy);
    border-color: var(--line);
    background: transparent;
  }
  .btn-ghost:hover { border-color: var(--navy); background: rgba(14,42,71,0.04); }
  .btn-link {
    display: inline-flex;
    gap: 8px;
    color: var(--teal);
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    align-items: center;
    transition: gap 0.2s;
  }
  .btn-link:hover { gap: 14px; }
  .btn-link.on-dark { color: var(--gold-soft); }

  /* ========== HEADER ========== */
  .header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(245,240,230,0.86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-soft);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
  }
  .logo {
    display: inline-flex;
    align-items: center;
    color: var(--navy);
  }
  .logo img {
    display: block;
    height: 48px !important;
    max-height: 48px !important;
    width: auto;
    max-width: 240px;
    object-fit: contain;
  }
  .footer-brand .logo img {
    height: 64px !important;
    max-height: 64px !important;
    max-width: 280px;
  }
  /* Legacy classes — kept hidden for safe fallback if used in older markup */
  .logo-mark, .logo-text { display: none; }
  .nav {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .nav > a, .nav > .has-sub > a {
    font-size: 14px;
    color: var(--ink-soft);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.15s;
    padding: 8px 0;
  }
  .nav > a:hover, .nav > .has-sub > a:hover { color: var(--teal); }
  .nav .caret { font-size: 9px; opacity: 0.6; transition: transform 0.2s; }
  .has-sub { position: relative; }
  .has-sub:hover .caret { transform: rotate(180deg); }
  .submenu {
    position: absolute;
    top: 100%; left: 50%;
    transform: translate(-50%, 8px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 12px;
    min-width: 280px;
    box-shadow: 0 24px 48px -16px rgba(14,42,71,0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    z-index: 50;
  }
  .has-sub:hover .submenu, .has-sub:focus-within .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
  .submenu a {
    display: block;
    padding: 12px 16px;
    border-radius: 4px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 500;
    transition: background 0.15s;
  }
  .submenu a small {
    display: block;
    font-size: 11px;
    color: var(--ink-mute);
    font-weight: 400;
    margin-top: 2px;
    letter-spacing: 0.02em;
  }
  .submenu a:hover { background: var(--cream); color: var(--teal); }
  .header .btn { padding: 12px 22px; font-size: 13px; }
  @media (max-width: 1024px) {
    .nav { display: none; }
  }

  /* ========== HERO ========== */
  .hero {
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
    background:
      radial-gradient(1100px 600px at 85% 0%, rgba(157,195,189,0.32), transparent 60%),
      radial-gradient(900px 500px at 0% 90%, rgba(201,160,74,0.10), transparent 55%),
      var(--cream);
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: center;
  }
  @media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  }
  .hero h1 {
    margin: 28px 0 28px;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--teal);
    font-weight: 500;
  }
  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 36px;
  }
  .hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    overflow: visible;
  }
  .hero-visual image-slot,
  .hero-visual > img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(140deg, var(--teal) 0%, var(--navy) 100%);
    object-fit: cover;
    object-position: center top;
    display: block;
    position: relative;
    z-index: 1;
  }
  .hero-visual::before {
    content: "";
    position: absolute;
    inset: 24px -24px -24px 24px;
    border: 1px solid var(--gold);
    border-radius: 8px;
    z-index: 0;
    pointer-events: none;
  }
  .hero-badge {
    position: absolute;
    bottom: -28px;
    left: -28px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 14px 22px 14px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 40px rgba(14,42,71,0.10);
    z-index: 2;
  }
  .hero-badge-icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--teal); color: var(--gold-soft);
    display: grid; place-items: center;
    font-family: var(--serif); font-size: 18px; font-style: italic;
  }
  .hero-badge-text {
    font-size: 12px; line-height: 1.3;
  }
  .hero-badge-text strong { display: block; color: var(--navy); font-size: 13px; }
  .hero-badge-text span { color: var(--ink-mute); }

  .trust-bar {
    margin-top: 80px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  @media (max-width: 720px) {
    .trust-bar { grid-template-columns: repeat(2, 1fr); }
  }
  .trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .trust-num {
    font-family: var(--serif);
    font-size: 32px;
    color: var(--teal);
    font-weight: 500;
    line-height: 1;
  }
  .trust-label {
    font-size: 12px;
    color: var(--ink-mute);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
  }

  /* ========== SECTION HEADER ========== */
  .section { padding: 120px 0; }
  .section-tight { padding: 96px 0; }
  .section-head {
    max-width: 760px;
    margin: 0 auto 64px;
    text-align: center;
  }
  .section-head .eyebrow { justify-content: center; }
  .section-head h2 { margin: 18px 0 18px; }
  .section-head .lead { margin: 0 auto; }

  /* ========== BRAND PROMISE ========== */
  .promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 880px) { .promise-grid { grid-template-columns: 1fr; } }
  .promise-card {
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: 4px;
    padding: 48px 36px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .promise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -16px rgba(14,42,71,0.12);
  }
  .promise-num {
    font-family: var(--serif);
    font-size: 14px;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .promise-tag {
    font-size: 11px;
    letter-spacing: 0.28em;
    font-weight: 700;
    color: var(--terracotta);
    margin-bottom: 18px;
  }
  .promise-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
  }
  .promise-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.65;
  }
  .promise-card svg { color: var(--teal); margin-bottom: 28px; }

  /* ========== 4 LĨNH VỰC ========== */
  .fields-section {
    background: var(--cream-warm);
  }
  .fields-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  @media (max-width: 880px) { .fields-grid { grid-template-columns: 1fr; } }
  .field-card {
    position: relative;
    border-radius: 6px;
    padding: 56px 48px 48px;
    overflow: hidden;
    color: #fff;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s;
  }
  .field-card:hover { transform: translateY(-4px); }
  .field-card.bl1 { background: linear-gradient(155deg, var(--teal) 0%, var(--teal-deep) 100%); }
  .field-card.bl2 { background: linear-gradient(155deg, var(--terracotta) 0%, var(--terracotta-deep) 100%); }
  .field-card.bl3 { background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%); }
  .field-card.bl4 { background: linear-gradient(155deg, #4A6B5E 0%, #2F4A3F 100%); }
  .field-card::before {
    content: "";
    position: absolute;
    top: -60px; right: -60px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
  }
  .field-card::after {
    content: "";
    position: absolute;
    bottom: -120px; right: -120px;
    width: 320px; height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.10);
  }
  .field-num {
    font-family: var(--serif);
    font-size: 13px;
    letter-spacing: 0.3em;
    color: var(--gold-soft);
    margin-bottom: 28px;
    font-weight: 500;
    position: relative;
    z-index: 1;
  }
  .field-card h3 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    max-width: 16ch;
  }
  .field-card p {
    color: rgba(255,255,255,0.78);
    margin: 0 0 auto;
    font-size: 14.5px;
    line-height: 1.7;
    max-width: 38ch;
    position: relative;
    z-index: 1;
  }
  .field-link {
    margin-top: 32px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-soft);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
    transition: gap 0.2s;
  }
  .field-card:hover .field-link { gap: 18px; }

  /* ========== VISION ========== */
  .vision {
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .vision::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(900px 600px at 100% 0%, rgba(201,160,74,0.12), transparent 60%),
      radial-gradient(700px 400px at 0% 100%, rgba(27,95,110,0.30), transparent 55%);
    pointer-events: none;
  }
  .vision-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
    position: relative;
  }
  @media (max-width: 960px) { .vision-grid { grid-template-columns: 1fr; gap: 48px; } }
  .vision h2 {
    font-family: var(--serif);
    font-size: clamp(40px, 4.6vw, 64px);
    color: var(--gold-soft);
    font-style: italic;
    font-weight: 400;
    line-height: 1.1;
  }
  .vision-body p {
    color: rgba(245,240,230,0.78);
    font-size: 17px;
    line-height: 1.8;
    margin: 0 0 20px;
  }
  .vision-body p:last-of-type { margin-bottom: 32px; }
  .vision .eyebrow { color: var(--gold); }
  .vision .eyebrow::before { background: var(--gold); }

  /* ========== FOUNDERS ========== */
  .founders-section { background: var(--cream); }
  .founder-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  @media (max-width: 880px) { .founder-grid { grid-template-columns: 1fr; } }
  .founder-card {
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: 4px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 240px 1fr;
  }
  @media (max-width: 720px) { .founder-card { grid-template-columns: 1fr; } }
  .founder-portrait {
    background: linear-gradient(140deg, var(--teal) 0%, var(--navy) 100%);
    position: relative;
    min-height: 320px;
  }
  .founder-portrait image-slot,
  .founder-portrait > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .founder-meta { padding: 36px 32px; }
  .founder-meta .role {
    font-family: var(--serif);
    font-style: italic;
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 10px;
  }
  .founder-meta h3 {
    font-size: 30px;
    margin-bottom: 6px;
  }
  .founder-title {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 600;
    margin-bottom: 20px;
  }
  .founder-bio {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin: 0 0 18px;
  }
  .founder-leads {
    font-size: 13px;
    color: var(--teal);
    padding: 14px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin: 0 0 22px;
    font-weight: 500;
  }
  .founder-leads strong { color: var(--navy); display: block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 4px; font-weight: 700; }

  /* ========== WHY CHOOSE ========== */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
  }
  @media (max-width: 720px) { .why-grid { grid-template-columns: 1fr; } }
  .why-item {
    padding: 48px 40px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
  }
  .why-item:nth-child(2n) { border-right: none; }
  .why-item:nth-last-child(-n+2) { border-bottom: none; }
  @media (max-width: 720px) {
    .why-item { border-right: none; }
    .why-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
    .why-item:last-child { border-bottom: none; }
  }
  .why-num {
    font-family: var(--serif);
    font-size: 56px;
    font-weight: 400;
    font-style: italic;
    color: var(--sage);
    line-height: 1;
    margin-bottom: 16px;
  }
  .why-item h3 {
    font-size: 22px;
    margin-bottom: 14px;
  }
  .why-item p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.7;
  }

  /* ========== CORE VALUES ========== */
  .values-section {
    background: var(--teal);
    color: var(--cream);
  }
  .values-section .eyebrow { color: var(--gold-soft); }
  .values-section .eyebrow::before { background: var(--gold-soft); }
  .values-section h2 { color: var(--cream); }
  .values-section .lead { color: rgba(245,240,230,0.78); }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: rgba(245,240,230,0.12);
    border: 1px solid rgba(245,240,230,0.12);
    border-radius: 4px;
    overflow: hidden;
  }
  @media (max-width: 1100px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
  @media (max-width: 720px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }

  .value-cell {
    background: var(--teal);
    padding: 32px 24px 28px;
    transition: background 0.3s, transform 0.3s;
    cursor: default;
    display: flex;
    flex-direction: column;
  }
  .value-cell:hover {
    background: var(--teal-deep);
  }
  .value-cell .num {
    font-family: var(--serif);
    font-size: 12px;
    color: var(--gold-soft);
    letter-spacing: 0.2em;
    margin-bottom: 16px;
    font-weight: 500;
  }
  .value-cell h4 {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--cream);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.15;
    margin-bottom: 4px;
  }
  .value-cell .en {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--sage);
    margin-bottom: 18px;
    font-weight: 600;
  }
  .value-cell .tagline {
    font-size: 13px;
    color: rgba(245,240,230,0.92);
    line-height: 1.45;
    margin: 0 0 12px;
    font-weight: 500;
  }
  .value-cell .body {
    font-size: 12.5px;
    color: rgba(245,240,230,0.62);
    line-height: 1.55;
    margin: 0;
  }

  /* ========== SOCIAL PROOF ========== */
  .proof-section { background: var(--cream); }
  .logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 80px;
  }
  @media (max-width: 880px) { .logo-grid { grid-template-columns: repeat(3, 1fr); } }
  .logo-cell {
    background: #fff;
    aspect-ratio: 2 / 1;
    display: grid;
    place-items: center;
    color: var(--ink-mute);
    font-family: var(--serif);
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    transition: color 0.2s;
  }
  .logo-cell:hover { color: var(--navy); }
  .logo-cell svg { opacity: 0.55; max-width: 60%; max-height: 60%; }

  /* Testimonials slider */
  .testimonial-wrap {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 64px 64px 56px;
    position: relative;
    overflow: hidden;
  }
  @media (max-width: 720px) { .testimonial-wrap { padding: 40px 28px; } }
  .testimonial-wrap::before {
    content: "";
    position: absolute;
    top: 28px; left: 48px;
    width: 100px; height: 80px;
    background: var(--gold);
    opacity: 0.08;
    border-radius: 50% 50% 50% 0;
    pointer-events: none;
  }
  .testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
  }
  .testimonial-slide {
    flex: 0 0 100%;
    padding: 0 8px;
  }
  .testimonial-slide blockquote {
    font-family: var(--serif);
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.4;
    font-style: italic;
    margin: 0 0 32px;
    max-width: 70ch;
    position: relative;
  }
  .testimonial-slide blockquote::before {
    content: "“";
    font-size: 80px;
    color: var(--gold);
    position: absolute;
    top: -36px; left: -20px;
    font-family: var(--serif);
    font-style: normal;
    line-height: 1;
  }
  .testimonial-meta {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .testimonial-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage) 0%, var(--teal) 100%);
    display: grid; place-items: center;
    color: #fff;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
  }
  .testimonial-name {
    font-weight: 700;
    color: var(--navy);
    font-size: 14px;
    margin-bottom: 2px;
  }
  .testimonial-role {
    font-size: 12px;
    color: var(--ink-mute);
    letter-spacing: 0.04em;
  }
  .testimonial-controls {
    position: absolute;
    bottom: 56px;
    right: 56px;
    display: flex;
    gap: 8px;
  }
  @media (max-width: 720px) {
    .testimonial-controls { position: static; margin-top: 24px; }
  }
  .testimonial-controls button {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--navy);
    display: grid; place-items: center;
    transition: all 0.2s;
  }
  .testimonial-controls button:hover {
    background: var(--navy);
    color: var(--cream);
    border-color: var(--navy);
  }
  .testimonial-dots {
    display: flex; gap: 8px;
    margin-top: 28px;
  }
  .testimonial-dots button {
    width: 24px; height: 4px;
    border-radius: 2px;
    border: none;
    background: var(--line);
    padding: 0;
    transition: all 0.2s;
  }
  .testimonial-dots button.active { background: var(--terracotta); width: 36px; }

  .proof-disclaimer {
    text-align: center;
    margin-top: 40px;
    font-size: 12px;
    color: var(--ink-mute);
    font-style: italic;
  }

  /* Impact band */
  .impact-band {
    margin-top: 80px;
    background: var(--navy);
    border-radius: 6px;
    padding: 56px 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  @media (max-width: 720px) { .impact-band { grid-template-columns: repeat(2, 1fr); } }
  .impact-band::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(700px 300px at 50% 0%, rgba(201,160,74,0.10), transparent);
  }
  .impact-cell {
    text-align: center;
    position: relative;
    border-right: 1px solid rgba(245,240,230,0.12);
  }
  .impact-cell:last-child { border-right: none; }
  @media (max-width: 720px) {
    .impact-cell:nth-child(2n) { border-right: none; }
    .impact-cell:nth-child(-n+2) { border-bottom: 1px solid rgba(245,240,230,0.12); padding-bottom: 24px; margin-bottom: 24px; }
  }
  .impact-num {
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 64px);
    color: var(--gold-soft);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 12px;
  }
  .impact-num sup { font-size: 0.5em; vertical-align: super; }
  .impact-label {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245,240,230,0.70);
    font-weight: 600;
  }

  /* ========== CASE STUDIES ========== */
  /* ========== BLOG ARTICLE ========== */
  .article-body {
    max-width: 720px;
    margin: 0 auto;
    font-size: 16.5px;
    line-height: 1.8;
    color: var(--ink-soft);
  }
  .article-body h2 { font-size: 28px; margin: 48px 0 18px; line-height: 1.25; }
  .article-body h3 { font-size: 21px; margin: 36px 0 14px; }
  .article-body p { margin: 0 0 20px; }
  .article-body ul, .article-body ol { margin: 0 0 20px; padding-left: 24px; }
  .article-body li { margin-bottom: 10px; }
  .article-body blockquote {
    margin: 32px 0;
    padding: 22px 30px;
    background: var(--cream-warm);
    border-left: 3px solid var(--gold);
    font-family: var(--serif);
    font-style: italic;
    font-size: 19px;
    line-height: 1.6;
    color: var(--ink);
  }
  .article-body table { width: 100%; border-collapse: collapse; margin: 0 0 24px; font-size: 15px; }
  .article-body th, .article-body td { border: 1px solid var(--line); padding: 12px 16px; text-align: left; vertical-align: top; }
  .article-body th { background: var(--cream-warm); color: var(--navy); font-weight: 700; }
  .article-cta {
    max-width: 720px;
    margin: 56px auto 0;
    background: var(--cream-warm);
    border: 1px solid var(--line);
    padding: 36px 40px;
    text-align: center;
  }

  /* ========== TESTIMONIAL GRID ========== */
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  @media (max-width: 880px) { .testi-grid { grid-template-columns: 1fr; } }
  .testi-card {
    background: #fff;
    border: 1px solid var(--line-soft);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
  }
  .testi-card blockquote {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--ink-soft);
    font-style: italic;
    border: none;
    padding: 0;
  }
  .testi-card .who {
    margin-top: auto;
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
  }
  .testi-card .who small {
    display: block;
    font-weight: 500;
    font-size: 12px;
    color: var(--ink-mute);
    margin-top: 3px;
    letter-spacing: 0.04em;
  }

  .cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 880px) { .cases-grid { grid-template-columns: 1fr; } }
  .case-card {
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -16px rgba(14,42,71,0.12);
  }
  .case-img {
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
  }
  .case-img.c1 { background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-deep) 100%); }
  .case-img.c2 { background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%); }
  .case-img.c3 { background: linear-gradient(135deg, var(--gold) 0%, #8E6E2E 100%); }
  .case-tag {
    position: absolute;
    top: 20px; left: 20px;
    background: rgba(255,255,255,0.92);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 100px;
  }
  .case-img-illust {
    position: absolute;
    inset: 0;
    display: grid; place-items: center;
    color: rgba(255,255,255,0.16);
    font-family: var(--serif);
    font-size: 200px;
    font-style: italic;
    line-height: 1;
  }
  .case-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
  .case-meta {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 600;
    margin-bottom: 16px;
  }
  .case-body h3 {
    font-size: 22px;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .case-body blockquote {
    margin: 0 0 24px;
    padding-left: 14px;
    border-left: 2px solid var(--gold);
    font-style: italic;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.6;
  }
  .case-body .btn-link { margin-top: auto; align-self: flex-start; }

  /* ========== INSIGHTS ========== */
  .insights-section { background: var(--cream-warm); }
  .insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  @media (max-width: 880px) { .insights-grid { grid-template-columns: 1fr; } }
  .insight-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    cursor: pointer;
    transition: transform 0.3s;
  }
  .insight-card:hover { transform: translateY(-4px); }
  .insight-img {
    aspect-ratio: 16 / 10;
    border-radius: 4px;
    background: var(--sage-pale);
    position: relative;
    overflow: hidden;
  }
  .insight-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(14,42,71,0.30));
  }
  .insight-img.i1 { background: linear-gradient(135deg, var(--sage) 0%, var(--teal-soft) 100%); }
  .insight-img.i2 { background: linear-gradient(135deg, var(--cream-warm) 0%, var(--gold-soft) 100%); }
  .insight-img.i3 { background: linear-gradient(135deg, var(--sage-pale) 0%, var(--sage) 100%); }
  .insight-cat {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 700;
  }
  .insight-card h3 {
    font-size: 22px;
    line-height: 1.25;
    margin: 0;
  }
  .insight-meta {
    font-size: 13px;
    color: var(--ink-mute);
    display: flex;
    gap: 14px;
    margin-top: auto;
  }
  .insight-meta span::before {
    content: "—";
    margin-right: 14px;
    opacity: 0.5;
  }
  .insight-meta span:first-child::before { display: none; }

  /* ========== LEAD MAGNET ========== */
  .magnet-section {
    background: linear-gradient(160deg, var(--teal-deep) 0%, var(--navy) 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .magnet-section::before {
    content: "";
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(201,160,74,0.18);
  }
  .magnet-section::after {
    content: "";
    position: absolute;
    top: -120px; right: -120px;
    width: 440px; height: 440px;
    border-radius: 50%;
    border: 1px solid rgba(201,160,74,0.10);
  }
  .magnet-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 80px;
    align-items: center;
  }
  @media (max-width: 960px) { .magnet-grid { grid-template-columns: 1fr; gap: 48px; } }
  .magnet-section .eyebrow { color: var(--gold-soft); }
  .magnet-section .eyebrow::before { background: var(--gold-soft); }
  .magnet-section h2 { color: var(--cream); margin: 18px 0 24px; max-width: 18ch; }
  .magnet-section p { color: rgba(245,240,230,0.78); font-size: 16px; line-height: 1.7; max-width: 52ch; margin: 0 0 32px; }
  .magnet-form {
    display: flex;
    gap: 8px;
    background: rgba(245,240,230,0.08);
    border: 1px solid rgba(245,240,230,0.18);
    padding: 8px;
    border-radius: 100px;
    max-width: 480px;
  }
  .magnet-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--cream);
    padding: 14px 20px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
  }
  .magnet-form input::placeholder { color: rgba(245,240,230,0.5); }
  .magnet-form button {
    background: var(--terracotta);
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 13px;
    transition: background 0.2s;
  }
  .magnet-form button:hover { background: var(--terracotta-deep); }
  .magnet-reassurance {
    margin-top: 16px;
    font-size: 12px;
    color: rgba(245,240,230,0.55);
  }

  .magnet-mock {
    position: relative;
    aspect-ratio: 3 / 4;
    perspective: 1200px;
    z-index: 1;
  }
  .magnet-book {
    position: absolute;
    inset: 0;
    background: var(--cream);
    border-radius: 2px 8px 8px 2px;
    transform: rotateY(-12deg) rotateX(2deg);
    transform-origin: left center;
    box-shadow:
      -2px 0 0 rgba(14,42,71,0.10),
      0 40px 80px rgba(0,0,0,0.45),
      0 20px 40px rgba(0,0,0,0.30);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
  }
  .magnet-book::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 8px;
    background: linear-gradient(90deg, rgba(0,0,0,0.18), transparent);
  }
  .magnet-book .seal {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: grid; place-items: center;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 22px;
    font-style: italic;
    font-weight: 600;
  }
  .magnet-book .title {
    font-family: var(--serif);
    font-size: 32px;
    color: var(--navy);
    line-height: 1.1;
    margin: 24px 0 16px;
    font-weight: 500;
  }
  .magnet-book .pillars {
    font-family: var(--serif);
    font-style: italic;
    color: var(--gold);
    font-size: 18px;
  }
  .magnet-book .footer-line {
    font-size: 10px;
    letter-spacing: 0.28em;
    color: var(--ink-mute);
    text-transform: uppercase;
    border-top: 1px solid var(--line);
    padding-top: 16px;
    margin-top: auto;
  }

  /* ========== FINAL CTA ========== */
  .final-cta {
    background: var(--terracotta);
    color: #fff;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(800px 500px at 50% 0%, rgba(201,160,74,0.18), transparent 60%),
      radial-gradient(600px 400px at 100% 100%, rgba(14,42,71,0.20), transparent 60%);
  }
  .final-cta-inner { position: relative; max-width: 760px; margin: 0 auto; padding: 0 32px; }
  .final-cta h2 {
    font-size: clamp(44px, 5.4vw, 76px);
    color: #fff;
    margin-bottom: 24px;
    font-style: italic;
  }
  .final-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    line-height: 1.7;
    max-width: 56ch;
    margin: 0 auto 40px;
  }
  .final-cta .btn-primary {
    background: var(--cream);
    color: var(--terracotta);
    padding: 22px 36px;
    font-size: 15px;
  }
  .final-cta .btn-primary:hover { background: #fff; }

  /* ========== FOOTER ========== */
  .footer {
    background: var(--navy-deep);
    color: rgba(245,240,230,0.72);
    padding: 96px 0 32px;
    font-size: 14px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 1fr);
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(245,240,230,0.10);
  }
  @media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

  .footer-brand .logo-text { color: var(--cream); }
  .footer-brand p {
    margin: 24px 0 0;
    font-size: 14px;
    color: rgba(245,240,230,0.6);
    line-height: 1.7;
    max-width: 30ch;
  }
  .footer-col h4 {
    color: var(--cream);
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0 0 20px;
    font-weight: 700;
  }
  .footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
  .footer-col a { color: rgba(245,240,230,0.6); transition: color 0.15s; }
  .footer-col a:hover { color: var(--gold-soft); }
  .footer-col p { margin: 0 0 12px; color: rgba(245,240,230,0.6); }

  .footer-bottom {
    padding-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-bottom-left { display: flex; gap: 24px; flex-wrap: wrap; font-size: 12px; color: rgba(245,240,230,0.45); }
  .footer-bottom-left a { color: rgba(245,240,230,0.6); }
  .footer-tagline {
    font-family: var(--serif);
    font-style: italic;
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 0.04em;
  }
  .footer-tagline strong { font-style: normal; font-family: var(--sans); letter-spacing: 0.22em; font-weight: 700; font-size: 11px; display: block; margin-bottom: 6px; }

  .socials { display: flex; gap: 8px; }
  .socials a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(245,240,230,0.18);
    display: grid; place-items: center;
    color: rgba(245,240,230,0.6);
    transition: all 0.2s;
  }
  .socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

  /* utility */
  .icon { width: 28px; height: 28px; stroke-width: 1.5; }
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.in { opacity: 1; transform: none; }



/* ===== INNER PAGE CSS ===== */
.page-hero { padding: 140px 0 80px; background: radial-gradient(1100px 500px at 85% 0%, rgba(157,195,189,0.28), transparent 60%), radial-gradient(900px 400px at 0% 100%, rgba(201,160,74,0.08), transparent 55%), var(--cream); border-bottom: 1px solid var(--line-soft); }
.page-hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(46px, 6vw, 88px); line-height: 1.02; letter-spacing: -0.012em; color: var(--navy); margin: 18px 0 24px; max-width: 18ch; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero .lead { max-width: 60ch; font-size: 19px; line-height: 1.6; color: var(--ink-soft); }
.crumbs { font-size: 12px; color: var(--ink-mute); letter-spacing: 0.06em; margin-bottom: 24px; text-transform: uppercase; }
.crumbs a { color: var(--ink-mute); }
.crumbs a:hover { color: var(--teal); }
.crumbs span { margin: 0 10px; opacity: 0.4; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.split-narrow { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
@media (max-width:880px){.split,.split-narrow{grid-template-columns:1fr;gap:40px;}}
.checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.checklist li { padding-left: 36px; position: relative; color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 24px; height: 24px; border-radius: 50%; background: var(--sage-pale); color: var(--teal); display: grid; place-items: center; font-size: 12px; font-weight: 700; }
.checklist.x li::before { content: "×"; background: rgba(184,92,62,0.12); color: var(--terracotta); font-size: 16px; }
.process-list { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.process-list li { display: grid; grid-template-columns: 72px 1fr; gap: 28px; align-items: start; padding: 28px 0; border-top: 1px solid var(--line); }
.process-list li:first-child { border-top: none; padding-top: 0; }
.process-list li::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--serif); font-size: 38px; font-style: italic; color: var(--gold); font-weight: 500; line-height: 1; }
.process-list h4 { font-family: var(--serif); font-size: 26px; font-weight: 500; margin: 0 0 10px; color: var(--navy); letter-spacing: -0.01em; }
.process-list p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width:880px){.pricing-grid{grid-template-columns:1fr;}}
.price-card { background: #fff; border: 1px solid var(--line); padding: 40px 32px; position: relative; }
.price-card.featured { background: var(--navy); color: #fff; border: none; }
.price-card .tag { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 18px; }
.price-card h3 { font-family: var(--serif); font-size: 30px; font-weight: 500; margin: 0 0 8px; color: var(--navy); letter-spacing: -0.01em; }
.price-card.featured h3 { color: #fff; }
.price-card .price { font-family: var(--serif); font-size: 30px; color: var(--teal); font-weight: 500; margin: 18px 0 22px; font-style: italic; }
.price-card.featured .price { color: var(--gold-soft); }
.price-card ul { list-style: none; padding: 0; margin: 18px 0 28px; display: flex; flex-direction: column; gap: 12px; font-size: 14px; color: var(--ink-soft); }
.price-card.featured ul { color: rgba(245,240,230,0.78); }
.price-card ul li { padding-left: 22px; position: relative; line-height: 1.5; }
.price-card ul li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }
.faq { display: flex; flex-direction: column; max-width: 880px; margin: 0 auto; }
.faq details { border-top: 1px solid var(--line); padding: 24px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-family: var(--serif); font-size: 24px; color: var(--navy); font-weight: 500; letter-spacing: -0.005em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--sans); font-size: 28px; color: var(--gold); font-weight: 300; transition: transform 0.25s; flex-shrink: 0; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.75; margin: 18px 0 0; max-width: 70ch; }
.faq details ul { color: var(--ink-soft); font-size: 15px; line-height: 1.75; margin: 12px 0 0; padding-left: 22px; }
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.contact-form .field label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--ink-mute); margin-bottom: 8px; display: block; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 14px 18px; border: 1px solid var(--line); font-family: inherit; font-size: 15px; color: var(--navy); background: #fff; outline: none; transition: border-color 0.2s; border-radius: 0; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--teal); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width:600px){.form-row{grid-template-columns:1fr;}}
.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (max-width:600px){.option-grid{grid-template-columns:1fr;}}
.option-card { padding: 18px 20px; border: 1px solid var(--line); cursor: pointer; transition: all 0.18s; display: flex; align-items: center; gap: 14px; background: #fff; }
.option-card:hover { border-color: var(--teal); }
.option-card input { width: auto; margin: 0; }
.option-card.selected { border-color: var(--teal); background: var(--sage-pale); }
.option-card strong { display: block; font-size: 14px; color: var(--navy); margin-bottom: 2px; }
.option-card small { color: var(--ink-mute); font-size: 12.5px; }
.blog-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width:880px){.blog-list{grid-template-columns:1fr;}}
.blog-card { background: #fff; border: 1px solid var(--line); transition: transform 0.25s, box-shadow 0.25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -20px rgba(14,42,71,0.18); }
.blog-card .thumb { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--teal), var(--teal-deep)); display: grid; place-items: center; color: var(--gold-soft); font-family: var(--serif); font-size: 56px; font-style: italic; }
.blog-card .thumb.t2 { background: linear-gradient(135deg, var(--terracotta), var(--gold)); color: var(--cream); }
.blog-card .thumb.t3 { background: linear-gradient(135deg, var(--sage), var(--teal-soft)); color: var(--navy); }
.blog-card .thumb.t4 { background: linear-gradient(135deg, var(--navy), var(--teal-deep)); color: var(--gold-soft); }
.blog-card .body { padding: 24px 26px 28px; }
.blog-card .cat { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta); font-weight: 700; }
.blog-card h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; line-height: 1.2; margin: 10px 0 12px; color: var(--navy); }
.blog-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; margin: 0 0 14px; }
.blog-card .meta { font-size: 12px; color: var(--ink-mute); letter-spacing: 0.04em; }
.cases-list { display: flex; flex-direction: column; gap: 0; }
.case-row { display: grid; grid-template-columns: 320px 1fr; gap: 56px; padding: 56px 0; border-top: 1px solid var(--line); align-items: center; }
.case-row:first-child { border-top: none; }
@media (max-width:880px){.case-row{grid-template-columns:1fr;gap:24px;padding:36px 0;}}
.case-row .thumb { aspect-ratio: 4/3; background: linear-gradient(135deg, var(--teal), var(--teal-deep)); display: grid; place-items: center; color: var(--gold-soft); font-family: var(--serif); font-size: 90px; font-style: italic; }
.case-row .thumb.t2 { background: linear-gradient(135deg, var(--terracotta), var(--gold)); color: var(--cream); }
.case-row .thumb.t3 { background: linear-gradient(135deg, var(--navy), var(--teal-deep)); color: var(--gold-soft); }
.case-row .meta { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta); font-weight: 700; margin-bottom: 12px; }
.case-row h3 { font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); font-weight: 500; line-height: 1.15; margin: 0 0 16px; color: var(--navy); letter-spacing: -0.01em; }
.case-row blockquote { font-family: var(--serif); font-size: 22px; font-style: italic; color: var(--ink-soft); border-left: 3px solid var(--gold); padding-left: 20px; margin: 0 0 18px; max-width: 60ch; }
.case-row a { color: var(--teal); font-weight: 600; font-size: 14px; letter-spacing: 0.04em; }
.case-row a:hover { color: var(--terracotta); }
.legal { max-width: 760px; margin: 0 auto; padding: 80px 0 120px; }
.legal h2 { font-family: var(--serif); font-size: 30px; font-weight: 500; margin: 48px 0 16px; color: var(--navy); }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: var(--ink-soft); font-size: 15.5px; line-height: 1.75; }
.legal ul { padding-left: 22px; }
.value-detail { display: grid; grid-template-columns: 80px 1fr; gap: 28px; padding: 32px 0; border-top: 1px solid var(--line); }
.value-detail:first-child { border-top: none; }
.value-detail .num { font-family: var(--serif); font-size: 56px; font-style: italic; color: var(--gold); font-weight: 500; line-height: 1; }
.value-detail h4 { font-family: var(--serif); font-size: 28px; font-weight: 500; margin: 0 0 6px; color: var(--navy); letter-spacing: -0.01em; }
.value-detail .en { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terracotta); font-weight: 700; margin-bottom: 14px; }
.value-detail p.lede { font-family: var(--serif); font-size: 19px; font-style: italic; color: var(--ink); margin: 0 0 14px; }
.value-detail p.body { color: var(--ink-soft); font-size: 15px; line-height: 1.7; margin: 0; max-width: 64ch; }
@media (max-width:600px){.value-detail{grid-template-columns:1fr;gap:8px;}.value-detail .num{font-size:44px;}}
.bullet-block { background: #fff; border-left: 3px solid var(--gold); padding: 28px 32px; margin: 0; }
.bullet-block h4 { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--navy); margin: 0 0 8px; }
.bullet-block p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.7; margin: 0; }
.stats-band { background: var(--navy); color: #fff; padding: 60px 0; }
.stats-band .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width:880px){.stats-band .grid{grid-template-columns:repeat(2,1fr);}}
.stats-band .stat { text-align: left; }
.stats-band .num { font-family: var(--serif); font-size: 64px; font-style: italic; color: var(--gold); font-weight: 500; line-height: 1; }
.stats-band .label { font-size: 13px; color: rgba(245,240,230,0.7); margin-top: 10px; line-height: 1.4; }
.section-pull { background: var(--navy); color: #fff; padding: 96px 0; }
.section-pull blockquote { font-family: var(--serif); font-size: clamp(32px, 3.6vw, 52px); font-style: italic; line-height: 1.18; color: var(--cream); max-width: 22ch; margin: 0 auto; text-align: center; font-weight: 500; }
.section-pull cite { display: block; text-align: center; margin-top: 24px; font-style: normal; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
