/* 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,menu,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,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;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
  display: block;
}
body {
  line-height: 1.6;
  background-color: #FFF8F3;
  color: #21263D;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
}
a {
  color: #F4B942;
  background-color: transparent;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D69B29;
  text-decoration: underline;
}
ul,ol {
  margin-left: 1.5em;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
}
/* FONT FACE (FALLBACKS handled) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
h1, .hero h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  margin-bottom: 16px;
  color: #21263D;
  letter-spacing: -0.5px;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #21263D;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #21263D;
  margin-bottom: 8px;
}
.subheadline {
  font-size: 1.125rem;
  color: #4D5064;
  font-weight: 400;
  margin-bottom: 20px;
}
p {
  margin-bottom: 18px;
  color: #333;
  font-size: 1rem;
}
strong, b {
  font-weight: 600;
}

/* CONTAINER/LAYOUT PATTERNS */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(244,185,66,0.10);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFFDF8;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(33,38,61,0.08);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.15s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(244,185,66,0.15);
  transform: translateY(-4px) 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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #FFF7E4;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(33,38,61,0.08);
  padding: 20px;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* CRITICAL: FLEXBOX for ALL layouts! NO Grid */
.usp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0 20px;
}
.usp-grid > div {
  background: #FFFDF8;
  border-radius: 16px;
  padding: 28px 18px;
  box-shadow: 0 2px 12px rgba(244,185,66,0.10);
  text-align: center;
  flex: 1 1 240px;
  min-width: 200px;
  transition: box-shadow 0.2s;
}
.usp-grid > div:hover {
  box-shadow: 0 8px 24px rgba(244,185,66,0.18);
}

/* HEADER & NAVIGATION */
header {
  background: #FFF4D1;
  box-shadow: 0 1px 10px rgba(244,185,66,0.06);
  padding: 0 0 12px 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 8px;
}
header img {
  height: 40px;
  margin-right: 30px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-left: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #21263D;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 10px;
  font-size: 1rem;
  transition: background 0.19s, color 0.19s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F4B94233;
  color: #a87200;
  outline: none;
}
.cta-primary {
  background: #F4B942;
  color: #21263D;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  padding: 10px 30px;
  border-radius: 22px;
  box-shadow: 0 3px 16px rgba(244,185,66,0.14);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.22s, transform 0.11s;
  margin-left: 18px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #FFD060;
  color: #21263D;
  box-shadow: 0 5px 24px rgba(244,185,66,0.20);
  outline: none;
  transform: translateY(-1.5px) scale(1.03);
}
.mobile-menu-toggle {
  display: none;
  background: #F4B942;
  color: #21263D;
  border-radius: 50%;
  height: 42px;
  width: 42px;
  font-size: 2rem;
  border: none;
  margin-left: 20px;
  justify-content: center;
  align-items: center;
  transition: background 0.2s;
  z-index: 1401;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFD060;
  outline: none;
}

/* MOBILE MENU (SLIDE-IN OVERLAY) */
.mobile-menu {
  position: fixed;
  background: #FFF8F3;
  top: 0; left: 0; bottom: 0; right: 0;
  z-index: 2100;
  padding: 0 0 60px 0;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0px 2px 40px rgba(33,38,61,0.17);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 28px 8px 0;
  background: #F4B942;
  color: #21263D;
  border-radius: 50%;
  height: 42px;
  width: 42px;
  font-size: 2rem;
  border: none;
  transition: background 0.17s;
  z-index: 2110;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFD060;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 16px 36px;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: #21263D;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  padding: 10px 4px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.19s, color 0.19s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4B94233;
  color: #a87200;
}

/* HERO */
.hero {
  background: #FFF0D1;
  border-radius: 0 0 44px 44px;
  padding: 56px 0 48px 0;
  margin-bottom: 48px;
  box-shadow: 0 3px 24px rgba(244,185,66,0.08);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  font-size: 2.5rem;
  text-align: center;
}
.hero .subheadline {
  font-size: 1.21rem;
}
.hero .cta-primary {
  margin: 18px auto 0 auto;
  display: inline-block;
}

