/* RESET & BASE TYPOGRAPHY ---------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #224466;
  background-color: #F2EFEA;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
}
img, picture, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #224466;
  letter-spacing: 0.02em;
  margin-bottom: 0.5em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 0.4em;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35em;
}
h4 {
  font-size: 1.15rem;
  font-weight: 700;
}
p, li, address {
  font-size: 1rem;
  color: #224466;
  margin-bottom: 0.7em;
}
strong {
  font-weight: 700;
  color: #3c1eb0;
}
a {
  color: #e7692b;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: #224466;
}

/* BRAND COLORS as custom properties for fallback --------- */
:root {
  --primary:#224466;
  --secondary: #73A9C2;
  --accent: #F2EFEA;
  --highlight: #fff41a;
  --fun1: #fcb900;
  --fun2: #27d7ba;
  --fun3: #ff7ba9;
  --fun4: #e7692b;
}

body {
  background: var(--accent, #F2EFEA);
}

/* SPACING PATTERNS (MANDATORY) -------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(39,215,186,0.11);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* GENERAL CONTAINERS & LAYOUTS -------------------------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper, .feature-grid, .service-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Playful animation keyframes ---------------------------- */
@keyframes floaty {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
@keyframes wiggle {
  0%,100% { transform: rotate(0); }
  20% { transform: rotate(7deg); }
  40% { transform: rotate(-5deg); }
  60% { transform: rotate(4deg); }
  80% { transform: rotate(-2deg); }
}

/* HEADER & MAIN NAVIGATION -------------------------- */
header {
  background: linear-gradient(90deg,#F2EFEA 77%,#fff41a 100%);
  box-shadow: 0 2px 8px 0 rgba(34,68,102,0.05);
  position: relative;
  z-index: 20;
  padding: 0 0 0 0;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 24px 0 12px 0;
}
.main-nav img {
  max-height: 60px;
  margin-right: 16px;
  animation: floaty 3s ease-in-out infinite;
}
.main-nav a {
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 13px;
  transition: background 0.15s, color 0.15s;
  position: relative;
}
.main-nav a.cta-btn {
  background: linear-gradient(90deg, var(--fun3), var(--fun2));
  color: #224466;
  font-size: 1.05rem;
  font-weight: 900;
  border-radius: 24px;
  padding: 10px 25px;
  box-shadow: 0 6px 18px 0 rgba(34,68,102,0.09);
  letter-spacing: 0.04em;
  margin-left: auto;
  margin-right: 0;
  animation: wiggle 2.5s infinite;
}
.main-nav a:not(.cta-btn):hover, .main-nav a:not(.cta-btn):focus {
  background: var(--secondary);
  color: #fff;
}
.main-nav a.cta-btn:hover, .main-nav a.cta-btn:focus {
  background: linear-gradient(90deg, #fff41a 10%, var(--fun2) 100%);
  color: #224466;
  box-shadow: 0 8px 24px 0 rgba(252,185,0,0.18);
}

/* MOBILE NAVIGATION --------------------------------------- */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  padding: 0.5em 0.65em;
  margin: 0 10px 0 auto;
  color: #224466;
  background: #fff41a;
  border-radius: 50%;
  border: 2px solid #224466;
  box-shadow: 0 2px 10px 0 rgba(39,215,186,0.05);
  cursor: pointer;
  position: relative;
  z-index: 99;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #ff7ba9;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 380px;
  height: 100vh;
  background: #fff41a;
  box-shadow: -2px 0 18px 0 rgba(34,68,102,0.16);
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.61,-0.03,.55,1.02);
  z-index: 98;
  display: flex;
  flex-direction: column;
  padding-top: 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #224466;
  align-self: flex-end;
  margin: 0 18px 18px 0;
  cursor: pointer;
  background: #ff7ba9;
  border-radius: 50%;
  padding: 8px 13px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #27d7ba;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: 22px;
}
.mobile-nav a {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 1.18rem;
  color: #224466;
  padding: 12px;
  border-radius: 15px;
  text-align: left;
  background: none;
  transition: background 0.12s, color 0.12s;
  font-weight: 700;
  min-width: 120px;
  margin-right: 14px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ff7ba9;
  color: #fff;
}

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

/* HERO/INTRO SECTIONS ---------------------------------- */
.hero, .hero-experiences, .courses-hero, .equipment-hero, .thank-you-section {
  background: linear-gradient(90deg, #fff41a 0 70%, #73A9C2 100%);
  border-radius: 0 0 42px 42px;
  box-shadow: 0 8px 28px 0 rgba(252,185,0,0.12);
  min-height: 340px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.hero .container, .hero-experiences .container, .courses-hero .container,.equipment-hero .container,.thank-you-section .container {
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero h1, .hero-experiences h1, .courses-hero h1,.equipment-hero h1,.thank-you-section h1 {
  font-family: 'Raleway';
  font-size: 2.3rem;
  color: #224466;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.hero p, .hero-experiences p, .courses-hero p,.equipment-hero p,.thank-you-section p {
  font-size: 1.24rem;
  color: #224466;
  max-width: 540px;
  margin-bottom: 1.5em;
}

/* CTA BUTTONS --------------------------------------------- */
.cta-btn {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--fun1), var(--fun2));
  color: #224466;
  border-radius: 28px;
  padding: 13px 35px;
  display: inline-block;
  margin: 8px 0;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 22px 0 rgba(252,185,0,0.13);
  text-align: center;
  border: 2px solid #22446622;
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.24s, color 0.18s;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #ff7ba9 18%, #27d7ba 100%);
  color: #224466;
  box-shadow: 0 10px 36px 0 rgba(252,185,0,0.19);
  text-shadow: 0 4px 12px #fff41a55;
}

/* FEATURES & SERVICES GRIDS --------------------------- */
.feature-grid, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
  margin-top: 18px;
}
.feature-grid > div, .service-grid > div {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 16px 0 rgba(114,175,202,0.12);
  padding: 28px 22px 24px 22px;
  min-width: 250px;
  max-width: 340px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  position: relative;
  margin-bottom: 20px;
  transition: transform 0.16s, box-shadow 0.16s;
  border: 2px solid #fff41a44;
  z-index: 1;
}
.feature-grid > div img, .service-grid > div img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  filter: drop-shadow(0 1px 0 #fff41a66);
  animation: floaty 3.2s infinite;
}
.feature-grid > div:hover, .service-grid > div:hover {
  transform: translateY(-7px) scale(1.035);
  box-shadow: 0 6px 32px 0 #27d7ba44;
  border: 2px solid #ff7ba9;
}
.feature-grid h3, .service-grid h3 {
  font-size: 1.12rem;
  color: #27d7ba;
}

/* ABOUT, SERVICES, VALUES, TRADITION, ETC -------------- */
.about-teaser, .services-teaser, .about-section, .values-section, .tradition-section, .services-section, .benefits-section, .rental-info, .rental-benefits, .courses-list, .faq-section, .cookie-policy, .privacy-policy, .gdpr-section, .terms-section, .contact-section, .thank-you-section {
  background: #fff;
  border-radius: 25px;
  margin-bottom: 40px;
  box-shadow: 0 2px 18px 0 #2244660b;
}
.about-teaser, .services-teaser {
  border-left: 12px solid #ff7ba9;
  background: linear-gradient(90deg, #fff 78%, #73A9C2 100%);
}
.about-section, .values-section, .tradition-section, .benefits-section, .rental-benefits, .faq-section {
  border-left: 10px solid #27d7ba;
}
.privacy-policy, .gdpr-section, .terms-section, .cookie-policy {
  border-left: 10px solid #F2EFEA;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 34px 0px;
  align-items: flex-start;
}

ul, ol {
  margin-bottom: 1.2em;
}
ul li, ol li {
  line-height: 1.7;
  margin-bottom: 0.5em;
  font-size: 1em;
  padding-left: 5px;
}

.callout-box {
  background: #fff41a;
  padding: 20px 18px;
  border-radius: 14px;
  margin-top: 22px;
  box-shadow: 0 2px 8px 0 #e7692b22;
  color: #224466;
  font-size: 1.09em;
  font-family: 'Raleway';
}

/* TESTIMONIALS/REVIEWS ----------------------------------- */
.testimonials, .testimonials-section {
  background: #fff41a11;
  border-radius: 28px;
  padding-bottom: 48px;
}
.testimonials h2, .testimonials-section h2 {
  color: #27d7ba;
  font-family: 'Raleway';
}
.testimonials .content-wrapper, .testimonials-section .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 24px;
  margin-top: 18px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px 26px;
  min-width: 260px;
  max-width: 390px;
  flex: 1 1 260px;
  box-shadow: 0 4px 20px 0 #22446619;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 2px solid #73A9C277;
  color: #224466;
  font-size: 1.09em;
  position: relative;
  z-index: 1;
  transition: transform 0.18s, box-shadow 0.19s, border 0.16s;
}
.testimonial-card blockquote {
  font-style: italic;
  font-family: 'Open Sans', sans-serif;
  color: #224466;
  background: #fff41a22;
  padding: 8px 4px 8px 16px;
  border-left: 6px solid #ff7ba9;
  border-radius: 7px;
  margin-bottom: 6px;
}
.testimonial-card span {
  font-size: 0.98em;
  font-weight: 600;
  color: #27d7ba;
  margin-top: 3px;
}
.testimonial-card:hover {
  transform: translateY(-7px) scale(1.025);
  box-shadow: 0 8px 40px 0 #ff7ba933;
  border: 2px solid #ff7ba9;
}

/* EXPERIENCE CARDS --------------------------------------- */
.experience-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px 22px 16px 22px;
  margin-bottom: 20px;
  box-shadow: 0 1px 10px 0 #27d7ba12;
  color: #224466;
  font-size: 1.09em;
  border: 2px solid #fff41a55;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.18s, border 0.13s, transform 0.14s;
}
.experience-card:hover {
  box-shadow: 0 6px 28px 0 #73A9C277;
  border: 2px solid #27d7ba;
  transform: scale(1.028);
}

/* TABLES ----------------------------------------- */
table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  background: #fff;
  margin-bottom: 30px;
  border-radius: 9px;
  overflow: hidden;
}
th, td {
  padding: 12px 14px;
  text-align: left;
  font-size: 1rem;
}
th {
  background: #27d7ba;
  color: #fff;
  font-weight: 800;
  letter-spacing: 1px;
  font-family: 'Raleway';
}
td {
  border-bottom: 1px solid #e5eaef;
  background: #FFFFFF;
}
tr:last-child td {
  border-bottom: none;
}

