/* --- CSS RESET & NORMALIZE (Mobile-first, removing grid and columns) --- */
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%;
  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.5;
  background: #FFF8EB;
  color: #2B3253;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  min-height: 100vh;
  overflow-x: hidden;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #2B3253;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F6AD4B;
  outline: none;
}
ul, ol {
  margin-left: 28px;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}
button, input, select, textarea {
  font: inherit;
  outline: none;
}

/* --- CUSTOM FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

/* --- BRAND COLORS AS VARIABLES --- */
:root {
  --primary: #2B3253;
  --secondary: #F6AD4B;
  --accent: #FFF8EB;
  --success: #80D16B;
  --error: #FF6170;
  --info: #59C8E8;
  --fun-1: #E255A2;
  --fun-2: #81EAF2;
  --shadow: 0 3px 18px -5px rgba(43, 50, 83, 0.12);
}

/* --- UTILITIES & STRUCTURE --- */
.container {
  width: 100%;
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* --- TYPOGRAPHY --- */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 12px rgba(246,173,75,0.10);
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.8rem;
  color: var(--fun-1);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.25px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--primary);
}
p, li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.meta, .date {
  font-size: 0.95rem;
  color: var(--fun-1);
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 4px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: var(--accent);
  border-bottom: 3px solid var(--fun-2);
  box-shadow: 0 4px 16px -10px rgba(43,50,83,0.09);
  position: relative;
  z-index: 11;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 18px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 50px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 22px;
  transition: background 0.18s, color 0.18s, transform 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--accent);
  transform: translateY(-2px) scale(1.08) rotate(-2deg);
  box-shadow: 0 2px 10px 0 rgba(246, 173, 75, 0.09);
}
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--accent);
  background: var(--fun-1);
  border: none;
  border-radius: 28px;
  padding: 12px 28px;
  cursor: pointer;
  box-shadow: 0 6px 20px -8px var(--fun-1);
  margin-left: 12px;
  transition: background 0.19s, color 0.12s, box-shadow 0.20s, transform 0.18s;
  letter-spacing: 0.5px;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 8px 24px -10px var(--secondary);
  transform: scale(1.08) rotate(3deg);
}

/* --- HERO SECTION --- */
.hero {
  background: var(--fun-2);
  background-clip: padding-box;
  position: relative;
  z-index: 1;
  min-height: 290px;
  display: flex;
  align-items: center;
  flex: 1 0 auto;
  box-shadow: 0 6px 36px -12px #81EAF2;
  margin-bottom: 40px;
  animation: heroFadeIn 1.5s cubic-bezier(0.66,0,0.2,1);
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  color: var(--primary);
}
.hero p {
  font-size: 1.18rem;
  color: var(--primary);
  margin-bottom: 12px;
}

/* --- FLEXBOX UTILITY CLASSES (MANDATORY) --- */
.features-grid, .events-overview, .testimonials-grid, .service-grid, .festival-list, .event-list, .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.events-overview, .festival-list, .event-list, .blog-list {
  gap: 24px;
}
.features-grid, .service-grid {
  gap: 28px;
}
.testimonials-grid {
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  max-width: 100%;
  background: #ffffff;
  box-shadow: var(--shadow);
  border-radius: 20px;
  padding: 20px 22px;
  transition: transform 0.16s, box-shadow 0.18s;
}
.card:hover {
  transform: scale(1.03) rotate(2deg);
  box-shadow: 0 8px 32px -14px var(--fun-1);
}

.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;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 6px 24px -12px var(--primary);
  min-width: 260px;
  max-width: 385px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.18s;
  border: 2px dashed var(--fun-2);
}
.testimonial-card:hover {
  box-shadow: 0 10px 36px -12px var(--fun-1);
  transform: scale(1.04) rotate(-2deg);
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.07rem;
  font-style: italic;
}
.testimonial-footer {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  font-size: 0.95rem;
  color: var(--fun-1);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 4px;
}
.rating {
  color: var(--secondary);
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* --- BLOG TEASER CARDS --- */
.blog-teaser, .event-teaser, .festival-item, .service, .event-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 22px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  min-width: 235px;
  flex: 1 1 275px;
  transition: transform 0.20s, box-shadow 0.19s;
  margin-bottom: 20px;
  position: relative;
  border: 2px solid var(--fun-2);
}
.blog-teaser:hover, .event-teaser:hover, .festival-item:hover, .service:hover, .event-item:hover {
  transform: scale(1.04) rotate(-2deg);
  box-shadow: 0 10px 36px -12px var(--fun-1);
}

.service img, .feature img {
  width: 38px;
  margin-bottom: 10px;
  border-radius: 6px;
  box-shadow: 0 2px 8px -4px var(--fun-2);
}
.feature img {
  background: var(--fun-2);
  padding: 4px;
}
.festival-item .date, .event-item .date {
  font-weight: bold;
  color: var(--fun-1);
  margin-top: 0;
  margin-bottom: 10px;
}

