:root {
  --black: #111111;
  --ink: #1f1a17;
  --muted: #6c625c;
  --red: #a71920;
  --red-dark: #7d1116;
  --paper: #f7f1e8;
  --paper-deep: #efe6d8;
  --border: #d7cfc3;
  --white: #fffaf1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(167, 25, 32, 0.05), transparent 26rem),
    linear-gradient(180deg, var(--paper), #fbf7ef);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.5;
}

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

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

.site-header {
  background: rgba(247, 241, 232, 0.94);
  border-bottom: 1px solid var(--border);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: var(--black);
  color: white;
  padding: 0.55rem clamp(1rem, 4vw, 3rem);
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
}

.topbar p {
  margin: 0;
}

.topbar span,
.site-footer span {
  color: var(--red);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  font-size: 0.82rem;
}

.topbar-actions a:not(.subscribe-small) {
  opacity: 0.85;
}

.subscribe-small {
  background: var(--red);
  color: white;
  padding: 0.55rem 1rem;
  margin: -0.55rem -3rem -0.55rem 0;
  font-weight: 700;
}

.masthead {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(1.2rem, 3vw, 2.6rem) 1.25rem 1rem;
  border-bottom: 4px double var(--black);
}

.brand-logo {
  width: min(100%, 1000px);
  max-height: 225px;
  object-fit: contain;
  margin: 0 auto;
}

.main-nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
  border-bottom: 2px solid var(--black);
}

.menu-toggle {
  display: none;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 0.8rem;
  font-family: "Courier New", monospace;
  font-size: 1rem;
  cursor: pointer;
}

.main-nav ul {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 7vw, 5.5rem);
  list-style: none;
  margin: 0;
  padding: 0.7rem 0;
  font-family: "Courier New", monospace;
  font-size: 1rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 0.25rem 0;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 3px;
  background: var(--red);
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.25rem;
}

.hero {
  display: grid;
  grid-template-columns: 0.95fr 1.45fr;
  min-height: 340px;
  border: 1px solid var(--border);
  background: rgba(255, 250, 241, 0.58);
  overflow: hidden;
}

.hero-copy {
  padding: clamp(1.5rem, 3vw, 2.7rem);
}

.eyebrow,
.category {
  margin: 0 0 0.5rem;
  color: var(--red);
  font-family: "Courier New", monospace;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 500px;
  margin: 0 0 1rem;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 520px;
  font-size: 1.08rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  background: var(--red);
  color: white;
  border: 0;
  padding: 0.85rem 1.35rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.button:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.hero-image {
  position: relative;
  min-height: 340px;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.3), rgba(0,0,0,0.05)),
    linear-gradient(135deg, #14100f 0%, #4c4037 42%, #d7c7b1 42%, #2b2723 70%, #0e0c0b 100%);
  overflow: hidden;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 36px);
  mix-blend-mode: screen;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 75%, rgba(255,255,255,0.22), transparent 15rem);
}

.hero-image-text {
  position: absolute;
  right: 7%;
  top: 22%;
  z-index: 2;
  transform: rotate(-2deg);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  line-height: 0.9;
  color: #111;
  text-align: left;
  text-shadow: 0 1px 0 rgba(255,255,255,0.3);
}

.hero-image-text span {
  display: block;
}

.hero-image-text span:last-child {
  border-bottom: 0.22em solid var(--red);
}

.content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 1.1fr;
  gap: 1rem;
  margin-top: 1.1rem;
}

.panel {
  background: rgba(255, 250, 241, 0.58);
  border: 1px solid var(--border);
  padding: 1.1rem;
}

.panel h2 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.65rem;
  margin-bottom: 0.8rem;
}

.panel-heading a,
.text-link,
.review-item a {
  color: var(--red);
  font-family: "Courier New", monospace;
  font-size: 0.8rem;
  font-weight: 800;
}

