
  :root {
    --paper: #ede4d1;
    --paper-dark: #ddd1b7;
    --ink: #1a1410;
    --red: #b33024;
    --red-deep: #7a1d17;
    --mustard: #c89a2c;
    --olive: #5c5930;
    --forest: #1B3A2F;
    --cream: #f5ecd7;
    --shadow: rgba(26, 20, 16, 0.15);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Bitter', Georgia, serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    font-size: 17px;
    position: relative;
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0 0.06 0 0 0 0.12 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.5;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
  }

  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      radial-gradient(circle at 2% 2%, var(--red) 0 2px, transparent 2px),
      radial-gradient(circle at 98% 2%, var(--red) 0 2px, transparent 2px),
      radial-gradient(circle at 2% 98%, var(--red) 0 2px, transparent 2px),
      radial-gradient(circle at 98% 98%, var(--red) 0 2px, transparent 2px);
    pointer-events: none;
    z-index: 2;
    opacity: 0.4;
  }

  .wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 3;
  }

  header {
    border-bottom: 3px double var(--ink);
    padding: 24px 0 16px;
    margin-bottom: 40px;
  }

  .masthead {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: 'Special Elite', monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .masthead .left { color: var(--red-deep); font-weight: 700; }
  .masthead .right { color: var(--ink); opacity: 0.7; }

  .hero { padding: 60px 0 40px; position: relative; }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
  }

  @media (min-width: 860px) {
    .hero-grid { grid-template-columns: 1.4fr 1fr; gap: 60px; }
  }

  .eyebrow {
    font-family: 'Special Elite', monospace;
    font-size: 13px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
    display: inline-block;
    border: 2px solid var(--red);
    padding: 6px 14px;
    background: var(--cream);
    transform: rotate(-1.5deg);
    box-shadow: 3px 3px 0 var(--shadow);
  }

 h1 {
    font-family: 'Rozha One', serif;
    font-size: clamp(52px, 9vw, 108px);
    line-height: 0.92;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 24px;
    font-weight: 400;
  }

 h1 .line-2 {
    display: block;
    color: var(--red);
    font-style: italic;
    font-size: 0.84em;
    transform: translateX(0.2em);
  }
  
