/* ============================
   CSS RESET & BASE STYLES
   ============================ */
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;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #15181B;
  background: #fff;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #15181B;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #2C3A4A;
}
ul, ol {
  list-style: none;
}

/* ======================
   MONOCHROME COLOR PALETTE
   ====================== */
:root {
  --primary: #2C3A4A;
  --secondary: #EFC01A;
  --accent: #F8F9FA;
  --black: #15181B;
  --gray-900: #212529;
  --gray-800: #343a40;
  --gray-700: #495057;
  --gray-500: #adb5bd;
  --gray-300: #dee2e6;
  --gray-200: #e9ecef;
  --white: #fff;
  --focus-outline: #EFC01A;
}

/* ===============
   FONTS & TYPOGRAPHY
   =============== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
}
h3 {
  font-size: 1.35rem;
  line-height: 1.25;
}
h4 {
  font-size: 1.1rem;
}
.subheadline {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--gray-700);
  margin-bottom: 22px;
}
strong {
  font-weight: 700;
}

p, li {
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
}
.container {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ===============
   BUTTONS & CTA
   =============== */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  border-radius: 32px;
  padding: 14px 34px;
  transition: box-shadow 0.2s, color 0.2s, background 0.2s, border 0.2s;
  cursor: pointer;
  border: 1.5px solid var(--primary);
  box-shadow: 0 2px 16px 0 rgba(44,58,74,0.05);
  letter-spacing: 0.2px;
  margin: 10px 5px 10px 0;
}
.cta.primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.cta.secondary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--primary);
}
.cta:hover, .cta:focus {
  box-shadow: 0 4px 20px 0 rgba(44,58,74,0.10);
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
  outline: none;
}

.button {
  display: inline-flex;
  align-items: center;
  padding: 10px 26px;
  border-radius: 30px;
  border: 1.5px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.button:hover, .button:focus {
  background: var(--gray-200);
  color: var(--primary);
  outline: none;
}


/* ====================
   HEADER & NAVIGATION
   ==================== */
header {
  background: var(--white);
  border-bottom: 1.5px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(44,58,74,0.02);
  position: sticky;
  top: 0;
  z-index: 15;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.1px;
  padding: 4px 14px;
  border-radius: 6px;
  transition: background 0.20s, color 0.20s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--gray-200);
  color: var(--black);
  outline: none;
}

header img {
  height: 38px;
}

/* ================
   MOBILE MENU
   ================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 1001;
  background: var(--white);
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-size: 2rem;
  border-radius: 10px;
  padding: 7px 16px;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 9px 0 rgba(44,58,74,0.12);
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--focus-outline);
}
.mobile-menu-toggle:hover {
  background: var(--secondary);
  color: var(--black);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44,58,74,0.98);
  z-index: 1002;
  padding: 28px 18px 10px 18px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.82,0,0.33,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: var(--secondary);
  margin-bottom: 18px;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--white);
  outline: none;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}
.mobile-nav a {
  color: var(--accent);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 12px 18px;
  border-radius: 14px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  outline: none;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 13px;
  }
  header .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 7px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .cta.primary {
    display: none;
  }
}

/*========================
   HERO SECTION
  ========================*/
.hero {
  background: linear-gradient(120deg, var(--white) 60%, #f2f4f6 100%);
  padding: 58px 0 40px 0;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  color: var(--primary);
  margin-bottom: 10px;
}
.hero .cta.primary {
  margin-top: 18px;
}


/* ========================
   FLEXBOX SPACING CLASSES
   ========================*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--gray-200);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(33,37,41,0.06);
  padding: 30px;
  flex: 1 1 300px;
  min-width: 270px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.18s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
}
.card:hover, .card:focus-within {
  transform: translateY(-8px) scale(1.016);
  box-shadow: 0 8px 28px rgba(44,58,74,0.10);
  z-index: 2;
}
.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;
  background: var(--white);
  border-left: 5px solid var(--primary);
  box-shadow: 0 1px 7px rgba(44,58,74,0.06);
  padding: 20px 20px 20px 24px;
  margin: 0;
  border-radius: 15px;
  font-size: 1rem;
  color: var(--black);
  font-family: 'Roboto', Arial, sans-serif;
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===============
   FEATURES GRIDS
   =============== */
.features .feature-grid, .feature-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 12px;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: var(--gray-200);
  border-radius: 14px;
  padding: 30px 20px;
  flex: 1 1 235px;
  min-width: 220px;
  box-shadow: 0 2px 10px rgba(44,58,74,0.04);
  transition: box-shadow 0.18s, background 0.18s;
}
.feature:hover {
  background: var(--secondary);
  box-shadow: 0 6px 20px rgba(44,58,74,0.10);
}
.feature img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}
.feature h3 {
  margin-bottom: 6px;
}

