@font-face {
  font-family: Oswald;
  src: url("/assets/fonts/oswald.woff2") format("woff2");
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url("/assets/fonts/barlow-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url("/assets/fonts/barlow-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url("/assets/fonts/barlow-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #161310;
  --ink-2: #211c18;
  --paper: #f4efe6;
  --muted: #c4b9a8;
  --line: rgba(244, 239, 230, 0.14);
  --ember: #e45714;
  --ember-2: #ff6a1a;
  --vis: #f5c518;
  --focus: #8ecae6;
  --radius: 12px;
  --pad: clamp(1.1rem, 4vw, 2.25rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  color: var(--paper);
  background: var(--ink);
  font-family: Barlow, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.45;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      -55deg,
      var(--vis) 0 10px,
      #161310 10px 20px
    );
  background-size: 100% 10px;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 3;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  z-index: 0;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  z-index: 10;
  padding: 0.5rem 0.75rem;
  background: var(--vis);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.skip:focus {
  top: 0.75rem;
}

.page {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  padding:
    calc(14px + env(safe-area-inset-top))
    max(var(--pad), env(safe-area-inset-right))
    max(1rem, env(safe-area-inset-bottom))
    max(var(--pad), env(safe-area-inset-left));
  max-width: 56rem;
  margin: 0 auto;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.mark {
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 8px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.name {
  font-family: Oswald, "Arial Narrow", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.place {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.top-call {
  display: none;
  color: var(--paper);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid var(--ember);
  padding-bottom: 0.1rem;
}

.top-call:hover,
.top-call:focus-visible {
  color: var(--vis);
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.35rem 0 1.1rem;
}

.kicker {
  margin: 0 0 0.7rem;
  color: var(--vis);
  font-family: Oswald, "Arial Narrow", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Oswald, "Arial Narrow", sans-serif;
  font-size: clamp(2.05rem, 8.4vw, 3.7rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-wrap: balance;
  max-width: 14ch;
}

.sub {
  margin: 0.9rem 0 0;
  font-size: clamp(1.12rem, 3.4vw, 1.4rem);
  font-weight: 600;
  color: #efe6d6;
}

.facts {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.facts li {
  position: relative;
  padding: 0.15rem 0 0.15rem 1.15rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--ember);
  transform: rotate(45deg);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 28rem);
  min-height: 3.35rem;
  padding: 0.9rem 1.15rem;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--ember-2), var(--ember));
  color: #1a110c;
  font-family: Oswald, "Arial Narrow", sans-serif;
  font-size: clamp(1.15rem, 4.4vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 10px 24px rgba(0, 0, 0, 0.28);
}

.cta:hover {
  filter: brightness(1.06);
}

.cta:focus-visible,
.top-call:focus-visible,
.brand:focus-visible,
.skip:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.cta:active {
  transform: translateY(1px);
}

.foot {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.foot p {
  margin: 0;
}

@media (min-width: 720px) {
  .top-call {
    display: inline;
  }

  .hero {
    padding-top: 2.2rem;
  }

  h1 {
    max-width: 16ch;
  }

  .facts {
    max-width: 36rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta:active {
    transform: none;
  }
}
