@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

:root {
    --gold: #c49a20;
    --gold-light: #d4aa30;
    --gold-dim: rgba(196,154,32,0.12);
    --gold-border: rgba(196,154,32,0.25);
    --olive: #3d4a2e;
    --olive-dark: #2d3a20;
    --olive-mid: #4d5c3a;
    --olive-dim: rgba(61,74,46,0.08);
    --olive-border: rgba(61,74,46,0.15);
    --red: #b83232;
    --red-dim: rgba(184,50,50,0.08);
    --red-border: rgba(184,50,50,0.2);
    --white: #ffffff;
    --off-white: #f9f8f5;
    --paper: #f4f2ec;
    --text: #1e1e1e;
    --text-mid: #3a3a3a;
    --muted: #6b6b5f;
    --border: rgba(61,74,46,0.12);
    --border-strong: rgba(61,74,46,0.22);
    --shadow: 0 2px 16px rgba(45,58,32,0.08);
    --shadow-md: 0 4px 32px rgba(45,58,32,0.12);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--olive);
  }

  a { color: inherit; text-decoration: none; }

  /* ── HERO ── */
  .hero {
    background: var(--olive);
    padding: 80px 40px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%;
    height: 100%;
    background: var(--olive-dark);
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  }

  .hero-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .hero-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold);
  }

  .hero h1 {
    font-size: clamp(36px, 4vw, 56px);
    color: var(--off-white);
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.1;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-sub {
    font-size: 16px;
    color: rgba(244,242,236,0.72);
    line-height: 1.8;
    margin-bottom: 36px;
    font-weight: 300;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--olive-dark);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding: 15px 30px;
    border-radius: 2px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

  .btn-ghost-light {
    color: rgba(244,242,236,0.6);
    font-size: 14px;
    font-weight: 400;
    border-bottom: 1px solid rgba(244,242,236,0.25);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
    display: inline-block;
  }
  .btn-ghost-light:hover { color: var(--off-white); border-color: rgba(244,242,236,0.6); }

  .hero-actions {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
  }

  /* Incident card */
  .incident-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }

  .incident-top {
    background: var(--red-dim);
    border-bottom: 1px solid var(--red-border);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .incident-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--red);
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
  }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }
  .incident-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
  }

  .incident-body { padding: 24px; }

  .incident-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }

  .incident-desc {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.65;
    font-weight: 300;
  }

  .incident-timeline {
    border: 1px solid var(--border);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 20px;
  }
  .tl-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
  }
  .tl-row:last-child { border-bottom: none; }
  .tl-time {
    padding: 11px 14px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 11px;
    color: var(--muted);
    border-right: 1px solid var(--border);
    background: var(--off-white);
    letter-spacing: 0.04em;
  }
  .tl-event {
    padding: 11px 14px;
    font-weight: 300;
    color: var(--text-mid);
    font-size: 13px;
  }
  .tl-event.win {
    color: var(--olive);
    font-weight: 500;
  }

  .incident-verdict {
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    border-radius: 3px;
    padding: 14px 18px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }
  .verdict-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
  .verdict-text {
    font-size: 13px;
    color: var(--olive);
    line-height: 1.65;
    font-weight: 400;
  }
  .verdict-text strong { font-weight: 500; }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: var(--paper);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 40px;
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
  }
  .trust-item { text-align: center; }
  .trust-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--olive);
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .trust-val span { color: var(--gold); }
  .trust-label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 300;
    margin-top: 4px;
    letter-spacing: 0.02em;
  }

  /* ── SECTIONS ── */
  .section {
    max-width: 1160px;
    margin: 0 auto;
    padding: 90px 40px;
  }

  .section-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .section-eyebrow::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--gold);
  }

  .section-title {
    font-size: clamp(28px, 3vw, 42px);
    color: var(--olive);
    margin-bottom: 14px;
  }

  .section-sub {
    font-size: 16px;
    color: var(--muted);
    max-width: 580px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 52px;
    font-family: 'DM Sans', sans-serif;
  }

  /* ── RISK CARDS ── */
  .risk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
  }

  .risk-card {
    background: var(--white);
    padding: 30px 26px;
    transition: background 0.2s;
    position: relative;
  }
  .risk-card:hover { background: var(--off-white); }
  .risk-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.2s;
  }
  .risk-card:hover::after { opacity: 1; }

  .risk-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 16px;
  }

  .risk-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--olive);
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .risk-desc {
    font-size: 13px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 18px;
    font-family: 'DM Sans', sans-serif;
  }

  .risk-tag {
    display: inline-block;
    background: var(--red-dim);
    color: var(--red);
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 2px;
    letter-spacing: 0.04em;
    font-family: 'DM Sans', sans-serif;
  }

  /* ── DIVIDER ── */
  .full-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
  }

  /* ── SPLIT LAYOUT ── */
  .split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .check-list {
    list-style: none;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
  }
  .check-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
  }
  .check-item:last-child { border-bottom: none; }
  .check-item:hover { background: var(--off-white); }

  .check-icon {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 22px;
  }
  .check-icon svg {
    width: 14px; height: 14px;
    color: var(--gold);
    flex-shrink: 0;
  }
  .check-content { padding: 18px 18px 18px 0; }
  .check-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--olive);
    margin-bottom: 4px;
  }
  .check-detail {
    font-size: 13px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.65;
    font-family: 'DM Sans', sans-serif;
  }

  /* Sticky aside */
  .sticky-aside { position: sticky; top: 100px; }

  .aside-card {
    background: var(--olive);
    border-radius: 4px;
    padding: 32px;
    box-shadow: var(--shadow-md);
  }
  .aside-card h3 {
    font-size: 22px;
    color: var(--off-white);
    margin-bottom: 10px;
  }
  .aside-card p {
    font-size: 14px;
    color: rgba(244,242,236,0.65);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 24px;
    font-family: 'DM Sans', sans-serif;
  }
  .aside-divider {
    border: none;
    border-top: 1px solid rgba(244,242,236,0.12);
    margin: 24px 0;
  }
  .aside-stat { margin-bottom: 20px; }
  .aside-stat-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--off-white);
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .aside-stat-val em { color: var(--gold); font-style: normal; }
  .aside-stat-label {
    font-size: 12px;
    color: rgba(244,242,236,0.5);
    font-weight: 300;
    margin-top: 4px;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.5;
  }

  /* ── WHO WE SERVE ── */
  .serve-section { background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

  .serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .serve-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .serve-card:hover {
    border-color: var(--gold-border);
    box-shadow: var(--shadow);
  }
  .serve-icon {
    width: 36px; height: 36px;
    border-radius: 3px;
    background: var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
  }
  .serve-icon svg { width: 16px; height: 16px; color: var(--gold); }
  .serve-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--olive);
    margin-bottom: 8px;
  }
  .serve-desc {
    font-size: 13px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.65;
    font-family: 'DM Sans', sans-serif;
  }

  /* ── FAQ ── */
  .faq-list {
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    max-width: 800px;
  }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-item:last-child { border-bottom: none; }

  .faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--olive);
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 600;
    padding: 22px 24px;
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr 24px;
    gap: 16px;
    align-items: center;
    transition: background 0.2s;
  }
  .faq-q:hover { background: var(--off-white); }

  .faq-icon {
    width: 20px; height: 20px;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s, background 0.25s, border-color 0.25s;
  }
  .faq-icon svg { width: 10px; height: 10px; color: var(--muted); }
  .faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--gold);
    border-color: var(--gold);
  }
  .faq-item.open .faq-icon svg { color: var(--white); }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    font-size: 14px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.8;
    padding: 0 24px;
    font-family: 'DM Sans', sans-serif;
  }
  .faq-a.open { max-height: 300px; padding: 0 24px 22px; }
  .faq-a a { color: var(--olive); text-decoration: underline; text-decoration-color: var(--gold-border); }
  .faq-a a:hover { text-decoration-color: var(--gold); }

  /* ── CTA SECTION ── */
  .cta-section {
    background: var(--olive);
    padding: 90px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(196,154,32,0.03) 40px,
      rgba(196,154,32,0.03) 41px
    );
    pointer-events: none;
  }
  .cta-inner { max-width: 620px; margin: 0 auto; position: relative; }
  .cta-inner h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    color: var(--off-white);
    margin-bottom: 16px;
  }
  .cta-inner p {
    font-size: 16px;
    color: rgba(244,242,236,0.65);
    font-weight: 300;
    margin-bottom: 36px;
    line-height: 1.75;
    font-family: 'DM Sans', sans-serif;
  }
  .cta-note {
    font-size: 12px;
    color: rgba(244,242,236,0.4);
    margin-top: 18px;
    font-weight: 300;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.02em;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero { padding: 60px 20px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero::before { display: none; }
    .section { padding: 60px 20px; }
    .risk-grid { grid-template-columns: 1fr; gap: 1px; }
    .split-layout { grid-template-columns: 1fr; gap: 40px; }
    .sticky-aside { position: static; }
    .serve-grid { grid-template-columns: 1fr 1fr; }
    .trust-bar { padding: 24px 20px; gap: 32px; }
    .cta-section { padding: 60px 20px; }
  }
  @media (max-width: 560px) {
    .serve-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 32px; }
    .incident-amount { font-size: 44px; }
    .trust-val { font-size: 26px; }
    .trust-bar { gap: 24px; }
  }

  /* ── ANIMATIONS ── */
  @media (prefers-reduced-motion: no-preference) {
    .fade-up {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .fade-up.visible { opacity: 1; transform: none; }
    .fade-up:nth-child(2) { transition-delay: 0.1s; }
    .fade-up:nth-child(3) { transition-delay: 0.2s; }
    .fade-up:nth-child(4) { transition-delay: 0.1s; }
    .fade-up:nth-child(5) { transition-delay: 0.2s; }
    .fade-up:nth-child(6) { transition-delay: 0.3s; }
  }

/* Astra overrides — keeps our layout clean */
.site-content .ast-container,
.entry-content,
.ast-article-single,
.ast-article-single > .entry-content,
.ast-container { 
  padding: 0 !important; 
  max-width: 100% !important; 
}
.entry-content > * { max-width: 100% !important; }