/* =================
   EDITOR'S PICKS
   =================*/
.editor-picks {
  background: var(--gray-200);
  border-radius: 18px;
  padding: 46px 0;
  margin-bottom: 60px;
}
.editor-selection {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 10px 0 20px 0;
  font-size: 1.15rem;
  color: var(--primary);
}
.editor-selection li {
  background: var(--white);
  padding: 13px 23px;
  border-radius: 11px;
  margin-bottom: 0!important;
  box-shadow: 0 1px 7px rgba(44,58,74,0.05);
}
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 4px;
}
.quick-links a {
  background: var(--primary);
  color: var(--white);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 26px;
  border-radius: 30px;
  border: none;
  transition: background 0.18s, color 0.18s;
}
.quick-links a:hover, .quick-links a:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* ========================
   NEWS/ARTICLE LISTS
   ======================== */
.news-teaser-list, .news-feed, .review-cards, .event-calendar, .team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 11px;
}
.news-teaser-list article, .news-feed article, .review-cards .card, .event-calendar .event, .team-members .editor-bio {
  background: var(--gray-200);
  border-radius: 16px;
  box-shadow: 0 1px 7px rgba(44,58,74,0.03);
  padding: 24px 20px 22px 20px;
  flex: 1 1 270px;
  min-width: 240px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.16s;
}
.news-teaser-list article:hover, .news-feed article:hover, .review-cards .card:hover, .event-calendar .event:hover {
  box-shadow: 0 8px 27px rgba(44,58,74,0.09);
  z-index: 2;
}
.news-teaser-list h3, .news-feed h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.category {
  display: inline-block;
  font-size: 0.94rem;
  color: var(--secondary);
  font-weight: bold;
  margin-bottom: 9px;
}
.star-ratings {
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 8px;
  letter-spacing: 1.5px;
}

/* =====================
   CATEGORY FILTERS & TAGS
   ===================== */
.category-filters {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0 16px 0;
  flex-wrap: wrap;
}
.category-filters span {
  color: var(--primary);
  font-weight: bold;
  font-size: 1.06rem;
}
.category-filters a {
  background: var(--accent);
  color: var(--primary);
  font-size: 1rem;
  padding: 5px 14px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.category-filters a:hover, .category-filters a:focus {
  background: var(--primary);
  color: var(--white);
}
.topic-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.topic-filters button {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 7px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.topic-filters button:hover, .topic-filters button:focus {
  background: var(--secondary);
  color: var(--primary);
  outline: none;
}

/* =========================
   INSIGHT SLIDER & STATS
   ========================= */
.insight-slider {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 10px 0 23px 0;
}
.insight {
  background: var(--gray-200);
  border-radius: 13px;
  padding: 26px 18px;
  box-shadow: 0 1px 6px rgba(44,58,74,0.03);
  min-width: 220px;
  flex: 1 1 230px;
}
.stat-highlights ul {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 9px;
}
.stat-highlights li {
  background: var(--primary);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 14px;
  font-weight: 500;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 0!important;
}

/* ================
   CARDS (GENERIC)
   ================ */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
}

/* ================
   TESTIMONIALS & REVIEWS
   ================ */
.review-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.review-cards .card {
  background: var(--white);
  border: 1.5px solid var(--gray-300);
}
.testimonial-card p, .testimonial-card strong {
  color: var(--black);
  font-style: italic;
  font-size: 1.02rem;
  font-family: 'Roboto', Arial, sans-serif;
}

/* ================
   AVERAGES, SUMMARY
   ================ */
.average-scores {
  font-size: 1.1rem;
  background: var(--gray-200);
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 16px;
}
.category-ratings {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  font-size: 1.04rem;
}
.category-ratings li {
  background: var(--accent);
  border-radius: 10px;
  padding: 8px 16px;
  color: var(--primary);
}

/* ==================
   EVENTS & WINNERS
   ================== */
.event-highlights ul, .winner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
  align-items: flex-start;
}
.event-highlights li, .winner-list li {
  background: var(--primary);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 400;
}

