/* about.css — Styles for the /about founder bio page. Does NOT own nav, footer, or theme vars. */

.about-hero {
  padding: 100px 5vw 80px;
  display: flex;
  justify-content: center;
}

.about-hero-inner {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-photo-wrap {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--accent-light);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 36px;
  flex-shrink: 0;
}

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

.about-tag {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
}

.about-hero-inner h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 8px;
}

.about-title {
  font-size: 18px;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 40px;
}

.about-bio {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--fg-muted);
  text-align: left;
}

.about-bio p {
  margin-bottom: 20px;
}

.about-bio p:last-child {
  margin-bottom: 0;
}

/* Mission strip below the bio */
.about-mission {
  padding: 80px 5vw;
  background: var(--fg);
  color: var(--white);
  text-align: center;
}

.about-mission-inner {
  max-width: 700px;
  margin: 0 auto;
}

.about-mission h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 20px;
}

.about-mission h2 em {
  color: var(--accent);
  font-style: italic;
}

.about-mission p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.about-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 150, 62, 0.3);
}

/* Footer specific to about page — mirrors legal page footer */
.about-page-footer {
  padding: 40px 5vw;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about-page-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-page-footer-brand {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--fg);
}

.about-page-footer-links {
  display: flex;
  gap: 20px;
}

.about-page-footer-links a {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.about-page-footer-links a:hover {
  color: var(--accent);
}

/* About nav — consistent with legal pages */
.about-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.about-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--fg);
  text-decoration: none;
}

.about-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.about-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.15s ease;
}

.about-nav-links a:hover {
  color: var(--fg);
  background: var(--bg-alt);
}

.btn-nav-cta {
  display: inline-block;
  background: var(--fg);
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 9px 20px !important;
  border-radius: 10px !important;
  margin-left: 8px;
  transition: all 0.15s ease;
}

.btn-nav-cta:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .about-hero {
    padding: 80px 6vw 60px;
  }

  .about-photo-wrap {
    width: 160px;
    height: 160px;
  }

  .about-bio {
    font-size: 16px;
  }

  .about-mission {
    padding: 60px 6vw;
  }

  .about-page-footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .about-photo-wrap {
    width: 140px;
    height: 140px;
  }

  .about-nav-links a:not(.btn-nav-cta) {
    display: none;
  }

  .btn-nav-cta {
    margin-left: 0 !important;
  }
}
