@charset "UTF-8";

/* =========================================
   ABOUT
   ========================================= */

.about {
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--cream);
  overflow: hidden;
}

.about:before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 320px;
  height: 320px;
  background-color: var(--alpine-lake-blue);
  border-radius: 50%;
  opacity: 0.08;
}

.about:after {
  content: "";
  position: absolute;
  bottom: -140px;
  right: -120px;
  width: 300px;
  height: 300px;
  background-color: var(--sunrise-coral);
  border-radius: 50%;
  opacity: 0.08;
}

.about .container {
  position: relative;
  z-index: 2;
}

/* =========================================
   ABOUT BANNER INTRO
   ========================================= */

.about-banner-intro {
  position: relative;
  max-width: 920px;
  margin: 0 auto 34px;
  text-align: center;
}

.about-banner-intro .eyebrow {
  margin-bottom: 16px;
  color: var(--summit-teal);
}

.about-banner-intro h2 {
  margin: 0;
  color: var(--forest-shadow);
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: -1.3px;
}

/* =========================================
   ABOUT BANNER
   ========================================= */

.about-banner {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.16);
}

.about-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 108, 139, 0.10) 0%, rgba(242, 107, 94, 0.08) 100%);
  pointer-events: none;
}

/* =========================================
   ABOUT BANNER CAPTION
   ========================================= */

.about-banner-caption {
  position: relative;
  max-width: 820px;
  margin: -36px auto 90px;
  padding: 24px 30px;
  background: rgba(255, 250, 245, 0.96);
  border: 1px solid rgba(31, 108, 139, 0.14);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.10);
  text-align: center;
}

.about-banner-caption:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--alpine-lake-blue) 0%, var(--summit-teal) 45%, var(--sunrise-coral) 100%);
}

.about-banner-caption p {
  margin: 0;
  color: var(--charcoal);
  font-size: 18px;
  line-height: 1.75;
}

/* =========================================
   GRID
   ========================================= */

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

/* =========================================
   IMAGES
   ========================================= */

.about-images {
  position: relative;
  max-width: 620px;
}

.about-image-large {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
}

.about-image-large img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-small {
  position: absolute;
  z-index: 3;
  right: -40px;
  bottom: -60px;
  width: 240px;
  height: 240px;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 6px solid var(--snow);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.20);
}

.about-image-small img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-images:before {
  content: "";
  position: absolute;
  top: 34px;
  left: -18px;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(31, 108, 139, 0.16) 0%, rgba(242, 107, 94, 0.10) 100%);
  z-index: 0;
}

.about-images:after {
  content: "";
  position: absolute;
  top: 46px;
  left: 46px;
  width: 82%;
  height: 82%;
  border: 1px solid rgba(31, 108, 139, 0.18);
  border-radius: var(--radius-lg);
  z-index: 1;
}

.about-secondary-image {
  margin-top: 90px;
  width: 100%;
  height: 440px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

.about-secondary-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================
   CONTENT
   ========================================= */

.about-content {
  position: relative;
  max-width: 700px;
}

.about-content:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -22px;
  width: 6px;
  height: 116px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7bbd7e 0%, #f9a34f 50%, #ff6a6a 100%);
}

.about .eyebrow {
  margin-bottom: 20px;
  color: var(--summit-teal);
}

.about h2 {
  margin-bottom: 26px;
  color: var(--forest-shadow);
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -1.2px;
}

.about-content > p {
  margin-bottom: 20px;
  color: var(--charcoal);
  font-size: 18px;
  line-height: 1.8;
}

.about-content > p:last-of-type {
  margin-bottom: 34px;
}

/* =========================================
   FEATURES
   ========================================= */

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-feature {
  position: relative;
  padding: 22px 22px 20px;
  border-radius: var(--radius-md);
  background-color: var(--snow);
  border: 1px solid rgba(31, 108, 139, 0.12);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.14);
}

.about-feature:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  border-radius: 6px 6px 0 0;
}