.panel-subtitle {
  margin: 0.25rem 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.story-list {
  display: grid;
  gap: 0.8rem;
}

.story-row,
.review-item {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.story-row:last-child,
.review-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.story-row h3,
.review-item h3,
.editors h3 {
  margin: 0.1rem 0 0.25rem;
  line-height: 1.15;
}

.story-row p,
.review-item p,
.editors p {
  margin-top: 0;
  margin-bottom: 0.3rem;
  font-size: 0.93rem;
}

time {
  color: var(--muted);
  font-size: 0.82rem;
}

.thumb,
.cover,
.feature-thumb {
  min-height: 90px;
  background-color: #26221f;
  background-size: cover;
  background-position: center;
  filter: grayscale(80%);
}

.thumb-bridge {
  background-image: linear-gradient(135deg, #111 0%, #bdb7ad 50%, #252525 100%);
}

.thumb-lake {
  background-image: radial-gradient(circle at 42% 72%, var(--red) 0 5%, transparent 6%), linear-gradient(135deg, #1f2426, #c6c0b5 48%, #25231f);
}

.thumb-camera {
  background-image: radial-gradient(circle at 58% 55%, #0d0d0d 0 19%, #b8aa97 20% 24%, #222 25% 31%, transparent 32%), linear-gradient(135deg, #0c0c0c, #8f8579);
}

.feature-thumb {
  min-height: 175px;
  margin-bottom: 1rem;
  background-image: radial-gradient(circle at 52% 62%, #111 0 5%, transparent 7%), linear-gradient(155deg, #1b2022 0%, #d5d1c8 50%, #343536 52%, #0f1111 100%);
}

.link-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  border-top: 1px solid var(--border);
  padding-top: 0.7rem;
}

.link-list a {
  color: var(--ink);
  font-weight: 800;
}

.cover {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f6d676;
  font-family: "Courier New", monospace;
  font-weight: 900;
  text-align: center;
  background: var(--black);
}

.cover-film {
  background-image: linear-gradient(135deg, #090909, #4b2f28 45%, #101827);
}

.cover-podcast {
  color: #f8db3b;
}

.about-contact {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 1.1rem;
  margin-top: 1.1rem;
}

.about-contact > div,
.contact-card,
.newsletter {
  background: var(--black);
  color: white;
  padding: clamp(1.4rem, 3vw, 2.5rem);
}

.about-contact h2,
.newsletter h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.about-contact p:not(.eyebrow),
.newsletter p {
  color: #ded7ce;
}

.contact-card {
  display: grid;
  gap: 0.8rem;
}

.contact-card label {
  display: grid;
  gap: 0.35rem;
  font-family: "Courier New", monospace;
  font-size: 0.85rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  padding: 0.8rem;
  font: inherit;
}

textarea {
  resize: vertical;
}

.newsletter {
  margin-top: 1.1rem;
  text-align: center;
  background: var(--red-dark);
}

.newsletter form {
  display: flex;
  max-width: 520px;
  margin: 1rem auto 0;
}

.newsletter input {
  border: 0;
}

.newsletter button {
  border: 0;
  background: var(--black);
  color: white;
  padding: 0 1.25rem;
  font-weight: 800;
  cursor: pointer;
}

.form-message {
  min-height: 1.2rem;
  margin: 0.65rem 0 0;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  background: var(--black);
  color: white;
  padding: 1.3rem clamp(1rem, 4vw, 3rem);
  font-size: 0.9rem;
}

.site-footer nav {
  display: flex;
  gap: 1.5rem;
}

.site-footer p {
  margin: 0;
}

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

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
  }

  .topbar-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .subscribe-small {
    margin: 0;
  }

  .hero,
  .content-grid,
  .about-contact,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 280px;
  }

  .site-footer,
  .site-footer p:last-child {
    text-align: center;
  }

  .site-footer nav {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 650px) {
  .menu-toggle {
    display: block;
  }

  .main-nav ul {
    display: none;
    flex-direction: column;
    gap: 0;
    text-align: center;
    padding-bottom: 1rem;
  }

  .main-nav ul.open {
    display: flex;
  }

  .story-row,
  .review-item {
    grid-template-columns: 86px 1fr;
  }

  .newsletter form {
    flex-direction: column;
  }

  .newsletter button {
    padding: 0.85rem 1.25rem;
  }
}