/* ===========================
   TEAM & EDITOR BIOS (About)
   =========================== */
.team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 13px;
}
.editor-bio {
  background: var(--gray-200);
  border-radius: 14px;
  padding: 26px 19px;
  box-shadow: 0 1px 6px rgba(44,58,74,0.03);
  min-width: 220px;
  flex: 1 1 200px;
  font-size: 1rem;
}

/* =======================
   LEGAL & POLICY SECTIONS
   ======================= */
.legal, .privacy-policy-content, .terms-of-use-text, .cookie-policy-text, .gdpr-overview, .data-rights {
  font-size: 1rem;
  color: var(--gray-900);
  background: var(--white);
  border-radius: 14px;
  padding: 17px 18px;
}

/* ==================
   CTA AREA
   ================== */
.cta-area {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* =================
   FOOTER
   ================= */
footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 0 0;
  border-top: 2px solid var(--primary);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  padding-bottom: 22px;
}
.footer-brand {
  flex: 1 1 230px;
  min-width: 210px;
  color: var(--white);
}
.footer-brand img {
  height: 33px;
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 0.98rem;
  color: var(--white);
  line-height: 1.44;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 140px;
}
.footer-nav a, .footer-legal a {
  color: var(--gray-300);
  text-decoration: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 5px 12px;
  border-radius: 5px;
  transition: background 0.15s, color 0.15s;
}
.footer-nav a:hover, .footer-legal a:hover, .footer-nav a:focus, .footer-legal a:focus {
  background: var(--gray-700);
  color: var(--secondary);
}
.footer-contact {
  flex: 1 1 200px;
  min-width: 160px;
  color: var(--gray-300);
  font-size: 0.98rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-contact p img {
  margin-right: 7px;
  height: 18px;
  vertical-align: middle;
}
.footer-social {
  display: flex;
  gap: 13px;
  margin-top: 4px;
}
.footer-social a img {
  height: 26px;
  width: 26px;
  filter: grayscale(1) brightness(0.86);
  transition: filter 0.18s, transform 0.18s;
}
.footer-social a:hover img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.08);
}
.footer-copyright {
  flex: 1 1 100%;
  margin-top: 24px;
  color: var(--gray-500);
  font-size: 0.97rem;
  text-align: left;
}

/* ================
   MAP SECTION
   ================ */
.map {
  background: var(--gray-200);
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 45px 10px;
}
.address {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 13px;
}
.map-embed {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
  margin-top: 8px;
}
.map-embed img {
  height: 90px;
  width: 90px;
  border-radius: 12px;
  background: var(--white);
  border: 1.5px solid var(--gray-300);
}


