:root {
  --black: #080808;
  --panel: #0c0c0c;
  --white: #f0ede5;
  --muted: #85827b;
  --line: rgba(240, 237, 229, 0.16);
  --accent: #e54b25;
  --gutter: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html { background: var(--black); }
html, body { min-width: 320px; min-height: 100%; }
body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 44%, rgba(255,255,255,.045), transparent 35%),
    linear-gradient(135deg, rgba(229,75,37,.045), transparent 32%),
    var(--black);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .17;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

body::after {
  content: "";
  position: fixed;
  inset: -50%;
  pointer-events: none;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
  animation: grain 9s steps(8) infinite;
}

@keyframes grain {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-2%, 1%); }
  40% { transform: translate(1%, -2%); }
  60% { transform: translate(2%, 2%); }
  80% { transform: translate(-1%, -1%); }
}

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

.page-frame {
  position: fixed;
  inset: 14px;
  border: 1px solid var(--line);
  pointer-events: none;
  z-index: 4;
}

.page-frame::before,
.page-frame::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 3px;
  background: var(--accent);
}
.page-frame::before { top: -1px; left: -1px; }
.page-frame::after { right: -1px; bottom: -1px; }

.park-page {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding: clamp(28px, 4vw, 56px) var(--gutter);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
}

.top-line,
.bottom-line {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: clamp(.66rem, .75vw, .78rem);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.top-line {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.bottom-line {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.ghost-type {
  position: absolute;
  inset: 8% 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(240,237,229,.07);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(5rem, 13vw, 13rem);
  font-weight: 900;
  line-height: .78;
  letter-spacing: -.07em;
  text-align: center;
  white-space: nowrap;
  user-select: none;
}

.brand-wrap {
  width: min(82vw, 930px);
  display: grid;
  justify-items: center;
  text-align: center;
  transform: translateY(-1vh);
}

.marker {
  width: 54px;
  height: 5px;
  margin-bottom: clamp(26px, 4vw, 46px);
  background: var(--accent);
  box-shadow: 0 0 24px rgba(229,75,37,.28);
}

.brand {
  width: min(100%, 880px);
  height: auto;
  filter: brightness(0) invert(1);
}

.descriptor {
  margin: clamp(30px, 4vw, 46px) 0 0;
  color: var(--white);
  font-size: clamp(.72rem, 1vw, .9rem);
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .page-frame { inset: 9px; }
  .park-page { padding: 22px 22px 24px; }

  .top-line span:last-child { display: none; }

  .hero { padding: 28px 0; }

  .ghost-type {
    inset: 14% -20%;
    font-size: clamp(4.7rem, 24vw, 8.5rem);
    opacity: .8;
  }

  .brand-wrap { width: min(90vw, 620px); }
  .marker { width: 42px; height: 4px; }
  .descriptor { letter-spacing: .22em; }

  .bottom-line {
    align-items: flex-end;
    gap: 16px;
  }
  .bottom-line span:first-child { max-width: 220px; line-height: 1.5; }
}

@media (max-width: 420px) {
  .top-line,
  .bottom-line { font-size: .61rem; }
  .brand-wrap { width: 94vw; }
  .descriptor { font-size: .65rem; letter-spacing: .18em; }
}

@media (prefers-reduced-motion: reduce) {
  body::after { animation: none; }
}
