/* =========================================================
   TERSA ABOUT PAGE
   File: assets/css/about.css
   ========================================================= */

   .about-page {
    padding-bottom: 0;
  }
  
  /* =========================
     Shared Hero
     Uses same classes as contact.css
     ========================= */
  .contact-hero {
    position: relative;
    overflow: hidden;
  }
  
  .contact-hero__media {
    position: relative;
    min-height: clamp(360px, 46vw, 720px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .contact-hero__media--no-image {
    background-color: var(--c-text, #2a211b);
  }

  .contact-hero__media--parallax {
    background-attachment: fixed;
  }
  
  @media (prefers-reduced-motion: reduce), (max-width: 1023px) {
    .contact-hero__media--parallax {
      background-attachment: scroll;
    }
  }
  
  .contact-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
  }
  
  .contact-hero__inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact-hero__content {
    width: min(100%, 980px);
    text-align: center;
  }
  
  .contact-hero__title {
    margin: 0;
    color: #fff;
    font-family: var(--font-body);
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.03em;
  }
  
  /* =========================
     How We Work
     ========================= */
  .about-work {
    background: var(--c-bg);
    padding: 40px 20px;
  }
  
  .about-work__grid {
    display: grid;
    grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 1fr);
    gap: clamp(32px, 5vw, 96px);
    align-items: center;
  }
  
  .about-work__media {
    min-width: 0;
    overflow: hidden;
  }
  
  .about-work__image {
    width: 100%;
    aspect-ratio: 1 / 0.88;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .about-work__media:hover .about-work__image {
    transform: scale(1.08);
  }

  .about-work__content {
    min-width: 0;
  }
  
  .about-work__title {
    margin: 0 0 36px;
    font-family: var(--font-body);
    font-size: clamp(2rem, 2.8vw, 3rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #111;
  }
  
  .about-work__items {
    display: grid;
    gap: 34px;
  }
  
  .about-work__item-title {
    margin: 0 0 12px;
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 1.5vw, 1.6rem);
    font-weight: 700;
    line-height: 1.2;
    color: #111;
  }
  
  .about-work__item p {
    color: #8b8b8b;
    font-size: clamp(1rem, 1.2vw, 1.18rem);
    line-height: 1.7;
  }
  
  /* =========================
     CTA Banner
     ========================= */
  .about-cta {
    position: relative;
    overflow: hidden;
  }
  
  .about-cta__media {
    position: relative;
    height: clamp(300px, 35vw, 460px);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .about-cta__media--no-image {
    background-color: var(--c-text, #2a211b);
  }

  .about-cta__media--parallax {
    background-attachment: fixed;
  }

  @media (prefers-reduced-motion: reduce), (max-width: 1023px) {
    .about-cta__media--parallax {
      background-attachment: scroll;
    }
  }

  .about-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
  }
  
  .about-cta__inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .about-cta__content {
    width: min(100%, 980px);
    text-align: center;
  }
  
  .about-cta__title {
    margin: 0 0 20px;
    color: #fff;
    font-family: var(--font-body);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.03em;
  }
  
  .about-cta__text {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.05rem, 1.5vw, 1.375rem);
    line-height: 1.7;
  }
  
  .about-cta__button {
    margin-top: 28px;
    min-width: 170px;
    background: #fff;
    color: #111;
    border-color: #fff;
    border-radius: 0;
  }
  
  .about-cta__button:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
  }
  
  /* =========================
     Mobile
     ========================= */
  @media (max-width: 980px) {
    .about-work__grid {
      grid-template-columns: 1fr;
      gap: 36px;
    }
  
    .about-work__content {
      text-align: center;
    }
  }
  
  @media (max-width: 720px) {
    .contact-hero__media {
      min-height: 300px;
    }

    .about-cta__media {
      height: 260px;
    }
  
    .contact-hero__title,
    .about-cta__title {
      font-size: clamp(2.4rem, 8vw, 3.4rem);
    }
  
    .about-work__title {
      margin-bottom: 28px;
    }
  
    .about-work__items {
      gap: 26px;
    }
  }