:root {
  --ink: #101318;
  --paper: #f4f0e8;
  --white: #fffdf8;
  --red: #d9232e;
  --gold: #d7a82f;
  --line: rgba(16, 19, 24, 0.18);
  --sans: Arial, Helvetica, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --mono: "Courier New", Courier, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

figure,
p {
  margin-top: 0;
}

.site-header {
  min-height: 88px;
  padding: 18px clamp(24px, 4vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.type-mark {
  display: grid;
  line-height: 0.82;
  letter-spacing: -0.05em;
  font-size: 0.74rem;
  font-weight: 700;
}

.type-mark strong {
  color: var(--red);
  font-size: 1.32rem;
  letter-spacing: -0.06em;
}

.header-status {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(217, 35, 46, 0.12);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  min-height: calc(100vh - 88px);
}

.hero-copy {
  padding: clamp(72px, 9vw, 150px) clamp(28px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.eyebrow {
  margin-bottom: 28px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6.8vw, 7.4rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.hero h1 > span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  margin-top: 0.06em;
  color: var(--red);
  font-weight: 400;
}

.hero-lede {
  max-width: 610px;
  margin: 44px 0 0;
  font-size: clamp(1.05rem, 1.4vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.button-primary {
  border-color: var(--red);
  background: var(--red);
  color: white;
}

.button-primary:hover {
  background: #b91d26;
}

.button-ghost:hover {
  background: var(--ink);
  color: white;
}

.hero-visual {
  padding: clamp(24px, 4vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(rgba(16, 19, 24, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 19, 24, 0.04) 1px, transparent 1px),
    #e7e0d4;
  background-size: 32px 32px;
}

.hero-visual figure {
  margin-bottom: 0;
}

.image-frame {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--ink);
  box-shadow: 14px 14px 0 var(--red);
  transform: rotate(1.2deg);
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.03);
}

.carousel-image {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px) !important;
  height: calc(100% - 20px) !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 800ms ease, visibility 800ms ease;
}

.carousel-image.is-active {
  opacity: 1;
  visibility: visible;
}

.image-caption {
  margin: 30px 0 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.carousel-dots {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.carousel-dot:hover {
  transform: scale(1.2);
}

.carousel-dot.is-active {
  background: var(--red);
  border-color: var(--red);
}

.message-ribbon {
  overflow: hidden;
  padding: 17px 0;
  background: var(--red);
  color: white;
  transform: rotate(-1deg) scale(1.02);
}

.message-ribbon div {
  width: max-content;
  min-width: 100%;
  display: flex;
  justify-content: space-around;
  gap: 56px;
  padding: 0 24px;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.movement {
  padding: clamp(100px, 11vw, 180px) clamp(24px, 7vw, 120px);
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) 1fr;
  gap: clamp(50px, 8vw, 130px);
}

.section-label {
  align-self: start;
  display: flex;
  gap: 15px;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label span {
  color: var(--red);
}

.section-label p {
  margin: 0;
}

.movement-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(40px, 7vw, 110px);
}

.pull-quote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.4vw, 5.2rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.body-copy {
  align-self: end;
}

.body-copy p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.body-copy p + p {
  margin-top: 22px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.fact {
  min-height: 315px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fact + .fact {
  border-left: 1px solid var(--ink);
}

.fact span {
  color: var(--red);
  font-family: var(--serif);
  font-size: clamp(4.5rem, 8vw, 8.5rem);
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.fact h2 {
  margin: 0;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.date-section {
  padding: clamp(100px, 11vw, 180px) clamp(24px, 7vw, 120px);
  background: var(--ink);
  color: white;
}

.light-label {
  margin-bottom: clamp(60px, 8vw, 120px);
  color: rgba(255, 255, 255, 0.62);
}

.date-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(50px, 10vw, 170px);
  align-items: end;
}

.eyebrow-light {
  color: var(--gold);
}

.date-layout h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 10rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.date-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.65;
}

.date-copy .hashtag {
  margin-top: 35px;
  color: white;
  font-family: var(--mono);
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.promo {
  padding: clamp(90px, 10vw, 150px) clamp(24px, 7vw, 120px);
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: clamp(50px, 10vw, 160px);
  align-items: end;
  background: var(--gold);
}

.promo h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 8vw, 8.8rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

.promo .eyebrow {
  color: var(--ink);
}

.promo-details p {
  margin-bottom: 28px;
  font-size: 1.08rem;
  line-height: 1.65;
}

.promo-details strong {
  white-space: nowrap;
}

.button-dark {
  background: var(--ink);
  color: white;
}

.button-dark:hover {
  background: white;
  color: var(--ink);
}

footer {
  padding: 28px clamp(24px, 4vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

footer p:nth-child(2) {
  text-align: center;
}

footer p:last-child {
  text-align: right;
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr 0.9fr;
  }

  .movement-copy {
    grid-template-columns: 1fr;
  }

  .body-copy {
    max-width: 650px;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 74px;
  }

  .header-status {
    max-width: 180px;
    justify-content: flex-end;
    text-align: right;
    font-size: 0.56rem;
  }

  .hero {
    display: block;
    min-height: auto;
  }

  .hero-copy {
    min-height: calc(100svh - 74px);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero h1 {
    font-size: clamp(3.4rem, 11vw, 6.6rem);
  }

  .hero-visual {
    padding: 55px 28px 45px;
  }

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

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

  .fact {
    min-height: 230px;
  }

  .fact + .fact {
    border-left: 0;
    border-top: 1px solid var(--ink);
  }

  .date-layout,
  .promo {
    grid-template-columns: 1fr;
  }

  .date-layout h2 {
    font-size: clamp(4rem, 20vw, 8rem);
  }

  footer {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  footer p:nth-child(2),
  footer p:last-child {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .hero-copy {
    padding-top: 70px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 14vw, 4.6rem);
    letter-spacing: -0.06em;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .message-ribbon div {
    justify-content: flex-start;
  }

  .movement,
  .date-section,
  .promo {
    padding-left: 22px;
    padding-right: 22px;
  }

  .fact {
    padding: 30px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }

  .carousel-image,
  .carousel-dot {
    transition: none;
  }
}
