/* ============================================================
   MPA — About page-only styles
   Refactored from the original combined stylesheet.
============================================================ */

/* Base styles */

.about-page-hero {
    padding: 110px 0 92px;
    background: radial-gradient(
        circle at 82% 25%,
        rgba(200, 61, 67, 0.12),
        transparent 27%
      ),
      linear-gradient(135deg, #fff3f0, #ffffff);
  }
  
  .about-page-hero .eyebrow,
  .about-eyebrow {
    color: var(--brand-dark);
    font-size: 25px;
    letter-spacing: 0.1em;
  }
  
  .about-page-hero h1 {
    max-width: 900px;
    margin: 14px 0 20px;
  }
  
  .about-page-hero p {
    max-width: 760px;
    margin-bottom: 0;
  }
  
  .about-story-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 72px;
    align-items: center;
  }
  
  .about-logo-panel {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    border: 1px solid #f0d8d9;
    border-radius: 30px;
    background: linear-gradient(
        150deg,
        rgba(141, 11, 14, 0.03),
        rgba(200, 61, 67, 0.18)
      ),
      repeating-linear-gradient(
        45deg,
        #ffffff 0 18px,
        #fff6f3 18px 36px
      );
    box-shadow: var(--shadow);
  }
  
  .about-logo-panel::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    top: -130px;
    right: -100px;
    border: 1px solid rgba(168, 15, 19, 0.14);
    border-radius: 50%;
  }
  
  .about-logo-mark {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding-bottom: 40px;
  }
  
  .about-logo-mark img {
    width: min(270px, 65%);
    height: auto;
    border-radius: 14px;
    box-shadow: 0 20px 48px rgba(89, 0, 4, 0.15);
  }
  
  .experience-badge {
    position: absolute;
    right: 25px;
    bottom: 25px;
    left: 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 28px rgba(72, 0, 3, 0.12);
  }
  
  .experience-badge strong {
    color: var(--brand-dark);
    font-size: 34px;
    line-height: 1;
  }
  
  .experience-badge span {
    max-width: 150px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 750;
    line-height: 1.35;
  }
  
  .about-story-copy h2 {
    max-width: 650px;
    margin: 12px 0 24px;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.12;
  }
  
  .about-story-copy p {
    margin: 0 0 17px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
  }
  
  .constrain-section {
    background: #fffaf7;
  }
  
  .constrain-banner {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 50px;
    align-items: center;
    padding: 44px 50px;
    border-radius: 28px;
    background: radial-gradient(
        circle at 90% 20%,
        rgba(255, 255, 255, 0.16),
        transparent 30%
      ),
      linear-gradient(
        130deg,
        var(--brand-deep),
        var(--brand)
      );
    color: #ffffff;
    box-shadow: 0 22px 50px rgba(91, 9, 13, 0.22);
  }
  
  .constrain-label {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  
  .constrain-banner h2 {
    margin: 0;
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1;
    letter-spacing: -0.04em;
  }
  
  .constrain-banner p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(21px, 2.6vw, 30px);
    font-weight: 700;
    line-height: 1.3;
  }
  
  .constrain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 30px;
  }
  
  .constrain-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    padding: 32px;
    border: 1px solid #f0d8d9;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(80, 0, 0, 0.05);
    transition: transform 0.22s ease,
      box-shadow 0.22s ease;
  }
  
  .constrain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 48px rgba(80, 0, 0, 0.1);
  }
  
  .constrain-card::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    right: -55px;
    bottom: -55px;
    border-radius: 50%;
    background: rgba(200, 61, 67, 0.08);
  }
  
  .constrain-number {
    margin-bottom: 15px;
    color: var(--brand);
    font-size: 20px;
    font-weight: 850;
    letter-spacing: 0.13em;
  }
  
  .constrain-card h3 {
    margin: 0 0 16px;
    color: var(--brand-dark);
    font-size: 25px;
    line-height: 1.25;
  }
  
  .constrain-card p {
    margin: 0 0 13px;
    color: var(--muted);
  }
  
  .about-pledge-panel {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 55px;
    align-items: center;
    padding: 52px;
    border: 1px solid #f0d8d9;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }
  
  .about-pledge-copy h2 {
    margin: 10px 0 18px;
    font-size: clamp(32px, 4vw, 45px);
    line-height: 1.12;
  }
  
  .about-pledge-copy p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
  }
  
  .about-pledge-action {
    display: grid;
    justify-items: start;
    gap: 20px;
    padding-left: 38px;
    border-left: 1px solid #edd1d3;
  }
  
  .about-pledge-action span {
    color: var(--brand-dark);
    font-size: 18px;
    font-weight: 750;
    line-height: 1.45;
  }
  
  /* Responsive styles */
  
  @media (max-width: 980px) {
  
    .about-story-grid,
    .constrain-banner,
    .about-pledge-panel {
      grid-template-columns: 1fr;
    }
  
    .about-story-grid {
      gap: 40px;
    }
  
    .constrain-banner {
      gap: 22px;
    }
  
    .constrain-grid {
      grid-template-columns: 1fr;
    }
  
    .constrain-card {
      min-height: auto;
    }
  
    .about-pledge-panel {
      gap: 32px;
    }
  
    .about-pledge-action {
      padding-top: 28px;
      padding-left: 0;
      border-top: 1px solid #edd1d3;
      border-left: 0;
    }
  }
  
  @media (max-width: 760px) {
  
    .about-page-hero {
      padding: 75px 0 65px;
    }
  
    .about-logo-panel {
      min-height: 390px;
    }
  
    .about-logo-mark {
      padding-bottom: 60px;
    }
  
    .about-logo-mark img {
      width: min(220px, 63%);
    }
  
    .constrain-banner {
      padding: 32px 25px;
      border-radius: 22px;
    }
  
    .constrain-banner h2 {
      font-size: 43px;
    }
  
    .constrain-banner p {
      font-size: 21px;
    }
  
    .constrain-card {
      padding: 26px;
    }
  
    .about-pledge-panel {
      padding: 30px 24px;
      border-radius: 22px;
    }
  }