:root {
  --ink: #0b0b0b;
  --red: #d92117;
  --red-worn: #a8180f;
  --paper: #f4f2ec;
  --xerox: #d8d4c8;
  --dark: #1a1918;

  --font-display: 'Anton', sans-serif;
  --font-body: 'Archivo', sans-serif;
  --font-mono: 'Courier Prime', monospace;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
}

a {
  color: var(--red);
}

.red {
  color: var(--red);
}

/* ---------- announcement ---------- */
.announcement {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-align: center;
  padding: 9px 16px;
}

/* ---------- header ---------- */
.header {
  display: flex;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 3px solid var(--ink);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.brand-tag {
  background: var(--red);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 3px 6px;
  transform: rotate(-3deg);
  display: inline-block;
}

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  border-bottom: 3px solid var(--ink);
}

.hero-text {
  padding: 56px 44px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background-image: repeating-linear-gradient(0deg, rgba(11, 11, 11, 0.045) 0 1px, transparent 1px 4px);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--red);
  text-transform: uppercase;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0;
}

.lede {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  max-width: 460px;
  margin: 0;
}

/* ---------- subscribe form ---------- */
.subscribe {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 460px;
}

.subscribe-label {
  font-family: var(--font-mono);
  font-size: 13px;
}

.subscribe-row {
  display: flex;
}

.subscribe-row input {
  flex: 1;
  border: 2px solid var(--ink);
  border-right: none;
  background: var(--paper);
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink);
  min-width: 0;
}

.subscribe-row input::placeholder {
  color: rgba(11, 11, 11, 0.5);
}

.subscribe-row input:focus {
  outline: 2px solid var(--red);
  outline-offset: -2px;
}

.subscribe-row button {
  background: var(--red);
  color: var(--paper);
  border: 2px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 26px;
  cursor: pointer;
}

.subscribe-row button:hover {
  background: var(--ink);
}

.subscribe-row button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.subscribe-message {
  font-family: var(--font-mono);
  font-size: 12px;
  min-height: 16px;
}

.subscribe-message.success {
  color: var(--red);
}

.subscribe-message.error {
  color: var(--red-worn);
}

/* ---------- hero photo ---------- */
.hero-photo {
  position: relative;
  border-left: 3px solid var(--ink);
  background-color: var(--xerox);
  background-image: repeating-linear-gradient(135deg, rgba(11, 11, 11, 0.5) 0 1px, transparent 1px 9px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}

.hero-photo-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 10px 16px;
}

.hero-photo-badge {
  position: absolute;
  bottom: 28px;
  left: 24px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 20px;
  padding: 10px 18px;
  transform: rotate(-2deg);
  text-transform: uppercase;
}

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden;
  background: var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 12px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: slide-mq 28s linear infinite;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--paper);
  text-transform: uppercase;
  white-space: nowrap;
  gap: 28px;
}

@keyframes slide-mq {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 36px 24px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
}

.footer-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.7;
  opacity: 0.7;
  margin-top: 10px;
}

/* ---------- responsive ---------- */
@media (max-width: 720px) {
  .announcement {
    font-size: 10px;
  }

  .header {
    padding: 16px;
  }

  .brand-name {
    font-size: 22px;
  }

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

  .hero-text {
    padding: 32px 20px;
    gap: 24px;
  }

  .lede {
    font-size: 16px;
    max-width: none;
  }

  .subscribe {
    max-width: none;
  }

  .subscribe-row {
    flex-direction: column;
  }

  .subscribe-row input {
    border-right: 2px solid var(--ink);
    border-bottom: none;
  }

  .hero-photo {
    min-height: 280px;
    border-left: none;
    border-top: 3px solid var(--ink);
  }

  .marquee-track {
    font-size: 16px;
  }

  .footer {
    padding: 28px 20px;
  }
}
