:root {
    --ink: #0a0a0a;
    --paper: #f5f0e8;
    --cream: #ede8dc;
    --red: #c0392b;
    --red-dark: #922b21;
    --gold: #b8960c;
    --mid: #5a5347;
    --light: #9a9186;
    --rule: #c8bfaa;
    --white: #ffffff;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; scroll-padding-top: 90px; }

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 17px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ===== MASTHEAD ===== */
  .masthead {
    background: var(--ink);
    color: var(--paper);
    padding: 10px 0 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--red);
  }

  .masthead-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .logo-group {}

  .logo-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 2px;
  }

  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--white);
    line-height: 1;
  }

  .logo span {
    color: var(--red);
  }

  .logo-tagline {
    font-family: 'Source Serif 4', serif;
    font-style: italic;
    font-size: 12px;
    color: var(--light);
    letter-spacing: 0.05em;
    margin-top: 3px;
  }

  .masthead-meta {
    text-align: right;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: var(--light);
    letter-spacing: 0.1em;
  }

  .masthead-meta .date {
    font-size: 11px;
    color: var(--paper);
    margin-bottom: 4px;
  }

  .nav-strip {
    display: flex;
    gap: 0;
    padding: 0 40px;
    align-items: stretch;
  }

  .nav-strip .nav-cta {
    margin-left: auto;
    background: var(--red);
    color: var(--white) !important;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 8px 18px !important;
    border-right: none !important;
    border-left: 1px solid rgba(255,255,255,0.15);
    font-weight: 500;
  }

  .nav-strip .nav-cta:hover {
    background: var(--red-dark) !important;
    color: var(--white) !important;
  }

  .nav-strip a {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--paper);
    text-decoration: none;
    padding: 8px 16px;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s, color 0.2s;
  }

  .nav-strip a:first-child { padding-left: 0; }

  .nav-strip a:hover,
  .nav-strip a.active {
    background: var(--red);
    color: var(--white);
  }

  /* ===== HERO EDITION BANNER ===== */
  .edition-banner {
    background: var(--red);
    padding: 7px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .edition-banner .label {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
  }

  .edition-banner .headline {
    font-family: 'Source Serif 4', serif;
    font-size: 13px;
    font-style: italic;
    color: var(--white);
  }

  /* ===== HERO SECTION ===== */
  .hero {
    padding: 60px 40px 0;
    max-width: 1320px;
    margin: 0 auto;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1px 480px;
    gap: 0 40px;
    padding-bottom: 50px;
    border-bottom: 2px solid var(--ink);
  }

  .hero-divider {
    background: var(--rule);
    width: 1px;
    margin: 0;
  }

  .hero-kicker {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--red);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .hero-kicker::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--red);
  }

  .hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: var(--ink);
    margin-bottom: 24px;
  }

  .hero-headline em {
    font-style: italic;
    color: var(--red);
  }

  .hero-deck {
    font-family: 'Source Serif 4', serif;
    font-size: 19px;
    font-weight: 300;
    line-height: 1.55;
    color: var(--mid);
    margin-bottom: 32px;
    max-width: 560px;
    border-left: 3px solid var(--red);
    padding-left: 20px;
  }

  .hero-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--red);
    color: var(--white);
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    border: 2px solid var(--red);
    transition: all 0.25s;
    display: inline-block;
  }

  .btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
  }

  .btn-secondary {
    background: transparent;
    color: var(--ink);
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    border: 2px solid var(--ink);
    transition: all 0.25s;
    display: inline-block;
  }

  .btn-secondary:hover {
    background: var(--ink);
    color: var(--paper);
  }

  /* SIDEBAR */
  .hero-sidebar {}

  .sidebar-module {
    border: 1px solid var(--rule);
    padding: 24px;
    margin-bottom: 20px;
    background: var(--cream);
  }

  .sidebar-module-title {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--mid);
    border-bottom: 1px solid var(--rule);
    padding-bottom: 10px;
    margin-bottom: 16px;
  }

  .stat-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
    border-bottom: 1px dotted var(--rule);
  }

  .stat-row:last-child { border-bottom: none; }

  .stat-label {
    font-family: 'Source Serif 4', serif;
    font-size: 13px;
    color: var(--mid);
  }

  .stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--red);
  }

  .quote-block {
    font-family: 'Source Serif 4', serif;
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    color: var(--mid);
  }

  .quote-block cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--light);
    text-transform: uppercase;
  }

  /* ===== SECTION RULES ===== */
  .section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
  }

  .section-rule-left {
    flex: 1;
    height: 1px;
    background: var(--ink);
  }

  .section-title {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--ink);
    white-space: nowrap;
    padding: 0 4px;
  }

  @media (max-width: 640px) {
    .section-title {
      white-space: normal;
      word-break: break-word;
      text-align: center;
      padding: 8px 4px;
    }
    .section-header {
      flex-wrap: wrap;
      justify-content: center;
    }
    .section-rule-left,
    .section-rule-right {
      flex: 0 0 100%;
      display: none;
    }
  }

  .section-rule-right {
    flex: 1;
    height: 1px;
    background: var(--ink);
  }

  /* ===== CONTENT SECTIONS ===== */
  .content-section {
    max-width: 1320px;
    margin: 0 auto;
    padding: 60px 40px;
  }

  .content-section + .content-section {
    border-top: 1px solid var(--rule);
  }

  /* ===== SERVICE CARDS ===== */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    margin-top: 0;
  }

  .service-card {
    background: var(--paper);
    padding: 40px 32px;
    position: relative;
    transition: background 0.25s;
  }

  .service-card:hover {
    background: var(--cream);
  }

  .service-number {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 900;
    color: var(--rule);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
  }

  .service-category {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .service-category::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--red);
    opacity: 0.3;
  }

  .service-headline {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 14px;
  }

  .service-body {
    font-size: 14px;
    line-height: 1.65;
    color: var(--mid);
    margin-bottom: 24px;
  }

  .service-price {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    background: var(--ink);
    color: var(--paper);
    padding: 8px 16px;
    margin-bottom: 20px;
  }

  .price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
  }

  .price-detail {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    opacity: 0.6;
  }

  .feature-list {
    list-style: none;
    margin-top: 16px;
  }

  .feature-list li {
    font-family: 'Source Serif 4', serif;
    font-size: 13px;
    color: var(--mid);
    padding: 6px 0;
    padding-left: 18px;
    border-bottom: 1px dotted var(--rule);
    position: relative;
  }

  .feature-list li:last-child { border-bottom: none; }

  .feature-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--red);
    font-size: 11px;
  }

  /* ===== PROCESS TIMELINE ===== */
  .process-section {
    background: var(--ink);
    color: var(--paper);
    padding: 70px 0;
  }

  .process-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .process-section .section-title {
    color: var(--paper);
  }

  .process-section .section-rule-left,
  .process-section .section-rule-right {
    background: rgba(255,255,255,0.2);
  }

  .timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 50px;
    position: relative;
  }

  .timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(255,255,255,0.15);
  }

  .timeline-step {
    padding: 0 20px;
    text-align: center;
  }

  .step-number {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--red);
    background: var(--ink);
    position: relative;
    z-index: 1;
  }

  .step-title {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
  }

  .step-desc {
    font-family: 'Source Serif 4', serif;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255,255,255,0.75);
    font-style: italic;
  }

  /* ===== RISK METER ===== */
  .risk-section {
    background: var(--cream);
  }

  .risk-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
  }

  .risk-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .risk-text p {
    font-size: 16px;
    color: var(--mid);
    margin-bottom: 16px;
    line-height: 1.7;
  }

  .meter-card {
    border: 1px solid var(--rule);
    background: var(--paper);
    padding: 32px;
  }

  .meter-title {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--rule);
  }

  .meter-scale {
    margin-bottom: 24px;
  }

  .meter-bar {
    height: 8px;
    background: var(--rule);
    margin-bottom: 6px;
    position: relative;
    overflow: hidden;
  }

  .meter-fill {
    height: 100%;
    background: linear-gradient(to right, #27ae60, #f39c12, #c0392b);
    transition: width 1.5s ease;
  }

  .meter-labels {
    display: flex;
    justify-content: space-between;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    color: var(--light);
    letter-spacing: 0.1em;
  }

  .risk-badges {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-top: 20px;
  }

  .risk-badge {
    padding: 10px 8px;
    text-align: center;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .risk-badge.low { background: rgba(39,174,96,0.12); color: #27ae60; border: 1px solid rgba(39,174,96,0.3); }
  .risk-badge.mid-risk { background: rgba(243,156,18,0.12); color: #e67e22; border: 1px solid rgba(243,156,18,0.3); }
  .risk-badge.high { background: rgba(192,57,43,0.12); color: var(--red); border: 1px solid rgba(192,57,43,0.3); }

  /* ===== CASES SECTION ===== */
  .cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 0;
  }

  .case-card {
    border-top: 3px solid var(--red);
    padding-top: 20px;
  }

  .case-number {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .case-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .case-body {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.65;
    margin-bottom: 16px;
  }

  .case-outcome {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    padding: 8px 12px;
    background: var(--cream);
    color: var(--mid);
    border-left: 3px solid var(--red);
    text-transform: uppercase;
  }

  /* ===== GUARANTEE STRIP ===== */
  .guarantee-strip {
    background: var(--red);
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .guarantee-strip .text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--white);
    max-width: 600px;
  }

  .guarantee-strip .badge {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    text-align: right;
    white-space: nowrap;
  }

  .guarantee-strip .badge strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    font-style: normal;
    color: var(--white);
    letter-spacing: -0.5px;
    letter-spacing: normal;
  }

  /* ===== CTA ===== */
  .cta-section {
    background: var(--ink);
    padding: 80px 40px;
    text-align: center;
  }

  .cta-section .eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
  }

  .cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 900;
    color: var(--paper);
    margin-bottom: 16px;
    line-height: 1.1;
  }

  .cta-section h2 em {
    color: var(--red);
    font-style: italic;
  }

  .cta-section p {
    font-family: 'Source Serif 4', serif;
    font-style: italic;
    font-size: 17px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-cta-primary {
    background: var(--red);
    color: var(--white);
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 36px;
    border: 2px solid var(--red);
    transition: all 0.25s;
    display: inline-block;
  }

  .btn-cta-primary:hover {
    background: transparent;
    color: var(--red);
  }

  .btn-cta-secondary {
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 36px;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.25s;
    display: inline-block;
  }

  .btn-cta-secondary:hover {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
  }

  /* ===== FOOTER ===== */
  footer {
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--paper);
  }

  .footer-logo span { color: var(--red); }

  .footer-copy {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    color: var(--light);
    text-align: center;
  }

  .footer-links {
    display: flex;
    gap: 20px;
  }

  .footer-links a {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--light);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--red); }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .animate {
    animation: fadeUp 0.7s ease forwards;
  }

  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  .delay-3 { animation-delay: 0.35s; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-divider { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .timeline { grid-template-columns: 1fr 1fr; gap: 40px; }
    .timeline::before { display: none; }
    .cases-grid { grid-template-columns: 1fr 1fr; }
    .risk-grid { grid-template-columns: 1fr; }
  }

  /* ===== HAMBURGER ===== */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 200;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--paper);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  @media (max-width: 640px) {
    .masthead-top { padding: 0 20px 10px; }
    .masthead-meta { display: none; }
    .logo { font-size: 28px; }
    .logo-eyebrow, .logo-tagline { display: none; }
    .hero { padding: 40px 20px 0; }
    .hero-headline { font-size: 36px; }
    .content-section { padding: 40px 20px; }
    .timeline { grid-template-columns: 1fr; }
    .cases-grid { grid-template-columns: 1fr; }
    .guarantee-strip { flex-direction: column; text-align: center; }
    .cta-section h2 { font-size: 34px; }
    footer { flex-direction: column; gap: 20px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }

    .hamburger { display: flex; }

    .nav-strip {
      display: none;
      flex-direction: column;
      padding: 0;
      background: var(--ink);
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .nav-strip.open { display: flex; }
    .nav-strip a {
      padding: 14px 24px;
      border-right: none;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      font-size: 12px;
    }
  }
