/* Page-specific styles extracted from style.css. */

.heroAbout {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.42)),
    url("../img/about-bg.webp") center/cover;

  .heroAboutShell {
    width: var(--container);
    margin: 0 auto;
    padding: 56px 0 64px;
  }

  .heroAboutContent {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 100%;
  }

  .heroAboutTitle {
    margin: 0;
    font-size: clamp(2.55rem, 10vw, 4.25rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.05em;
    text-wrap: balance;
  }

  .heroAboutBody {
    max-width: 44rem;
    margin: 0;
    color: #d1d5dc;
    font-size: 1rem;
    line-height: 1.7;
  }

  .heroAboutActions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .heroAboutPrimary,
  .heroAboutSecondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    width: 100%;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  }

  .heroAboutPrimary:hover,
  .heroAboutSecondary:hover {
    transform: translateY(-1px);
  }

  .heroAboutPrimary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .heroAboutSecondary {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08), 0 4px 6px rgba(0, 0, 0, 0.08);
  }
}

.aboutShawn {
  background: #f9fafb;

  .aboutShawnShell {
    width: var(--container);
    margin: 0 auto;
    padding: 32px 0 48px;
    max-width: 920px;
  }

  .aboutShawnCard {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 28px 24px;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  .aboutShawnGreeting,
  .aboutShawnParagraph,
  .aboutShawnName,
  .aboutShawnRole {
    margin: 0;
  }

  .aboutShawnGreeting,
  .aboutShawnParagraph {
    color: #364153;
    font-size: 1rem;
    line-height: 1.625;
  }

  .aboutShawnParagraph {
    strong {
      color: #101828;
      font-weight: 700;
    }
  }

  .aboutShawnSignature {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .aboutShawnName {
    color: #101828;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
  }

  .aboutShawnRole {
    color: #4a5565;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.5;
  }
}

.aboutExpect {
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  background: #fff;

  .aboutExpectShell {
    width: var(--container);
    margin: 0 auto;
    padding: 48px 0 56px;
  }

  .aboutExpectHeader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  .aboutExpectTitle,
  .aboutExpectBody,
  .aboutExpectCardTitle,
  .aboutExpectCardBody {
    margin: 0;
  }

  .aboutExpectTitle {
    color: #101828;
    font-size: 2rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }

  .aboutExpectBody {
    color: #4a5565;
    font-size: 1rem;
    line-height: 1.625;
    text-wrap: balance;
  }

  .aboutExpectGrid {
    display: grid;
    gap: 20px;
    margin-top: 32px;
  }

  .aboutExpectCard {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px 24px;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    background: #f9fafb;
    text-align: center;
  }

  .aboutExpectIconWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: #101828;
  }

  .aboutExpectIcon {
    width: 32px;
    height: 32px;
  }

  .aboutExpectCardTitle {
    color: #101828;
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 700;
    text-wrap: balance;
  }

  .aboutExpectCardBody {
    max-width: 18rem;
    color: #4a5565;
    font-size: 1rem;
    line-height: 1.625;
  }

  .aboutExpectLinks {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
  }

  .aboutExpectLink {
    color: #ff7f00;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
}

.aboutCommitment {
  background: #f9fafb;

  .aboutCommitmentShell {
    width: var(--container);
    margin: 0 auto;
    padding: 48px 0 0;
    max-width: 810px;
  }

  .aboutCommitmentPanel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 40px 24px;
    border-radius: 16px;
    background: linear-gradient(148deg, #101828 0%, #1e2939 100%);
  }

  .aboutCommitmentIcon,
  .aboutCommitmentTitle,
  .aboutCommitmentCardTitle,
  .aboutCommitmentCardBody {
    margin: 0;
  }

  .aboutCommitmentIcon {
    width: 48px;
    height: 48px;
  }

  .aboutCommitmentTitle {
    color: #fff;
    font-size: 2rem;
    line-height: 1.15;
    font-weight: 700;
    text-align: center;
    text-wrap: balance;
  }

  .aboutCommitmentGrid {
    display: grid;
    gap: 16px;
    width: 100%;
  }

  .aboutCommitmentCard {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
  }

  .aboutCommitmentCardTitle {
    color: #ff7f00;
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 700;
  }

  .aboutCommitmentCardBody {
    color: #e5e7eb;
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media (min-width: 768px) {
    .aboutCommitment {
      .aboutCommitmentShell {
        padding: 56px 0 0;
      }

      .aboutCommitmentPanel {
        gap: 24px;
        padding: 48px 32px;
      }

      .aboutCommitmentGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
}

@media (min-width: 1024px) {
    .aboutCommitment {
      .aboutCommitmentShell {
        padding: 64px 0 0;
      }

      .aboutCommitmentPanel {
        padding: 48px 71px 74px;
      }
    }
}

@media (min-width: 768px) {
    .aboutExpect {
      .aboutExpectShell {
        padding: 56px 0 64px;
      }

      .aboutExpectBody {
        font-size: 1.125rem;
      }

      .aboutExpectGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 40px;
      }

      .aboutExpectCard {
        min-height: 100%;
      }

      .aboutExpectLinks {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
        margin-top: 36px;
      }
    }
}

@media (min-width: 1024px) {
    .aboutExpect {
      .aboutExpectShell {
        padding: 64px 0;
      }

      .aboutExpectGrid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .aboutExpectCard {
        padding: 32px;
      }
    }
}

@media (min-width: 768px) {
    .aboutShawn {
      .aboutShawnShell {
        padding: 48px 0 64px;
      }

      .aboutShawnCard {
        gap: 16px;
        padding: 40px;
      }

      .aboutShawnGreeting,
      .aboutShawnParagraph {
        max-width: 49.875rem;
      }

      .aboutShawnName {
        line-height: 1.35;
      }
    }
}

@media (min-width: 1024px) {
    .aboutShawn {
      .aboutShawnShell {
        padding: 64px 0 80px;
      }

      .aboutShawnCard {
        padding: 49px;
      }
    }
}

@media (min-width: 768px) {
    .heroAbout {
      background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0.08) 100%),
        url("../img/about-bg.webp") center/cover;

      .heroAboutShell {
        padding: 88px 0 96px;
      }

      .heroAboutContent {
        gap: 28px;
        max-width: 44rem;
      }

      .heroAboutTitle {
        font-size: clamp(3.5rem, 7vw, 4.8rem);
      }

      .heroAboutBody {
        max-width: 40rem;
        font-size: 1.125rem;
        line-height: 1.625;
      }

      .heroAboutActions {
        flex-direction: row;
        align-items: center;
        width: auto;
      }

      .heroAboutPrimary,
      .heroAboutSecondary {
        width: auto;
        min-height: 62px;
        padding: 15px 28px;
      }
    }
}

@media (min-width: 1024px) {
    .heroAbout {
      min-height: 800px;
      background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0) 100%),
        url("../img/about-bg.webp") center/cover;

      .heroAboutShell {
        display: flex;
        align-items: flex-start;
        min-height: 800px;
        padding: 150px 0 34px;
      }

      .heroAboutContent {
        gap: 29px;
        max-width: 48rem;
      }

      .heroAboutTitle {
        max-width: 38rem;
        font-size: 4.375rem;
        line-height: 1;
      }

      .heroAboutBody {
        max-width: 44rem;
        font-size: 1.25rem;
        line-height: 1.625;
      }

      .heroAboutSecondary {
        padding-right: 31px;
        padding-left: 31px;
      }
    }
}
