/* =========================================================================
   SHARPER HUMAN — About page specific styles
   ========================================================================= */

/* ---------- ABOUT HERO ---------- */
.about-hero {
  padding: 200px 0 clamp(80px, 9vw, 140px);
  background: var(--black);
  border-bottom: 1px solid var(--rule-dark);
  position: relative;
}
.about-hero .eyebrow { margin-bottom: 36px; }
.about-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  max-width: 14ch;
}
.about-hero__title em {
  color: var(--tan);
  font-style: italic;
  font-weight: 300;
}
.about-hero__sub {
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 300;
  opacity: 0.65;
  max-width: 540px;
  font-style: italic;
}

/* ---------- FOUNDER STORY (light) ---------- */
.founder-section { padding-top: clamp(72px, 8vw, 120px); padding-bottom: clamp(72px, 8vw, 120px); }
.founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.05fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.founder-photo {
  position: relative;
  background: var(--bone-deep);
  border: 1px solid var(--rule-light);
  overflow: hidden;
}
.founder-photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.02);
}
.founder-photo__caption {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  border-top: 1px solid var(--rule-light);
  opacity: 0.75;
}

.founder-copy { padding-top: 16px; }
.founder-quote {
  margin: 0 0 44px;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  position: relative;
}
.founder-quote em {
  color: var(--tan-soft);
  font-style: italic;
  font-weight: 400;
}
.founder-quote .open-quote {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 84px;
  line-height: 0.6;
  color: var(--tan-soft);
  opacity: 0.55;
  margin-bottom: 12px;
}
.founder-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}
.founder-body p {
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
  color: var(--ink);
  opacity: 0.78;
  max-width: 580px;
}
.founder-body p strong { font-weight: 500; opacity: 1; }
.founder-attr {
  padding-top: 22px;
  border-top: 1px solid var(--rule-light);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.founder-attr .name {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.founder-attr .role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.55;
}

@media (max-width: 880px) {
  .founder-grid { grid-template-columns: 1fr; }
}

/* ---------- SET-UP & 3X CHEAPER (dark) ---------- */
.setup-section { padding-top: clamp(80px, 9vw, 140px); padding-bottom: clamp(80px, 9vw, 140px); }
.setup-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.setup-photo {
  background: linear-gradient(155deg, #1a1815 0%, #0a0a0a 100%);
  border: 1px solid var(--rule-dark);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.setup-photo img {
  width: 70%;
  max-width: 360px;
  height: auto;
  display: block;
  filter: contrast(1.08) brightness(1.04);
}
.setup-photo__caption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tan);
  opacity: 0.85;
  text-align: center;
}

.setup-copy { padding-top: 16px; }
.setup-copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 36px;
  max-width: 14ch;
}
.setup-copy h2 em {
  color: var(--tan);
  font-style: italic;
  font-weight: 300;
}
.setup-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 56px;
}
.setup-body p {
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
  opacity: 0.72;
  max-width: 620px;
}
.setup-body strong { font-weight: 500; color: var(--tan); }

.setup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-top: 1px solid var(--rule-dark);
  padding-top: 36px;
}
.setup-stat { display: flex; flex-direction: column; gap: 10px; }
.setup-stat__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--bone);
}
.setup-stat__num sup {
  font-size: 0.55em;
  color: var(--tan);
  font-weight: 300;
  margin-left: 2px;
  vertical-align: super;
  line-height: 0;
  top: -0.1em;
  position: relative;
}
.setup-stat__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.55;
}

@media (max-width: 880px) {
  .setup-grid { grid-template-columns: 1fr; }
  .setup-stats { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- MORE THAN A SUPPLEMENT (light) ---------- */
.more-section { padding-top: clamp(72px, 8vw, 120px); padding-bottom: clamp(72px, 8vw, 120px); }
.more-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.more-copy { padding-top: 16px; }
.more-copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 36px;
  max-width: 12ch;
  color: var(--ink);
}
.more-body { display: flex; flex-direction: column; gap: 18px; max-width: 540px; }
.more-body p {
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
  color: var(--ink);
  opacity: 0.78;
}
.more-body p strong { font-weight: 500; opacity: 1; }
.more-link {
  color: var(--tan-soft);
  border-bottom: 1px solid var(--tan-soft);
  padding-bottom: 1px;
  font-weight: 500;
  transition: color 0.2s;
}
.more-link:hover { color: var(--ink); border-color: var(--ink); }

.more-photo {
  background: var(--ink);
  border: 1px solid var(--rule-light);
  overflow: hidden;
}
.more-photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.04);
}
.more-photo__caption {
  padding: 16px 22px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--bone-soft);
  border-top: 1px solid var(--rule-light);
  opacity: 0.75;
}

@media (max-width: 880px) {
  .more-grid { grid-template-columns: 1fr; }
}

/* ---------- CTA STRIP ---------- */
.cta-strip { padding-top: clamp(64px, 7vw, 96px); padding-bottom: clamp(64px, 7vw, 96px); border-top: 1px solid var(--rule-dark); }
.cta-strip__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
}
.cta-strip__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 20ch;
}
.cta-strip__action {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

@media (max-width: 720px) {
  .cta-strip__inner { grid-template-columns: 1fr; }
}
