/* ─── Page layout ──────────────────────────────────────────────────────── */

.page-about main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 16px;
}

html {
  scroll-behavior: smooth;
}

/* ─── Hero ─────────────────────────────────────────────────────────────── */

.about-hero {
  height: 90vh;
  background: url("https://vanrmarketingassets.blob.core.windows.net/assets/About%20Us/Vanr_About_Us_Hero.jpg") center/cover no-repeat;
}

.about-hero__overlay {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 64px 24px;
}

.about-hero__logo {
  margin: 0;
}

.about-hero__logo img {
  width: min(100%, 320px);
  height: auto;
}

.about-hero__arrow {
  font-size: 38px;
  line-height: 1;
  color: var(--text);
}


/* ─── Shared section layout ─────────────────────────────────────────────── */

.about-section {
  background: var(--surface);
  padding: 80px 0;
}

.about-section__inner {
  width: min(860px, calc(100% - 120px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.about-hero__title {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-primary);
  text-align: center;
}

.about-section__title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-primary);
  text-align: center;
}

.about-hero__content {
  width: min(1160px, calc(100% - 120px));
  margin: 0 auto;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.scroll-indicator img {
  width: 16px;
  height: auto;
  display: block;
}


/* ─── Who We Are ────────────────────────────────────────────────────────── */

.about-who__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}

.about-who__body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: white;
  font-family: var(--font-primary);
  text-align: center;
  font-weight: 200;
  max-width: 660px;
}


/* ─── FAQ ───────────────────────────────────────────────────────────────── */

.about-section--faq .about-section__inner {
  align-items: stretch;
  text-align: left;
}

.about-section--faq .about-section__title {
  text-align: center;
  align-self: center;
}

.about-accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.about-accordion__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.about-accordion__header {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  color: var(--text);
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2px;
  text-align: left;
}

.about-accordion__chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text);
}

.about-accordion__item.is-open .about-accordion__chevron {
  transform: rotate(180deg);
}

.about-accordion__body {
  display: none;
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 760px;
  font-family: var(--font-primary);
}

.about-accordion__item.is-open .about-accordion__body {
  display: block;
}

.about-faq__subtext {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #AFB1BE;
  text-align: center;
  font-family: var(--font-primary);
}


/* ─── Get in Touch ──────────────────────────────────────────────────────── */

.about-contact-cards {
  display: flex;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.about-contact-card {
  background: var(--bg);
  border-radius: 9px;
  padding: 32px 24px;
  flex: 1 1 0;
  min-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.about-contact-card__icon {
  display: block;
  opacity: 0.85;
}

.about-contact-card__heading {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-primary);
}

.about-contact-card__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #AFB1BE;
  flex: 1;
  font-family: var(--font-primary);
}

.about-contact-card__email {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-3);
  margin-top: 4px;
}

.about-contact-card__email:hover {
  color: var(--accent-2);
  transform: scale(1.01);
}


/* ─── Responsive ────────────────────────────────────────────────────────── */

@media (max-width: 1140px) {
  .about-contact-cards {
    flex-direction: column;
  }

  .about-contact-card {
    flex: none;
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 960px) {


  .about-hero__logo img {
    max-width: 260px;
  }

  .about-section {
    padding: 64px 0;
  }

  .about-section__inner {
    width: calc(100% - 120px);
  }

  .about-section__title {
    font-size: 24px;
  }

  .about-hero__title {
    font-size: 42px;
  }
}

@media (max-width: 720px) {

  .about-hero__content {
    width: min(1160px, calc(100% - 80px));
    margin: 0 auto;
  }


}

@media (max-width: 640px) {


  .about-hero__logo img {
    max-width: 200px;
  }

  .about-hero__overlay {
    padding: 0px;
  }

  .about-section {
    padding: 48px 0;
  }

  .about-section__inner {
    width: calc(100% - 80px);
    gap: 28px;
  }

  .about-section__title {
    font-size: 22px;
  }

  .about-accordion__header {
    font-size: 15px;
    padding: 16px 0;
  }

  .about-who__body p {
    font-size: 14px;
  }

  .about-hero__title {
    font-size: 32px;
  }

}