@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/assets/fonts/dmsans-latin.woff2) format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/dmsans-latin-italic.woff2) format("woff2");
}

:root {
  --orange: #c74606;
  --cream: #f5e6ca;
  --dark: #260700;
  --panel: #201a18;
  --brown: #75483d;
  --gold-1: #f5cf8a;
  --gold-2: #d4a045;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2.5rem 1.25rem;
  background: var(--cream);
  color: var(--brown);
  font-family: "DM Sans", system-ui, sans-serif;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}

main {
  width: min(720px, 100%);
}

.logo {
  display: block;
  width: 200px;
  max-width: 60%;
  height: auto;
  margin: 0 auto 2.25rem;
}

.rule {
  width: 56px;
  height: 3px;
  margin: 0 auto 2rem;
  background: var(--gold-2);
  border-radius: 2px;
}

.hero {
  margin: 0 0 1.25rem;
  font-size: 45pt;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--orange);
}

.subhead {
  margin: 0 auto 2.5rem;
  max-width: 34ch;
  font-size: 15pt;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--brown);
}

.cta {
  display: inline-block;
  padding: 0.95rem 2.1rem;
  border-radius: 8px;
  background: var(--orange);
  color: var(--cream);
  font-family: "DM Sans", sans-serif;
  font-size: 14pt;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.cta:hover {
  background: #a83a05;
  transform: translateY(-1px);
}

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

.hero-video {
  display: block;
  width: 360px;
  max-width: 82%;
  height: auto;
  margin: 2.25rem auto 0;
}

.footnote {
  margin: 2.25rem 0 0;
  font-size: 11pt;
  color: var(--brown);
  opacity: 0.75;
}

@media (max-width: 600px) {
  .hero {
    font-size: 32pt;
  }
  .subhead {
    font-size: 13pt;
  }
}
