/* 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-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;
  min-height: 100vh;
  background: #fff;
  color: #18191A;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

/* BRAND VARIABLES & FONTS (fall back to sans-serif) */
:root {
  --color-primary: #222F3E;
  --color-secondary: #F6BE2C;
  --color-accent: #fff;
  --color-bg: #fff;
  --color-bg-dark: #101112;
  --color-grey-light: #f7f7f7;
  --color-grey: #ccd0d3;
  --color-grey-dark: #444;
  --color-border: #232323;
  --color-text: #18191A;
  --color-text-muted: #56575C;
  --shadow-m: 0 4px 16px rgba(34,47,62,0.08);
  --shadow-l: 0 8px 32px rgba(34,47,62,0.13);
  --radius: 12px;
  --transition: all 0.2s cubic-bezier(0.5,0,0,1);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin-bottom: 16px;
}
h1 { font-size: 2.75rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.1rem; }
p, li, address {
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 12px;
}

strong {
  color: var(--color-primary);
  font-weight: 600;
}

/* CONTAINERS & GENERAL LAYOUT */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-m);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* HEADER */
header {
  background: var(--color-bg-dark);
  color: var(--color-accent);
  box-shadow: 0 2px 8px rgba(34,47,62,0.09);
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
}
header img {
  width: 152px;
  height: auto;
  margin-right: 28px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.05rem;
  padding: 6px 0;
  transition: color 0.15s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus-visible {
  color: var(--color-secondary);
}
.main-nav .cta-primary {
  color: var(--color-primary);
  background: var(--color-secondary);
  border-radius: var(--radius);
  padding: 8px 22px;
  margin-left: 8px;
  font-weight: bold;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 12px 0 rgba(34,47,62,0.08);
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus-visible {
  background: #ffd872;
  color: var(--color-primary);
  box-shadow: var(--shadow-m);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2rem;
  margin-left: 18px;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 1100;
  line-height: 1;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-secondary);
}

/* MOBILE MENU DRAWER */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(17,19,20, 0.98);
  color: var(--color-accent);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0;
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(.57,.18,.87,.59);
  z-index: 1500;
}
.mobile-menu.show {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2.2rem;
  margin: 24px 32px 12px 0;
  cursor: pointer;
  z-index: 1510;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  line-height: 1;
  transition: background 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus-visible {
  background: rgba(246,190,44,0.15);
  color: var(--color-secondary);
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
  padding: 8px 0 0 30px;
}
.mobile-nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.4rem;
  padding: 18px 0;
  border-bottom: 1px solid #222;
  transition: color 0.18s, background 0.12s;
  width: 84vw;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(255,255,255,0.10);
  color: var(--color-secondary);
}

