/* =============================================================================
   about.css — Radiant Light Studios
   Styles for /about/. global.css is already loaded — no imports needed.
   ============================================================================= */

/* =============================================================================
   HERO
   Full-bleed image, 60vh, with gradient overlay and editorial quote.
   ============================================================================= */

.about-hero {
  position: relative;
  height: 60vh;
  min-height: 360px;
  overflow: hidden;
}

.about-hero__img-wrap {
  width: 100%;
  height: 100%;
}

.about-hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Gradient overlay — transparent top, subtle bg tint at bottom */
.about-hero__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    oklch(from var(--color-bg) l c h / 0.55) 100%
  );
  pointer-events: none;
}

/* Editorial quote — sits above the gradient */
.about-hero__quote {
  position: absolute;
  bottom: 10%;
  left: 8%;
  z-index: 2;
  margin: 0;
  max-width: 600px;
}

.about-hero__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.3;
  color: var(--color-luminous);
  text-shadow: 0 2px 24px oklch(22% 0.035 280 / 0.35);
}

/* =============================================================================
   ORIGIN
   Two-column layout: image left (45%), text right (flex 1).
   Stacks to single column on mobile.
   ============================================================================= */

.about-origin {
  display: flex;
  gap: var(--space-12);
  align-items: flex-start;
  padding: var(--space-16) var(--space-6);
  max-width: 1200px;
  margin: 0 auto;
}

.about-origin__img-col {
  flex: 0 0 45%;
  max-height: 600px;
  overflow: hidden;
  border-radius: 2px;
}

.about-origin__img-wrap {
  height: 100%;
}

.about-origin__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-origin__text {
  flex: 1;
  padding-top: var(--space-4);
}

/* H1 — name / tagline lines */
.about-origin__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--type-display);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.about-origin__body p {
  margin-bottom: var(--space-5);
  line-height: 1.8;
}

/* Pull quote — Cormorant italic with accent left border */
.about-pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--type-headline);
  line-height: 1.4;
  color: var(--color-accent);
  border-left: 2px solid var(--color-accent);
  padding-left: var(--space-5);
  margin: var(--space-8) 0;
}

.about-pull-quote p {
  margin: 0;
  opacity: 1; /* Override .rls-body opacity — this is accent copy */
}

/* =============================================================================
   VALUES
   Full-width surface background wrapping a 3-column grid.
   ============================================================================= */

.about-values-wrap {
  background: var(--color-surface);
  padding: var(--space-2) 0; /* Visual breathing room around the inner grid */
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  padding: var(--space-16) var(--space-6);
  max-width: 1200px;
  margin: 0 auto;
}

.about-value__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--type-subhead);
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  font-weight: 400;
}

.about-value__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--type-small);
  line-height: 1.8;
  color: var(--color-text);
  opacity: 0.7;
}

/* =============================================================================
   PERSONAL
   Centered, quiet section with CTA.
   ============================================================================= */

.about-personal {
  max-width: 600px;
  margin: var(--space-16) auto;
  padding: 0 var(--space-6);
  text-align: center;
}

.about-personal .rls-body {
  margin-bottom: var(--space-6);
}

.about-personal .rls-cta {
  margin-top: var(--space-2);
}

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

/* Tablet and below — stack origin to single column */
@media (max-width: 900px) {
  .about-origin {
    flex-direction: column;
    gap: var(--space-8);
    padding: var(--space-10) var(--space-4);
  }

  .about-origin__img-col {
    flex: unset;
    width: 100%;
    max-height: 420px;
  }

  .about-origin__text {
    padding-top: 0;
  }
}

/* Tablet — values 2 column */
@media (max-width: 900px) {
  .about-values {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    padding: var(--space-10) var(--space-4);
  }
}

/* Mobile — values 1 column */
@media (max-width: 480px) {
  .about-hero__quote p {
    font-size: 1.25rem;
  }

  .about-values {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    padding: var(--space-8) var(--space-4);
  }

  .about-personal {
    padding: 0 var(--space-4);
    margin: var(--space-10) auto;
  }
}