.about-feature:nth-child(1):before {
  background: linear-gradient(90deg, #7bbd7e 0%, #b8e3a6 100%);
}

.about-feature:nth-child(2):before {
  background: linear-gradient(90deg, #4d7fa3 0%, #1f3e56 100%);
}

.about-feature:nth-child(3):before {
  background: linear-gradient(90deg, #f9a34f 0%, #ff6a6a 100%);
}

.about-feature:nth-child(4):before {
  background: linear-gradient(90deg, #d68b3c 0%, #9b4f1f 100%);
}

.about-feature h3 {
  margin-bottom: 10px;
  color: var(--forest-shadow);
  font-size: 20px;
  line-height: 1.25;
}

.about-feature p {
  margin: 0;
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.65;
}

/* =========================================
   1920
   ========================================= */

@media screen and (max-width: 1920px) {
  .about {
    padding-top: 116px;
    padding-bottom: 116px;
  }

  .about-banner-intro {
    max-width: 880px;
    margin-bottom: 30px;
  }

  .about-banner-intro h2 {
    font-size: 52px;
    line-height: 1.05;
    letter-spacing: -1.1px;
  }

  .about-banner {
    height: 470px;
  }

  .about-banner-caption {
    max-width: 780px;
    margin: -34px auto 82px;
    padding: 22px 28px;
  }

  .about-banner-caption p {
    font-size: 17px;
    line-height: 1.72;
  }

  .about-grid {
    gap: 64px;
  }

  .about-images {
    max-width: 590px;
  }

  .about-image-large {
    height: 500px;
  }

  .about-image-small {
    right: -28px;
    bottom: -46px;
    width: 220px;
    height: 220px;
  }

  .about-images:before {
    top: 30px;
    left: -14px;
  }

  .about-images:after {
    top: 40px;
    left: 40px;
    width: 80%;
    height: 80%;
  }

  .about-secondary-image {
    margin-top: 82px;
    height: 400px;
  }

  .about-content {
    max-width: 680px;
  }

  .about-content:before {
    top: 8px;
    left: -18px;
    width: 6px;
    height: 104px;
  }

  .about .eyebrow {
    margin-bottom: 18px;
  }

  .about h2 {
    margin-bottom: 24px;
    font-size: 48px;
    line-height: 1.06;
    letter-spacing: -1.1px;
  }

  .about-content > p {
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.78;
  }

  .about-content > p:last-of-type {
    margin-bottom: 30px;
  }

  .about-features {
    gap: 18px;
  }

  .about-feature {
    padding: 20px 20px 18px;
  }

  .about-feature h3 {
    margin-bottom: 8px;
    font-size: 19px;
    line-height: 1.24;
  }

  .about-feature p {
    font-size: 14px;
    line-height: 1.62;
  }

  .about:before {
    top: -110px;
    left: -110px;
    width: 290px;
    height: 290px;
  }

  .about:after {
    bottom: -120px;
    right: -100px;
    width: 270px;
    height: 270px;
  }
}

/* =========================================
   1200
   ========================================= */

@media screen and (max-width: 1200px) {
  .about {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .about-banner-intro {
    max-width: 780px;
    margin-bottom: 26px;
  }

  .about-banner-intro .eyebrow {
    margin-bottom: 14px;
  }

  .about-banner-intro h2 {
    font-size: 44px;
    line-height: 1.07;
    letter-spacing: -1px;
  }

  .about-banner {
    height: 400px;
  }

  .about-banner-caption {
    max-width: 720px;
    margin: -28px auto 72px;
    padding: 20px 24px;
  }

  .about-banner-caption p {
    font-size: 17px;
    line-height: 1.68;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
  }

  .about-images {
    max-width: 540px;
  }

  .about-image-large {
    height: 450px;
  }

  .about-image-small {
    right: -14px;
    bottom: -34px;
    width: 190px;
    height: 190px;
    border-width: 5px;
  }

  .about-images:before {
    top: 26px;
    left: -10px;
  }

  .about-images:after {
    top: 34px;
    left: 34px;
    width: 78%;
    height: 78%;
  }

  .about-secondary-image {
    margin-top: 72px;
    height: 360px;
  }

  .about-content {
    max-width: 100%;
  }

  .about-content:before {
    top: 6px;
    left: -14px;
    width: 5px;
    height: 90px;
  }

  .about .eyebrow {
    margin-bottom: 18px;
  }

  .about h2 {
    margin-bottom: 22px;
    font-size: 42px;
    line-height: 1.07;
    letter-spacing: -1px;
  }

  .about-content > p {
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.75;
  }

  .about-content > p:last-of-type {
    margin-bottom: 28px;
  }

  .about-features {
    gap: 16px;
  }

  .about-feature {
    padding: 19px 18px 17px;
  }

  .about-feature h3 {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .about-feature p {
    font-size: 14px;
    line-height: 1.6;
  }

  .about:before {
    top: -95px;
    left: -95px;
    width: 250px;
    height: 250px;
  }

  .about:after {
    bottom: -105px;
    right: -95px;
    width: 230px;
    height: 230px;
  }
}

/* =========================================
   768
   ========================================= */

@media screen and (max-width: 768px) {
  .about {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .about-banner-intro {
    max-width: 100%;
    margin-bottom: 22px;
  }

  .about-banner-intro .eyebrow {
    margin-bottom: 12px;
  }

  .about-banner-intro h2 {
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: -0.8px;
  }

  .about-banner {
    height: 300px;
    border-radius: var(--radius-md);
  }

  .about-banner-caption {
    max-width: 100%;
    margin: -22px auto 54px;
    padding: 18px 18px;
    border-radius: var(--radius-md);
  }

  .about-banner-caption p {
    font-size: 16px;
    line-height: 1.65;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: start;
  }

  .about-images {
    max-width: 100%;
    padding-right: 24px;
    padding-bottom: 18px;
  }

  .about-image-large {
    height: 420px;
  }

  .about-image-small {
    right: 0;
    bottom: 0;
    width: 170px;
    height: 170px;
    border-width: 5px;
  }

  .about-images:before {
    top: 20px;
    left: -8px;
    width: calc(100% - 24px);
    height: calc(100% - 18px);
  }

  .about-images:after {
    display: none;
  }

  .about-secondary-image {
    margin-top: 54px;
    height: 300px;
    border-radius: var(--radius-md);
  }

  .about-content {
    max-width: 100%;
  }

  .about-content:before {
    top: -16px;
    left: 0;
    width: 92px;
    height: 4px;
    border-radius: 999px;
  }

  .about .eyebrow {
    margin-bottom: 16px;
  }

  .about h2 {
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: -0.8px;
  }

  .about-content > p {
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.72;
  }

  .about-content > p:last-of-type {
    margin-bottom: 24px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-feature {
    padding: 18px 18px 16px;
  }

  .about-feature h3 {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.24;
  }

  .about-feature p {
    font-size: 14px;
    line-height: 1.58;
  }

  .about:before {
    top: -82px;
    left: -82px;
    width: 205px;
    height: 205px;
  }

  .about:after {
    bottom: -88px;
    right: -78px;
    width: 185px;
    height: 185px;
  }
}

/* =========================================
   480
   ========================================= */

@media screen and (max-width: 480px) {
  .about {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .about-banner-intro {
    margin-bottom: 18px;
  }

  .about-banner-intro h2 {
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.5px;
  }

  .about-banner {
    height: 230px;
  }

  .about-banner-caption {
    margin: -16px auto 44px;
    padding: 16px 15px;
  }

  .about-banner-caption p {
    font-size: 15px;
    line-height: 1.58;
  }

  .about-grid {
    gap: 40px;
  }

  .about-images {
    padding-right: 14px;
    padding-bottom: 14px;
  }

  .about-image-large {
    height: 320px;
  }

  .about-image-small {
    width: 132px;
    height: 132px;
    right: 0;
    bottom: 0;
    border-width: 4px;
  }

  .about-images:before {
    top: 14px;
    left: -6px;
    width: calc(100% - 14px);
    height: calc(100% - 14px);
  }

  .about-secondary-image {
    margin-top: 44px;
    height: 240px;
  }

  .about .eyebrow {
    margin-bottom: 14px;
  }

  .about h2 {
    margin-bottom: 18px;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.5px;
  }

  .about-content > p {
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.68;
  }

  .about-content > p:last-of-type {
    margin-bottom: 20px;
  }

  .about-features {
    gap: 12px;
  }

  .about-feature {
    padding: 17px 15px 15px;
  }

  .about-feature:before {
    height: 5px;
  }

  .about-feature h3 {
    font-size: 17px;
    line-height: 1.25;
  }

  .about-feature p {
    font-size: 14px;
    line-height: 1.56;
  }

  .about:before {
    top: -62px;
    left: -62px;
    width: 150px;
    height: 150px;
  }

  .about:after {
    bottom: -70px;
    right: -62px;
    width: 140px;
    height: 140px;
  }
}

/* =========================================
   300
   ========================================= */

@media screen and (max-width: 300px) {
  .about {
    padding-top: 30px;
    padding-bottom: 58px;
  }

  .about-banner-intro {
    margin-bottom: 14px;
  }

  .about-banner-intro .eyebrow {
    margin-bottom: 10px;
  }

  .about-banner-intro h2 {
    font-size: 24px;
    line-height: 1.12;
    letter-spacing: -0.3px;
  }

  .about-banner {
    height: 170px;
  }

  .about-banner-caption {
    margin: -12px auto 32px;
    padding: 14px 12px;
  }

  .about-banner-caption p {
    font-size: 13px;
    line-height: 1.5;
  }

  .about-grid {
    gap: 30px;
  }

  .about-images {
    padding-right: 10px;
    padding-bottom: 10px;
  }

  .about-image-large {
    height: 240px;
  }

  .about-image-small {
    width: 96px;
    height: 96px;
    border-width: 3px;
  }

  .about-images:before {
    top: 10px;
    left: -4px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
  }

  .about-secondary-image {
    margin-top: 32px;
    height: 180px;
  }

  .about-content:before {
    top: -14px;
    width: 54px;
    height: 3px;
  }

  .about .eyebrow {
    margin-bottom: 12px;
  }

  .about h2 {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 1.12;
    letter-spacing: -0.3px;
  }

  .about-content > p {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
  }

  .about-content > p:last-of-type {
    margin-bottom: 18px;
  }

  .about-features {
    gap: 10px;
  }

  .about-feature {
    padding: 14px 12px;
  }

  .about-feature:before {
    height: 4px;
  }

  .about-feature h3 {
    margin-bottom: 6px;
    font-size: 15px;
  }

  .about-feature p {
    font-size: 13px;
    line-height: 1.5;
  }

  .about:before {
    top: -40px;
    left: -40px;
    width: 95px;
    height: 95px;
    opacity: 0.06;
  }

  .about:after {
    bottom: -42px;
    right: -40px;
    width: 90px;
    height: 90px;
    opacity: 0.06;
  }
}