/* Erymanthian Media — About page styles (about.html) */

/* About / founder section -------------------------------------------------- */
.about-studio {
  position: relative;
  overflow: hidden;
}
.about-studio .shell { position: relative; }
.about-watermark {
  position: absolute;
  right: -6%;
  top: 8%;
  width: min(46vw, 560px);
  opacity: 0.05;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* Portrait column */
.about-portrait-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.meet-nick {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.meet-nick em { font-style: italic; color: var(--terracotta); }
.portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  overflow: hidden;
  max-width: 480px;
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.portrait-badge {
  position: absolute;
  left: 22px;
  top: 18px;
  z-index: 2;
  font-family: var(--font-caps);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(250, 241, 221, 0.94);
  background: rgba(20, 42, 58, 0.5);
  padding: 6px 12px;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.portrait-caption {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 2;
  color: var(--surface);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(20, 42, 58, 0.6);
}

/* Copy column */
.about-copy .eyebrow { margin-bottom: 22px; }
.about-copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 28px;
  max-width: 17ch;
}
.about-copy h2 em { font-style: italic; color: var(--terracotta); }
.about-copy p {
  color: var(--body);
  font-size: 17px;
  line-height: 1.72;
  margin: 0 0 18px;
  max-width: 56ch;
}
.about-copy p:last-of-type { margin-bottom: 28px; }

/* Signature block */
.signature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}
.signature img { width: 46px; height: 46px; }
.signature-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  color: var(--ink);
  line-height: 1;
}
.signature-role {
  font-family: var(--font-caps);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 4px;
}

/* Boar pottery figure + quote */
.pottery-figure {
  position: relative;
  margin-top: clamp(48px, 7vw, 88px);
  border-radius: 8px;
  overflow: hidden;
}
.pottery-figure img { width: 100%; height: auto; }
.about-quote {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--body);
  margin: 22px auto 0;
  max-width: 52ch;
  line-height: 1.4;
}
.about-quote-attr {
  text-align: center;
  font-family: var(--font-caps);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 14px auto 0;
}

/* CTA band ----------------------------------------------------------------- */
.about-cta {
  padding: clamp(80px, 11vw, 128px) 0;
  background: var(--ink);
  color: var(--surface);
  text-align: center;
}
.about-cta h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 6.5vw, 86px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--surface);
  margin: 0 0 36px;
}
.about-cta h2 em { font-style: italic; color: var(--gold); }
.btn--cta-lg { padding: 17px 34px; font-size: 15px; }
