/* About Premium */

.ea-about {
  background: #f8f7f3;
  color: #050505;
  overflow: hidden;
}

.ea-about-container {
  max-width: 1500px;
}

.ea-about-eyebrow {
  margin: 0 0 28px;
  color: #050505;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ea-about h1,
.ea-about h2 {
  margin: 0;
  color: #050505;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.ea-about h1 {
  font-size: clamp(54px, 5.8vw, 104px);
}

.ea-about h2 {
  font-size: clamp(42px, 4.4vw, 78px);
}

.ea-about em {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.055em;
}

.ea-about p {
  color: #111;
  font-size: 17px;
  line-height: 1.75;
}

.ea-about-line {
  width: 92px;
  height: 2px;
  margin: 42px 0;
  background: #050505;
}

.ea-about-btn {
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.ea-about-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

.ea-about-btn--light {
  border: 1px solid rgba(255,255,255,0.55);
  background: transparent;
  color: #fff;
}

.ea-about-btn--light:hover {
  color: #fff;
  opacity: 0.75;
}

/* Hero */

.ea-about-hero {
  padding: 92px 0 105px;
}

.ea-about-hero__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 92px;
  align-items: center;
}

.ea-about-hero__content p:not(.ea-about-eyebrow) {
  max-width: 560px;
  margin-bottom: 42px;
}

.ea-about-hero__image {
  height: 660px;
  overflow: hidden;
  background: #ddd;
}

.ea-about-hero__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(1);
}

/* Numbers */

.ea-about-numbers {
  padding: 62px 0;
  background: #efede7;
}

.ea-about-numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ea-about-number {
  min-height: 160px;
  padding: 10px 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(5,5,5,0.14);
  text-align: center;
}

.ea-about-number:last-child {
  border-right: 0;
}

.ea-about-number span {
  display: block;
  margin-bottom: 26px;
  color: #050505;
  font-size: 36px;
  line-height: 1;
}

.ea-about-number strong {
  display: block;
  margin-bottom: 10px;
  color: #050505;
  font-size: clamp(42px, 4vw, 66px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.ea-about-number p {
  margin: 0;
  color: #050505;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

/* Team */

.ea-about-team {
  padding: 112px 0;
  background: #f8f7f3;
}

.ea-about-team__grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.ea-about-team__content p:not(.ea-about-eyebrow) {
  max-width: 410px;
}

.ea-about-signature {
  margin-top: 44px;
  color: #050505;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 34px;
  font-style: italic;
}

.ea-about-team__image {
  height: 520px;
  overflow: hidden;
  background: #ddd;
}

.ea-about-team__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(1);
}

.ea-about-value {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 26px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(5,5,5,0.16);
}

.ea-about-value:first-child {
  border-top: 1px solid rgba(5,5,5,0.16);
}

.ea-about-value span {
  color: #050505;
  font-size: 30px;
  line-height: 1;
}

.ea-about-value h3 {
  margin: 0 0 10px;
  color: #050505;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.ea-about-value p {
  margin: 0;
  color: #111;
  font-size: 15px;
  line-height: 1.6;
}

/* Process */

.ea-about-process {
  padding: 100px 0 112px;
  background: #efede7;
}

.ea-about-process__head {
  margin-bottom: 76px;
  text-align: center;
}

.ea-about-process__head .ea-about-eyebrow {
  margin-bottom: 20px;
}

.ea-about-process__head h2 {
  font-size: clamp(38px, 4vw, 68px);
}

.ea-about-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 70px;
}

.ea-about-step {
  position: relative;
}

.ea-about-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 6px;
  right: -44px;
  color: #050505;
  font-size: 34px;
  line-height: 1;
}

.ea-about-step strong {
  display: block;
  margin-bottom: 36px;
  color: #050505;
  font-size: clamp(42px, 4vw, 66px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.055em;
}

.ea-about-step h3 {
  margin: 0 0 20px;
  color: #050505;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.ea-about-step p {
  max-width: 290px;
  margin: 0;
  color: #111;
  font-size: 15px;
  line-height: 1.65;
}

/* CTA */

.ea-about-cta {
  padding: 82px 0;
  background: #050505;
  color: #fff;
}

.ea-about-cta__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr 0.45fr;
  gap: 80px;
  align-items: center;
}

.ea-about-cta h2,
.ea-about-cta p {
  color: #fff;
}

.ea-about-cta h2 {
  font-size: clamp(42px, 4.5vw, 76px);
}

.ea-about-cta .ea-about-line {
  background: #fff;
}

.ea-about-cta p {
  max-width: 500px;
  margin: 0;
  color: rgba(255,255,255,0.78);
}

.ea-about-cta__contact {
  padding-left: 72px;
  border-left: 1px solid rgba(255,255,255,0.34);
}

.ea-about-cta__contact a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.ea-about-cta__contact a + a {
  margin-top: 34px;
}

.ea-about-cta__button {
  display: flex;
  justify-content: flex-end;
}

/* Responsive */

@media (max-width: 1199px) {
  .ea-about-hero__grid,
  .ea-about-team__grid,
  .ea-about-cta__grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .ea-about-hero__image,
  .ea-about-team__image {
    height: 560px;
  }

  .ea-about-process__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ea-about-step:not(:last-child)::after {
    display: none;
  }

  .ea-about-cta__contact {
    padding-left: 0;
    border-left: 0;
  }

  .ea-about-cta__button {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .ea-about-hero {
    padding: 62px 0 72px;
  }

  .ea-about h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .ea-about h2 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .ea-about-hero__image,
  .ea-about-team__image {
    height: 420px;
  }

  .ea-about-numbers__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ea-about-number {
    min-height: 150px;
    padding: 28px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(5,5,5,0.14);
  }

  .ea-about-number:nth-child(odd) {
    border-right: 1px solid rgba(5,5,5,0.14);
  }

  .ea-about-number:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .ea-about-team,
  .ea-about-process {
    padding: 72px 0;
  }

  .ea-about-value {
    grid-template-columns: 42px 1fr;
    gap: 18px;
  }

  .ea-about-process__head {
    margin-bottom: 54px;
    text-align: left;
  }

  .ea-about-process__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .ea-about-step strong {
    margin-bottom: 20px;
  }

  .ea-about-cta {
    padding: 64px 0;
  }

  .ea-about-cta__contact a {
    font-size: 20px;
  }
}