/* ========================================
   DIGITAL ATELIER — About Page
   ======================================== */

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

.abt-hero {
  max-width: 1440px;
  margin: 0 auto;
  padding: 140px 60px 0;
}

.abt-hero__inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* Left column — name + bio */
.abt-hero__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-top: 20px;
}

.abt-hero__name {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.abt-hero__name-line {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(56px, 8.3vw, 120px);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.abt-hero__name-line--2 {
  padding-left: 48px;
}

.abt-hero__bio {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 540px;
  padding-left: 8px;
}

.abt-hero__bio p {
  font-family: var(--font);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
}

/* Scroll highlight words */
.scroll-word {
  display: inline;
  transition: color 0.05s ease;
}

.scroll-word.dim {
  color: var(--white-dim);
}

.scroll-word.lit {
  color: var(--white);
}

/* Right column — portrait */
.abt-hero__right {
  flex-shrink: 0;
  width: clamp(320px, 39%, 564px);
}

.abt-hero__img-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.abt-hero__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.abt-hero__img-wrap:hover .abt-hero__img {
  transform: scale(1.03);
}

/* Founder title — right-aligned under image */
.abt-hero__title-line {
  padding: 40px 0 0;
  display: flex;
  justify-content: flex-end;
}

.abt-hero__title {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(28px, 4.4vw, 64px);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: right;
}

/* ========================================
   WHAT WE DO SECTION
   ======================================== */

.abt-wwd {
  padding: 200px 60px;
  max-width: 1440px;
  margin: 0 auto;
}

.abt-wwd__content {
  max-width: 881px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.abt-wwd__content p {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(18px, 1.95vw, 28px);
  line-height: 1.07;
  text-transform: uppercase;
}

/* ========================================
   CTA SECTION
   ======================================== */

.abt-cta {
  padding: 0 60px 160px;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

.abt-cta__btn {
  display: inline-flex;
}

/* ========================================
   TESTIMONIALS SCROLLER
   ======================================== */

.abt-testimonials {
  padding: 80px 60px 160px;
  max-width: 1440px;
  margin: 0 auto;
}

.abt-testimonials__slider {
  overflow: hidden;
}

.abt-testimonials__track {
  display: flex;
  gap: 40px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.abt-testimonials__item {
  flex-shrink: 0;
  width: calc(50% - 20px);
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px;
}

.abt-testimonials__quote {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt-testimonials__quote p {
  font-family: var(--font);
  font-weight: 400;
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  color: var(--white);
  letter-spacing: 0.3px;
}

.abt-testimonials__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.abt-testimonials__name {
  font-family: var(--font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
}

.abt-testimonials__role {
  font-family: var(--font);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white-dim);
}

.abt-testimonials__nav {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.abt-testimonials__btn {
  background: none;
  border: 1px solid var(--white-dim);
  color: var(--white);
  width: 48px;
  height: 48px;
  font-size: 18px;
  cursor: pointer;
  transition: border-color 0.3s ease, opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt-testimonials__btn:hover {
  border-color: var(--white);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
  .abt-hero__inner {
    gap: 50px;
  }

  .abt-hero__right {
    width: 42%;
  }
}

@media (max-width: 968px) {
  .abt-hero {
    padding: 110px 30px 0;
  }

  .abt-hero__inner {
    flex-direction: column;
    gap: 50px;
  }

  .abt-hero__left {
    padding-top: 0;
    order: 1;
  }

  .abt-hero__right {
    width: 70%;
    align-self: flex-end;
    order: 0;
  }

  .abt-hero__name-line--2 {
    padding-left: 30px;
  }

  .abt-hero__bio {
    max-width: 100%;
  }

  .abt-hero__title-line {
    padding-top: 40px;
  }

  .abt-wwd {
    padding: 120px 30px;
  }

  .abt-testimonials {
    padding: 60px 30px 120px;
  }

  .abt-testimonials__item {
    padding: 36px;
  }
}

@media (max-width: 640px) {
  .abt-hero {
    padding: 100px 20px 0;
  }

  .abt-hero__inner {
    gap: 40px;
  }

  .abt-hero__right {
    width: 85%;
  }

  .abt-hero__left {
    gap: 40px;
  }

  .abt-hero__name-line--2 {
    padding-left: 20px;
  }

  .abt-hero__title-line {
    padding-top: 30px;
  }

  .abt-wwd {
    padding: 80px 20px;
  }

  .abt-testimonials {
    padding: 40px 20px 100px;
  }

  .abt-testimonials__track {
    gap: 20px;
  }

  .abt-testimonials__item {
    width: 100%;
    padding: 32px 24px;
  }

  .abt-testimonials__quote p {
    font-size: 14px;
  }
}
