.about-page {
  background: var(--paper);
}

/* Match the shared storefront band opacity so the About page sits in the same
   visual world as the rest of the site rather than reading as a solid panel. */
.about-page .section-light {
  color: var(--ink);
  background: rgba(247, 241, 231, .90);
}

.about-page .section-dark {
  color: #f8ecdc;
  background:
    radial-gradient(circle at 82% 20%, rgba(116, 72, 139, .10), transparent 25rem),
    radial-gradient(circle at 12% 78%, rgba(196, 134, 65, .08), transparent 22rem),
    rgba(10, 8, 6, .92);
}

.about-page .section-light .eyebrow {
  color: var(--accent-deep);
}

.about-page .section-light h1,
.about-page .section-light h2 {
  color: var(--ink);
}

.about-page .section-light p {
  color: #6c5e52;
}

.about-page .section-dark .eyebrow {
  color: #d6a15c;
}

.about-page .section-dark h1,
.about-page .section-dark h2 {
  color: #f3dfc2;
}

.about-page .section-dark p {
  color: rgba(239, 224, 205, .77);
}

.about-banner {
  padding: clamp(82px, 9vw, 132px) 0;
}

.about-banner-inner {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.about-opening-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  grid-template-areas:
    "heading portrait"
    "copy portrait";
  gap: 30px clamp(44px, 7vw, 96px);
  align-items: center;
}

.about-opening .about-banner-heading {
  grid-area: heading;
  position: static;
}

.about-opening .about-banner-copy {
  grid-area: copy;
  max-width: 760px;
}

.about-portrait-frame {
  grid-area: portrait;
  width: min(100%, 380px);
  margin: 0;
  overflow: hidden;
  justify-self: end;
  border: 1px solid rgba(217, 176, 107, .2);
  border-radius: 24px;
  box-shadow: 0 26px 58px rgba(0, 0, 0, .24);
}

.about-portrait {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.about-banner-heading {
  position: sticky;
  top: 112px;
}

.about-banner-heading h1,
.about-banner-heading h2 {
  max-width: 650px;
  margin-bottom: 22px;
}

.about-banner-heading h1 {
  font-size: clamp(3.1rem, 6vw, 5.9rem);
}

.about-banner-heading h2 {
  font-size: clamp(2.3rem, 4.2vw, 4.4rem);
}

.about-lead {
  max-width: 600px;
  margin-bottom: 0;
  font-size: clamp(1.08rem, 1.65vw, 1.3rem);
  line-height: 1.65;
}

.about-banner-copy {
  display: grid;
  gap: 22px;
  max-width: 780px;
  padding-top: 4px;
}

.about-banner-copy p {
  margin: 0;
  font-size: clamp(1.02rem, 1.35vw, 1.12rem);
  line-height: 1.82;
}

.about-banner-copy p:first-child {
  font-size: clamp(1.08rem, 1.5vw, 1.2rem);
}

.about-actions {
  margin-top: 18px;
}

.about-page .section-dark .button-primary {
  background: #c38b3c;
  color: #1b120b;
}

.about-page .section-dark .button-primary:hover {
  background: #daa755;
}

.about-page .section-dark .button-secondary {
  border-color: rgba(255, 250, 240, .3);
  color: var(--white);
  background: rgba(255, 255, 255, .05);
}

.about-page .section-dark .button-secondary:hover {
  background: rgba(255, 255, 255, .1);
}

@media (max-width: 900px) {
  .about-banner-inner,
  .about-opening-inner {
    grid-template-columns: 1fr;
  }

  .about-opening-inner {
    grid-template-areas:
      "heading"
      "portrait"
      "copy";
    gap: 30px;
  }

  .about-banner-heading {
    position: static;
  }

  .about-banner-copy {
    max-width: 740px;
  }

  .about-portrait-frame {
    width: min(100%, 420px);
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .about-banner {
    padding: 64px 0;
  }

  .about-banner-heading h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  .about-banner-heading h2 {
    font-size: clamp(2.2rem, 11vw, 3.45rem);
  }

  .about-banner-copy {
    gap: 18px;
  }

  .about-banner-copy p,
  .about-banner-copy p:first-child {
    font-size: 1rem;
    line-height: 1.72;
  }

  .about-portrait-frame {
    border-radius: 20px;
  }

  .about-actions {
    align-items: stretch;
  }

  .about-actions .button {
    width: 100%;
  }
}