/**** Spacing between sections/cards/calls-to-action ****/
.benefit-list, .consultation-offer, .contact-info {
  margin-top: 16px;
  margin-bottom: 16px;
}
.benefit-list {
  list-style: disc outside;
  color: var(--fun-1);
  font-size: 1rem;
}
.benefit-list li,
.text-section li {
  margin-bottom: 10px;
  padding-left: 6px;
}

/**** CTA SECTION ****/
.cta-section {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 30px 30px 0 0;
  margin: 60px 0 0 0;
  padding: 48px 20px 60px 20px;
  text-align: center;
  box-shadow: 0 8px 32px -12px var(--fun-1);
}
.cta-section h2 {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.cta-section p {
  color: var(--accent);
}
.cta-section .cta-btn {
  background: var(--fun-1);
  color: var(--accent);
  margin-top: 18px;
}
.cta-section .cta-btn:hover {
  background: var(--primary);
  color: var(--secondary);
}

/**** FOOTER ****/
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 32px 0 22px 0;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 2;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-logo img {
  height: 46px;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  border-radius: 14px;
  padding: 5px 13px;
  transition: background 0.18s, color 0.14s;
}
.footer-nav a:hover {
  background: var(--fun-1);
  color: var(--accent);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
  color: var(--accent);
  font-size: 0.97rem;
  justify-content: center;
  margin-top: 10px;
  text-align: center;
}
.footer-contact img {
  width: 19px;
  height: 19px;
  vertical-align: sub;
}

/**** MOBILE MENU ****/
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.15rem;
  background: var(--fun-1);
  color: var(--accent);
  border: none;
  border-radius: 24px;
  width: 46px;
  height: 46px;
  position: absolute;
  right: 18px;
  top: 11px;
  z-index: 50;
  cursor: pointer;
  transition: background 0.19s, color 0.13s, box-shadow 0.15s;
  box-shadow: 0 2px 10px -4px var(--primary);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--primary);
}

@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  color: var(--accent);
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(0.42,0,0.38,0.99);
  z-index: 1010;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 38px 32px 0 32px;
  box-shadow: 0 6px 48px 10px rgba(43,50,83,0.33);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--fun-1);
  color: var(--accent);
  border: none;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
  transition: background 0.16s, color 0.14s, box-shadow 0.14s;
  box-shadow: 0 2px 10px -4px var(--fun-1);
}
.mobile-menu-close:hover {
  background: var(--secondary);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 20px;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  background: none;
  border-radius: 16px;
  padding: 10px 0 10px 8px;
  margin-right: 12px;
  transition: background 0.15s, color 0.15s;
  min-width: 60vw;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}

@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
  .main-nav { display: flex; }
  .cta-btn { display: inline-block; }
}
@media (max-width: 1024px) {
  .main-nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu { display: flex; }
}

/**** COOKIE BANNER (MANDATORY) ****/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--primary);
  color: var(--accent);
  padding: 24px 20px 24px 20px;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  box-shadow: 0 -6px 36px -10px var(--primary);
  font-size: 1rem;
  animation: cookieSlideIn 0.7s cubic-bezier(0.42,0,0.38,1);
}
@keyframes cookieSlideIn {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 25px;
  padding: 8px 20px;
  background: var(--fun-1);
  color: var(--accent);
  border: none;
  cursor: pointer;
  margin-right: 5px;
  margin-bottom: 2px;
  transition: background 0.16s, color 0.13s, box-shadow 0.15s, transform 0.17s;
  box-shadow: 0 3px 12px -6px var(--fun-1);
}
.cookie-btn-secondary {
  background: var(--secondary);
  color: var(--primary);
  border: none;
}
.cookie-btn-settings {
  background: var(--accent);
  color: var(--primary);
  border: 1.5px solid var(--fun-2);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.05) rotate(-2deg);
}

/* ---- COOKIE PREFERENCES MODAL ---- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(43,50,83,0.58);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000000;
  animation: modalFadeIn 0.35s cubic-bezier(0.65,0,0.27,1);
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--accent);
  color: var(--primary);
  padding: 40px 28px 24px 28px;
  border-radius: 30px;
  min-width: 340px;
  max-width: 94vw;
  box-shadow: 0 10px 44px 3px var(--fun-2);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--fun-1);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-switch {
  appearance: none;
  width: 44px;
  height: 22px;
  background: var(--fun-2);
  border-radius: 13px;
  position: relative;
  outline: none;
  transition: background 0.16s;
  margin-right: 2px;
  cursor: pointer;
}
.cookie-switch:checked {
  background: var(--fun-1);
}
.cookie-switch:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 1px;
  top: 1px;
  transform: translateX(0);
  transition: transform 0.25s cubic-bezier(0.57,0.03,0.43,0.97);
  box-shadow: 0 2px 6px -2px var(--primary);
}
.cookie-switch:checked:before {
  transform: translateX(22px);
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: var(--fun-1);
  color: var(--accent);
  border: none;
  font-size: 1.3rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.15s, color 0.12s, box-shadow 0.12s;
}
.cookie-modal-close:hover {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category.essential label {
  font-weight: 700;
  color: var(--secondary);
}

/**** FORM ELEMENTS & CONTACT INFO ****/
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.05rem;
}
.contact-info img {
  width: 20px;
  margin-right: 8px;
}