h1 .line-3 {
    display: block;
    color: var(--ink);
    letter-spacing: 0.01em;
    font-size: 0.42em;
    transform: translateX(0.4em);
  }

  .tagline {
    font-family: 'Rozha One', serif;
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.2;
    margin: 28px 0 24px;
    color: var(--olive);
    font-style: italic;
    padding-left: 18px;
    border-left: 4px solid var(--mustard);
  }

  .deck {
    font-size: 19px;
    line-height: 1.55;
    max-width: 48ch;
    margin-bottom: 32px;
  }

  .poster-wrap {
    position: relative;
    transform: rotate(2deg);
    transition: transform 0.3s ease;
  }
  .poster-wrap:hover { transform: rotate(0deg) scale(1.02); }

  .poster {
    width: 100%;
    aspect-ratio: 768 / 1013;
    display: block;
    object-fit: cover;
    box-shadow:
      0 20px 40px -15px rgba(26, 20, 16, 0.45),
      0 4px 12px rgba(26, 20, 16, 0.2);
    border: 8px solid var(--cream);
    outline: 1px solid var(--ink);
    background: var(--ink);
  }

  .cta-bar { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 20px; }

  .btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: 'Special Elite', monospace;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--ink);
    transition: all 0.2s ease;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .btn-primary { background: var(--red); color: var(--cream); }
  .btn-primary:hover { background: var(--red-deep); transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
  .btn-secondary { background: var(--cream); color: var(--ink); }
  .btn-secondary:hover { background: var(--mustard); transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }

  section {
    padding: 70px 0;
    border-top: 1px solid var(--ink);
    position: relative;
  }

  .section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    font-family: 'Special Elite', monospace;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red-deep);
  }

  .section-label::before { content: '§'; font-size: 24px; color: var(--mustard); }
  .section-label::after { content: ''; flex: 1; height: 1px; background: var(--ink); opacity: 0.3; }

  h2 {
    font-family: 'Rozha One', serif;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1;
    margin-bottom: 32px;
    font-weight: 400;
    letter-spacing: -0.01em;
  }

  h2 .amp { color: var(--red); font-style: italic; }

  .laurels {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 30px;
    padding: 28px 20px;
    margin: 30px 0 0;
    background: var(--cream);
    border: 1px solid var(--ink);
    box-shadow: 4px 4px 0 var(--shadow);
  }

  .laurel {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Special Elite', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    text-align: center;
    line-height: 1.3;
    padding-bottom: 3px;
  }

  .laurel::before, .laurel::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 28px;
    background:  transparent url(../img/wreath-left_434x836.png) no-repeat center center;
    background-size: 14px 27px;
    /* border-radius: 50% 50% 50% 50% / 70% 70% 30% 30%; 
    opacity: 0.7; */
  }
  .laurel::after { transform: scaleX(-1); }

  .laurel strong {
    display: block;
    color: var(--red-deep);
    font-size: 9px;
    margin-bottom: 2px;
    letter-spacing: 0.18em;
  }

  .trailer-wrap {
    position: relative;
    aspect-ratio: 16/9;
    border: 2px solid var(--ink);
    box-shadow: 8px 8px 0 var(--shadow);
    overflow: hidden;
    background: var(--ink);
    cursor: pointer;
  }

  .trailer-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
    transition: transform 0.5s ease;
  }

  .trailer-wrap:hover .trailer-thumb { transform: scale(1.03); }

  .trailer-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.45) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
  }

  .trailer-wrap:hover .trailer-overlay { background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 100%); }

  .trailer-play {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--red);
    border: 4px solid var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    transition: all 0.2s ease;
  }

  .trailer-wrap:hover .trailer-play {
    background: var(--red-deep);
    transform: scale(1.08);
  }

  .trailer-play::before {
    content: '';
    width: 0; height: 0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 28px solid var(--cream);
    margin-left: 7px;
  }

  .trailer-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 3;
  }

  .trailer-caption {
    margin-top: 14px;
    font-family: 'Special Elite', monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--olive);
    text-align: center;
  }
  .trailer-caption a { color: var(--red); text-decoration: none; border-bottom: 1px solid var(--red); padding-bottom: 1px; }
  .trailer-caption a:hover { color: var(--red-deep); border-bottom-color: var(--red-deep); }

  .fact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 20px;
  }

  .fact {
    background: var(--cream);
    border: 1px solid var(--ink);
    padding: 20px 22px;
    box-shadow: 4px 4px 0 var(--shadow);
    transition: transform 0.2s ease;
  }
  .fact:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--shadow); }

  .fact dt {
    font-family: 'Special Elite', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red-deep);
    margin-bottom: 6px;
  }
  .fact dd { font-size: 16px; line-height: 1.4; font-weight: 500; }

  .two-col { display: grid; grid-template-columns: 1fr; gap: 40px; }
  @media (min-width: 780px) { .two-col { grid-template-columns: 1fr 1fr; gap: 60px; } }

  .prose p { margin-bottom: 18px; font-size: 17px; line-height: 1.7; }
  .prose p:first-child::first-letter {
    font-family: 'Rozha One', serif;
    font-size: 5em;
    float: left;
    line-height: 0.85;
    padding: 4px 10px 0 0;
    color: var(--red);
  }

  .highlights { display: grid; grid-template-columns: 1fr; gap: 20px; }

  .highlight {
    padding: 24px;
    border-left: 5px solid var(--red);
    background: var(--cream);
    position: relative;
  }
  .highlight:nth-child(2) { border-left-color: var(--mustard); background: var(--paper-dark); transform: translateX(12px); }
  .highlight:nth-child(3) { border-left-color: var(--olive); }

  .highlight h3 {
    font-family: 'Rozha One', serif;
    font-size: 22px;
    margin-bottom: 0px;
    font-weight: 400;
  }
  .highlight p { font-size: 15px; line-height: 1.55; margin-bottom: 12px;}


  .quotes-panel {
    background: var(--forest);
    color: var(--cream);
    padding: 50px 40px;
    border: 2px solid var(--ink);
    box-shadow: 8px 8px 0 var(--shadow);
    position: relative;
  }

  .quotes-panel .section-label { color: var(--mustard); margin-bottom: 36px; }
  .quotes-panel .section-label::before { color: var(--mustard); }
  .quotes-panel .section-label::after { background: var(--mustard); opacity: 0.4; }

  .quote {
    display: grid;
    grid-template-columns: 4px 1fr;
    gap: 18px;
    margin-bottom: 26px;
    padding-bottom: 26px;
    border-bottom: 1px dashed rgba(245, 236, 215, 0.15);
  }

  .quote:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
  .quote .bar { background: var(--mustard); }

  .quote blockquote {
    font-family: 'Rozha One', serif;
    font-style: italic;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.4;
    color: var(--cream);
    margin-bottom: 10px;
  }

  .quote cite {
    font-family: 'Special Elite', monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mustard);
    font-style: normal;
    font-weight: 700;
  }

  .stars { color: var(--mustard); letter-spacing: 0.05em; margin-right: 6px; }

  .assets-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
  }

  .assets-list li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: var(--cream);
    border: 2px solid var(--ink);
    text-decoration: none;
    color: var(--ink);
    font-family: 'Special Elite', monospace;
    font-size: 14px;
    transition: all 0.15s ease;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .assets-list li a:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--ink);
    background: var(--mustard);
  }

  .assets-list .icon {
    width: 36px; height: 36px;
    background: var(--red); color: var(--cream);
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid var(--ink);
    font-weight: 700; font-size: 11px;
    letter-spacing: 0.1em;
  }

  .screener-card {
    background: var(--cream);
    border: 3px solid var(--ink);
    padding: 40px;
    box-shadow: 10px 10px 0 var(--red);
    position: relative;
  }

  .screener-card::before {
    content: 'CONFIDENTIAL';
    position: absolute;
    top: -14px; right: 30px;
    background: var(--ink);
    color: var(--cream);
    padding: 6px 14px;
    font-family: 'Special Elite', monospace;
    font-size: 11px;
    letter-spacing: 0.25em;
  }

  .screener-card h2 { margin-bottom: 12px; }
  .screener-card > p { margin-bottom: 28px; font-size: 16px; max-width: 60ch; }

  .terms {
    font-family: 'Special Elite', monospace;
    font-size: 12px;
    line-height: 1.7;
    background: var(--paper-dark);
    border: 1px dashed var(--ink);
    padding: 18px 22px;
    margin-bottom: 28px;
  }
  .terms strong { color: var(--red-deep); }

  .contact-block {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding: 32px;
    background: var(--ink);
    color: var(--cream);
  }

  .contact-block .col { flex: 1; min-width: 220px; }

  .contact-block h3 {
    font-family: 'Special Elite', monospace;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mustard);
    margin-bottom: 10px;
  }

  .contact-block p, .contact-block a {
    color: var(--cream);
    font-size: 16px;
    text-decoration: none;
    font-family: 'Bitter', serif;
  }

  .contact-block a:hover { color: var(--mustard); text-decoration: underline; }

  footer {
    margin-top: 60px;
    padding: 40px 0;
    border-top: 3px double var(--ink);
    font-family: 'Special Elite', monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-align: center;
    color: var(--ink);
    opacity: 0.75;
  }

  footer p { margin-bottom: 6px; }

  .stamp {
    position: absolute;
    font-family: 'Special Elite', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    border: 2px solid var(--red);
    padding: 6px 12px;
    transform: rotate(-8deg);
    opacity: 0.85;
    pointer-events: none;
    background: var(--cream);
  }

  .stamp-1 { top: 40px; right: -10px; z-index: 5; }

  @keyframes rise {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .animate-in { animation: rise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
  .animate-in:nth-child(2) { animation-delay: 0.1s; }
  .animate-in:nth-child(3) { animation-delay: 0.2s; }

  @media (max-width: 600px) {
    .wrapper { padding: 0 20px; }
    .screener-card { padding: 28px 22px; }
    .contact-block { padding: 24px; }
    .quotes-panel { padding: 32px 24px; }
    section { padding: 50px 0; }
  }