/* FEATURES, USP, SECTIONS */
.features ul,
.topics-section ul,
.news-filter ul,
.contact-details ul,
.review-list,
.filter-options ul,
.editorial-tips ul,
.award-list ul,
.festival-calendar ul,
.festival-highlights ul,
.contact-valueprops ul,
.text-section ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
.features ul li,
.topics-section ul li,
.news-filter ul li,
.contact-details ul li,
.review-list li,
.filter-options ul li,
.editorial-tips ul li,
.award-list ul li,
.festival-calendar ul li,
.festival-highlights ul li,
.press-mentions ul li,
.contact-valueprops ul li,
.text-section ul li {
  background: #FFFDF8;
  border-radius: 10px;
  padding: 12px 18px 12px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(244,185,66,0.07);
  color: #21263D;
  font-size: 1rem;
}
.features ul li > img,
.topics-section ul li > img,
.contact-details ul li > img,
.news-filter ul li > img {
  width: 22px;
  height: 22px;
  margin-right: 8px;
}

/* NEWS TEASERS / ARTICLES */
.news-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 32px 0;
}
.news-teasers article {
  background: #FFFDF8;
  border-radius: 18px;
  box-shadow: 0 3px 16px rgba(244,185,66,0.11);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 330px;
  padding: 24px 20px 20px 20px;
  transition: box-shadow 0.2s, transform 0.11s;
}
.news-teasers article:hover {
  box-shadow: 0 7px 32px rgba(244,185,66,0.17);
  transform: translateY(-2px) scale(1.01);
}
.news-teasers article h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.news-teasers article a {
  color: #F4B942;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  margin-top: 6px;
  transition: text-decoration 0.18s;
}
.news-teasers article a:hover, .news-teasers article a:focus {
  text-decoration: underline;
}

