    /* SECTIONS */
    section {
      position: relative;
    }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 120px 64px;
    }

    .section-label {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .section-label::before {
      content: '';
      display: block;
      width: 24px;
      height: 1px;
      background: var(--accent);
      flex-shrink: 0;
    }

    .section-headline {
      font-family: var(--font-display);
      font-weight: 400;
      font-size: clamp(36px, 4.5vw, 58px);
      letter-spacing: -0.01em;
      line-height: 1.1;
      color: var(--text);
    }

    .section-headline em {
      font-style: italic;
      color: var(--accent);
    }

    .section-sub {
      font-size: 17px;
      font-weight: 300;
      color: var(--text-muted);
      max-width: 560px;
      line-height: 1.8;
      margin-top: 20px;
    }

