/* =========================================================
   WALL TO WALL — About Page
   ========================================================= */

/* ---------- HERO ---------- */
.hero__frame--about {
  height: auto;
  min-height: 460px;
  padding-bottom: 4rem;
}

.hero__frame--about .hero__bg {
  object-position: center 70%;
}

/* Smaller title so 4 lines always fit within the frame */
.hero__frame--about .hero__title {
  font-size: clamp(2.25rem, 3.8vw, 3.5rem);
}

/* =========================================================
   OUR STORY
   ========================================================= */
.about-story {
  padding-block: clamp(4rem, 7vw, 7rem);
}

.about-story__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-story__copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-story__copy .eyebrow {
  margin-bottom: 0.5rem;
}

.about-story__copy p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 44ch;
}

/* Stats */
.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-rule);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.about-stat__num {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1;
}

.about-stat__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Media */
.about-story__media {
  aspect-ratio: 4/5;
  overflow: hidden;
}

.about-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   VALUES (green block)
   ========================================================= */
.about-values {
  padding-block: clamp(3.5rem, 6vw, 6rem);
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.about-value {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-value__icon {
  width: 36px;
  color: var(--color-alpine-fog);
}

.about-value__icon svg {
  width: 100%;
  height: auto;
}

.about-value h3 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-warm-ivory);
  line-height: 1.2;
}

.about-value p {
  font-size: 0.9rem;
  color: rgba(242, 238, 229, 0.65);
  line-height: 1.6;
  max-width: 24ch;
}

/* =========================================================
   OUR PROCESS
   ========================================================= */
.about-process {
  background: var(--color-fog-light);
  padding-block: clamp(4rem, 7vw, 7rem);
}

.about-process__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.about-process__copy {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.about-process__copy .eyebrow {
  margin-bottom: 0;
}

.about-process__copy h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text-primary);
}

/* Steps list */
.about-process__steps {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.about-step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding-block: 2rem;
  border-bottom: 1px solid var(--color-rule);
  align-items: start;
}

.about-step:first-child {
  border-top: 1px solid var(--color-rule);
}

.about-step__num {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-alpine-fog);
  letter-spacing: -0.02em;
  padding-top: 2px;
}

.about-step__body h3 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.about-step__body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =========================================================
   CTA — image only, no green overlay
   ========================================================= */
.about-cta {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.about-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.about-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(15, 22, 32, 0.80) 0%,
    rgba(15, 22, 32, 0.50) 55%,
    rgba(15, 22, 32, 0.15) 100%
  );
  z-index: -1;
}

.about-cta__content {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.about-cta__content h2 {
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--color-warm-ivory);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .about-story__inner {
    grid-template-columns: 1fr;
  }

  .about-story__media {
    aspect-ratio: 16/9;
    order: -1;
  }

  .about-values__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-process__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .about-stats {
    gap: 2rem;
  }
}
