:root {
  --paper: #f7f1e6;
  --paper-deep: #efe5d0;
  --ink: #101010;
  --muted: #5d554d;
  --red: #e3142d;
  --red-deep: #a60d21;
  --yellow: #ffe356;
  --cream: #fffaf1;
  --line: rgba(16, 16, 16, 0.14);
  --shadow: 0 22px 48px rgba(16, 16, 16, 0.16);
  --headline: Impact, Haettenschweiler, "Arial Black", sans-serif;
  --body: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 227, 86, 0.28), transparent 18rem),
    radial-gradient(circle at 85% 12%, rgba(227, 20, 45, 0.15), transparent 16rem),
    repeating-linear-gradient(0deg, rgba(16, 16, 16, 0.02), rgba(16, 16, 16, 0.02) 1px, transparent 1px, transparent 19px),
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  background: var(--ink);
  color: var(--yellow);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.topbar a {
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 0.5rem;
}

.brand-wrap {
  max-width: 18rem;
}

.brand-mark {
  display: inline-block;
  padding: 0.9rem 1rem 0.6rem;
  color: var(--cream);
  font-family: var(--headline);
  font-size: clamp(2.4rem, 10vw, 4.3rem);
  line-height: 0.85;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, var(--red) 0%, var(--red-deep) 100%);
  box-shadow: 0 0.6rem 0 #111;
  transform: rotate(-1.3deg);
}

.brand-kicker {
  margin: 1rem 0 0;
  max-width: 17rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.menu-toggle {
  margin-left: auto;
  padding: 0.7rem 1rem;
  border: 2px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
  padding: 0.5rem 1rem 1rem;
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  padding: 0.8rem 1rem;
  border: 2px solid var(--ink);
  background: rgba(255, 255, 255, 0.65);
  font-weight: 800;
  text-transform: uppercase;
}

main {
  padding-bottom: 3rem;
}

.hero-shell,
.content-block,
.page-hero,
.article-page,
.contact-page,
.listing-page,
.legal-page,
.not-found-page {
  width: min(74rem, calc(100% - 2rem));
  margin: 0 auto;
}

.hero-shell {
  display: grid;
  gap: 1.2rem;
  padding: 1rem 0 0;
}

.hero-copy,
.hero-feature,
.promo-card,
.story-card,
.update-card,
.update-tease,
.related-card,
.link-card,
.sidebar-card,
.article-shell {
  position: relative;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
}

.hero-copy {
  overflow: hidden;
  padding: 1.3rem 1.2rem 1.5rem;
  background:
    linear-gradient(135deg, rgba(255, 227, 86, 0.72), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 237, 0.98));
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -1.2rem;
  bottom: -1.6rem;
  width: 7rem;
  height: 7rem;
  background: radial-gradient(circle, rgba(227, 20, 45, 0.18) 0, rgba(227, 20, 45, 0.18) 0.22rem, transparent 0.23rem) 0 0 / 0.85rem 0.85rem;
  transform: rotate(11deg);
}

.section-label {
  margin: 0 0 0.75rem;
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--headline);
  letter-spacing: 0.01em;
}