.cta-news, .festival-cta, .awards-cta, .editorial-opinion {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.cta-news .cta-primary,
.festival-cta .cta-primary,
.awards-cta .cta-primary,
.editorial-opinion .cta-primary,
.editorial-tips .cta-primary,
.contact-details .cta-primary,
.confirmation-section .cta-primary {
  margin-left: 0;
}

/* REVIEW SECTION / RATING */
.review-list {
  gap: 18px;
  margin-bottom: 24px;
}
.review-list li {
  background: #FFFDF8;
  border-radius: 13px;
  box-shadow: 0 2px 14px rgba(244,185,66,0.10);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.review-list .rating {
  color: #F4B942;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-top: 3px;
  letter-spacing: 0.5px;
}
.rating-overview {
  background: #FFF8E7;
  border-radius: 14px;
  padding: 14px 22px 16px 22px;
  margin-bottom: 28px;
}
.editorial-opinion {
  padding: 18px 4px;
}

/* TESTIMONIALS */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background: #FFF7E4;
  color: #21263D;
  box-shadow: 0 4px 20px rgba(244,185,66,0.13);
  border-radius: 20px;
  padding: 20px 24px 18px 24px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  font-size: 1.02rem;
}
.testimonial-card p {
  color: #21263D;
  font-size: 1.063rem;
  text-align: center;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.testimonial-detail {
  color: #A68536;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-align: center;
}
.press-mentions ul {
  background: none;
  box-shadow: none;
  border-radius: 0;
  gap: 10px;
  margin-bottom: 16px;
}
.press-mentions ul li {
  background: #FFFDF8;
  border-radius: 10px;
  padding: 10px 16px;
  color: #51586e;
  font-size: 0.99rem;
  font-style: italic;
}

/* FOOTER */
footer {
  background: #FFF4D1;
  color: #21263D;
  font-size: 0.98rem;
  padding: 36px 0 18px 0;
  border-radius: 44px 44px 0 0;
  box-shadow: 0 -2px 13px rgba(244,185,66,0.10);
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}
.footer-menu a {
  color: #21263D;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 10px;
  transition: background 0.15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #F4B94233;
  color: #a87200;
}
.footer-contact {
  margin-bottom: 9px;
  color: #6C625A;
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFDF8;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  box-shadow: 0 1px 5px rgba(244,185,66,0.10);
  transition: background 0.14s, box-shadow 0.18s;
}
.footer-social a:hover, .footer-social a:focus {
  background: #FFF0D1;
  box-shadow: 0 4px 14px rgba(244,185,66,0.16);
}
.footer-social img {
  width: 18px;
  height: 18px;
  margin: 0;
  border-radius: 0;
}

/* LEGAL SECTIONS & PAGES */
.legal-section {
  margin-bottom: 60px;
  padding: 36px 20px 43px 20px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 3px 15px rgba(244,185,66,0.10);
}
.legal-section .text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.legal-section ul li {
  background: #FFFDF8;
}

/* ABOUT/CONFIRMATION */
.confirmation-section {
  margin-bottom: 60px;
  padding: 46px 20px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(244,185,66,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.confirmation-section .cta-primary {
  margin-top: 22px;
}

/* CONTACT PAGE */
.contact-section {
  margin-bottom: 60px;
  padding: 46px 20px 38px 20px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(244,185,66,0.10);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.contact-details ul {
  gap: 12px;
}
.contact-valueprops ul {
  gap: 10px;
}

/* AWARDS/FESTIVALS */
.award-list ul,
.festival-calendar ul {
  gap: 10px;
}
.award-list ul li,
.festival-calendar ul li {
  font-size: 1rem;
  background: #FFF8E7;
}
.awards-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(244,185,66,0.08);
}
.festival-listings {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(244,185,66,0.09);
}
.festival-calendar, .festival-highlights {
  margin-bottom: 24px;
  background: #FFFDF8;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(244,185,66,0.06);
  padding: 14px 18px;
}

/* EDITORIAL TIPS/OPINIONS */
.editorial-tips, .editorial-opinion, .award-background, .award-history {
  background: #FFF8E7;
  border-radius: 13px;
  padding: 14px 20px 16px 20px;
  margin-bottom: 20px;
}
.editorial-tips ul,
.editorial-opinion ul {
  gap: 8px;
}
.editorial-tips .cta-primary,
.editorial-opinion .cta-primary {
  margin-top: 7px;
}

/* FILTERS & SPECIAL BLOCKS */
.news-filter {
  margin-bottom: 18px;
  background: #FFFDF8;
  border-radius: 13px;
  padding: 13px 18px;
  box-shadow: 0 2px 10px rgba(244,185,66,0.07);
}
.news-filter ul {
  flex-direction: row;
  gap: 18px;
}
.filter-options {
  margin-bottom: 14px;
}
.filter-options ul {
  flex-direction: row;
  gap: 14px;
}

/* SPACING BETWEEN ELEMENTS (CRITICAL) */
section, .section, .legal-section, .testimonials, .festival-listings, .awards-section, .contact-section, .confirmation-section {
  margin-bottom: 60px;
}
.card, .testimonial-card, .review-list li, .award-list ul li, .press-mentions ul li {
  margin-bottom: 20px;
}
.card-container, .testimonial-list, .news-teasers, .usp-grid, .content-grid {
  gap: 24px;
}
.content-wrapper {
  gap: 24px;
}

/* COOKIE BANNER & MODAL */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100%;
  background: #FFF4D1;
  color: #21263D;
  padding: 22px 24px 26px 24px;
  box-shadow: 0 -4px 18px rgba(244,185,66,0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3100;
  gap: 26px;
  border-radius: 24px 24px 0 0;
  animation: cookie-slideup 0.49s cubic-bezier(0.66,0,0.13,1);
}
@keyframes cookie-slideup {
  from { transform: translateY(120%); opacity: 0 }
  to   { transform: translateY(0); opacity: 1 }
}
.cookie-banner-message {
  font-size: 1rem;
  color: #21263D;
  flex: 2 1 300px;
}
.cookie-banner-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-consent-btn, .cookie-settings-btn, .cookie-reject-btn {
  border: none;
  background: #F4B942;
  color: #21263D;
  border-radius: 14px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 10px 28px;
  cursor: pointer;
  margin: 0;
  transition: background 0.16s, color 0.17s, box-shadow 0.17s;
}
.cookie-consent-btn:hover, .cookie-consent-btn:focus {
  background: #FFD060;
  color: #21263D;
  outline: none;
}
.cookie-reject-btn {
  background: #eee1c0;
  color: #75662d;
}
.cookie-reject-btn:hover, .cookie-reject-btn:focus {
  background: #e6d091;
  color: #5c4c17;
}
.cookie-settings-btn {
  background: #FFFDF8;
  color: #A68536;
  border: 1px solid #FFD060;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #FFE6AA;
  color: #95701d;
}

.cookie-modal {
  display: none;
  position: fixed;
  z-index: 3200;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(33,38,61,0.23);
  align-items: center;
  justify-content: center;
  transition: background 0.21s;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #FFF8E7;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(244,185,66,0.17), 0 3px 12px rgba(33,38,61,0.07);
  padding: 38px 36px 32px 36px;
  max-width: 400px;
  width: 90%;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 23px;
  animation: cookie-modal-fadein 0.391s cubic-bezier(0.61,0,0.22,1);
}
@keyframes cookie-modal-fadein {
  from { transform: scale(0.87); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal-header {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.26rem;
  color: #21263D;
  margin-bottom: 12px;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFDF8;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(244,185,66,0.09);
  padding: 12px 18px;
  font-size: 1.06rem;
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #F4B942;
  border-radius: 6px;
  margin-left: 12px;
}
.cookie-category input[disabled] {
  opacity: 0.50;
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal-close {
  position: absolute;
  right: 38px;
  top: 23px;
  background: #F4B942;
  color: #21263D;
  border-radius: 50%;
  height: 36px;
  width: 36px;
  font-size: 1.5rem;
  border: none;
  z-index: 3220;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FFD060;
  outline: none;
}


/* RESPONSIVE DESIGN: MOBILE-FIRST */
@media (max-width: 994px) {
  .container {
    max-width: 99vw;
    padding: 0 10px;
  }
  .main-nav {
    gap: 18px;
  }
  .usp-grid {
    gap: 18px;
  }
}
@media (max-width: 850px) {
  .header .container, header .container {
    gap: 8px;
  }
  .main-nav {
    gap: 13px;
  }
  .footer-menu {
    gap: 10px;
  }
}
@media (max-width: 800px) {
  .main-nav {
    display: none;
  }
  .cta-primary {
    margin-left: 10px;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 700px) {
  .footer-menu {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.92rem;
  }
  .testimonial-list, .usp-grid, .news-teasers, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 560px) {
  .container {
    padding: 0 5px;
  }
  .section, .legal-section, .contact-section, .confirmation-section {
    padding: 28px 6px;
    border-radius: 9px;
  }
  .hero {
    padding: 32px 0 22px 0;
    border-radius: 0 0 22px 22px;
  }
  .testimonial-card, .card, .review-list li {
    padding: 13px 10px;
    border-radius: 11px;
  }
  .usp-grid > div, .festival-calendar, .festival-highlights {
    padding: 14px 8px;
    border-radius: 8px;
  }
  .cookie-modal-content {
    padding: 20px 6px 19px 6px;
    min-width: 140px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .news-teasers,
  .testimonial-list,
  .usp-grid,
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .footer-social {
    gap: 8px;
    margin-top: 5px;
  }
}

/* SCROLLBAR STYLING (Friendly) */
::-webkit-scrollbar {
  width: 9px;
  background: #FFFDF8;
}
::-webkit-scrollbar-thumb {
  background: #FFE6AA;
  border-radius: 6px;
}

/* INTERACTIONS & MICRO-FEEDBACK */
.cta-primary, .cookie-consent-btn, .cookie-settings-btn, .cookie-reject-btn {
  transition: background 0.16s, color 0.18s, box-shadow 0.17s, transform 0.08s;
}
.card, .testimonial-card, .usp-grid > div, .news-teasers article {
  transition: box-shadow 0.19s, transform 0.13s;
}
.card:active, .testimonial-card:active, .usp-grid > div:active, .news-teasers article:active {
  transform: scale(0.978);
  box-shadow: 0 1px 5px rgba(33,38,61,0.07);
}

/* ACCESSIBILITY COLOR CONTRAST (TESTIMONIALS) */
.testimonial-card, .testimonial-card p, .testimonial-card .testimonial-detail {
  color: #21263D;
  background: #FFF7E4;
}

/* FOCUS STATES */
a:focus {
  outline: 2px solid #F4B942;
  outline-offset: 2px;
}
.cta-primary:focus, .cookie-consent-btn:focus, .cookie-reject-btn:focus, .cookie-settings-btn:focus {
  outline: 2px solid #A68536;
  outline-offset: 2px;
}

/* HIDE visually if needed (for ARIA/Modal toggles) */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* CUSTOM CLASSES FOR UTILITY (if needed) */
.mb-20 { margin-bottom: 20px; }
.mt-14 { margin-top: 14px; }
