/* ============================================================
   ABOUT PAGE — Siam Ivory Spa
============================================================ */

/* ── HERO ─────────────────────────────────────────────── */
.about-hero .page-hero__overlay,
.about-hero .page-hero__bg::after {
  background: linear-gradient(
    to right,
    rgba(42, 31, 22, 0.78) 0%,
    rgba(42, 31, 22, 0.52) 55%,
    rgba(42, 31, 22, 0.28) 100%
  );
}

/* Push hero content below fixed nav on all sizes */
.about-hero {
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 4rem;
  min-height: 65vh;
}

.page-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ── BRAND STORY ──────────────────────────────────────── */
.about-story {
  background: var(--warm-white);
  padding: var(--space-2xl) 1.5rem;
}

.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-story__img-col {
  position: relative;
}

.about-story__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 32px 80px rgba(42,31,22,0.16), 0 8px 24px rgba(42,31,22,0.08);
}

.about-story__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease;
}

.about-story__img-wrap:hover .about-story__img {
  transform: scale(1.03);
}

.about-story__img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 60%;
  border: 1px solid rgba(184,146,74,0.22);
  border-radius: 4px;
  pointer-events: none;
  z-index: -1;
}

.about-story__body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.95;
  margin-bottom: 1.25rem;
}

.about-story__rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
  margin: 2rem 0;
}

.about-story__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about-story__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.about-story__stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--brown);
  line-height: 1;
}

.about-story__stat-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-story__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(184,146,74,0.25);
}

/* ── FOUNDER ──────────────────────────────────────────── */
.about-founder {
  position: relative;
  padding: var(--space-2xl) 1.5rem;
  overflow: hidden;
}

.about-founder__bg {
  position: absolute;
  inset: 0;
}

.about-founder__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-founder__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42,31,22,0.92) 0%,
    rgba(42,31,22,0.82) 50%,
    rgba(42,31,22,0.72) 100%
  );
}

.about-founder__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--max-w);
  margin-inline: auto;
}

.about-founder__quote-wrap {
  position: relative;
}

.about-founder__mark {
  display: block;
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.35;
  margin-bottom: 1.5rem;
  user-select: none;
}

.about-founder__quote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--warm-white);
  line-height: 1.7;
  margin: 0 0 1.5rem;
  border: none;
  padding: 0;
}

.about-founder__attr {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-founder__label {
  color: var(--gold-light);
}

.about-founder__headline {
  color: var(--warm-white);
}

.about-founder__body {
  font-size: 1rem;
  color: rgba(250,247,243,0.72);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

/* ── THE DIFFERENCE ───────────────────────────────────── */
.about-diff {
  background: var(--cream);
  padding: var(--space-2xl) 1.5rem;
}

.about-diff__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: var(--space-lg);
}

.about-diff__card {
  background: var(--warm-white);
  border: 1px solid rgba(184,146,74,0.12);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.about-diff__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(42,31,22,0.09);
  border-color: rgba(184,146,74,0.3);
}

.about-diff__card-icon {
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.about-diff__card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--brown);
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.about-diff__card-body {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
  flex: 1;
}

/* ── PHILOSOPHY ───────────────────────────────────────── */
.about-philosophy {
  position: relative;
  padding: var(--space-2xl) 1.5rem;
  overflow: hidden;
}

.about-philosophy__bg {
  position: absolute;
  inset: 0;
}

.about-philosophy__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-philosophy__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(42,31,22,0.88) 0%,
    rgba(42,31,22,0.76) 60%,
    rgba(42,31,22,0.55) 100%
  );
}

.about-philosophy__inner {
  position: relative;
  z-index: 1;
  max-width: 68ch;
}

.about-philosophy__label {
  color: var(--gold-light);
}

.about-philosophy__headline {
  color: var(--warm-white);
}

.about-philosophy__body {
  font-size: 1.05rem;
  color: rgba(250,247,243,0.74);
  line-height: 1.95;
  margin-bottom: 1.25rem;
}

.about-philosophy__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.about-philosophy__pill {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,247,243,0.75);
  border: 1px solid rgba(184,146,74,0.35);
  border-radius: 100px;
  padding: 0.4rem 1rem;
}

/* ── TRUST / REVIEWS ──────────────────────────────────── */
.about-trust {
  background: var(--beige);
  padding: var(--space-2xl) 1.5rem;
}

.about-trust__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  max-width: var(--max-w);
  margin-inline: auto;
}

.about-trust__body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.95;
  margin-bottom: 2rem;
}

.about-trust__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-trust__reviews {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.trust-review {
  background: var(--warm-white);
  border-left: 2px solid rgba(184,146,74,0.35);
  padding: 1.5rem 1.75rem;
  border-radius: 0 4px 4px 0;
}

.trust-review__stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.trust-review__text {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-style: italic;
  color: var(--brown);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.trust-review__author {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── TEAM ─────────────────────────────────────────────── */
.about-team {
  background: var(--warm-white);
  padding: var(--space-2xl) 1.5rem;
}

.about-team__intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 56ch;
  margin: 1rem auto 0;
}

.about-team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: var(--space-lg);
  max-width: 900px;
  margin-inline: auto;
  margin-top: var(--space-lg);
}

.therapist-card {
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(184,146,74,0.12);
  transition: transform var(--transition), box-shadow var(--transition);
}

.therapist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(42,31,22,0.1);
}

.therapist-card__img-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--beige);
}

.therapist-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s ease;
  display: block;
}

.therapist-card:hover .therapist-card__img {
  transform: scale(1.04);
}