.hero-copy h1,
.page-hero h1,
.article-shell h1 {
  font-size: clamp(2.5rem, 10vw, 5.8rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.hero-dek,
.page-hero p,
.article-dek {
  margin: 1rem 0 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.hero-actions,
.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions {
  margin-top: 1.4rem;
}

.button,
.share-row a,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.share-row a:hover,
.submit-button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 0.25rem 0.25rem 0 var(--ink);
}

.button-primary,
.submit-button {
  background: var(--red);
  color: var(--cream);
}

.button-secondary,
.share-row a {
  background: var(--yellow);
  color: var(--ink);
}

.price-burst {
  display: inline-grid;
  gap: 0.1rem;
  margin-top: 1.4rem;
  padding: 0.8rem 1rem;
  width: max-content;
  color: var(--cream);
  background: linear-gradient(180deg, var(--ink), #2a2a2a);
  clip-path: polygon(15% 0, 85% 0, 100% 18%, 100% 82%, 85% 100%, 15% 100%, 0 82%, 0 18%);
}

.price-burst span {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-burst strong {
  font-size: 1.4rem;
}

.hero-feature {
  overflow: hidden;
  background: #fff;
}

.hero-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-feature-body {
  padding: 1rem;
  background: linear-gradient(180deg, rgba(227, 20, 45, 0.05), rgba(255, 255, 255, 1));
}

.hero-feature-body h2 {
  margin-top: 0.5rem;
  font-size: clamp(1.8rem, 6vw, 3rem);
  line-height: 0.93;
  text-transform: uppercase;
}

.hero-feature-body p:last-child {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.ticker-strip {
  overflow: hidden;
  margin-top: 1.35rem;
  border-block: 2px solid var(--ink);
  background: var(--yellow);
}

.ticker-inner {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  padding: 0.8rem 0;
  font-family: var(--headline);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: ticker 26s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.content-block {
  padding-top: 2rem;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.section-head h2 {
  font-size: clamp(2rem, 7vw, 3.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.text-link {
  color: var(--red-deep);
  font-weight: 900;
  text-transform: uppercase;
}

.story-grid,
.related-grid,
.update-grid,
.links-grid {
  display: grid;
  gap: 1rem;
}

.story-card,
.update-card,
.update-tease,
.related-card,
.link-card,
.sidebar-card {
  background: rgba(255, 255, 255, 0.82);
}

.story-card-image-link {
  display: block;
  border-bottom: 2px solid var(--ink);
}

.story-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.story-card-body,
.update-card,
.update-tease,
.related-card,
.link-card,
.sidebar-card {
  padding: 1rem;
}

.story-kicker {
  margin: 0;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.story-card h3,
.update-card h3,
.update-tease h3,
.related-card h3,
.link-card h2 {
  margin-top: 0.45rem;
  font-size: 1.75rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.story-meta,
.article-meta,
.article-shell figcaption,
.form-alert,
.footer-copy {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.story-card p:last-child,
.update-card p:last-child,
.update-tease p:last-child,
.related-card p,
.link-card p,
.sidebar-card p {
  margin-bottom: 0;
  line-height: 1.55;
}

.split-promo,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.promo-card {
  padding: 1.3rem 1.2rem;
}

.promo-card h2 {
  font-size: clamp(2rem, 7vw, 3.2rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.promo-card-dark {
  color: var(--cream);
  background: linear-gradient(180deg, #1a1a1a, #050505);
}

.promo-card-dark .section-label,
.promo-card-dark a {
  color: var(--yellow);
}

.promo-card-light {
  background: linear-gradient(180deg, #fff7da, #ffed8d);
}

.promo-card-paper {
  background: linear-gradient(180deg, #fffefb, #f3ebda);
}

.benefit-list {
  padding-left: 1.2rem;
  line-height: 1.7;
}

.contact-mini p {
  margin: 0.6rem 0 0;
}

.page-hero {
  padding-top: 1rem;
}

.page-hero p:last-child {
  margin-bottom: 0;
}

.article-page {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
}

.article-shell {
  padding: 1.3rem 1.2rem 1.4rem;
  background: rgba(255, 255, 255, 0.88);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 0;
  font-weight: 700;
}

.article-meta span {
  color: var(--red);
}

.article-dek {
  font-size: 1.15rem;
}

.article-figure {
  margin: 1.3rem 0 0;
}

.article-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 2px solid var(--ink);
}

.article-figure figcaption {
  margin-top: 0.55rem;
}

.article-figure figcaption a {
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.article-section + .article-section {
  margin-top: 1.5rem;
}

.article-section h2 {
  margin-bottom: 0.8rem;
  font-size: 1.9rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.article-section p {
  margin: 0 0 1rem;
  line-height: 1.75;
}

.article-share .share-row {
  margin-top: 1rem;
}

.tip-form {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.tip-form label {
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tip-form input,
.tip-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid var(--ink);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font: inherit;
}

.form-alert {
  display: none;
  margin-top: 0.9rem;
  padding: 0.75rem 0.9rem;
  border: 2px solid var(--ink);
  background: #fff;
}

[hidden] {
  display: none !important;
}

.legal-copy h2 {
  margin: 1.5rem 0 0.6rem;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.legal-copy p {
  margin: 0;
  line-height: 1.75;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: min(74rem, calc(100% - 2rem));
  margin: 1rem auto 2.2rem;
  padding: 1.1rem 1rem;
  border: 2px solid var(--ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.footer-brand {
  margin: 0;
  font-family: var(--headline);
  font-size: 2rem;
  text-transform: uppercase;
}

.footer-copy {
  margin: 0.35rem 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (min-width: 48rem) {
  .site-header {
    align-items: center;
    padding: 1.2rem 1.4rem 0.8rem;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 0.7rem;
    width: auto;
    padding: 0;
  }

  .site-nav a {
    background: rgba(255, 255, 255, 0.72);
  }

  .hero-shell {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .related-grid,
  .update-grid,
  .links-grid,
  .split-promo,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-page {
    grid-template-columns: minmax(0, 2fr) minmax(18rem, 0.8fr);
    align-items: start;
  }

  .article-sidebar {
    position: sticky;
    top: 5.8rem;
    display: grid;
    gap: 1rem;
  }
}

@media (min-width: 68rem) {
  .story-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .update-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}