/* =========================
   COOKIE CONSENT BANNER
   ========================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1200;
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 -4px 12px rgba(44,58,74,0.08);
  border-top: 2px solid var(--primary);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 26px 18px 24px 24px;
  font-size: 1.06rem;
  transition: transform 0.28s;
}
.cookie-banner.closed {
  transform: translateY(150%);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
  margin-left: auto;
}
.cookie-banner .button, .cookie-banner .cta {
  font-size: 0.97rem;
  border-radius: 8px;
  padding: 10px 19px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-banner .button.accept {
  background: var(--primary);
  color: var(--white);
  border: 1.5px solid var(--primary);
}
.cookie-banner .button.accept:hover {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .button.reject {
  background: var(--white);
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.cookie-banner .button.reject:hover {
  background: var(--gray-200);
}
.cookie-banner .button.settings {
  background: var(--gray-200);
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.cookie-banner .button.settings:hover {
  background: var(--primary);
  color: var(--white);
}

/* Cookie settings modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,58,74,0.62);
  z-index: 1210;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: var(--white);
  color: var(--primary);
  border-radius: 16px;
  max-width: 470px;
  width: 97vw;
  box-shadow: 0 10px 38px rgba(44,58,74,0.22);
  padding: 38px 28px 30px 28px;
  position: relative;
  animation: cookieModalIn 0.5s cubic-bezier(0.69,0.05,0.39,1) both;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes cookieModalIn {
  0% { transform: translateY(50px) scale(0.95); opacity: 0; }
  100% { transform: none; opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.cookie-modal .cookie-options {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-modal .cookie-category .label {
  font-size: 1rem;
  color: var(--primary);
}
.cookie-modal .cookie-toggle {
  padding-left: 0;
  margin-left: auto;
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 13px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--secondary);
  outline: none;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  justify-content: flex-end;
}

/* ==========================
   ANIMATIONS AND TRANSITIONS
   ========================== */
.card, .feature, .testimonial-card {
  transition: box-shadow 0.21s, transform 0.19s;
}
.quick-links a,
.main-nav a,
.cta,
.button,
.topic-filters button,
.category-filters a {
  transition: background 0.18s, color 0.18s, border 0.17s, box-shadow 0.16s;
}

/* ============
   ACCESSIBILITY
   ============ */
a:focus, .button:focus, .cta:focus, .topic-filters button:focus, .mobile-nav a:focus {
  outline: 2px solid var(--focus-outline);
  outline-offset: 2px;
}

/* ============
   MEDIA QUERIES (RESPONSIVENESS)
   ============ */
@media (max-width: 990px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .card, .review-cards .card, .news-teaser-list article, .news-feed article, .feature, .team-members .editor-bio {
    min-width: 210px;
    flex: 1 1 180px;
    padding: 18px 8px;
  }
  .content-grid, .card-container, .features .feature-grid, .review-cards, .news-teaser-list, .news-feed, .event-calendar, .team-members {
    gap: 16px;
  }
}
@media (max-width: 790px) {
  .footer-nav, .footer-legal, .footer-contact {
    min-width: 100px;
  }
  footer .container {
    gap: 22px;
    flex-wrap: wrap;
    padding-bottom: 36px;
  }
}
@media (max-width: 690px) {
  .hero {
    padding-top: 36px;
    padding-bottom: 18px;
  }
  .section, .editor-picks, .map {
    padding: 24px 4px;
    margin-bottom: 36px;
  }
  .content-grid, .card-container, .features .feature-grid, .review-cards, .news-teaser-list, .news-feed, .event-calendar, .team-members {
    flex-direction: column;
    gap: 14px;
  }
  .cta, .button {
    width: 100%;
    justify-content: center;
  }
  .footer-social {
    margin-top: 18px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.33rem; }
  .subheadline { font-size: 1rem; }
  .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .cookie-banner {
    padding: 18px 7px 13px 10px;
    font-size: 0.97rem;
    gap: 10px;
  }
  .editor-selection {
    gap: 7px;
    font-size: 0.97rem;
  }
  .stat-highlights ul, .event-highlights ul, .winner-list {
    gap: 8px;
    font-size: 0.96rem;
  }
}
@media (max-width: 768px) {
  .text-image-section,
  .quick-links,
  .feature-grid,
  .review-cards,
  .content-grid,
  .card-container,
  .news-teaser-list, .news-feed, .event-calendar, .team-members {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .team-members {
    gap: 13px;
  }
}

/* Hide scroll when menu open on mobile */
body.menu-open {
  overflow: hidden;
}


/* ======================
   UTILITY CLASSES & REUSABLES
   ======================
*/
.hidden { display: none !important; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ======================
   PRINT AND MISC
   ======================
*/
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  header, footer { page-break-inside: avoid; }
  body { color: #000; background: #fff; }
}
