* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  background: #050604;
  color: #fff7e8;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.about-page {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 24px;
  overflow: hidden;
}

.about-bg {
  position: fixed;
  inset: 0;
  background: url("gateway.webp") center center / cover no-repeat;
  filter: brightness(0.65);
  z-index: 0;
}

.about-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at center, rgba(224, 180, 89, 0.12), transparent 48%),
    linear-gradient(rgba(5,7,4,0.5), rgba(5,7,4,0.86));
}

.gold-frame {
  position: fixed;
  inset: 22px;
  border: 1px solid rgba(203, 164, 91, 0.52);
  z-index: 5;
  pointer-events: none;
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.about-header {
  position: fixed;
  top: 30px;
  left: 64px;
  right: 64px;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr auto 1fr 1fr;
  align-items: center;
  gap: 34px;
}

.about-header a {
  color: rgba(255,245,220,0.94);
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0,0,0,0.72);
}

.about-logo {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215,174,92,0.92);
  border-radius: 50%;
  background: rgba(10,14,8,0.52);
  color: #f5d48a !important;
  font-family: "Cormorant Garamond", serif !important;
  font-style: italic;
  font-size: 1.85rem !important;
  letter-spacing: 0 !important;
}

.about-card {
  position: relative;
  z-index: 8;
  width: min(900px, 90vw);
  padding: 54px 58px;
  border: 1px solid rgba(203, 164, 91, 0.50);
  background: rgba(10, 15, 8, 0.72);
  backdrop-filter: blur(5px);
  text-align: center;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.045),
    0 22px 55px rgba(0,0,0,0.42);
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(224,180,89,0.18);
  pointer-events: none;
}

.about-kicker {
  margin-bottom: 16px;
  color: rgba(245,212,138,0.95);
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.about-card h1 {
  color: #fff7e8;
  font-family: "Cinzel", serif;
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.about-card p:not(.about-kicker) {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(255,245,220,0.88);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.28rem;
  font-style: italic;
  line-height: 1.45;
}

.about-buttons {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.about-buttons a {
  position: relative;
  padding: 13px 26px;
  border: 1px solid rgba(224,180,89,0.82);
  background: rgba(14,30,14,0.78);
  color: #f6d99a;
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-buttons a::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(224,180,89,0.22);
}

@media (max-width: 760px) {
  .about-header {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin-bottom: 40px;
    grid-template-columns: 1fr;
  }

  .about-card {
    padding: 40px 26px;
  }

  .about-buttons a {
    width: 100%;
  }
}