@media (max-width: 990px) {
  header .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO SECTIONS */
.hero {
  display: flex;
  min-height: 380px;
  background: linear-gradient(95deg, #fff 78%, #f4f4f4 100%);
  border-radius: 0 0 var(--radius) var(--radius);
  margin-bottom: 60px;
  box-shadow: 0 6px 32px rgba(34,47,62,0.10);
}
.hero .container {
  flex-direction: row;
  align-items: center;
  min-height: 340px;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 700px;
  gap: 18px;
  align-items: flex-start;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.5rem;
  letter-spacing: -0.5px;
}
.hero p {
  font-size: 1.15rem;
  color: var(--color-text-muted);
}
.hero .cta-primary {
  margin-top: 22px;
}

/* BUTTONS & CTA */
.cta-primary, .review-card a, .newsletter a, .next-steps a, .cookie-banner-btn {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.07rem;
  padding: 11px 34px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px 0 rgba(34,47,62,0.10);
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s, transform 0.18s;
  outline: none;
  margin-top: 0;
  margin-bottom: 0;
}
.cta-primary:hover, .cta-primary:focus-visible, .cookie-banner-btn:hover, .cookie-banner-btn:focus-visible {
  background: #ffd872;
  color: var(--color-primary);
  text-decoration: none;
  box-shadow: var(--shadow-l);
  transform: translateY(-1px) scale(1.03);
}

/* FLEXBOX CONTAINERS & CONTENT LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: var(--shadow-m);
  border-radius: var(--radius);
  margin-bottom: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  min-width: 260px;
  max-width: 380px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* NEWS, REVIEWS & LIST CARDS */
.review-cards, .events-list, .awards-highlights, .collection-lists {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 12px 0 24px 0;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-m);
  padding: 22px 20px 20px 22px;
  min-width: 210px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.review-card:hover {
  box-shadow: var(--shadow-l);
  transform: translateY(-3px) scale(1.012);
}

/* FEATURED SECTIONS */
.features {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-m);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.features .content-wrapper > ul, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: flex-start;
}
.feature-item, .features .content-wrapper > ul > li, .feature-grid > div {
  background: #f7f7f7;
  border-radius: var(--radius);
  padding: 20px 18px 20px 18px;
  font-size: 1rem;
  color: var(--color-text);
  box-shadow: 0 1px 8px 0 rgba(34,47,62,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 210px;
  margin-bottom: 18px;
  transition: box-shadow 0.16s, background 0.16s;
}
.features .content-wrapper > ul > li img,
.feature-item img {
  display: inline-block;
  width: 35px;
  height: 35px;
  margin-right: 10px;
}
.features .content-wrapper > ul > li:hover, .feature-grid > div:hover {
  background: #ededed;
  box-shadow: 0 6px 20px rgba(34,47,62,0.11);
}

/* TESTIMONIALS */
.testimonials .content-wrapper {
  gap: 20px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fafafa;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px 0 rgba(34,47,62,0.07);
  margin-bottom: 20px;
  color: #18191A;
}
.testimonial-card p {
  font-size: 1.07rem;
  font-style: italic;
  color: #222F3E; /* Ensures elegant, high contrast text */
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: var(--color-text-muted);
}

/* NEWS PREVIEWS/HIGHLIGHTS */
.highlights .container, .newsletter .container, .calendar-view {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.highlights .content-wrapper, .newsletter .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.latest-news-preview, .latest-reviews-preview, .next-festivals-preview {
  background: #f7f7f7;
  border-radius: var(--radius);
  padding: 18px 22px;
  min-width: 240px;
  max-width: 380px;
  flex: 1 1 0px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-m);
}

/* NEWS FEED & FILTERS */
.news-feed .filters, .news-feed .sorting-options, .filters, .filter-options {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.02rem;
  color: var(--color-grey-dark);
  margin-bottom: 16px;
}
.filters strong, .sorting-options strong  { color: var(--color-primary); font-weight: 700; }

/* AWARDS, EVENTS & CALENDARS */
.awards-highlights ul, .calendar-view ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.winner-profiles, .analysis-summaries {
  margin-top: 16px;
  font-size: 1rem;
}

/* UNIVERSAL MARGIN FOR CARD/SECTION */
.section, .card, .testimonial-card, .feature-item, .features .content-wrapper > ul > li, .feature-grid > div {
  margin-bottom: 20px !important;
}

/* NEWSLETTER SECTION */
.newsletter ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
  color: var(--color-primary);
}

/* ABOUT PAGE LAYOUTS & VALUES */
.about .text-section, .about .team-introduction, .about .core-values {
  margin-bottom: 18px;
}
.core-values ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.team-profiles ul, .editorial-team-presentations ul, .expertise-highlights ul, .collection-lists ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* CONTACT DETAILS */
.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--color-primary);
}
.contact-details img {
  width: 22px;
  height: 22px;
  margin-right: 5px;
}
.social-media-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.social-media-links img {
  width: 22px;
  height: 22px;
  margin-right: 5px;
}

