:root {
  --yellow: #ffd21b;
  --yellow-hot: #ffe866;
  --red: #b40f22;
  --red-dark: #690713;
  --ink: #1b1610;
  --cream: #fff4bf;
  --white: #fffdf1;
  --blue: #6f9cac;
  --muted: #76502d;
  --line: rgba(27, 22, 16, 0.16);
  --shadow: rgba(105, 7, 19, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(125deg, transparent 0 22%, rgba(180, 15, 34, 0.18) 22% 32%, transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.44), transparent 18rem),
    linear-gradient(180deg, var(--yellow-hot), var(--yellow));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.2rem;
  background: rgba(255, 210, 27, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand {
  gap: 0.65rem;
  font-weight: 950;
  text-transform: lowercase;
}

.brand-badge {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  color: var(--yellow);
  background: var(--ink);
  border-radius: 8px;
  box-shadow: inset 0 -5px 0 var(--red);
}

.nav {
  gap: 1rem;
  color: #6c2c14;
  font-size: 0.88rem;
  font-weight: 850;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--red-dark);
}

.cinema-banner {
  width: min(100%, 1660px);
  margin: 1rem auto 0;
  padding: 0 1rem;
}

.cinema-banner img {
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  border: 1px solid rgba(105, 7, 19, 0.22);
  box-shadow: 0 24px 76px var(--shadow);
}

.street-hero {
  position: relative;
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr) minmax(18rem, 28rem);
  gap: 1rem;
  width: min(100% - 2rem, 1230px);
  margin: 2rem auto 0;
  align-items: stretch;
}

.hero-label,
.hero-copy,
.character-panel,
.signal-list div,
.copy-zone {
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px var(--shadow);
}

.hero-label {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 32rem;
  padding: 1rem;
  color: var(--cream);
  background: var(--red);
  font-weight: 950;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-label span:nth-child(2) {
  color: var(--yellow);
}

.hero-copy {
  position: relative;
  min-height: 32rem;
  overflow: hidden;
  padding: 3rem;
  background:
    linear-gradient(135deg, rgba(255, 244, 191, 0.92), rgba(255, 253, 241, 0.82) 46%, rgba(180, 15, 34, 0.12)),
    var(--white);
}

.hero-copy::after {
  content: "ALON";
  position: absolute;
  right: -0.35rem;
  bottom: -1rem;
  color: rgba(180, 15, 34, 0.08);
  font-size: 8rem;
  font-weight: 950;
  line-height: 1;
}

.eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 0.85rem;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  color: var(--red-dark);
  font-size: 5rem;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: lowercase;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.55rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.lead {
  position: relative;
  z-index: 1;
  max-width: 43rem;
  color: #4c2a16;
  font-size: 1.14rem;
  line-height: 1.65;
}

.actions {
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.45rem;
}

.button,
.copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.75rem 1.08rem;
  border: 1px solid rgba(105, 7, 19, 0.2);
  border-radius: 8px;
  color: var(--red-dark);
  background: var(--cream);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button:hover,
.copy-button:hover {
  border-color: rgba(180, 15, 34, 0.5);
  transform: translateY(-1px);
}

.button.primary {
  color: var(--yellow);
  background: linear-gradient(135deg, var(--red), var(--ink));
}

.character-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 1rem;
  background: linear-gradient(180deg, #ffe665, var(--yellow));
}

.character-panel img {
  width: 100%;
  height: 26rem;
  object-fit: cover;
  object-position: center 36%;
  background: var(--yellow);
}

.character-panel figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0.15rem 0;
  color: #6c2c14;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.character-panel span {
  color: var(--red);
  font-weight: 950;
  text-transform: lowercase;
}

.ticker-road {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100% - 2rem, 1230px);
  margin: 1rem auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
}

.ticker-road span {
  min-height: 4.35rem;
  padding: 1.2rem;
  border-right: 1px solid rgba(255, 210, 27, 0.22);
  color: var(--cream);
  font-weight: 900;
  text-transform: uppercase;
}

.ticker-road span:nth-child(2) {
  color: var(--red-dark);
  background: var(--yellow);
  text-transform: lowercase;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 2rem;
  width: min(100% - 2rem, 1230px);
  margin: 5rem auto;
}

.story-copy {
  align-self: center;
}

.story-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.signal-list {
  display: grid;
  gap: 0.85rem;
}

.signal-list div {
  display: grid;
  grid-template-columns: 3rem minmax(8rem, 0.42fr) 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 6rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 244, 191, 0.85);
}

.signal-list span {
  color: var(--red);
  font-weight: 950;
}

.signal-list strong {
  text-transform: uppercase;
}

.signal-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.copy-zone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, 1230px);
  margin: 0 auto 4rem;
  padding: 1.35rem;
  color: var(--cream);
  background: var(--red);
}

.copy-zone h2 {
  margin: 0;
  color: var(--yellow);
  font-size: 2rem;
  text-transform: lowercase;
}

.copy-zone .eyebrow {
  margin-bottom: 0.35rem;
  color: var(--cream);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem;
  border-top: 1px solid var(--line);
  color: #6c2c14;
  background: rgba(255, 244, 191, 0.55);
}

@media (max-width: 980px) {
  .street-hero,
  .story {
    grid-template-columns: 1fr;
  }

  .hero-label {
    min-height: auto;
    flex-direction: row;
    writing-mode: initial;
    transform: none;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .ticker-road {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .cinema-banner {
    padding: 0;
  }

  .cinema-banner img {
    aspect-ratio: 16 / 9;
  }

  .street-hero,
  .story,
  .ticker-road,
  .copy-zone {
    width: min(100% - 1rem, 1230px);
  }

  .hero-copy {
    min-height: auto;
    padding: 2rem 1.2rem;
  }

  .hero-copy::after {
    font-size: 4.2rem;
  }

  .character-panel img {
    height: 23rem;
  }

  h1 {
    font-size: 3rem;
  }

  .lead {
    font-size: 1rem;
  }

  .ticker-road,
  .signal-list div {
    grid-template-columns: 1fr;
  }

  .copy-zone,
  .footer,
  .character-panel figcaption {
    align-items: flex-start;
    flex-direction: column;
  }
}
