    .ueber-hero {
      padding-top: 62px;
      min-height: 88vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .ueber-hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 60px;
    }

    .ueber-hero-eyebrow {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .ueber-hero-eyebrow::before {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--accent);
    }

    .ueber-hero-left h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(40px, 5vw, 76px);
      font-weight: 300;
      line-height: 1.06;
      color: var(--dark);
      letter-spacing: -.01em;
      margin-bottom: 28px;
    }

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

    .ueber-hero-sub {
      font-size: 17px;
      line-height: 1.75;
      color: var(--text-muted);
      max-width: 460px;
      font-weight: 300;
      margin-bottom: 44px;
    }

    .ueber-hero-cta {
      display: flex;
      gap: 16px;
      align-items: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--dark);
      color: var(--cream);
      padding: 16px 36px;
      border-radius: 2px;
      font-size: 13px;
      letter-spacing: .1em;
      text-transform: uppercase;
      text-decoration: none;
      font-weight: 500;
      transition: background .2s, transform .15s;
      display: inline-block;
    }

    .btn-primary:hover {
      background: var(--brown-mid);
      transform: translateY(-1px);
    }

    .btn-ghost {
      color: var(--text-muted);
      font-size: 13px;
      letter-spacing: .06em;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: color .2s;
    }

    .btn-ghost:hover {
      color: var(--dark);
    }

    .btn-ghost::after {
      content: '→';
      font-size: 16px;
      transition: transform .2s;
    }

    .btn-ghost:hover::after {
      transform: translateX(4px);
    }

    /* Right — photo panel */
    .ueber-hero-right {
      position: relative;
      overflow: hidden;
      background: linear-gradient(160deg, #0d3a6e 0%, #0a2540 100%);
    }

    .ueber-hero-img-pattern {
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(4, 150, 255, .05) 20px, rgba(4, 150, 255, .05) 21px);
    }

    .ueber-hero-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10, 37, 64, .7) 0%, transparent 60%);
    }

    .ueber-hero-bg-text {
      position: absolute;
      bottom: -10px;
      right: -10px;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(80px, 12vw, 180px);
      font-weight: 300;
      color: rgba(4, 150, 255, .07);
      line-height: 1;
      pointer-events: none;
      white-space: nowrap;
    }

    .ueber-hero-name-tag {
      position: absolute;
      bottom: 52px;
      left: 48px;
      z-index: 2;
    }

    .ueber-hero-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 42px;
      font-weight: 300;
      color: white;
      line-height: 1.1;
      margin-bottom: 8px;
    }

    .ueber-hero-role {
      font-size: 11px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--accent-light);
    }

    .ueber-hero-badge {
      position: absolute;
      top: 48px;
      right: 40px;
      z-index: 2;
      width: 110px;
      height: 110px;
      border: 1px solid rgba(144, 202, 249, .35);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--accent-light);
      font-size: 10px;
      letter-spacing: .1em;
      text-transform: uppercase;
      line-height: 1.5;
    }

    .ueber-hero-badge strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 14px;
      font-weight: 300;
      display: block;
      letter-spacing: .06em;
      margin-bottom: 4px;
    }

    /* ══════════════════════════════
     INTRO SECTION
  ══════════════════════════════ */
    .ueber-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      background: var(--cream);
    }

    .ueber-intro-img {
      background: linear-gradient(160deg, #0496ff 0%, #0d3a6e 50%, #0a2540 100%);
      min-height: 560px;
      position: relative;
      overflow: hidden;
    }

    .ueber-intro-img-pattern {
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 255, 255, .04) 20px, rgba(255, 255, 255, .04) 21px);
    }

    .ueber-intro-img-label {
      position: absolute;
      bottom: 44px;
      left: 44px;
      color: var(--accent-light);
      font-family: 'Cormorant Garamond', serif;
      font-size: 52px;
      font-weight: 300;
      line-height: 1;
      letter-spacing: -.02em;
    }

    .ueber-intro-img-label small {
      display: block;
      font-size: 12px;
      font-family: 'DM Sans', sans-serif;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(144, 202, 249, .6);
      margin-top: 8px;
    }

    .ueber-intro-content {
      padding: 80px 64px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .ueber-intro-content .section-title {
      margin-bottom: 28px;
    }

    .ueber-intro-content p {
      font-size: 16px;
      line-height: 1.85;
      color: var(--text-muted);
      font-weight: 300;
      margin-bottom: 20px;
    }

    .ueber-intro-content p strong {
      color: var(--text-body);
      font-weight: 500;
    }

    .ueber-statement {
      margin-top: 8px;
      padding: 22px 28px;
      border-left: 3px solid var(--accent);
      background: rgba(4, 150, 255, .05);
      font-size: 15px;
      color: var(--text-body);
      line-height: 1.75;
      font-style: italic;
    }

    /* ══════════════════════════════
     WHAT I DO / DON'T — DARK SECTION
  ══════════════════════════════ */
    .ueber-positioning {
      background: var(--dark);
      padding: 100px 60px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
      position: relative;
      overflow: hidden;
    }

    .ueber-positioning::before {
      content: 'Ehrlich';
      position: absolute;
      bottom: -10px;
      right: -10px;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(80px, 12vw, 200px);
      font-weight: 300;
      color: rgba(4, 150, 255, .04);
      line-height: 1;
      pointer-events: none;
      white-space: nowrap;
    }

    /* Not-list */
    .ueber-positioning .section-eyebrow {
      color: var(--accent-light);
    }

    .ueber-positioning .section-eyebrow::before {
      background: var(--accent-light);
    }

    .ueber-not-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(30px, 3.5vw, 48px);
      font-weight: 300;
      color: var(--cream);
      line-height: 1.1;
      margin-bottom: 36px;
    }

    .ueber-not-title em {
      font-style: italic;
      color: var(--accent-light);
    }

    .ueber-not-list {
      list-style: none;
      margin-bottom: 32px;
    }

    .ueber-not-list li {
      font-size: 15px;
      color: rgba(227, 242, 253, .55);
      padding: 13px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .06);
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 300;
    }

    .ueber-not-list li:last-child {
      border-bottom: none;
    }

    .ueber-not-list li::before {
      content: '×';
      color: rgba(144, 202, 249, .4);
      font-size: 16px;
      flex-shrink: 0;
      font-weight: 300;
    }

    .ueber-not-note {
      font-size: 13px;
      color: rgba(227, 242, 253, .35);
      line-height: 1.75;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, .06);
      font-style: italic;
    }

    /* Do-list */
    .ueber-do-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(30px, 3.5vw, 48px);
      font-weight: 300;
      color: var(--cream);
      line-height: 1.1;
      margin-bottom: 36px;
    }

    .ueber-do-title em {
      font-style: italic;
      color: var(--accent-light);
    }

    .ueber-do-card {
      border: 1px solid rgba(4, 150, 255, .2);
      background: rgba(255, 255, 255, .03);
      padding: 36px;
      margin-bottom: 20px;
      position: relative;
    }

    .ueber-do-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 3px;
      height: 100%;
      background: var(--accent);
    }

    .ueber-do-card-label {
      font-size: 10px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--accent-light);
      margin-bottom: 12px;
    }

    .ueber-do-card p {
      font-size: 15px;
      color: rgba(227, 242, 253, .65);
      line-height: 1.8;
      font-weight: 300;
    }

    .ueber-do-card p strong {
      color: rgba(227, 242, 253, .9);
      font-weight: 500;
    }

    /* ══════════════════════════════
     ZIEL — FULL WIDTH QUOTE
  ══════════════════════════════ */
    .ueber-ziel {
      padding: 100px 60px;
      background: var(--warm-white);
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 80px;
      align-items: center;
    }



    .ueber-ziel-label {
      font-size: 11px;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .ueber-ziel-label::before {
      content: '';
      width: 32px;
      height: 1px;
      background: var(--accent);
    }

    .ueber-ziel-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(28px, 3vw, 44px);
      font-weight: 300;
      color: var(--dark);
      line-height: 1.15;
    }

    .ueber-ziel-heading em {
      font-style: italic;
      color: var(--accent);
    }

    .ueber-ziel-quote {
      position: relative;
      padding: 48px 56px;
      border: 1px solid var(--border);
      background: white;
    }

    .ueber-ziel-quote::before {
      content: '\201C';
      font-family: 'Cormorant Garamond', serif;
      font-size: 120px;
      line-height: .7;
      color: var(--accent-light);
      position: absolute;
      top: 24px;
      left: 36px;
      pointer-events: none;
    }

    .ueber-ziel-quote p {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(22px, 2.5vw, 32px);
      font-weight: 300;
      line-height: 1.5;
      color: var(--dark);
      font-style: italic;
      padding-top: 32px;
    }

    .ueber-ziel-quote p strong {
      font-weight: 400;
      color: var(--accent);
      font-style: normal;
    }

    /* ══════════════════════════════
     VALUES / WOFÜR ICH STEHE
  ══════════════════════════════ */
    .ueber-values {
      background: var(--cream);
      padding: 100px 60px;
    }

    .ueber-values-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: end;
      margin-bottom: 64px;
    }

    .ueber-values-desc {
      font-size: 16px;
      line-height: 1.8;
      color: var(--text-muted);
      font-weight: 300;
      align-self: end;
    }

    .ueber-values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
    }

    .ueber-value-card {
      background: white;
      padding: 44px 36px;
      position: relative;
      overflow: hidden;
      transition: background .25s;
    }

    .ueber-value-card:hover {
      background: var(--warm-white);
    }

    .ueber-value-icon {
      font-size: 28px;
      margin-bottom: 20px;
      display: block;
      line-height: 1;
    }

    .ueber-value-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 64px;
      font-weight: 300;
      color: rgba(144, 202, 249, .3);
      position: absolute;
      top: 20px;
      right: 24px;
      line-height: 1;
      pointer-events: none;
      transition: color .25s;
    }

    .ueber-value-card:hover .ueber-value-num {
      color: rgba(4, 150, 255, .2);
    }

    .ueber-value-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .ueber-value-text {
      font-size: 14px;
      line-height: 1.8;
      color: var(--text-muted);
      font-weight: 300;
    }

    .ueber-value-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width .35s ease;
    }

    .ueber-value-card:hover .ueber-value-bar {
      width: 100%;
    }

    /* ══════════════════════════════
     CTA
  ══════════════════════════════ */
    .ueber-cta {
      padding: 100px 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .ueber-cta-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #0496ff 0%, #0d3a6e 50%, #0a2540 100%);
    }

    .ueber-cta-content {
      position: relative;
      z-index: 2;
    }

    .ueber-cta .section-eyebrow {
      color: var(--accent-light);
      justify-content: center;
    }

    .ueber-cta .section-eyebrow::before {
      background: var(--accent-light);
    }

    .ueber-cta .section-title {
      color: white;
      margin-bottom: 24px;
    }

    .ueber-cta p {
      font-size: 17px;
      color: rgba(227, 242, 253, .7);
      max-width: 460px;
      margin: 0 auto 48px;
      font-weight: 300;
    }

    .ueber-cta-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-cta-primary {
      background: white;
      color: var(--dark);
      padding: 18px 48px;
      border-radius: 2px;
      font-size: 13px;
      letter-spacing: .1em;
      text-transform: uppercase;
      text-decoration: none;
      font-weight: 500;
      transition: background .2s, transform .15s;
      display: inline-block;
    }

    .btn-cta-primary:hover {
      background: var(--cream);
      transform: translateY(-2px);
    }

    .btn-cta-ghost {
      border: 1px solid rgba(255, 255, 255, .3);
      color: rgba(255, 255, 255, .85);
      padding: 18px 36px;
      border-radius: 2px;
      font-size: 13px;
      letter-spacing: .1em;
      text-transform: uppercase;
      text-decoration: none;
      transition: border-color .2s, color .2s;
      display: inline-block;
    }

    .btn-cta-ghost:hover {
      border-color: rgba(255, 255, 255, .6);
      color: white;
    }

    /* ══════════════════════════════
     FOOTER
  ══════════════════════════════ */
    footer {
      background: var(--dark);
      padding: 60px;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .footer-brand-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      color: var(--cream);
      margin-bottom: 12px;
      font-weight: 300;
    }

    .footer-brand-name span {
      color: var(--accent);
    }

    .footer-tagline {
      font-size: 13px;
      color: rgba(227, 242, 253, .45);
      line-height: 1.6;
      max-width: 240px;
      font-weight: 300;
      margin-bottom: 28px;
    }

    .footer-social {
      display: flex;
      gap: 12px;
    }

    .footer-social a {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(255, 255, 255, .12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(227, 242, 253, .45);
      font-size: 13px;
      text-decoration: none;
      transition: border-color .2s, color .2s;
    }

    .footer-social a:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    .footer-col-title {
      font-size: 10px;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(227, 242, 253, .4);
      margin-bottom: 20px;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col li+li {
      margin-top: 10px;
    }

    .footer-col a {
      color: rgba(227, 242, 253, .5);
      font-size: 13px;
      text-decoration: none;
      transition: color .2s;
      font-weight: 300;
    }

    .footer-col a:hover {
      color: var(--cream);
    }

    .footer-bottom {
      background: #061828;
      padding: 20px 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-bottom p {
      font-size: 11px;
      color: rgba(227, 242, 253, .3);
      letter-spacing: .06em;
    }

    .footer-bottom a {
      color: rgba(227, 242, 253, .3);
      text-decoration: none;
      font-size: 11px;
      transition: color .2s;
    }

    .footer-bottom a:hover {
      color: rgba(227, 242, 253, .5);
    }

    .footer-links {
      display: flex;
      gap: 24px;
    }

    /* ══════════════════════════════
     RESPONSIVE
  ══════════════════════════════ */
    @media (max-width: 1024px) {
      nav {
        padding: 16px 32px;
      }

      .ueber-hero {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .ueber-hero-left {
        padding: 64px 40px 48px;
      }

      .ueber-hero-right {
        min-height: 360px;
      }

      .ueber-intro {
        grid-template-columns: 1fr;
      }

      .ueber-intro-img {
        min-height: 300px;
      }

      .ueber-intro-content {
        padding: 64px 40px;
      }

      .ueber-positioning {
        grid-template-columns: 1fr;
        gap: 56px;
        padding: 72px 40px;
      }

      .ueber-ziel {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 72px 40px;
      }

      .ueber-values {
        padding: 72px 40px;
      }

      .ueber-values-header {
        grid-template-columns: 1fr;
      }

      .ueber-values-grid {
        grid-template-columns: 1fr 1fr;
      }

      .ueber-cta {
        padding: 72px 40px;
      }

      footer {
        padding: 48px 40px;
        gap: 40px;
      }

      .footer-bottom {
        padding: 18px 40px;
      }
    }

    @media (max-width: 768px) {
      nav {
        padding: 14px 20px;
      }

      .nav-links {
        display: none;
      }

      .nav-hamburger {
        display: flex;
      }

      .ueber-hero-left {
        padding: 52px 24px 40px;
      }

      .ueber-hero-right {
        min-height: 300px;
      }

      .ueber-hero-name-tag {
        left: 24px;
        bottom: 32px;
      }

      .ueber-hero-name {
        font-size: 32px;
      }

      .ueber-intro-content {
        padding: 52px 24px;
      }

      .ueber-positioning {
        padding: 64px 24px;
      }

      .ueber-ziel {
        padding: 64px 24px;
      }

      .ueber-ziel-quote {
        padding: 36px 28px;
      }

      .ueber-ziel-quote::before {
        font-size: 80px;
        top: 16px;
        left: 20px;
      }

      .ueber-ziel-quote p {
        padding-top: 20px;
      }

      .ueber-values {
        padding: 64px 24px;
      }

      .ueber-values-grid {
        grid-template-columns: 1fr;
      }

      .ueber-cta {
        padding: 64px 24px;
      }

      .ueber-cta-actions {
        flex-direction: column;
        align-items: center;
      }

      .btn-cta-primary,
      .btn-cta-ghost {
        width: 100%;
        max-width: 320px;
        text-align: center;
      }

      footer {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
        padding: 48px 24px 0;
      }

      .footer-bottom {
        padding: 16px 24px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }

      .footer-links {
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      .ueber-hero-left h1 {
        font-size: 36px;
      }

      .section-title {
        font-size: 28px;
      }

      footer {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 36px 20px 0;
      }

      .footer-bottom {
        padding: 16px 20px;
      }
    }

    /* ══════════════════════════════
     MEINE GESCHICHTE
  ══════════════════════════════ */
    .mg-section {
      background: var(--dark);
      position: relative;
      overflow: hidden;
      padding: 120px 0 100px;
    }

    .mg-bg-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 70vw;
      height: 70vw;
      background: radial-gradient(circle, rgba(4, 150, 255, .055) 0%, transparent 70%);
      pointer-events: none;
    }

    .mg-bg-text {
      position: absolute;
      bottom: -30px;
      right: -20px;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(80px, 14vw, 240px);
      font-weight: 300;
      color: rgba(4, 150, 255, .03);
      line-height: 1;
      pointer-events: none;
      white-space: nowrap;
      user-select: none;
    }

    .mg-header {
      text-align: center;
      padding: 0 60px 88px;
      position: relative;
      z-index: 2;
    }

    .mg-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 24px;
    }

    .mg-eyebrow-line {
      display: block;
      width: 32px;
      height: 1px;
      background: var(--accent);
      flex-shrink: 0;
    }

    .mg-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(36px, 5vw, 70px);
      font-weight: 300;
      line-height: 1.08;
      color: var(--cream);
      margin-bottom: 18px;
    }

    .mg-title em {
      font-style: italic;
      color: var(--accent-light);
    }

    .mg-subtitle {
      font-size: 13px;
      color: rgba(227, 242, 253, .35);
      letter-spacing: .12em;
      font-weight: 300;
    }

    .mg-layout {
      max-width: 740px;
      margin: 0 auto;
      padding: 0 60px;
      position: relative;
      z-index: 2;
    }

    .mg-timeline {
      position: relative;
    }

    .mg-timeline::before {
      content: '';
      position: absolute;
      left: 0;
      top: 20px;
      bottom: 60px;
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(4, 150, 255, .22) 8%, rgba(4, 150, 255, .22) 92%, transparent);
    }

    .mg-chapter {
      padding: 0 0 72px 44px;
      position: relative;
    }

    .mg-chapter::before {
      content: '';
      position: absolute;
      left: -6px;
      top: 10px;
      width: 13px;
      height: 13px;
      border-radius: 50%;
      border: 1.5px solid rgba(4, 150, 255, .25);
      background: var(--dark);
      transition: border-color .5s, background .5s, box-shadow .5s;
    }

    .mg-chapter.mg-active::before {
      border-color: var(--accent);
      background: rgba(4, 150, 255, .12);
      box-shadow: 0 0 14px rgba(4, 150, 255, .6), 0 0 28px rgba(4, 150, 255, .2);
    }

    .mg-chapter-inner {
      border: 1px solid rgba(4, 150, 255, .1);
      background: rgba(255, 255, 255, .02);
      padding: 30px 32px 28px;
      position: relative;
      transition: border-color .4s, background .4s;
    }

    .mg-chapter.mg-active .mg-chapter-inner {
      border-color: rgba(4, 150, 255, .28);
      background: rgba(4, 150, 255, .05);
    }

    .mg-chapter-inner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 2px;
      height: 0;
      background: var(--accent);
      transition: height .55s ease .15s;
    }

    .mg-chapter.mg-active .mg-chapter-inner::before {
      height: 100%;
    }

    .mg-chapter-header {
      display: flex;
      align-items: baseline;
      gap: 16px;
      margin-bottom: 14px;
    }

    .mg-chapter-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 44px;
      font-weight: 300;
      color: rgba(4, 150, 255, .18);
      line-height: 1;
      flex-shrink: 0;
      transition: color .4s;
    }

    .mg-chapter.mg-active .mg-chapter-num {
      color: rgba(4, 150, 255, .5);
    }

    .mg-chapter-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 23px;
      font-weight: 400;
      color: var(--cream);
      line-height: 1.2;
    }

    .mg-chapter-text {
      font-size: 14.5px;
      line-height: 1.9;
      color: rgba(227, 242, 253, .5);
      font-weight: 300;
      margin-bottom: 18px;
      transition: color .4s;
    }

    .mg-chapter.mg-active .mg-chapter-text {
      color: rgba(227, 242, 253, .78);
    }

    .mg-chapter-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 10px;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--accent);
      opacity: .55;
      transition: opacity .4s;
    }

    .mg-chapter.mg-active .mg-chapter-tag {
      opacity: .9;
    }

    .mg-chapter-tag::before {
      content: '';
      display: block;
      width: 18px;
      height: 1px;
      background: var(--accent);
    }

    @media (max-width: 1024px) {
      .mg-layout {
        padding: 0 40px;
      }

      .mg-header {
        padding: 0 40px 60px;
      }
    }

    @media (max-width: 768px) {
      .mg-section {
        padding: 80px 0 64px;
      }

      .mg-header {
        padding: 0 24px 48px;
      }

      .mg-layout {
        padding: 0 24px;
      }

      .mg-chapter {
        padding-bottom: 48px;
      }

      .mg-chapter-inner {
        padding: 22px 22px 20px;
      }
    }
