html,
body {
  margin: 0;
  background: #000;
  color: white;
  font-family: Arial, sans-serif;
}

.about-page {
  min-height: 100vh;
  background: #000;
}

.about-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 72px;
  box-sizing: border-box;
}

.about-inner {
  width: 100%;
  max-width: 760px;
}

.about-kicker {
  display: block;
  margin-bottom: 18px;
  color: #c5a35b;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
}

.about-inner h1 {
  margin: 0;
  font-size: 64px;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.about-content {
  margin-top: 32px;
}

.about-content p {
  margin: 0 0 24px;
  max-width: 700px;
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 1.9;
}

.about-link {
  display: inline-flex;
  margin-top: 12px;
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.about-link:hover {
  color: #c5a35b;
}

.about-actions {
  display: flex;
  gap: 22px;
  margin-top: 34px;
  align-items: center;
}

.about-primary,
.about-secondary {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.about-primary::before {
  content: "← ";
}

.about-secondary {
  color: rgba(255,255,255,.58);
}

.about-primary:hover,
.about-secondary:hover {
  color: #c5a35b;
}

@media (max-width: 768px) {
  .about-hero {
    padding: 90px 24px 48px;
    align-items: flex-start;
  }

  .about-inner h1 {
    font-size: 46px;
  }

  .about-content p {
    font-size: 15px;
    line-height: 1.8;
  }
}