/* ============ ABOUT PAGE ============ */
body.about-page {
  background: #0a0a0a;
}

/* Shared inner wrap */
.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 2;
}

/* All sections are dark, edge-to-edge */
.about-cover,
.about-studio,
.about-stats,
.about-founder {
  position: relative;
  background: #0a0a0a;
  color: #f4f1ea;
}

/* -------- Hero cover image (full-bleed, right under nav) -------- */
.about-cover {
  width: 100%;
  height: clamp(520px, 88vh, 880px);
  overflow: hidden;
  margin: 0;
}
.about-cover__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  opacity: 0.78;
}

/* -------- About us -------- */
.about-studio { padding: 110px 0 80px; }
.studio-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 36px;
}
.about-h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(44px, 5.4vw, 84px);
  line-height: 1;
  letter-spacing: -0.022em;
  color: #f4f1ea;
  margin-bottom: 28px;
}
.about-h2 .it { font-style: italic; }

.studio-copy p {
  font-family: 'Instrument Serif', serif;
  font-size: 21px;
  line-height: 1.55;
  color: #c8c4ba;
  margin-bottom: 18px;
  max-width: 540px;
}
.studio-copy p:last-child { margin-bottom: 0; }

.studio-image {
  border-radius: 28px;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 3 / 4;
}
.studio-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

/* -------- Stats -------- */
.about-stats { padding: 40px 0 110px; }
.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 40px;
  border-top: 1px solid rgba(244,241,234,0.1);
}
.stat-cell { padding: 8px 0 0; }
.stat-cell__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c8c4ba;
  margin-bottom: 18px;
}
.stat-cell__label .dash {
  display: inline-block;
  width: 18px; height: 2px;
  background: #e9c46a;
}
.stat-cell__value {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(60px, 7vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #f4f1ea;
}

/* -------- Founder note -------- */
.about-founder {
  padding: 100px 0 140px;
  border-top: 1px solid rgba(244,241,234,0.08);
}
.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
  margin-top: 48px;
}
.founder-portrait {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 3 / 4;
}
.founder-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-portrait__caption {
  position: absolute;
  left: 18px; bottom: 18px;
  padding: 12px 16px;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  color: #f4f1ea;
}
.founder-portrait__caption .name {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.founder-portrait__caption .role {
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c8c4ba;
}
.founder-socials {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  gap: 14px;
}
.founder-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(10,10,10,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(244,241,234,0.22);
  color: #f4f1ea;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.founder-social:hover {
  background: #f4f1ea;
  color: #0a0a0a;
  transform: translateY(-2px);
}
.founder-social svg { display: block; }

.founder-letter {
  font-family: 'Instrument Serif', serif;
  color: #d4d0c6;
}
.founder-letter__open {
  font-family: 'Caveat', cursive;
  font-size: 36px;
  color: #f4f1ea;
  margin-bottom: 18px;
}
.founder-letter p {
  font-size: 20px;
  line-height: 1.55;
  margin-bottom: 22px;
  color: #cfcabe;
}
.founder-letter p:last-of-type { margin-bottom: 30px; }

.founder-letter__sig-only {
  border-top: 1px solid rgba(244,241,234,0.12);
  padding-top: 22px;
}
.founder-letter__sig-only .sig {
  font-family: 'Caveat', cursive;
  font-size: 56px;
  line-height: 1;
  color: #f4f1ea;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-inner { padding: 0 32px; }
  .about-studio { padding: 80px 0 60px; }
  .about-stats { padding: 30px 0 80px; }
  .about-founder { padding: 80px 0 100px; }
  .studio-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-portrait { max-width: 440px; }
}
@media (max-width: 720px) {
  .about-inner { padding: 0 22px; }
  .about-cover { height: clamp(360px, 60vh, 520px); }
  .about-cover__caption { left: 22px; bottom: 22px; font-size: 10px; padding: 8px 14px; }
  .about-studio { padding: 60px 0 50px; }
  .about-stats { padding: 20px 0 60px; }
  .about-founder { padding: 60px 0 80px; }
  .stat-cell__value { font-size: 56px; }
  .founder-letter p { font-size: 18px; }
  .founder-letter__sig-only .sig { font-size: 44px; }
}
@media (max-width: 480px) {
  .about-inner { padding: 0 16px; }
  .about-cover { height: clamp(280px, 56vh, 420px); border-radius: 18px; }
  .about-studio { padding: 48px 0 40px; }
  .about-stats { padding: 16px 0 48px; }
  .about-founder { padding: 48px 0 64px; }
  .studio-copy p { font-size: 16px; }
  .about-stats__grid { grid-template-columns: 1fr; gap: 28px; }
  .stat-cell__value { font-size: 44px; }
  .founder-letter p { font-size: 16px; }
  .founder-letter__sig-only .sig { font-size: 36px; }
  .founder-portrait__caption .name { font-size: 16px; }
  .founder-portrait__caption .role { font-size: 12px; }
}
