/* --- CSS RESET & NORMALIZE --- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  font-size: 100%;
  background: #F4F4F4;
}
body {
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  background: #F4F4F4;
  color: #19202A;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
}
a, button {
  transition: color 0.20s, background 0.20s, box-shadow 0.20s, border-color 0.20s;
  text-decoration: none;
  cursor: pointer;
}
ul,ol{
  list-style-position: outside;
  margin-left: 1.25em;
}


/* --- BRAND COLORS & FONTS --- */
:root {
  --brand-primary: #19202A;
  --brand-secondary: #E0B974;
  --brand-accent: #F4F4F4;
  --brand-body: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  --brand-display: 'Montserrat', 'Source Sans Pro', Arial, Helvetica, sans-serif;

  --shadow-main: 0 6px 32px 0 rgba(25,32,42,0.12);
  --radius-main: 14px;
  --radius-card: 12px;
  --border-gold: 1.5px solid #E0B974;
}


/* --- GENERAL LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  box-shadow: var(--shadow-main);
  border-radius: var(--radius-main);
}


/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(25,32,42,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 0px;
  padding-bottom: 0px;
}
nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
nav a {
  font-family: var(--brand-display);
  font-size: 1.05em;
  font-weight: 500;
  color: var(--brand-primary);
  letter-spacing: 0.03em;
  padding: 12px 6px;
  border-radius: 4px;
  position: relative;
}
nav a.cta-primary {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border-radius: 32px;
  font-weight: 700;
  padding: 10px 30px;
  box-shadow: 0 2px 8px 0 rgba(224,185,116,0.13);
  border: 1.5px solid var(--brand-secondary);
  text-shadow: 0 1px 1px rgba(244,244,244,0.03), 0 0 #fff;
}
nav a.cta-primary:hover, nav a.cta-primary:focus {
  background: #fffbe7;
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-secondary);
  box-shadow: 0 1px 8px 0 rgba(224,185,116,0.18);
}
nav a:hover, nav a:focus {
  color: var(--brand-secondary);
  background: #f7f2e5;
}

header img {
  height: 44px;
  width: auto;
  margin-right: 18px;
  display: inline-block;
  vertical-align: middle;
}

.mobile-menu-toggle {
  display: none;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border: none;
  font-size: 2em;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  z-index: 101;
  box-shadow: 0 2px 8px rgba(224,185,116, .16);
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #fffbe7;
  outline: 2px solid var(--brand-secondary);
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(25,32,42, 0.96);
  color: var(--brand-accent);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.85, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  justify-content: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.5em;
  padding: 28px 26px;
  cursor: pointer;
  align-self: flex-end;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  width: 100%;
  padding: 40px 40px 24px 40px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--brand-display);
  font-size: 1.225em;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 6px;
  padding: 12px 0;
  width: 100%;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}


/* --- HERO SECTIONS --- */
.hero {
  background: #19202A url('../assets/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  padding: 64px 0 56px 0;
  min-height: 340px;
  position: relative;
}
.hero .container {
  align-items: flex-start;
}
.hero .text-section {
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  font-size: 2rem;
  font-family: var(--brand-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  color: #fff;
}
.hero p {
  font-size: 1.2em;
  line-height: 1.5;
  color: #ECE8DF;
  margin-bottom: 24px;
}


/* --- FLEXBOX CARD & LIST CONTAINERS --- */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { background: #fff; margin-bottom: 20px; position: relative; border-radius: var(--radius-card); box-shadow: var(--shadow-main); overflow: hidden; transition: box-shadow 0.2s; }
.card:hover, .card:focus-within { box-shadow: 0 8px 28px 0 rgba(25,32,42,0.18); }

.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.text-image-section { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; background: #fff; border: 1.5px solid #f4f4f4; box-shadow: 0 4px 20px 0 rgba(25,32,42,0.07); border-radius: 13px; margin-bottom: 20px; }
.testimonial-card p { color: #19202A; font-size: 1.10em; line-height: 1.6; font-style: italic; }
.testimonial-card span { color: #8C7B53; font-weight: 600; font-family: var(--brand-display); font-size: 1.04em; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; background: #fff; border-radius: 12px; border: 1.5px solid #ece8df; padding: 30px 24px 24px 24px; box-shadow: 0 3px 20px rgba(224,185,116,0.025); min-width: 200px; max-width: 340px; transition: box-shadow 0.2s, border 0.2s; }
.feature-item:hover, .feature-item:focus-within { box-shadow: 0 7px 24px 0 rgba(224,185,116,0.13), 0 2px 12px rgba(25,32,42,0.06); border: 1.5px solid var(--brand-secondary);}


.feature-grid,
.review-list,
.premiere-highlights,
.newsletter-fields,
.review-cards,
.top-rated-list,
.premiere-cards,
.feature-article-cards,
.interview-preview-cards,
.event-cards, .featured-premieres {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
}

.premiere-item, .premiere-card, .review-snippet, .review-card, .feature-article-card, .interview-preview-card, .event-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 18px 0 rgba(25,32,42,0.08);
  border: 1px solid #ece8df;
  padding: 22px 24px 20px 24px;
  min-width: 220px;
  flex: 1 1 250px;
  transition: box-shadow 0.21s, border 0.19s;
  margin-bottom: 20px;
}
.premiere-item:hover,
.premiere-card:hover,
.review-snippet:hover,
.review-card:hover,
.feature-article-card:hover,
.interview-preview-card:hover,
.event-card:hover {
  box-shadow: 0 8px 25px 0 rgba(224,185,116,0.11);
  border: 1.5px solid var(--brand-secondary);
}

/* --- TOP FILMS --- */
.top-rated-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.top-film {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.09em;
  background: #fff;
  border: 1.1px solid #ece8df;
  border-radius: 8px;
  padding: 14px 22px;
  font-family: var(--brand-display);
  font-weight: 600;
}
.top-film .rating { color: var(--brand-secondary); font-size: 1em; }

/* --- PAGINATION --- */
.pagination {
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 16px 0 0 0;
}
.pagination span {
  color: var(--brand-primary);
  border-radius: 6px;
  padding: 6px 12px;
  font-family: var(--brand-display);
  font-weight: 600;
  font-size: 1.06em;
  transition: background 0.14s, color 0.14s;
}
.pagination span:hover, .pagination span:focus {
  background: var(--brand-secondary);
  color: #fff;
}
.pagination span[aria-current="true"] {
  background: var(--brand-secondary);
  color: #fff;
}


/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--brand-display);
  color: #19202A;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.4rem; line-height: 1.16; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }
h4 { font-size: 1.08rem; margin-bottom: 6px; }
h5, h6 { font-size: 1.01rem; margin-bottom: 6px; }
p, ul, ol {
  color: #19202A;
  font-size: 1.08em;
  line-height: 1.65;
  margin-bottom: 12px;
}
.text-section {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
blockquote {
  font-family: var(--brand-display);
  font-weight: 600;
  font-size: 1.16em;
  color: var(--brand-primary);
  border-left: 4px solid var(--brand-secondary);
  padding-left: 16px;
  margin: 12px 0 10px 0;
}
cite { color: #8C7B53; font-size: 1em; margin-left: 12px; font-style: normal; }
strong { color: var(--brand-secondary); font-weight: 700; }
small { color: #7B7B7B; font-size: 0.99em; }

/* --- BUTTONS --- */
button, .cta-primary {
  font-family: var(--brand-display);
  font-weight: 600;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border-radius: 32px;
  border: none;
  padding: 12px 35px;
  font-size: 1.08em;
  letter-spacing: 0.02em;
  box-shadow: 0 3px 20px 0 rgba(224,185,116,0.085);
  border: 1.5px solid var(--brand-secondary);
  outline: none;
  margin-top: 12px;
  cursor: pointer;
  display: inline-block;
  transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.20s;
}
button[disabled], .cta-primary[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  background: #efeee7;
  color: #a99c76;
  border: 1.5px solid #ebdddd;
  box-shadow: none;
}
button:hover:not([disabled]), button:focus:not([disabled]), .cta-primary:hover, .cta-primary:focus {
  background: #fffbe7;
  border: 1.5px solid var(--brand-secondary);
  color: #19202A;
  box-shadow: 0 5px 18px 0 rgba(224,185,116,0.17);
}

/* Newsletter signup input */
.newsletter-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  margin-bottom: 8px;
}
.newsletter-fields input[type=email] {
  padding: 12px 16px;
  border-radius: 28px;
  border: 1.4px solid #ece8df;
  font-size: 1em;
  font-family: var(--brand-body);
  min-width: 220px;
  outline: none;
  transition: border 0.16s, box-shadow 0.19s;
}
.newsletter-fields input[type=email]:focus {
  border: 1.5px solid var(--brand-secondary);
  box-shadow: 0 1px 9px 0 rgba(224,185,116,0.09);
}


/* --- FOOTER --- */
footer {
  background: #19202A;
  color: #fff;
  padding: 48px 0 20px 0;
}
footer .container {
  gap: 0;
}
.footer-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}
.footer-main nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.footer-main nav a {
  color: #fff;
  font-size: 1.02em;
  font-family: var(--brand-display);
  font-weight: 500;
  transition: color 0.17s;
  border-radius: 4px;
  letter-spacing: 0.01em;
  padding: 8px 2px;
}
.footer-main nav a:hover, .footer-main nav a:focus {
  color: var(--brand-secondary);
  background: rgba(224,185,116,0.04);
}
footer img {
  height: 44px;
  width: auto;
  filter: grayscale(20%) brightness(0.92);
}
.footer-contact {
  margin-bottom: 24px;
}
.footer-contact p {
  color: #e7e2d3;
  margin-bottom: 10px;
  font-size: 1em;
  font-family: var(--brand-body);
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .copyright {
  color: #8d8d82;
  font-size: 0.96em;
  text-align: center;
  margin: 10px 0 0 0;
}

/* --- RESPONSIVE LAYOUTS --- */
@media (max-width: 992px) {
  .container { max-width: 97vw; }
  nav { gap: 16px; }
  .footer-main { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 768px) {
  .container { padding-left: 12px; padding-right: 12px; }
  nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .content-wrapper, .text-section { gap: 16px; }
  
  .feature-grid, .review-list,
  .premiere-highlights, .newsletter-fields, .review-cards,
  .top-rated-list, .premiere-cards,
  .feature-article-cards, .interview-preview-cards,
  .event-cards, .featured-premieres {
    flex-direction: column;
    gap: 16px;
  }
  .newsletter-fields { flex-direction: column; min-width: unset; }
  .footer-main { flex-direction: column; align-items: flex-start; gap: 13px; }
  .hero { padding: 36px 0 28px 0; min-height: 200px; }
  .section { margin-bottom: 40px; padding: 24px 8px; }
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 10px; }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 540px) {
  html { font-size: 95%; }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.16rem; }
  .hero { padding-top: 18px; padding-bottom: 18px; }
  .container { padding-left: 4px; padding-right: 4px; }
  .card, .feature-item, .premiere-item, .premiere-card, .review-snippet, .review-card, .event-card, .feature-article-card, .interview-preview-card {
    min-width: unset;
    padding: 12px 8px 14px 8px;
  }
}

/* --- CALLOUTS, LEGAL, ETC. --- */
.callout, .quote-highlight {
  background: #fffbe7;
  border-left: 5px solid var(--brand-secondary);
  border-radius: 9px;
  padding: 24px 24px 20px 28px;
  margin: 18px 0;
  color: #19202A;
}
.featured-interview {
  background: #fff;
  border-radius: 12px;
  padding: 18px 18px 12px 18px;
  margin: 20px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legal {
  background: #fff;
  border-radius: 12px;
  padding: 35px 18px 27px 18px;
  box-shadow: 0 3px 22px 0 rgba(25,32,42,0.04);
  margin: 25px 0 0 0;
}

/* --- MAP PLACEHOLDER --- */
.map {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f4f4f4;
  border-radius: 10px;
  color: #19202A;
  font-size: 1.08em;
  min-height: 110px;
  border: 1.5px solid #eee1bc;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1e232e;
  color: #fff;
  padding: 24px 24px 18px 24px;
  box-shadow: 0 -2px 24px 0 rgba(25,32,42,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10061;
  gap: 20px;
  border-radius: 18px 18px 0 0;
  animation: bannerSlideIn 0.48s cubic-bezier(.7,0,.23,1);
}
@keyframes bannerSlideIn {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  font-size: 1.04em;
  margin-bottom: 5px;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.cookie-banner button,
.cookie-banner .cookie-settings-btn {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border: none;
  border-radius: 28px;
  padding: 8px 22px;
  font-family: var(--brand-display);
  font-weight: 600;
  font-size: 1em;
  box-shadow: 0 2px 10px rgba(224,185,116,0.09);
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: var(--brand-primary);
  border: 1.2px solid var(--brand-secondary);
}
.cookie-banner button:hover, .cookie-banner button:focus, .cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #fffbe7;
  color: #19202A;
}

.cookie-modal-overlay {
  position: fixed;
  top:0;left:0;right:0;bottom:0;
  background: rgba(25,32,42,0.74);
  z-index: 10062;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: overlayFadeIn 0.38s ease;
}
@keyframes overlayFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #19202A;
  border-radius: 18px;
  max-width: 370px;
  width: 95vw;
  padding: 32px 24px 30px 24px;
  box-shadow: 0 11px 55px rgba(25,32,42,0.13);
  animation: modalPop .35s cubic-bezier(.7,0,.23,1);
}
@keyframes modalPop {
  0% { transform: scale(0.98) translateY(12%); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.cookie-modal-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 1em;
}
.cookie-modal-group label {
  font-weight: 500;
}
.cookie-modal-group input[type="checkbox"] {
  accent-color: var(--brand-secondary);
  width: 20px;
  height: 20px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 21px;
}
.cookie-modal .cookie-modal-actions button {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border: none;
  border-radius: 24px;
  padding: 8px 20px;
  font-family: var(--brand-display);
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  box-shadow: 0 2px 9px rgba(224,185,116,0.06);
}
.cookie-modal .cookie-modal-actions button:last-child {
  background: #eee9d7;
  color: #19202A;
}
.cookie-modal .cookie-modal-actions button:hover, .cookie-modal .cookie-modal-actions button:focus {
  background: #fffbe7;
  color: #19202A;
}

/* --- VISUAL MICRO-DETAILS --- */
a, button, .cta-primary {
  outline: none;
}
a:focus-visible, button:focus-visible, .cta-primary:focus-visible {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 2px;
}

hr {
  border: none;
  border-top: 1px solid #ece8df;
  margin: 27px 0;
}
::-webkit-input-placeholder { color: #888e92; opacity: 1; }
::-moz-placeholder { color: #888e92;opacity:1; }
:-ms-input-placeholder { color: #888e92;opacity:1; }
::placeholder { color: #888e92; opacity:1;}
input:disabled, textarea:disabled {
  background: #F8F8F8;
  color: #b9b9b9;
  border-color: #ece8df;
}


/* --- MINIMUM GAPS & PREVENT OVERLAP --- */
.section, .card, .feature-item, .premiere-item, .premiere-card, .review-snippet,
.review-card, .feature-article-card, .interview-preview-card, .event-card, .testimonial-card {
  margin-bottom: 20px;
}
.card-container, .feature-grid, .review-list, .premiere-highlights,
.newsletter-fields, .review-cards, .top-rated-list, .premiere-cards, .feature-article-cards,
.interview-preview-cards, .event-cards, .featured-premieres {
  gap: 20px;
}

/* --- REMOVE GRID PROPERTIES TO ENFORCE FLEXBOX-ONLY --- */
/* (NO display:grid, grid-* etc anywhere) */

/* --- ENSURE SUFFICIENT CONTRAST FOR READABILITY --- */
.testimonial-card {
  background: #fff;
  color: #19202A;
}

/***** END *****/
