/* ════════════════════════════════════════════════
       JAB INNOVATIONS SECTION - scoped styles
       Structure: .jab-section → .jab-container → content
       ════════════════════════════════════════════════ */

    /* ── SECTION (full-width) ── */
    .jab-section {
      width: 100%;
      background: #EDE7D3;
      border-top: 1px solid rgba(26,27,21,0.12);
      border-bottom: 1px solid rgba(26,27,21,0.12);
      position: relative;
      overflow: hidden;
      font-family: "Bitter", Georgia, serif;
      box-sizing: border-box;
    }

    /* scoped reset - only inside the section */
    .jab-section *,
    .jab-section *::before,
    .jab-section *::after {
      box-sizing: border-box;
    }

    /* subtle warm tint overlay - from design system */
    .jab-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(122,51,22,0.025);
      pointer-events: none;
    }

    /* ── CONTAINER ── */
    .jab-container {
      max-width: 1216px;
      margin: 0 auto;
      padding: 0 32px;
      position: relative;
      z-index: 1;
    }

    /* ── MAIN LAYOUT: 2 columns ── */
    .jab-main-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      padding: 88px 0 80px;
      align-items: start;
    }

    /* ══ LEFT COLUMN ══ */
    .jab-left-col {
      display: flex;
      flex-direction: column;
      position: sticky;
      top: 48px;
    }

    /* Eyebrow */
    .jab-eyebrow {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: "JetBrains Mono", monospace;
      font-size: 11px;
      letter-spacing: 3px;
      color: #7A3316;
      text-transform: uppercase;
      margin: 0 0 24px;
    }
    .jab-eyebrow-dash {
      width: 20px;
      height: 1px;
      background: #7A3316;
      flex-shrink: 0;
    }

    /* Headline */
    .jab-headline {
      font-family: "Archivo Black", sans-serif; font-weight: 900;
      font-size: 52px;
      line-height: 0.93;
      letter-spacing: -1.8px;
      color: #1A1B15;
      text-transform: uppercase;
      margin: 0 0 28px;
    }
    .jab-headline .jab-hl-orange { color: #FF5B1F; }

    /* Body */
    .jab-body-text {
      font-family: "Bitter", serif;
      font-size: 16.5px;
      line-height: 1.68;
      color: rgba(26,27,21,0.7);
      margin: 0 0 40px;
    }

    /* Quote pull */
    .jab-pull-quote {
      border-left: 2px solid #FF5B1F;
      padding-left: 18px;
      font-family: "Bitter", serif;
      font-size: 15px;
      font-style: italic;
      line-height: 1.6;
      color: rgba(26,27,21,0.55);
      margin: 0 0 40px;
    }

    /* CTA */
    .jab-cta-btn {
      font-family: "JetBrains Mono", monospace;
      font-weight: 700;
      font-size: 12.5px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 16px 24px;
      background: #1A1B15;
      color: #EDE7D3;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: opacity 0.15s;
      width: fit-content;
    }
    .jab-cta-btn:hover { opacity: 0.78; }
    .jab-cta-btn .jab-arrow { transition: transform 0.2s; }
    .jab-cta-btn:hover .jab-arrow { transform: translateX(4px); }

    /* ══ RIGHT COLUMN ══ */
    .jab-right-col {
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(26,27,21,0.12);
    }

    /* Feature row */
    .jab-feature-row {
      display: grid;
      grid-template-columns: 56px 1fr;
      border-bottom: 1px solid rgba(26,27,21,0.12);
      transition: background 0.2s;
      position: relative;
    }
    .jab-feature-row:last-child { border-bottom: none; }
    .jab-feature-row:hover { background: rgba(122,51,22,0.04); }

    /* left accent bar on hover */
    .jab-feature-row::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 2px;
      background: transparent;
      transition: background 0.2s;
    }
    .jab-feature-row:hover::before { background: #FF5B1F; }

    /* icon cell */
    .jab-feature-icon-cell {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding: 28px 0;
      border-right: 1px solid rgba(26,27,21,0.12);
    }
    .jab-icon-wrap {
      width: 36px;
      height: 36px;
      background: #1A1B15;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    /* SVGs scale cleanly */
    .jab-icon-wrap svg { display: block; max-width: 100%; height: auto; }

    /* content cell */
    .jab-feature-content {
      padding: 28px 28px 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      min-width: 0;
    }
    .jab-feature-num {
      font-family: "JetBrains Mono", monospace;
      font-size: 9px;
      letter-spacing: 2px;
      color: rgba(26,27,21,0.25);
      text-transform: uppercase;
    }
    .jab-feature-title {
      font-family: "Archivo Black", sans-serif; font-weight: 900;
      font-size: 16px;
      color: #1A1B15;
      letter-spacing: 0.3px;
      text-transform: uppercase;
      line-height: 1.1;
      margin: 0;
    }
    .jab-feature-desc {
      font-family: "Bitter", serif;
      font-size: 14.5px;
      line-height: 1.6;
      color: rgba(26,27,21,0.65);
      margin: 0;
    }

    /* responsive images (any future imagery in this section) */
    .jab-section img { max-width: 100%; height: auto; display: block; }

    /* ════════════════════════════════════════════════
       RESPONSIVE BREAKPOINTS
       ════════════════════════════════════════════════ */

    /* Tablet - stack columns, release sticky */
    @media (max-width: 992px) {
      .jab-container {
        padding: 0 24px;
      }
      .jab-main-layout {
        grid-template-columns: 1fr;
        gap: 56px;
        padding: 72px 0 64px;
      }
      .jab-left-col {
        position: static;
        top: auto;
      }
      .jab-headline {
        font-size: 44px;
        letter-spacing: -1.4px;
      }
    }

    /* Mobile */
    @media (max-width: 640px) {
      .jab-container {
        padding: 0 20px;
      }
      .jab-main-layout {
        gap: 48px;
        padding: 56px 0 48px;
      }
      .jab-headline {
        font-size: 32px;
        letter-spacing: -0.8px;
        line-height: 1.05;
      }
      .jab-headline br {
        display: none;
      }
      .jab-body-text {
        font-size: 15.5px;
      }
      .jab-feature-row {
        grid-template-columns: 48px 1fr;
      }
      .jab-feature-icon-cell {
        padding: 22px 0;
      }
      .jab-feature-content {
        padding: 22px 20px 22px 18px;
      }
      .jab-cta-btn {
        width: 100%;
        justify-content: center;
      }
    }

    /* Small mobile - final adjustments */
    @media (max-width: 380px) {
      .jab-headline {
        font-size: 32px;
      }
    }