  /* Fire Safety Policies pillar deltas. Loads on /fire-safety-policies/ on
     top of service-base.css. Holds the "what a policy contains" card grid,
     the legal-duty cards + note, and the door-style mid-CTA. */

  /* ---- WHAT A POLICY CONTAINS ---- */
  .policy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .policy-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 28px 24px; display: flex; flex-direction: column; gap: 12px; transition: border-color .2s, transform .2s, box-shadow .2s; }
  .policy-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px -12px rgba(20,17,15,.14); }
  .policy-num { font-size: 12px; font-weight: 800; letter-spacing: .14em; color: var(--ember); }
  .policy-card h3 { font-size: 17px; font-weight: 700; letter-spacing: -.01em; line-height: 1.25; margin: 0; }
  .policy-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.6; margin: 0; flex: 1; }

  /* ---- LEGAL DUTY (shared visual with the door page) ---- */
  .sec-legal { padding: 100px 0; background: #fff; }
  .legal-head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 52px; }
  .legal-head h2 { font-size: 42px; font-weight: 700; letter-spacing: -.03em; line-height: 1.1; margin: 0; }
  .legal-head p { font-size: 16px; color: var(--ink-soft); line-height: 1.65; margin: 0; }
  .legal-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
  .legal-card { background: #fff; border-radius: 8px; padding: 32px 28px 28px; border: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px; }
  .legal-card .year { font-size: 40px; font-weight: 900; letter-spacing: -.03em; color: var(--ember); line-height: 1; }
  .legal-card h3 { font-size: 17px; font-weight: 700; letter-spacing: -.01em; line-height: 1.25; margin: 0; }
  .legal-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; margin: 0; flex: 1; }
  .legal-card .legal-tag { font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--ember); padding-top: 14px; border-top: 1px solid var(--line); margin-top: auto; }
  .legal-note { display: flex; align-items: flex-start; gap: 12px; background: var(--ink); border-radius: 8px; padding: 18px 22px; font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.6; }
  .legal-note-icon { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--amber); display: flex; align-items: center; justify-content: center; color: var(--amber); font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
  .legal-note b, .legal-note strong { color: #fff; font-weight: 700; }

  /* ---- DOOR-STYLE MID-CTA (override shared single-column band) ---- */
  .sec-mid-cta { background: #fff; padding: 80px 0; }
  .mid-cta-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    border-radius: 14px; overflow: hidden;
    box-shadow: 0 24px 60px -20px rgba(20,17,15,.18);
    min-height: 420px; align-items: stretch; color: #fff;
  }
  .mid-cta-image { background-size: cover; background-position: center; background-color: var(--cream-2, #E8E4DB);
    background-image: linear-gradient(135deg, rgba(28,60,159,.12), rgba(20,17,15,.22)); }
  .mid-cta-copy { padding: 60px 56px; background: var(--blue, rgb(28,60,159)); display: flex; flex-direction: column; justify-content: center; gap: 20px; }
  .mid-cta-copy h2 { font-size: 40px; font-weight: 700; letter-spacing: -.025em; line-height: 1.1; margin: 0; }
  .mid-cta-copy h2 em { font-style: normal; color: var(--amber); }
  .mid-cta-copy p { font-size: 16px; color: rgba(255,255,255,.8); line-height: 1.6; margin: 0; max-width: 420px; }

  /* ---- RESPONSIVE ---- */
  @media (max-width: 960px) {
    .legal-head { grid-template-columns: 1fr; gap: 24px; }
  }
  @media (max-width: 768px) {
    .policy-grid, .legal-cards { grid-template-columns: 1fr; }
    .mid-cta-inner { grid-template-columns: 1fr; min-height: 0; }
    .mid-cta-image { min-height: 200px; }
    .mid-cta-copy { padding: 36px 28px; }
    .mid-cta-copy h2 { font-size: 28px; }
  }
  @media (max-width: 600px) { .policy-grid { grid-template-columns: 1fr; } }