/**** TEXT SECTION ****/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.03rem;
  line-height: 1.75;
}

/**** ANIMATIONS AND MICRO-INTERACTIONS ****/
.cta-btn, .cookie-btn, .blog-teaser, .event-teaser, .card, .service, .feature, .festival-item, .event-item, .testimonial-card {
  transition: box-shadow 0.17s, transform 0.21s, background 0.14s, color 0.13s;
}

.cta-btn:active, .cookie-btn:active, .card:active, .service:active, .feature:active, .festival-item:active, .testimonial-card:active {
  transform: scale(0.98) !important;
}

/**** RESPONSIVE DESIGN (MOBILE-FIRST) ****/
@media (max-width: 1024px) {
  .container {
    max-width: 100vw;
    padding-left: 9px;
    padding-right: 9px;
  }
  .main-nav,
  .cta-btn {
    display: none;
  }
  header .container {
    gap: 6px;
    min-height: 60px;
    padding-top: 1px;
    padding-bottom: 1px;
  }
}
@media (max-width: 768px) {
  h1, .hero h1 { font-size: 1.7rem; }
  h2 { font-size: 1.2rem; }
  .cta-section { padding: 32px 7px 46px 7px; }
  .hero { min-height: 170px; margin-bottom: 20px; }
  .section { margin-bottom: 38px; padding: 22px 7px; }
  .events-overview,
  .features-grid,
  .festival-list,
  .event-list,
  .service-grid,
  .testimonials-grid,
  .blog-list {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .footer-contact { flex-direction: column; gap: 7px; }
  footer .container { padding: 0 7px; }
}

/** Playful dynamic personality: extra playful accents **/
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: -10px; right: -10px;
  width: 45px;
  height: 45px;
  z-index: 1;
  background: url('/assets/icons/icon-sparkle.svg') center no-repeat;
  background-size: 60% 60%;
  opacity: 0.20;
  pointer-events: none;
}
.section {
  position: relative;
  z-index: 1;
}
.section::before {
  content: '';
  display: block;
  position: absolute;
  left: 8px; top: 8px;
  width: 22px; height: 22px;
  background: var(--fun-1);
  border-radius: 50%;
  opacity: 0.09;
  z-index: 0;
  pointer-events: none;
  animation: bounce 5s infinite linear;
}
@keyframes bounce {
  0% { transform: translateY(0); }
  12% { transform: translateY(10px); }
  25% { transform: translateY(-11px); }
  40% { transform: translateY(7px); }
  60% { transform: translateY(-5px); }
  75% { transform: translateY(4px); }
  100% { transform: translateY(0); }
}
.logo img, .footer-logo img {
  will-change: filter, transform;
  transition: filter 0.14s, transform 0.23s;
}
.logo img:hover, .footer-logo img:hover {
  filter: brightness(1.15) drop-shadow(0 2px 10px #81EAF2);
  transform: scale(1.05) rotate(-4deg);
}

/**** VISUAL HIERARCHY & SPACING ****/
.section, .cta-section, .hero {
  margin-bottom: 60px;
}
.card-container > *:not(:last-child),
.features-grid > *:not(:last-child),
.events-overview > *:not(:last-child),
.testimonials-grid > *:not(:last-child),
.festival-list > *:not(:last-child),
.event-list > *:not(:last-child),
.service-grid > *:not(:last-child),
.blog-list > *:not(:last-child) {
  margin-right: 0;
  margin-bottom: 0;
}

/**** ACCESSIBILITY and COLOR CONTRAST on TESTIMONIALS ****/
.testimonial-card,
.testimonial-card p,
.testimonial-footer {
  background: #fff !important;
  color: var(--primary) !important;
}
.testimonial-card .guest-name,
.testimonial-card .customer-name,
.testimonial-card .visitor-name {
  font-weight: 700;
  color: var(--fun-1);
}
.location {
  color: var(--secondary);
  margin-left: 2px;
}

/* --- DECO LINES for fun --- */
.hero::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -3px; left: 80px;
  width: 120px;
  height: 9px;
  border-radius: 8px;
  background: var(--fun-1);
  opacity: 0.16;
  z-index: 0;
  pointer-events: none;
  transform: rotate(-4deg);
  animation: wiggle 6s infinite ease-in-out alternate;
}
@keyframes wiggle {
  0% { transform: rotate(-6deg) scaleX(1); }
  45% { transform: rotate(2deg) scaleX(1.2); }
  80% { transform: rotate(-2deg) scaleX(0.95); }
  100% { transform: rotate(-6deg) scaleX(1); }
}

/* --- Z-INDEX LAYERING --- */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay, .cookie-modal {
  z-index: 1000;
}

/* Hide scrollbars in mobile menu if not needed */
.mobile-menu {
  overflow-y: auto;
  scrollbar-width: none;
}
.mobile-menu::-webkit-scrollbar {
  display: none;
}

/* --- NO ABSOLUTE for content, no display: grid anywhere --- */
/* All cards and content are flexbox based only! No grid! */