.therapist-card__body {
  padding: 2rem 2rem 2.25rem;
}

.therapist-card__name {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--brown);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.therapist-card__role {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.therapist-card__bio {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.therapist-card__best {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.therapist-card__best-label {
  font-weight: 700;
  color: var(--brown);
  display: block;
  margin-bottom: 0.2rem;
}

.therapist-card__btn {
  display: inline-flex;
  align-items: center;
}

/* ── THE EXPERIENCE / JOURNEY ────────────────────────── */
.about-journey {
  background: var(--warm-white);
  padding: var(--space-2xl) 1.5rem;
}

.about-journey__intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 54ch;
  margin: 1rem auto 0;
}

.about-journey__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-lg);
}

.journey-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 460px;
}

.journey-step--reverse {
  direction: rtl;
}
.journey-step--reverse > * {
  direction: ltr;
}

.journey-step__img-wrap {
  overflow: hidden;
  position: relative;
}

.journey-step__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s ease;
}

.journey-step:hover .journey-step__img {
  transform: scale(1.04);
}

.journey-step__content {
  background: var(--cream);
  padding: 4rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.journey-step--reverse .journey-step__content {
  background: var(--beige);
}

.journey-step__num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(184,146,74,0.18);
  line-height: 1;
  position: absolute;
  top: 2rem;
  right: 3rem;
  user-select: none;
  pointer-events: none;
}

.journey-step--reverse .journey-step__num {
  right: auto;
  left: 3rem;
}

.journey-step__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 400;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.journey-step__body {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.95;
  margin-bottom: 1.5rem;
  max-width: 46ch;
}

.journey-step__btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ── FINAL CTA OVERRIDES ──────────────────────────────── */
.about-cta__label {
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  display: block;
}

.about-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .about-diff__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .about-story__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-story__img-accent { display: none; }

  .about-founder__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-trust__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-team__grid {
    max-width: 600px;
  }
}

@media (max-width: 900px) {
  .journey-step,
  .journey-step--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    min-height: unset;
  }
  .journey-step__img-wrap { width: 100%; aspect-ratio: 4/3; min-height: unset; overflow: hidden; }
  .journey-step__content { padding: 2.5rem 2rem; }
  .journey-step__num { font-size: 3.5rem; top: 1.5rem; right: 1.5rem; }
  .journey-step--reverse .journey-step__num { left: auto; right: 1.5rem; }
}

@media (max-width: 480px) {
  .journey-step__img-wrap { aspect-ratio: 3/2; }
}

@media (max-width: 768px) {
  body { overflow-x: hidden; }
  .about-story { padding: 3.5rem 0; }
  .about-story__inner { padding-inline: 1.5rem; }
  .about-story__img-wrap { width: 100%; aspect-ratio: 4/3; min-height: unset; overflow: hidden; }
  .about-story__img { width: 100%; height: 100%; object-fit: cover; }
  .about-story__stats { gap: 1.25rem; }
  .about-story__stat-num { font-size: 1.8rem; }

  .about-founder { padding: 5rem 0; min-height: 500px; }
  .about-founder__inner { padding-inline: 1.5rem; }
  .about-founder__mark { font-size: 5rem; }
  .about-founder__quote { font-size: 1.25rem; }

  .about-philosophy { min-height: 500px; }

  .about-diff { padding: 3.5rem 0; }
  .about-diff__grid {
    grid-template-columns: 1fr;
    padding-inline: 1.5rem;
    gap: 1.25rem;
  }
  .about-diff__card { padding: 1.75rem 1.5rem; }

  .about-philosophy { padding: 4rem 0; }
  .about-philosophy__inner { padding-inline: 1.5rem; }

  .about-trust { padding: 3.5rem 0; }
  .about-trust__inner { padding-inline: 1.5rem; }
  .about-trust__actions { flex-direction: column; align-items: stretch; }
  .about-trust__actions .btn { text-align: center; justify-content: center; width: 100%; }

  .about-team { padding: 3.5rem 0; }
  .about-team__grid {
    grid-template-columns: 1fr;
    padding-inline: 1.5rem;
    max-width: 100%;
    gap: 2rem;
  }

  .therapist-card__img-wrap { aspect-ratio: 3/2; }
  .therapist-card__img { object-position: center 20%; }

  .about-hero { padding-top: 6rem; padding-bottom: 3rem; overflow: hidden; }
  .about-hero .page-hero__content { padding-inline: 1.5rem; width: 100%; box-sizing: border-box; max-width: 100%; overflow-wrap: break-word; word-break: break-word; }
  .about-hero .page-hero__sub br { display: none; }
  .page-hero__eyebrow { display: none; }
  .page-hero__actions { flex-direction: column; align-items: stretch; gap: 0.75rem; width: 100%; }
  .page-hero__actions .btn { text-align: center; justify-content: center; width: 100%; box-sizing: border-box; max-width: 100%; }

  .about-cta__actions { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .about-cta__actions .btn { text-align: center; justify-content: center; width: 100%; }

  .about-journey { padding: 3.5rem 0; }
  .about-journey__steps { padding-inline: 0; }
  .journey-step__content { padding: 2rem 1.5rem; }
  .journey-step__btn { width: 100%; text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .about-story__stats { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .about-story__stat-divider { display: none; }
  .about-diff__grid { grid-template-columns: 1fr; }
  .about-philosophy__pills { gap: 0.4rem; }
  .about-philosophy__pill { font-size: 0.6rem; padding: 0.35rem 0.8rem; }
}
