/* ---------- fonts ---------- */
@font-face {
  font-family: "Prompt";
  src: url("assets/fonts/Prompt-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Prompt";
  src: url("assets/fonts/Prompt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Prompt";
  src: url("assets/fonts/Prompt-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Prompt";
  src: url("assets/fonts/Prompt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Prompt";
  src: url("assets/fonts/Prompt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Prompt";
  src: url("assets/fonts/Prompt-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

/* ---------- tokens ---------- */
:root {
  --bg: #060504;
  --card-bg: #0d0b08;
  --card-border: rgba(233, 227, 205, 0.12);
  --text-primary: #eae5d6;
  --text-body: #c7c2b3;
  --text-muted: #8d8878;
  --gold-1: #f2e08c;
  --gold-2: #a9862c;
  --gold-solid: #d7b34a;
  --highlight: #eccf52;
  --max-width: 700px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-body);
  font-family: "Prompt", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
}

.hero-banner {
  position: relative;
  width: 100%;
  height: clamp(150px, 24vw, 280px);
  overflow: hidden;
  background: #050403;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 45%;
  opacity: 0.9;
}

.banner-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 5, 4, 0) 0%,
    rgba(6, 5, 4, 0.55) 55%,
    rgba(6, 5, 4, 1) 100%
  );
}

.hero-content {
  display: flex;
  justify-content: center;
  padding: 48px 24px 26px;
}

.hero-lockup {
  width: min(680px, 92vw);
  height: auto;
}

/* ---------- main / cards ---------- */
main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 44px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.card h2,
.cta h2 {
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 2.6vw, 1.65rem);
  font-weight: 500;
  color: var(--text-primary);
}

.card p {
  margin: 0 0 16px;
  font-size: 1rem;
}

.card p:last-child {
  margin-bottom: 0;
}

/* pull quote */
.pull-quote {
  padding: 12px 24px 8px;
  text-align: center;
}

.pull-quote p {
  margin: 0;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.5;
}

.highlight {
  color: var(--highlight);
  font-weight: 700;
}

/* award section */
.award {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.award-icon {
  flex: 0 0 auto;
  width: 64px;
}

.award-icon img {
  width: 100%;
  height: auto;
}

.award-text {
  flex: 1 1 auto;
  min-width: 0;
}

@media (max-width: 560px) {
  .award {
    flex-direction: column;
    gap: 16px;
  }
  .award-icon {
    width: 48px;
  }
}

/* ---------- cta ---------- */
.cta {
  text-align: center;
  padding: 24px 24px 32px;
}

.trophy {
  width: 46px;
  height: auto;
  margin: 0 auto 20px;
}

.cta p {
  margin: 0 auto 28px;
  max-width: 46ch;
}

.button {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: #1a1404;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(215, 179, 74, 0.25);
}

.button:focus-visible {
  outline: 2px solid var(--gold-solid);
  outline-offset: 3px;
}

/* ---------- footer ---------- */
footer {
  text-align: center;
  padding: 48px 24px 56px;
  border-top: 1px solid var(--card-border);
  margin-top: 12px;
}

.footer-logo {
  width: 120px;
  margin: 0 auto 16px;
  opacity: 0.85;
}

footer p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
}
