/* ABOUT PAGE ONLY
   This file is scoped with .about-* and .founder-* classes
   so it won’t mess with your homepage or story layout.
*/

.about-main {
  padding: 60px 0 80px;
  background: #faf8f3;
}

/* Top split: image + text */

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 64px;
}

.about-hero-image img {
  width: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  height: 44em;
}

.about-kicker {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #b48b4a;
  margin-bottom: 8px;
}

.about-title {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin-bottom: 14px;
  color: #1a1a1a;
}

.about-lede {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 18px;
}

.about-hero-text p {
  font-family: "Inter", sans-serif;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 14px;
}

/* Generic sections */

.about-section {
  margin-bottom: 60px;
}

.about-subtitle {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #1f2933;
}

/* Three-column cards for "What you'll find" */

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.about-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 20px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(217, 203, 171, 0.5);
}

.about-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.about-card p {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
}

/* Founder block */

.founder-section {
  padding-top: 10px;
  border-top: 1px solid rgba(217, 203, 171, 0.6);
}

.founder-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;  /* ⭐ was 'start' – this vertically centers image + bio */
}

.founder-photo-wrap {
  max-width: 180px;
  display: flex;           /* ⭐ new: makes it easy to center the photo */
  align-items: center;     /* vertically center inside the grid row */
  justify-content: center; /* horizontally center inside its column */
}

.founder-photo {
  width: 100%;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.founder-text {
  font-family: "Inter", sans-serif;
}

.founder-name {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.founder-role {
  font-size: 0.9rem;
  color: #7b7160;
  margin-bottom: 14px;
}

.founder-text p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: #424242;
  margin-bottom: 10px;
}

/* Responsive tweaks */

@media (max-width: 900px) {
  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-hero-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .about-main {
    padding: 40px 0 60px;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .about-lede {
    font-size: 1.1rem;
  }

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

  .founder-card {
    grid-template-columns: 1fr;
    justify-items: center;   /* center image + text horizontally on mobile */
    text-align: left;
  }

  .founder-photo-wrap {
    max-width: 160px;
    margin-bottom: 10px;
  }

  .founder-text {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 1.6rem;
  }

  .about-hero-text p,
  .founder-text p {
    font-size: 0.94rem;
  }
}
