:root {
  color-scheme: dark;
  --black: #020202;
  --panel: #090b09;
  --panel-2: #11130f;
  --cream: #fff7e8;
  --muted: #cfc4ae;
  --red: #f20d0d;
  --red-dark: #870704;
  --green: #9bd11c;
  --green-dark: #305708;
  --gold: #efa62e;
  --line: rgba(255, 247, 232, 0.18);
  --red-line: rgba(242, 13, 13, 0.55);
  --green-line: rgba(155, 209, 28, 0.42);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.58);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(115deg, rgba(242, 13, 13, 0.11), transparent 32%),
    radial-gradient(circle at 82% 8%, rgba(155, 209, 28, 0.14), transparent 22rem),
    linear-gradient(var(--black), var(--black));
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background:
    linear-gradient(rgba(255, 247, 232, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 247, 232, 0.045) 1px, transparent 1px),
    repeating-linear-gradient(0deg, transparent, transparent 8px, rgba(255, 247, 232, 0.025) 9px);
  background-size: 42px 42px, 42px 42px, 100% 10px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--red-line);
  background: rgba(2, 2, 2, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(155, 209, 28, 0.18);
}

.brand,
.site-header nav,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 0;
  font-weight: 950;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(242, 13, 13, 0.42));
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-header nav {
  gap: clamp(14px, 3vw, 36px);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-header nav a {
  position: relative;
  padding: 8px 0;
}

.site-header nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--cream);
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  padding: 11px 18px;
  border: 1px solid var(--green);
  background: linear-gradient(135deg, rgba(155, 209, 28, 0.95), rgba(239, 166, 46, 0.92));
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 var(--red);
}

.section-band {
  border-bottom: 1px solid var(--line);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.92fr);
  min-height: calc(100vh - 72px);
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(125deg, rgba(242, 13, 13, 0.25), transparent 38%),
    linear-gradient(305deg, rgba(155, 209, 28, 0.18), transparent 30%);
}

.hero::after {
  left: -12vw;
  right: -12vw;
  bottom: 18%;
  z-index: -1;
  height: 180px;
  background: linear-gradient(90deg, transparent, rgba(242, 13, 13, 0.84), rgba(155, 209, 28, 0.34), transparent);
  clip-path: polygon(0 64%, 100% 12%, 100% 44%, 0 96%);
  opacity: 0.72;
}

.hero-copy {
  position: relative;
  min-width: 0;
  align-self: center;
  padding: clamp(72px, 10vw, 140px) clamp(22px, 5vw, 78px);
}

.hero-copy::before {
  display: block;
  width: min(56vw, 500px);
  height: 4px;
  margin-bottom: 24px;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--green), transparent);
  box-shadow: 0 0 24px rgba(242, 13, 13, 0.48);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  width: 100%;
  max-width: 880px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(4.35rem, 8.8vw, 9.2rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: break-word;
  text-shadow: 0 0 24px rgba(242, 13, 13, 0.22);
}

h1 span {
  display: block;
}

h1 span:last-child {
  color: var(--cream);
  font-size: 0.78em;
}

.hero-copy p {
  max-width: 690px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.42rem);
  font-weight: 700;
  line-height: 1.48;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--cream);
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.button.primary {
  border-color: var(--red);
  background: var(--red);
  color: var(--cream);
  box-shadow: 7px 7px 0 var(--green);
}

.button.secondary {
  border-color: rgba(255, 247, 232, 0.46);
  background: rgba(255, 247, 232, 0.04);
  color: var(--cream);
}

.button.light {
  border-color: var(--black);
  background: transparent;
  color: var(--black);
  box-shadow: 6px 6px 0 var(--red);
}

.hero-mark {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 560px;
  padding: clamp(24px, 4vw, 58px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(155, 209, 28, 0.16), transparent 32%),
    linear-gradient(140deg, rgba(255, 247, 232, 0.08), transparent 48%),
    var(--panel);
}

.hero-mark::before,
.hero-mark::after {
  position: absolute;
  content: "";
}

.hero-mark::before {
  width: 82%;
  aspect-ratio: 1;
  border: 2px solid var(--green-line);
  box-shadow: 0 0 35px rgba(155, 209, 28, 0.13);
  transform: rotate(13deg);
}

.hero-mark::after {
  width: 66%;
  aspect-ratio: 1;
  border: 2px solid var(--red-line);
  transform: rotate(-9deg);
}

.hero-mark img {
  position: relative;
  z-index: 1;
  width: min(91%, 620px);
  filter:
    drop-shadow(0 30px 48px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 28px rgba(242, 13, 13, 0.34));
  animation: floatMark 5s ease-in-out infinite;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border-top: 1px solid var(--red-line);
  border-bottom: 1px solid var(--red-line);
  background: var(--red);
}

.ticker span {
  display: grid;
  min-height: 86px;
  align-content: center;
  gap: 6px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.07), transparent),
    var(--black);
}

.ticker strong,
.ticker em {
  display: block;
  font-style: normal;
  text-transform: uppercase;
}

.ticker strong {
  color: var(--cream);
  font-size: clamp(0.9rem, 1.3vw, 1.25rem);
  font-weight: 950;
  line-height: 1;
}

.ticker em {
  color: var(--green);
  font-size: 0.62rem;
  font-weight: 900;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 4vw, 56px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 42px;
}

h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.9;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.section-heading p,
.publishing-copy p,
.contact-section p,
.service-list p,
.poster p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.poster {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 520px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%);
}

