.about-page {
  padding: 22px 0 28px;
}

.about-hero,
.about-content {
  width: min(calc(100% - 24px), var(--maxw));
  margin: 0 auto;
}

.about-hero-frame {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 180, 91, 0.12), transparent 12%),
    radial-gradient(circle at 16% 30%, rgba(255, 198, 130, 0.06), transparent 22%),
    radial-gradient(circle at 88% 22%, rgba(255, 198, 130, 0.05), transparent 20%),
    linear-gradient(180deg, rgba(58, 10, 18, 0.34), rgba(35, 7, 16, 0.26));
  box-shadow:
    0 0 0 1px rgba(255, 203, 129, 0.06) inset,
    0 0 40px rgba(255, 162, 74, 0.16),
    0 30px 60px rgba(0, 0, 0, 0.24);
}

.about-hero-frame::before,
.about-hero-frame::after {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: linear-gradient(180deg, rgba(235,180,103,0), rgba(235,180,103,0.88) 18%, rgba(235,180,103,0.65) 82%, rgba(235,180,103,0));
  filter: drop-shadow(0 0 12px rgba(255, 170, 74, 0.32));
  pointer-events: none;
}

.about-hero-frame::before { left: 16px; }
.about-hero-frame::after { right: 16px; }

.frame-top-glow {
  position: absolute;
  top: 0;
  left: 50%;
  width: 220px;
  height: 16px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 184, 91, 1) 0%, rgba(255, 184, 91, 0) 70%);
  filter: blur(1px);
  pointer-events: none;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.hero-media-about {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 30px;
  border: 1px solid rgba(235, 180, 103, 0.22);
  box-shadow: 0 22px 42px rgba(0,0,0,0.26);
}

.hero-media-about::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(25, 5, 9, 0.05), rgba(25, 5, 9, 0.22));
  pointer-events: none;
}

.hero-media-about img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.55s ease, filter 0.35s ease;
}

.hero-media-about:hover img {
  transform: scale(1.04);
  filter: saturate(1.04);
}

.hero-eyebrow {
  margin: 0 0 12px;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: var(--gold-2);
}

.hero-copy h1 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4.7vw, 4.8rem);
  line-height: 0.98;
  color: var(--text);
  text-shadow: 0 0 18px rgba(255, 188, 97, 0.08);
}

.hero-lead {
  margin: 0;
  max-width: 620px;
  color: rgba(251, 234, 205, 0.92);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.55;
}

.about-content {
  padding-top: 26px;
}

.container.narrow {
  display: grid;
  gap: 20px;
}

.about-block {
  position: relative;
  overflow: hidden;
  padding: 28px 28px 24px;
  border: 1px solid rgba(235, 180, 103, 0.24);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(33, 7, 13, 0.44), rgba(20, 4, 9, 0.34));
  box-shadow: 0 16px 38px rgba(0,0,0,0.18);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.about-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 200, 126, 0.08), transparent 22%);
  pointer-events: none;
}

.about-block:hover {
  transform: translateY(-2px);
  border-color: rgba(235, 180, 103, 0.34);
  box-shadow: 0 22px 44px rgba(0,0,0,0.22), 0 0 22px rgba(255, 173, 84, 0.08);
}

.about-block h2 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 2vw, 2.15rem);
  line-height: 1.1;
  color: var(--text);
}

.about-block p {
  margin: 0 0 12px;
  color: rgba(251, 234, 205, 0.92);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.65;
}

.about-block p:last-child {
  margin-bottom: 0;
}

.about-cta-panel {
  text-align: center;
  padding: 34px 22px;
  border: 1px solid rgba(235, 180, 103, 0.3);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(43, 8, 15, 0.54), rgba(24, 5, 10, 0.42));
  box-shadow: 0 20px 44px rgba(0,0,0,0.22);
}

.about-cta-panel h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  line-height: 1.05;
  color: var(--text);
}

.about-cta-panel p {
  margin: 0 0 20px;
  color: rgba(251, 234, 205, 0.92);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.5;
}

.about-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 420px);
  padding: 18px 34px;
  border-radius: 999px;
  color: #2d1406;
  font-size: clamp(1.05rem, 1.9vw, 1.55rem);
  font-weight: 900;
  background: linear-gradient(180deg, #f2c47c 0%, #d6943d 100%);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26), 0 0 18px rgba(255, 180, 88, 0.2);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.about-cta-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 180, 88, 0.26);
}

@media (max-width: 920px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 860px) {
  .about-page {
    padding-top: 18px;
  }

  .about-hero,
  .about-content {
    width: min(calc(100% - 16px), var(--maxw));
  }

  .about-hero-frame {
    border-radius: 28px;
    padding: 18px 12px 16px;
  }

  .about-hero-frame::before,
  .about-hero-frame::after {
    display: none;
  }

  .hero-media-about {
    border-radius: 22px;
  }

  .hero-media-about img {
   /* min-height: 320px;*/
  }

  .about-block {
    padding: 22px 18px 20px;
    border-radius: 22px;
  }

  .about-cta-panel {
    padding: 28px 16px;
    border-radius: 24px;
  }

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


/* Updated hero image for influencer-at-work collage */
.hero-media-about img {
  object-position: center center;
}
