/* ── ABOUT PAGE STYLES ── */

.about-section {
  min-height: 100vh;
  padding: 128px 24px 90px;
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 68px;
  align-items: start;
}

/* Photo frame */
.about-frame {
  border: 2px solid rgba(223,183,76,0.32);
  padding: 10px;
  position: relative;
  border-radius: 16px 16px 6px 6px;
  box-shadow: 0 0 50px rgba(0,0,0,0.5), 0 0 80px rgba(223,183,76,0.06);
}
.about-frame::before {
  content: '';
  position: absolute;
  top: -8px; left: -8px; right: 8px; bottom: 8px;
  border: 1px solid rgba(223,183,76,0.14);
  pointer-events: none;
  border-radius: 18px 18px 8px 8px;
}
.about-frame img {
  width: 100%; display: block;
  border-radius: 10px 10px 4px 4px;
  filter: sepia(8%) saturate(0.95) brightness(0.95);
}
.about-name-plate {
  position: absolute; bottom: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  border: 1px solid var(--gold);
  padding: 8px 26px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.83rem; letter-spacing: 0.18em;
  color: var(--gold); white-space: nowrap;
  text-transform: uppercase;
  border-radius: 8px 8px 0 0;
}

/* Text side */
.about-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.77rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 14px;
}
.about-name {
  font-family: 'Alestyn', 'Palatino Linotype', 'Book Antiqua', Palatino, serif, 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--gold); line-height: 1.1; margin-bottom: 10px;
  text-shadow: 0 0 44px rgba(223,183,76,0.18);
}
.age-tag {
  display: inline-block; margin-bottom: 28px;
  border: 1px solid rgba(223,183,76,0.24);
  padding: 5px 18px;
  font-size: 0.82rem; letter-spacing: 0.12em;
  color: rgba(232,220,200,0.5);
  font-family: 'Cormorant Garamond', serif;
  border-radius: 999px;
}

/* Story text */
.about-story {
  font-size: 1.08rem; line-height: 1.96;
  color: rgba(232,220,200,0.78);
}
.about-story p { margin-bottom: 18px; }
.hl { color: var(--gold-light); font-style: italic; }

/* Stats row */
.about-stats {
  display: flex; gap: 32px;
  margin-top: 34px; padding-top: 28px;
  border-top: 1px solid rgba(223,183,76,0.18);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Alestyn', 'Palatino Linotype', 'Book Antiqua', Palatino, serif, 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  font-size: 1.85rem; color: var(--gold);
  display: block; line-height: 1;
  text-shadow: 0 0 26px rgba(223,183,76,0.3);
}
.stat-lbl {
  font-size: 0.76rem; letter-spacing: 0.14em;
  color: rgba(232,220,200,0.4); text-transform: uppercase;
  margin-top: 5px; display: block;
}

/* Instagram link */
.ig-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 30px; color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(223,183,76,0.26);
  padding-bottom: 4px;
  transition: border-color 0.3s, color 0.3s;
}
.ig-link:hover { border-color: var(--gold); color: var(--gold-light); }

/* Bottom CTA */
.about-cta-wrap {
  text-align: center; margin-top: 82px;
}
.about-cta-note {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: rgba(232,220,200,0.55);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 720px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-section { padding: 110px 20px 70px; }
}
