:root {
  --about-ink: #152831;
  --about-muted: #556a74;
  --about-paper: #f5f1e8;
  --about-card: #fffdf9;
  --about-accent: #c69450;
  --about-accent-deep: #9a6c33;
}

.about-page {
  color: var(--about-ink);
  background:
    radial-gradient(circle at 12% 82%, #e8dfd1 0 17%, transparent 18%),
    radial-gradient(circle at 88% 16%, #e6d8c0 0 19%, transparent 20%),
    var(--about-paper);
}

.content-width {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.about-hero {
  background: linear-gradient(125deg, #173746 0%, #122833 56%, #10212a 100%);
  color: #fff;
  padding: clamp(2.9rem, 5.6vw, 4.9rem) 0;
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -9rem;
  width: 23rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(150deg, #dcb172, #9f6f34);
  opacity: 0.3;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d8b986;
  font-size: 0.79rem;
}

.about-hero h1 {
  margin: 0.35rem 0 0.75rem;
  font-family: "Barlow Condensed", "Impact", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 0.96;
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.about-hero p {
  margin: 0;
  max-width: 65ch;
  color: #d0dce1;
  line-height: 1.56;
}

.about-main {
  padding: clamp(2.4rem, 6vw, 4.3rem) 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: start;
}

.about-card {
  background: var(--about-card);
  border: 1px solid #d8cebf;
  border-radius: 0.95rem;
  padding: 1.15rem;
  box-shadow: 0 14px 32px rgba(14, 24, 30, 0.08);
}

.about-card h2 {
  margin: 0 0 0.7rem;
  font-family: "Barlow Condensed", "Impact", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}

.about-card p {
  margin: 0 0 0.9rem;
  color: var(--about-muted);
  line-height: 1.66;
}

.about-card p:last-of-type {
  margin-bottom: 0;
}

.photo-panel {
  background: linear-gradient(150deg, #ece4d7, #dfd2bf);
  border: 1px solid #d4c8b8;
  border-radius: 0.95rem;
  padding: 0.9rem;
  box-shadow: 0 14px 32px rgba(14, 24, 30, 0.08);
  overflow: hidden;
}

.photo-image {
  display: block;
  width: 100%;
  min-height: 340px;
  border-radius: 0.75rem;
  object-fit: cover;
  object-position: center;
}

.site-footer {
  background: #0c1920;
  color: #95a8b1;
  padding: 1rem 0;
  font-size: 0.9rem;
}

.site-footer .content-width {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer a {
  color: #d5a860;
}

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

  .photo-image {
    min-height: 250px;
  }

  .site-footer .content-width {
    flex-direction: column;
  }
}
