/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Inter', sans-serif;
  background: #fafafa;
  color: #111;
}

/* HEADER */
.about-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 36px;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.about-header .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  letter-spacing: 2px;
}

.about-header .back {
  text-decoration: none;
  font-size: 14px;
  color: #000;
}

/* HERO */
.about-hero {
  padding: 110px 20px 90px;
  text-align: center;
}

.about-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  margin-bottom: 12px;
}

.about-hero p {
  font-size: 15px;
  color: #666;
}

/* SECTIONS */
.about-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px;
}

.about-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  margin-bottom: 18px;
}

.about-section p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

.about-section.alt {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* FOUNDER */
.founder-section {
  padding: 100px 24px;
}

.founder-card {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.founder-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,0.08);
}

/* INFO */
.founder-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  margin-bottom: 6px;
}

.founder-info span {
  font-size: 14px;
  color: #666;
  display: block;
  margin-bottom: 22px;
}

.founder-info p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

.social-links {
  margin-top: 26px;
  display: flex;
  gap: 18px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-links a:hover {
  background: #000;
  color: #fff;
}


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

  .founder-image img {
    height: 360px;
  }

  .about-hero h1 {
    font-size: 38px;
  }
}
