/* ======================= 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,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.6;
  background-color: #F7F4EF;
  color: #1B2536;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1B2536;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E2B349;
  outline: none;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}
input, textarea {
  font-family: inherit;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  color: #1B2536;
  font-weight: 700;
  line-height: 1.18;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; letter-spacing: -1px; }
h2 { font-size: 2rem; margin-bottom: 20px; letter-spacing: -0.5px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
.section h2,
.content-wrapper h2 { padding-bottom: 4px; border-bottom: 1.5px solid #e9dfc9; }

/* ========================== CONTAINER & LAYOUT ============================ */
.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(27,37,54,0.07);
  transition: box-shadow 0.25s;
}
.section:last-child {
  margin-bottom: 0;
}
.section:hover {
  box-shadow: 0 4px 28px 0 rgba(30,23,12,0.12);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 8px 0 rgba(27,37,54,0.06);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 4px 18px 0 rgba(226,179,73,0.11);
  transform: translateY(-2px) scale(1.015);
}

.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;
  margin-bottom: 20px;
  background: #FAF8F2;
  border-left: 4px solid #E2B349;
  border-radius: 10px;
  box-shadow: 0 1px 6px 0 rgba(27,37,54,0.07);
  max-width: 730px;
}
.testimonial-card blockquote {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.11rem;
  line-height: 1.5;
  color: #1B2536;
  margin: 0;
  font-style: italic;
}
.testimonial-card p {
  font-size: 0.97rem;
  color: #463c27;
  font-weight: 600;
  margin: 0 0 0 12px;
  letter-spacing: 0.05em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========================== NAVIGATION HEADER ============================= */
header {
  background: #fff;
  border-bottom: 1.5px solid #e9dfc9;
  box-shadow: 0 1px 5px 0 rgba(27,37,54,0.03);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 12px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

header nav a {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 0.98rem;
  padding: 10px 8px;
  color: #1B2536;
  border-radius: 7px;
  transition: background 0.16s, color 0.16s;
}
header nav a:hover,
header nav a:focus {
  color: #E2B349;
  background: #f5e9c9;
}
.cta-button {
  background: #E2B349;
  color: #1B2536;
  font-weight: bold;
  border-radius: 8px;
  padding: 10px 30px;
  margin-left: 10px;
  box-shadow: 0 2px 12px 0 rgba(226,179,73,0.10);
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.19s;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.02rem;
  display: inline-block;
}
.cta-button:hover,
.cta-button:focus {
  background: #C09D3A;
  color: #fff;
  box-shadow: 0 6px 26px 0 rgba(226,179,73,0.14);
  transform: translateY(-1px) scale(1.02);
}

.mobile-menu-toggle {
  display: none;
  background: #E2B349;
  border-radius: 6px;
  width: 44px;
  height: 44px;
  font-size: 1.9rem;
  color: #1B2536;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px 0 rgba(226,179,73,0.11);
  transition: background 0.19s, color 0.19s;
  margin-left: 12px;
}
.mobile-menu-toggle:active {
  background: #c49e39;
}

/* ============= MOBILE MENU OVERLAY AND ANIMATION =============== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27,37,54,0.93);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.77,.01,.39,.99);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  margin: 30px 24px 24px 0;
  background: #E2B349;
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 rgba(226,179,73,0.20);
  border: 2px solid #E2B349;
  transition: background 0.14s, color 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #fff;
  color: #E2B349;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 28px 0 0 0;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.22rem;
  padding: 18px 28px;
  width: 100%;
  border-bottom: 1px solid #e2b3493d;
  transition: background 0.13s, color 0.14s;
  border-radius: 0;
  letter-spacing: 0.03em;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #E2B349;
  color: #1B2536;
}

@media (max-width: 1068px) {
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
}

@media (max-width: 950px) {
  header .container {
    flex-direction: row;
    gap: 10px;
  }
  header nav {
    gap: 12px;
  }
  .content-wrapper {
    gap: 14px;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 28px 6px;
    margin-bottom: 42px;
  }
  h1 { font-size: 2.1rem; margin-bottom: 20px; }
  h2 { font-size: 1.4rem; margin-bottom: 14px; }
  .testimonial-card {
    padding: 13px 9px;
    font-size: 1rem;
  }
  .content-wrapper { gap: 11px; }
}

@media (max-width: 680px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .container {
    padding: 3px 6px;
  }
  .container {
    max-width: 100vw;
    padding: 0 7px;
  }
  .section {
    padding: 18px 2px;
    margin-bottom: 28px;
    border-radius: 11px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.38rem; margin-bottom: 12px; }
  h2 { font-size: 1.11rem; }
  .testimonial-card blockquote {
    font-size: 0.98rem;
  }
  .cta-button {
    padding: 7px 17px;
    font-size: 0.89rem;
  }
}

/* ============ FLEXBOX LAYOUT FOR COMMON MODULES ============ */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 10px;
}
.feature-grid li {
  flex: 1 1 210px;
  min-width: 190px;
  background: #faf8f2;
  border-radius: 10px;
  box-shadow: 0 1px 8px 0 rgba(27,37,54,0.03);
  padding: 22px 16px 18px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.22s, background 0.22s;
}
.feature-grid li:hover {
  background: #fffbe7;
  box-shadow: 0 2px 14px 0 #e2b34919;
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-list li {
  background: #F7F4EF;
  border-radius: 8px;
  box-shadow: 0 1px 7px 0 rgba(27,37,54,0.04);
  padding: 16px 15px;
  margin-bottom: 20px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}
.service-list li span {
  color: #E2B349;
  font-weight: bold;
  margin-left: 6px;
}

.performance-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.performance-list li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 8px 0 #efe7cf44;
  padding: 18px 15px;
  flex: 1 1 220px;
  min-width: 170px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, background 0.2s;
}
.performance-list li:hover {
  box-shadow: 0 3px 12px 0 #e2b34933;
  background: #fffbe7;
}

.newsletter-signup {
  background: #f5e2b0;
  border-radius: 10px;
  padding: 22px 18px;
  box-shadow: 0 1px 9px 0 rgba(226,179,73,.10);
  margin-top: 18px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.newsletter-benefits, .sample-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 11px;
}
.newsletter-benefits li, .sample-topics li {
  background: #fff;
  border-radius: 8px;
  padding: 9px 13px;
  font-size: 1rem;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 1rem;
  margin-bottom: 10px;
}

.faq-brief {
  background: #fff;
  border-radius: 9px;
  padding: 14px 11px;
  margin: 8px 0 16px 0;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/****** OTHER LAYOUTS *****/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 12px;
}
.personalization-options ul {
  margin-top: 6px;
  padding-left: 14px;
}
.interviewee-highlights {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 12px;
}
.interviewee-highlights li {
  background: #fff;
  border-radius: 9px;
  padding: 18px 14px;
  box-shadow: 0 1px 7px 0 #efe7cf56;
  margin-bottom: 20px;
}

.theatre-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.theatre-details {
  background: #fff;
  border-radius: 9px;
  padding: 18px 16px;
  box-shadow: 0 1px 7px 0 #efe7cf48;
  flex: 1 1 250px;
  min-width: 190px;
  margin-bottom: 20px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #faf8f2;
  border-radius: 7px;
  padding: 9px 14px;
  margin: 14px 0 0 0;
  font-size: 1rem;
}
.search-bar input {
  margin-left: 7px;
  font-size: 1rem;
  padding: 6px 10px;
  border: 1px solid #e2b34991;
  border-radius: 7px;
  background: #fffbe7;
  color: #1B2536;
  transition: border 0.19s;
}
.search-bar input:focus {
  border-color: #E2B349;
  outline: none;
}

/* ========================== FOOTER ============================ */
footer {
  background: #fff;
  border-top: 1.5px solid #e9dfc9;
  box-shadow: 0 -1px 10px 0 rgba(27,37,54,0.04);
  color: #463c27;
  font-size: 1rem;
  padding: 0;
  margin-top: 48px;
}
footer .container {
  padding: 0;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  padding: 32px 18px 20px 18px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.97rem;
  font-family: 'Merriweather', Georgia, serif;
  color: #A79883;
}
footer nav a {
  color: #674e2a;
  margin: 0 3px;
  transition: color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: #E2B349;
}
footer address {
  font-style: normal;
  color: #5a4633;
  font-size: 0.97rem;
  line-height: 1.5;
  margin-top: 3px;
}

/* ================= COOKIE CONSENT BANNER & MODAL ================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #fffbe8;
  border-top: 2px solid #E2B349;
  box-shadow: 0 -2px 18px 0 #edead83a;
  z-index: 2200;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 12px 18px 12px;
  gap: 12px;
  animation: cookie-banner-enter 0.55s 1 ease;
}
@keyframes cookie-banner-enter {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  color: #2d2212;
  font-size: 1rem;
  margin-bottom: 8px;
  text-align: center;
}
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
.cookie-btn {
  background: #E2B349;
  color: #1B2536;
  font-family: 'Merriweather', Georgia, serif;
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 1rem;
  border: none;
  font-weight: 650;
  transition: background 0.18s, color 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 8px 0 #e2b34918;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff;
  color: #E2B349;
  border: 1.4px solid #E2B349;
}
.cookie-btn.reject {
  background: #eee9de;
  color: #a98f36;
  border: 1.4px solid #e0d2ac;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #E2B349;
  color: #fff;
  border-color: #E2B349;
}
.cookie-btn.settings {
  background: #F7F4EF;
  color: #BCA75B;
  border: 1.3px solid #e2b349a4;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #E2B349;
  color: #fff;
  border-color: #E2B349;
}
/** Modal **/
.cookie-modal {
  position: fixed;
  z-index: 2300;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(27,37,54,0.64);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cookie-modal-in 0.33s 1 cubic-bezier(.22,.58,.29,1.01);
}
@keyframes cookie-modal-in {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.cookie-modal-content {
  background: #fffbe7;
  border-radius: 16px;
  max-width: 380px;
  width: 90vw;
  padding: 32px 24px 22px 24px;
  box-shadow: 0 4px 28px 0 rgba(30,23,12,0.15);
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.2rem;
  color: #1B2536;
  margin-bottom: 10px;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
  color: #594714;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: #E2B349;
  width: 18px; height: 18px;
}
.cookie-modal-category .always-on {
  color: #a9872a;
  font-size: 0.95rem;
  font-weight: 600;
  margin-left: 3px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  cursor: pointer;
  background: #E2B349;
  color: #fff;
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 1px solid #E2B349;
  transition: background 0.14s, color 0.14s;
  z-index: 1;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #fff;
  color: #E2B349;
}
.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  justify-content: flex-end;
}

/* ======================= INTERACTIVE & MICRO-ANIMATIONS ===================== */
button, .cta-button, .cookie-btn {
  transition: background 0.22s, color 0.13s, box-shadow 0.16s, transform 0.18s;
}
.cta-button:active, .cookie-btn:active {
  transform: scale(0.97);
}

input:focus, textarea:focus {
  border-color: #E2B349;
  outline: none;
}

/* ============ VISUAL HIERARCHY & TYPOGRAPHY SCALE =========== */
.subheadline {
  color: #705919;
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 400;
  font-size: 1.27rem;
  margin-bottom: 10px;
}
@media (max-width: 800px) {
  .subheadline { font-size: 1.05rem; }
}

strong {
  font-weight: 700;
}

/* ========================== SPACING BETWEEN ELEMENTS =================== */
section + section {
  margin-top: 20px;
}
main section:not(:last-child) {
  margin-bottom: 60px;
}
section .content-wrapper > * + * {
  margin-top: 10px;
}

/* =========== ACCESSIBILITY/CONTRAST FOR TESTIMONIALS etc ============= */
.testimonial-card {
  color: #1B2536;
  background: #FAF8F2;
  border-left: 4px solid #E2B349;
}
.testimonial-card blockquote, .testimonial-card p {
  color: #1B2536;
}

/* ==================== MOBILE FLEX/MEDIA RULES ==================== */
@media (max-width: 900px) {
  .feature-grid, .content-grid, .theatre-grid {
    flex-direction: column;
    gap: 17px;
  }
  .newsletter-benefits, .sample-topics {
    flex-direction: column;
    gap: 6px;
  }
  .step-list {
    gap: 7px;
  }
}
@media (max-width: 768px) {
  .text-image-section, .content-grid, .card-container, .feature-grid, .theatre-grid {
    flex-direction: column;
    gap: 17px;
  }
  .newsletter-signup {
    padding: 13px 7px;
  }
}

/***************** HIDE/SHOW SECTIONS FOR MOBILE NAVIGATION ************/
@media (max-width: 680px) {
  section, .section {
    padding: 12px 0 12px 0;
    margin-bottom: 20px;
  }
  .card, 
  .theatre-details, 
  .feature-grid li {
    padding: 12px 7px;
  }
}

/*************** UTILITIES ***************/
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}


