:root {
  --about-ink: #101418;
  --about-sub: #415058;
  --about-accent: #b68b2f;
  --about-bg: #f2efe9;
  --about-panel: rgba(255, 255, 255, 0.92);
  --about-shadow: 0 18px 40px rgba(16, 20, 24, 0.14);
}

.module-about .layout {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
}

.module-about .container {
  padding: 0;
}

.module-about .guest-actions .btn {
  background: #1fb56a;
  border-color: #1fb56a;
  color: #0b0c12;
  box-shadow: 0 10px 24px rgba(31, 181, 106, 0.35);
}

.module-about .guest-actions .btn:hover {
  background: #24cc76;
  border-color: #24cc76;
}

.about {
  position: relative;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 7vw, 96px);
  background: linear-gradient(135deg, #f6f2ea 0%, #e6e0d4 45%, #ede7dc 100%);
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  width: 100%;
  max-width: none;
  margin: 0;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(182, 139, 47, 0.25), transparent 55%),
    radial-gradient(circle at 20% 20%, rgba(16, 20, 24, 0.12), transparent 45%);
  pointer-events: none;
}

.about-hero {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(16, 20, 24, 0.1);
}

.about-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  color: var(--about-accent);
  margin-bottom: 16px;
  font-weight: 700;
}

.about h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--about-ink);
  margin-bottom: 16px;
  font-weight: 700;
}

.about-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: var(--about-sub);
  line-height: 1.7;
}

.about-body {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  max-width: 920px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--about-ink);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.85;
}

.about-body h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  margin-top: 18px;
  margin-bottom: 4px;
  color: var(--about-ink);
}

.about-body strong {
  color: var(--about-accent);
}

@media (max-width: 900px) {
  .about {
    padding: 42px 22px;
    margin: 0;
  }
}