/* CONTACT SECTION --------------------------------
----------------------------------------*/
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 26px 0;
}
.contact-details div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1em;
}
.contact-details img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 4px #fff41a99);
  border-radius: 50%;
  background: #fff41a66;
  padding: 4px;
}
.static-map img {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 18px 0 #27d7ba44;
  margin-top: 5px;
}

/* FOOTER ---------------------------------------- */
footer {
  background: #224466;
  color: #fff;
  padding: 0 0 0 0;
  margin-top: 60px;
  box-shadow: 0 -2px 16px 0 rgba(40,205,220,0.05);
}
footer .container {
  padding: 28px 18px 28px 18px;
}
footer .content-wrapper {
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
footer a {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 0.14s, text-decoration 0.14s;
}
footer a:hover, footer nav.footer-nav a:focus {
  color: #fff41a;
  text-decoration: underline;
}
footer img {
  max-height: 54px;
  margin-bottom: 14px;
  animation: floaty 4.5s ease-in-out infinite;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
footer address {
  font-style: normal;
  color: #f9e9c9;
  font-size: 0.98em;
  gap: 0px;
  margin-left: 0px;
}
footer address div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
footer address img {
  width: 22px;
  height: 22px;
  background: transparent;
  margin-bottom: 0px;
}

/* THANK YOU SECTION ------------------------------------ */
.thank-you-section .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 20px;
}

/* COOKIE CONSENT BANNER & MODAL --------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 1300;
  background: linear-gradient(90deg, #fff41a 80%, #ff7ba966 100%);
  color: #224466;
  padding: 22px 10px 20px 10px;
  box-shadow: 0 -2px 20px 0 #22446619;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 1.08rem;
  transition: transform 0.22s;
}
.cookie-banner.hide {
  transform: translateY(130%);
}
.cookie-banner .cookie-btn {
  margin: 2px 7px;
  font-family: 'Raleway';
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  background: #27d7ba;
  color: #fff;
  box-shadow: 0 1px 8px 0 #27d7ba22;
  transition: background 0.18s, color 0.17s;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: #224466;
  border: 1.5px solid #22446655;
}
.cookie-banner .cookie-btn.accept {
  background: #27d7ba;
}
.cookie-banner .cookie-btn.reject {
  background: #ff7ba9;
}
.cookie-banner .cookie-btn.accept:hover { background: #fff41a; color:#224466; }
.cookie-banner .cookie-btn.reject:hover { background: #224466; color: #fff41a; }
.cookie-banner .cookie-btn.settings:hover { background: #27d7ba; color: #fff; }

/* Cookie Modal ---- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1700;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,68,102,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  opacity: 1;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  padding: 35px 24px 17px 24px;
  box-shadow: 0 4px 36px 0 #22446635;
  max-width: 410px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  animation: floaty 0.5s;
}
.cookie-modal h2 { color: #27d7ba; margin-bottom: 16px; }
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 13px;
}
.cookie-modal .cookie-category label {
  font-size: 1.02rem;
  font-family: 'Raleway';
  color: #224466;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 38px;
  height: 24px;
  border-radius: 16px;
  background: #eee;
  position: relative;
  outline: none;
  transition: background 0.19s;
  cursor: pointer;
  border: 1.5px solid #27d7ba77;
}
.cookie-modal .cookie-toggle:checked {
  background: #27d7ba;
}
.cookie-modal .cookie-toggle:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff41a;
  transition: left 0.19s;
}
.cookie-modal .cookie-toggle:checked:before {
  left: 17px;
  background: #fff;
}
.cookie-modal .cookie-modal-actions {
  width: 100%;
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  font-family: 'Raleway';
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 12px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  background: #27d7ba;
  color: #fff;
  transition: background 0.14s, color 0.12s;
}
.cookie-modal .cookie-btn.close {
  background: #ff7ba9;
  color: #fff;
}
.cookie-modal .cookie-btn.save {
  background: #27d7ba;
  color: #fff;
}
.cookie-modal .cookie-btn.save:hover { background:#fff41a; color:#224466; }
.cookie-modal .cookie-btn.close:hover { background: #224466; color: #fff41a; }

/* RESPONSIVE DESIGN - MOBILE FIRST ---------------------- */
@media (max-width: 991px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu {
    display: flex;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .feature-grid, .service-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .feature-grid, .service-grid {
    gap: 20px;
  }
  .feature-grid > div, .service-grid > div, .testimonial-card, .experience-card {
    min-width: unset;
    max-width: 100vw;
    padding: 22px 13px 16px 13px;
  }
  .testimonials .content-wrapper, .testimonials-section .content-wrapper {
    flex-direction: column;
    gap: 21px;
  }
  .about-teaser, .services-teaser, .about-section, .values-section, .tradition-section, .services-section, .benefits-section, .rental-info, .rental-benefits, .courses-list, .faq-section, .privacy-policy, .gdpr-section, .terms-section, .contact-section, .thank-you-section {
    padding-left: 0px;
    padding-right: 0px;
    border-left-width: 6px;
    border-radius: 12px;
    font-size: 1em;
  }
  .hero h1, .hero-experiences h1, .courses-hero h1, .equipment-hero h1, .thank-you-section h1 {
    font-size: 1.55rem;
  }
  .section {
    padding: 18px 5px;
    margin-bottom: 30px;
  }
  .footer .content-wrapper, footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    text-align: left;
  }
  .thank-you-section .content-wrapper {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .static-map img {
    max-width: 99vw;
  }
}
@media (max-width: 480px) {
  .hero, .hero-experiences, .courses-hero, .equipment-hero {
    min-height: 160px;
  }
  .hero h1, .hero-experiences h1, .courses-hero h1,.equipment-hero h1,.thank-you-section h1 {
    font-size: 1.2rem;
  }
}

/* ANIMATED DECORATIVE BUBBLES (Fun Playful Touch) ------- */


/* PLAYFUL FUN FONTS FOR ACCENTS (Section titles, buttons)*/
.section h2, .hero h1, .about-teaser h2, .services-teaser h2, .callout-box, .footer-nav a { 
  font-family: 'Raleway', cursive, sans-serif;
  letter-spacing: 0.035em;
}

/* MICRO-INTERACTIONS & TRANSITIONS --------------------- */
a, .cta-btn, button, .feature-grid > div, .service-grid > div, .testimonial-card, .experience-card, .mobile-menu, .cookie-btn, .cookie-banner {
  transition: box-shadow 0.18s, transform 0.13s, background 0.18s, color 0.12s;
}

/* HIDE visually if needed for accessibility ----------- */
.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* Accessibility: focus ring for keyboard navigation ---- */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid #ff7ba9;
  outline-offset: 2px;
  z-index: 3;
}

/* Print friendly: hide nav, footer, cookie banners ---- */
@media print {
  nav, .main-nav, .mobile-menu-toggle, .mobile-menu, .cookie-banner, footer {
    display: none !important;
  }
}