.poster::before,
.poster::after {
  position: absolute;
  content: "";
}

.poster::before {
  inset: 24px;
  border: 1px solid rgba(255, 247, 232, 0.72);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

.poster::after {
  top: 56px;
  left: 50%;
  width: 56%;
  aspect-ratio: 1;
  background:
    linear-gradient(135deg, transparent 42%, rgba(255, 247, 232, 0.34) 43%, rgba(255, 247, 232, 0.34) 45%, transparent 46%),
    rgba(255, 247, 232, 0.08);
  clip-path: polygon(50% 0, 64% 32%, 99% 27%, 74% 51%, 86% 87%, 50% 68%, 14% 87%, 26% 51%, 1% 27%, 36% 32%);
  transform: translateX(-50%);
}

.poster > * {
  position: relative;
}

.poster-topline {
  margin-bottom: auto;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.poster h3 {
  margin-bottom: 14px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.1rem, 3.7vw, 3.7rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.poster-red {
  background:
    linear-gradient(145deg, rgba(242, 13, 13, 0.68), transparent 58%),
    #1b0403;
}

.poster-green {
  background:
    linear-gradient(145deg, rgba(155, 209, 28, 0.46), transparent 56%),
    #071504;
}

.poster-gold {
  background:
    linear-gradient(145deg, rgba(239, 166, 46, 0.5), transparent 58%),
    #160d04;
}

.publishing-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 0.8fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(155, 209, 28, 0.12), transparent 45%),
    var(--cream);
  color: var(--black);
}

.spread {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-width: 0;
  max-width: 100%;
  min-height: 520px;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.28));
  perspective: 1200px;
}

.book {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  color: var(--cream);
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
}

.book-left {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.34), transparent),
    var(--red);
  transform: rotateY(7deg);
}

.book-right {
  background:
    radial-gradient(circle at 54% 38%, rgba(155, 209, 28, 0.78), transparent 30%),
    linear-gradient(145deg, rgba(242, 13, 13, 0.22), transparent 58%),
    var(--black);
  transform: rotateY(-7deg);
}

.book span {
  font-size: 0.72rem;
  font-weight: 950;
}

.book strong {
  max-width: 8ch;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.25rem);
  line-height: 0.9;
}

.publishing-copy {
  min-width: 0;
  max-width: 100%;
}

.publishing-copy p {
  margin: 28px 0 34px;
  color: #30291f;
  font-size: 1.15rem;
}

.studio-section {
  background:
    radial-gradient(circle at 88% 10%, rgba(242, 13, 13, 0.13), transparent 24rem),
    var(--black);
}

.service-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.service-list article {
  display: grid;
  grid-template-columns: 92px minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: 28px;
  align-items: baseline;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.service-list span {
  color: var(--red);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 3rem;
  text-shadow: 0 0 18px rgba(242, 13, 13, 0.32);
}

.service-list h3 {
  color: var(--cream);
  font-size: clamp(1.35rem, 2.1vw, 2.2rem);
  text-transform: uppercase;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.72fr);
  gap: clamp(30px, 7vw, 92px);
  padding: clamp(72px, 10vw, 132px) clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--red-line);
  background:
    linear-gradient(120deg, rgba(242, 13, 13, 0.34), transparent 42%),
    radial-gradient(circle at 92% 18%, rgba(155, 209, 28, 0.14), transparent 20rem),
    var(--panel);
}

.contact-section p {
  max-width: 560px;
  margin-top: 24px;
  font-size: 1.12rem;
}

form {
  display: grid;
  gap: 16px;
  padding: 1px;
  background: linear-gradient(135deg, var(--red-line), var(--green-line));
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
}

form > * {
  margin: 0 18px;
}

form > label:first-child {
  margin-top: 18px;
}

form > button {
  margin: 0 18px 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 247, 232, 0.32);
  border-radius: 0;
  background: rgba(2, 2, 2, 0.84);
  color: var(--cream);
  font: inherit;
  font-size: 1rem;
  padding: 14px;
  outline-color: var(--green);
}

textarea {
  resize: vertical;
}

@keyframes floatMark {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg) scale(1);
  }
  50% {
    transform: translateY(-12px) rotate(1deg) scale(1.015);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1080px) {
  .ticker {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero,
  .publishing-section,
  .contact-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-mark {
    min-height: 380px;
  }

  .poster-grid {
    grid-template-columns: 1fr;
  }

  .poster {
    min-height: 390px;
  }

  .service-list article {
    grid-template-columns: 76px 1fr;
  }

  .service-list p {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand span {
    max-width: 8rem;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 0.7rem;
    box-shadow: 4px 4px 0 var(--red);
  }

  h1 {
    font-size: clamp(3.55rem, 19vw, 5rem);
  }

  h1 span:last-child {
    font-size: 0.62em;
  }

  .hero-copy {
    padding: 58px 18px 42px;
  }

  .hero-copy::before {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .ticker {
    grid-template-columns: 1fr;
  }

  .ticker span {
    min-height: 62px;
  }

  .section,
  .contact-section {
    padding: 64px 18px;
  }

  .spread {
    min-height: 390px;
  }

  .book {
    padding: 20px;
  }

  .book-left,
  .book-right {
    transform: none;
  }

  .book strong {
    font-size: clamp(2.35rem, 11.5vw, 3.35rem);
  }

  form > * {
    margin-left: 14px;
    margin-right: 14px;
  }

  form > label:first-child {
    margin-top: 14px;
  }

  form > button {
    margin-bottom: 14px;
  }
}