/* ================ STYLED ADDRESS/LIST ================ */
address {
  font-style: normal;
  color: #837159;
  font-size: 0.98rem;
  line-height: 1.6;
}

/***** CUSTOM CHECKBOXES for cookie modal ******/
input[type='checkbox'] {
  accent-color: #E2B349;
}

/***** SEARCH BAR IN THEATRES ******/
.search-bar input {
  margin-left: 6px;
  font-size: 1rem;
  padding: 6px 8px;
  border-radius: 7px;
  border: 1px solid #e2b34991;
  background: #fffbe7;
  color: #1B2536;
}
.search-bar input:focus {
  border: 1.5px solid #E2B349;
}

/****** FILTER OPTIONS ******/
.filter-options{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-top: 8px;
}
.filter-options strong{
  color: #E2B349;
  margin-right: 3px;
}
.filter-options span{
  background: #fffbe7;
  color: #A79883;
  border-radius: 7px;
  padding: 3px 9px;
  margin-right: 3px;
  font-size: 0.99rem;
}

/********* Accessibility focus styles ***********/
:focus-visible {
  outline: 2px solid #E2B349;
  outline-offset: 2px;
}

/***** Input/textarea base styles for forms *****/
input, textarea {
  font-size: 1rem;
  border-radius: 7px;
  border: 1.3px solid #CFCFCF;
  padding: 7px 10px;
  background: #FAF8F2;
  color: #251c08;
  transition: border 0.16s;
  margin-bottom: 12px;
}
input:focus, textarea:focus {
  border: 1.5px solid #E2B349;
}

/********* Lists and bullets *********/
ul, .feature-grid, .service-list, .performance-list {
  list-style: none;
}

/********* Hide scrollbars for mobile menu **********/
.mobile-menu::-webkit-scrollbar { display:none; }
.mobile-menu {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/***** Scroll and overscroll on modals *****/
body.modal-open {
  overflow: hidden !important;
}

/****** Newsletter Success - Thank You ******/
.thank-you-message{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  background: #fffbe7;
  border-radius: 13px;
  padding: 36px 28px;
  margin-top: 26px;
  box-shadow: 0 2px 20px 0 #e2b34914;
}

/******* VISIBILITY HIDE CLASSES ******/
.hide { display: none !important; }

/****** FOCUS RING always visible for CTA & nav on tab *******/
.cta-button:focus-visible, .cookie-btn:focus-visible, header nav a:focus-visible, .mobile-nav a:focus-visible {
  outline: 2.2px solid #E2B349;
  box-shadow: 0 0 0 4px #f4e1a161;
  outline-offset: 2.5px;
}
section {
  padding: 10px 0;
}