/* THANK YOU SECTION */
.thank-you .confirmation-text {
  font-size: 1.08rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.thank-you .next-steps {
  margin-top: 10px;
}

/* POLICY TEXTS */
.policy .text-section ul {
  margin: 12px 0 0 22px;
  list-style: disc;
  color: var(--color-text);
}

/* FOOTER */
footer {
  background: #18191A;
  color: #fff;
  padding: 40px 0 24px 0;
  margin-top: 60px;
  font-size: 0.98rem;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
footer img {
  width: 60px;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.93;
  transition: color 0.14s, opacity 0.18s;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
}
.footer-nav a:hover, .footer-nav a:focus-visible {
  color: var(--color-secondary);
  opacity: 1;
}
footer address {
  color: #babec1;
  text-align: center;
  font-style: normal;
  font-size: 0.98rem;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #18191A;
  color: #fafafa;
  padding: 24px 20px;
  z-index: 2500;
  box-shadow: 0 -4px 36px 0 rgba(34,47,62,0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: transform 0.26s cubic-bezier(.57,.18,.87,.59);
  transform: translateY(100%);
  font-size: 1.05rem;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner-btn {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.04rem;
  margin: 0 8px;
  padding: 7px 22px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.12s, color 0.15s, box-shadow 0.12s, transform 0.11s;
  border: none;
  outline: none;
  display: inline-block;
}
.cookie-banner-btn.reject {
  background: transparent;
  color: #eee;
  border: 1px solid #3a3a3a;
}
.cookie-banner-btn:focus {
  outline: 2px solid var(--color-secondary);
}

.cookie-banner-btn.reject:hover, .cookie-banner-btn.reject:focus-visible {
  background: #232323;
  color: var(--color-secondary);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(20,20,22,0.56);
  z-index: 2700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.19s;
}
.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  color: var(--color-primary);
  border-radius: var(--radius);
  padding: 38px 28px 26px 28px;
  max-width: 420px;
  box-shadow: 0 8px 36px rgba(34,47,62,0.17);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal-content h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.cookie-modal-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  border-radius: 50%;
}
.cookie-modal .cookie-category {
  display: flex; align-items: center; gap: 14px; margin-bottom: 12px;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--color-secondary);
  width: 20px; height: 20px; margin: 0 5px 0 0;
}
.cookie-category label { font-size: 1.07rem; color: var(--color-primary); font-family: var(--font-body); }
.cookie-category.essential label { color: #bbb; }

.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 24px;
}

/* ANIMATION EXTRAS */
.hero, .card, .review-card, .feature-item, .latest-news-preview, .testimonial-card, .cookie-banner, .cookie-modal-content {
  transition: box-shadow 0.23s, transform 0.21s, background 0.16s;
}

/* MEDIA QUERIES: RESPONSIVE/MOBILE FIRST */
@media (max-width: 1250px) {
  .container {
    padding: 0 8px;
  }
}
@media (max-width: 990px) {
  .container {
    padding: 0 8px;
    max-width: 99vw;
  }
  .main-nav {
    display: none;
  }
}
@media (max-width: 768px) {
  .section, .features, .hero {
    padding: 26px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 2vw;
  }
  .hero .container {
    flex-direction: column;
    min-height: 180px;
    padding: 26px 0;
  }
  .content-wrapper, .highlights .content-wrapper, .newsletter .content-wrapper {
    gap: 11px;
  }
  .card-container, .review-cards, .collection-lists, .features .content-wrapper > ul, .feature-grid, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item, .features .content-wrapper > ul > li, .feature-grid > div {
    min-width: 0;
    width: 100%;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 10px;
  }
  .latest-news-preview, .latest-reviews-preview, .next-festivals-preview {
    min-width: 0;
    max-width: 100%;
    padding: 12px 8px;
  }
  .mobile-nav a {
    font-size: 1.17rem;
    width: 90vw;
    padding: 14px 0;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.2rem; }
  .hero h1 {
    font-size: 1.5rem;
  }
  .cta-primary, .cookie-banner-btn {
    font-size: 0.96rem;
    padding: 9px 16px;
  }
  footer {
    padding: 18px 0 14px 0;
  }
  footer .container {
    gap: 12px;
  }
}

/* SCROLLBAR – subtle, sophisticated chrome */
::-webkit-scrollbar {
  width: 10px;
  background: #eeeeee;
}
::-webkit-scrollbar-thumb {
  background: #222F3E;
  border-radius: 14px;
}

/* MICRO-INTERACTIONS */
.card:hover, .feature-item:hover, .review-card:hover {
  box-shadow: var(--shadow-l);
}

/* SELECTION COLOR */
::selection {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/* ACCESSIBILITY: FOCUS STYLES */
a:focus, button:focus, input:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* Z-INDEX STANDARDS */
header { z-index: 100; position: relative; }
.mobile-menu { z-index: 1500; }
.cookie-banner { z-index: 2500; }
.cookie-modal { z-index: 2700; }

/* END OF CSS */