/* ============================================================
   Sour Life Bakery — About Page
   ============================================================ */

/* ── Page Hero ──────────────────────────────────────────────── */
.about-hero {
  text-align: center;
  padding: clamp(60px, 10vw, 100px) 24px clamp(40px, 6vw, 60px);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(143, 175, 122, 0.15) 0%, transparent 70%);
}

.about-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
}

.about-title em {
  font-style: italic;
  color: var(--green-dark);
}

/* ── Main wrapper ───────────────────────────────────────────── */
.about-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* ── Intro Section ──────────────────────────────────────────── */
.about-intro-section {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
  padding: clamp(40px, 8vw, 80px) 0;
}

/* Photo */
.about-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--cream-dark);
  box-shadow: var(--shadow-lift);
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Fallback shown when image 404s */
.about-photo-placeholder .about-photo {
  display: none;
}

.about-photo-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  color: var(--text-ghost);
  font-size: 0.85rem;
}

.about-photo-placeholder .about-photo-fallback {
  display: flex;
}

/* Name tag on photo */
.about-photo-name-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(30,24,18,0.82) 0%, transparent 100%);
  padding: 40px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-photo-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 500;
  color: #fff;
  display: block;
}

.about-photo-role {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  display: block;
}

/* Text */
.about-intro-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 8px;
}

.about-intro-text .section-eyebrow {
  display: block;
  margin-bottom: 2px;
}

.about-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 4px;
}

.about-section-title em {
  font-style: italic;
  color: var(--green-dark);
}

.about-intro-text p {
  font-size: 0.96rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* Signature */
.about-signature-wrap {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--cream-deeper);
}

.about-signature-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--green-dark);
  font-weight: 400;
}

/* ── Pull Quote ─────────────────────────────────────────────── */
.about-quote-section {
  padding: clamp(32px, 6vw, 56px) 0;
  border-top: 1px solid var(--cream-deeper);
  border-bottom: 1px solid var(--cream-deeper);
}

.about-quote {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
}

.about-quote p::before {
  content: '\201C';
  font-size: 4rem;
  font-family: var(--font-heading);
  color: var(--green-light);
  position: absolute;
  top: -28px;
  left: -10px;
  line-height: 1;
  opacity: 0.6;
}

.about-quote cite {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-dark);
  font-style: normal;
}

.quote-break { display: none; }

/* ── Values Section ─────────────────────────────────────────── */
.about-values-section {
  padding: clamp(48px, 8vw, 80px) 0 clamp(40px, 6vw, 64px);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.about-value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--cream-deeper);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.about-value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
}

.about-value-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.about-value-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.about-value-text {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── CTA Banner ─────────────────────────────────────────────── */
.about-cta-section {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-pale) 0%, #e8f0de 100%);
  border: 1px solid var(--green-light);
  padding: clamp(40px, 7vw, 72px) clamp(28px, 6vw, 80px);
  text-align: center;
}

.about-cta-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about-cta-bread-emoji {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 4px;
}

.about-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.25;
}

.about-cta-sub {
  font-size: 0.96rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 480px;
}

.about-cta-btn {
  display: inline-block;
  margin-top: 8px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.about-cta-btn:hover {
  background: var(--green-dark);
  box-shadow: 0 4px 18px rgba(109, 143, 89, 0.38);
  transform: translateY(-2px);
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--cream-dark);
  border-top: 1px solid var(--cream-deeper);
  padding: 32px 24px;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-ghost);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (min-width: 900px) {
  .quote-break { display: inline; }
}

@media (max-width: 768px) {
  .about-intro-section {
    grid-template-columns: 1fr;
  }

  .about-photo-wrap {
    aspect-ratio: 4 / 3;
    max-width: 460px;
    margin: 0 auto;
  }

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

  .about-quote p::before {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 960px) {
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-value-card:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}
