:root {
  --ink: #13110f;
  --muted: #6c655d;
  --paper: #f7f4ef;
  --paper-soft: #ece8e1;
  --red: #901a18;
  --red-dark: #64100f;
  --gold: #b78a4f;
  --line: rgba(19, 17, 15, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

.top-banner {
  height: clamp(140px, 18vw, 220px);
  overflow: hidden;
  background: #1a0b06;
  border-bottom: 1px solid rgba(0, 0, 0, .28);
}

.top-banner picture,
.top-banner img {
  display: block;
  width: 100%;
  height: 100%;
}

.top-banner img {
  object-fit: cover;
  object-position: center;
}

main { min-height: 70vh; }

.hero {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(28px, 3vw, 42px) 0;
  text-align: center;
}

@media (max-width: 768px) {
  .top-banner {
    height: clamp(150px, 32vw, 205px);
  }

  .top-banner img {
    object-position: center;
  }
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h1, h2 { font-family: Georgia, "Times New Roman", serif; }
h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.04em;
}
.hero-copy {
  max-width: 670px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}
.youtube-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  margin-top: 31px;
  padding: 14px 24px;
  border: 1px solid var(--red);
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(180deg, #a92320, var(--red-dark));
  box-shadow: 0 12px 28px rgba(103, 16, 16, .18);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.youtube-button svg { width: 25px; height: 25px; fill: currentColor; }
.youtube-button:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
  box-shadow: 0 17px 34px rgba(103, 16, 16, .25);
}
.youtube-button:focus-visible,
.series-card:focus-visible,
.social-links a:focus-visible {
  outline: 3px solid rgba(143, 23, 23, .4);
  outline-offset: 5px;
}

.series {
      padding: clamp(40px, 5vw, 60px) 0
             clamp(70px, 8vw, 90px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0, rgba(143, 23, 23, .045), transparent 30rem),
    var(--paper-soft);
}
.section-heading {
  width: min(950px, calc(100% - 40px));
  margin: 0 auto 48px;
  text-align: center;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: -.035em;
}
.series-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: min(1450px, calc(100% - 40px));
  margin: 0 auto;
}
.series-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 18px;
  color: #fff;
  background: #111;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .19);
  text-decoration: none;
  isolation: isolate;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.series-card::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 1px solid transparent;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  transition: border-color .35s ease, box-shadow .35s ease;
}
.series-card:hover {
  transform: translateY(-9px);
  border-color: rgba(183, 138, 79, .55);
  box-shadow: 0 30px 68px rgba(0, 0, 0, .3);
}
.series-card:hover::after {
  border-color: rgba(221, 180, 111, .45);
  box-shadow: inset 0 0 26px rgba(211, 157, 77, .12);
}
.series-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .8s cubic-bezier(.2, .7, .2, 1), filter .5s ease;
}
.series-card:hover img {
  transform: scale(1.065);
  filter: saturate(1.05) contrast(1.03);
}
.card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(0, 0, 0, .93) 0%, rgba(0, 0, 0, .63) 25%, rgba(0, 0, 0, .14) 56%, rgba(0, 0, 0, .05) 100%);
}
.card-content {
  position: absolute;
  right: 24px;
  bottom: 26px;
  left: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.card-content strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.06;
  text-shadow: 0 3px 16px rgba(0, 0, 0, .75);
}
.watch-button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(143, 23, 23, .92);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .22);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .25s ease, transform .25s ease;
}
.series-card:hover .watch-button {
  transform: translateX(3px);
  background: #b6221f;
}

.site-footer {
  padding: 45px 0 24px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 40%, rgba(143, 23, 23, .14), transparent 20rem),
    #080808;
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.social-links {
  display: flex;
  align-items: stretch;
}
.social-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 205px;
  padding: 8px 28px;
  border-right: 1px solid rgba(255, 255, 255, .16);
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}
.social-links a:first-child { padding-left: 0; }
.social-links a:last-child { border-right: 0; }
.social-links a:hover { color: #deb477; transform: translateY(-2px); }
.social-links svg { width: 27px; height: 27px; flex: 0 0 auto; fill: currentColor; }
.social-links span { display: flex; flex-direction: column; gap: 3px; }
.social-links b { font-size: .84rem; letter-spacing: .05em; text-transform: uppercase; }
.social-links small { color: rgba(255, 255, 255, .57); font-size: .75rem; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 17px;
  flex-shrink: 0;
}
.footer-brand img { width: 88px; height: 88px; object-fit: contain; }
.footer-brand span {
  max-width: 190px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1.15;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.copyright {
  width: min(1180px, calc(100% - 40px));
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .43);
  font-size: .74rem;
  text-align: center;
}

@media (max-width: 1120px) {
  .series-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 840px; }
  .footer-content { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 36px;
  }
  .series-grid { grid-template-columns: 1fr; width: min(470px, calc(100% - 28px)); }
  .series-card { border-radius: 14px; }
  .social-links { width: 100%; flex-direction: column; }
  .social-links a,
  .social-links a:first-child {
    min-width: 0;
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
  }
  .social-links a:last-child { border-bottom: 0; }
  .footer-brand img { width: 72px; height: 72px; }
}

@media (max-width: 430px) {
  h1 { font-size: clamp(2.15rem, 11vw, 2.65rem); }
  .youtube-button { width: 100%; max-width: 335px; }
  .card-content { right: 20px; bottom: 22px; left: 20px; }
  .footer-brand span { font-size: 1.04rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
