/* About page, alternative design. Loads after home-alternative.css. */

.page-about .site-header {
  position: sticky;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.page-about .site-header::after {
  display: none;
}

/* ---------- Split intro ---------- */
.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
  padding: 72px 0 96px;
}
.portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  background: var(--ink-soft);
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-settle 6s var(--ease-out) forwards;
}
.portrait-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.65);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.about-intro h1 {
  font-size: clamp(34px, 3.8vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.035em;
}
.about-intro h1 span {
  color: var(--gold);
}
.about-intro .tagline {
  margin-top: 22px;
  font-size: 18px;
  color: var(--muted);
}
.about-intro .intro-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 30px;
  align-items: center;
}

/* ---------- Story ---------- */
.story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  padding-bottom: 112px;
}
.story h2 {
  font-size: clamp(26px, 2.6vw, 34px);
}
.story p {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.65;
}
.story .eyebrow {
  margin-bottom: 14px;
}

/* ---------- Why we exist (dark) ---------- */
.why {
  background: var(--ink);
  color: var(--white);
  padding-block: 112px;
}
.why .eyebrow {
  color: var(--gold);
}
.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
}
.why h2 {
  font-size: clamp(34px, 4vw, 56px);
}
.why p {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}
.why p + p {
  margin-top: 18px;
}
.why .big {
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--gold);
}
.why .plain {
  color: var(--white);
}

/* ---------- What you get ---------- */
.getting {
  padding-block: 112px;
  background: var(--paper);
}
.getting-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
  counter-reset: item;
}
.getting-card {
  counter-increment: item;
  position: relative;
  padding: 32px 30px 32px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform 0.4s var(--ease-out), border-color 0.3s;
}
.getting-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.getting-card::before {
  content: counter(item, decimal-leading-zero);
  display: block;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
}
.getting-card h3 {
  font-size: 22px;
  letter-spacing: -0.025em;
}
.getting-card p {
  margin-top: 10px;
  font-size: 16px;
  color: var(--muted);
}

/* ---------- Now ---------- */
.now {
  padding-block: 112px;
}
.now-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
}
.now h2 {
  font-size: clamp(34px, 4vw, 56px);
}
.now p {
  font-size: 18px;
  line-height: 1.65;
}
.now p + p {
  margin-top: 18px;
}
.now .studio-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Signature card in contact section ---------- */
.signature {
  margin-top: 40px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.signature strong {
  color: var(--white);
}

@media (max-width: 860px) {
  .about-intro {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 0 64px;
  }
  .portrait {
    aspect-ratio: 4 / 5;
  }
  .story,
  .why-grid,
  .now-grid,
  .getting-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .story {
    padding-bottom: 72px;
  }
  .why,
  .getting,
  .now {
    padding-block: 72px;
  }
  .getting-grid {
    margin-top: 32px;
    gap: 14px;
  }
  .getting-card {
    padding: 24px 22px;
  }
}
