/* ── About page: disable scroll-snap, enable long-form reading ── */
html:has(body.page-about),
body.page-about {
  scroll-snap-type: none;
}

body.page-about main {
  padding-top: 85px;
}

/* ── Hero ── */
.about-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(85svh - 85px);
  padding: 120px 32px 128px;
  background: var(--navy);
  text-align: center;
}

.about-hero-inner {
  width: min(100%, 860px);
  margin: 0 auto;
}

.about-hero .eyebrow {
  color: var(--gold);
  margin-bottom: 28px;
}

.about-hero-heading {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.14;
  color: var(--gold-light);
}

.about-hero-heading .strong {
  color: var(--white);
  font-weight: 700;
}

.about-hero-sub {
  margin: 40px auto 0;
  max-width: 620px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

/* ── Shared section scaffolding ── */
.about-section {
  padding: 112px 32px;
}

.about-section-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.about-section.cream { background: var(--cream); }
.about-section.white { background: var(--white); }
.about-section.navy  { background: var(--navy); }

.about-heading {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 600;
  line-height: 1.22;
  color: var(--navy);
  max-width: 760px;
}

.about-body {
  margin-top: 24px;
  max-width: 620px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(61, 61, 61, 0.78);
}

.about-section.navy .about-heading { color: var(--white); }
.about-section.navy .about-body    { color: rgba(255, 255, 255, 0.78); }
.about-section.navy .eyebrow       { color: var(--gold); }

.centered {
  text-align: center;
}
.centered .about-heading,
.centered .about-body {
  margin-left: auto;
  margin-right: auto;
}

/* ── Origin: portrait + story ── */
.origin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.origin-portrait {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  overflow: hidden;
  background: #efe6d5;
  box-shadow: 0 18px 40px rgba(18, 21, 46, 0.18);
}

.origin-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.origin-eyebrow {
  color: var(--gold);
}

.origin-story .about-heading {
  max-width: 560px;
}

.origin-story .about-body {
  max-width: 560px;
}

.origin-frustrations {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  max-width: 560px;
}

.origin-frustrations li {
  position: relative;
  padding: 10px 0 10px 22px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(61, 61, 61, 0.78);
  border-top: 1px solid rgba(27, 32, 68, 0.08);
}

.origin-frustrations li:last-child {
  border-bottom: 1px solid rgba(27, 32, 68, 0.08);
}

.origin-frustrations li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.origin-quote {
  margin: 28px 0 0;
  padding: 22px 24px;
  max-width: 560px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.55);
  font-family: var(--font-heading);
  font-size: 17px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.55;
  color: var(--navy);
}

.origin-attribution {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(61, 61, 61, 0.6);
  text-transform: uppercase;
}

/* ── Team grid ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.team-card {
  padding: 32px 22px 28px;
  background: var(--cream);
  border: 1px solid rgba(27, 32, 68, 0.08);
  border-radius: 12px;
  text-align: center;
}

.team-monogram {
  width: 84px;
  height: 84px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
}

.team-role {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.team-note {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(61, 61, 61, 0.68);
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 6px 14px;
  border: 1px solid rgba(27, 32, 68, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.team-linkedin svg {
  color: var(--gold);
  transition: color 0.18s ease;
}

.team-linkedin:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.team-linkedin:hover svg {
  color: var(--gold-light);
}

.team-crew {
  margin-top: 44px;
  font-size: 14px;
  font-style: italic;
  color: rgba(61, 61, 61, 0.6);
  text-align: center;
}

/* ── Craft / the art ── */
.craft-pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.craft-pillar {
  padding: 10px 20px;
  border: 1px solid rgba(227, 199, 137, 0.3);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.03);
  letter-spacing: 0.02em;
}

.craft-foot {
  margin-top: 48px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(227, 199, 137, 0.55);
  text-align: center;
}

/* ── CTA tweaks ── */
body.page-about .cta-heading {
  white-space: normal;
  font-size: 36px;
  line-height: 1.18;
}

body.page-about .cta-sub {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(61, 61, 61, 0.7);
}

body.page-about .final-cta .trust-btn {
  width: auto;
  min-width: 220px;
  padding: 0 32px;
  margin-top: 44px;
  white-space: nowrap;
}

body.page-about .final-cta .trust-btn span {
  white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .about-hero-heading { font-size: 40px; }
  .about-heading { font-size: 30px; }
  .origin-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }
  .origin-story { order: 0; }
  .origin-portrait {
    order: 1;
    width: min(100%, 460px);
    height: auto;
    aspect-ratio: 3 / 2;
  }
  .origin-portrait img {
    object-fit: cover;
    object-position: center center;
  }
  .origin-story .about-heading,
  .origin-story .about-body {
    margin-left: auto;
    margin-right: auto;
  }
  .origin-frustrations,
  .origin-quote {
    text-align: left;
  }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
}

@media (max-width: 768px) {
  body.page-about main { padding-top: 68px; }
  .about-hero { padding: 72px 24px 80px; min-height: calc(85svh - 68px); }
  .about-hero-heading { font-size: 30px; line-height: 1.2; }
  .about-hero-sub { margin-top: 24px; font-size: 15px; }
  .about-section { padding: 64px 24px; }
  .about-heading { font-size: 26px; }
  .about-body { margin-top: 18px; font-size: 15px; line-height: 1.7; }
  .origin-portrait { width: min(100%, 380px); height: auto; aspect-ratio: 3 / 2; }
  .origin-frustrations li { font-size: 14px; padding: 9px 0 9px 20px; }
  .origin-frustrations li::before { top: 17px; }
  .origin-quote { font-size: 15px; padding: 18px 20px; }
  .team-grid { grid-template-columns: 1fr; gap: 18px; }
  .team-card { padding: 28px 22px 24px; }
  .craft-pillar { font-size: 13px; padding: 8px 16px; }
  body.page-about .cta-heading { font-size: 26px; }
  body.page-about .cta-sub { font-size: 14px; }
}
