/* 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, 
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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #f5f7fa;
  color: #25324d;
  line-height: 1.65;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #21406a;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #f9b233;
}

/* --- VARIABLES AS FALLBACKS --- */
:root {
  --color-primary: #21406a;
  --color-secondary: #bcd4e6;
  --color-accent: #f9b233;
  --color-bg: #f5f7fa;
  --color-white: #fff;
  --color-grey-10: #eaf1fa;
  --color-grey-30: #d7e4ee;
  --color-text: #25324d;
  --color-dark: #21406a;
  --color-pastel-pink: #fce4ec;
  --color-pastel-blue: #e3eefc;
  --color-pastel-lavender: #e8e6fa;
  --color-pastel-mint: #e5fbe8;
  --color-pastel-yellow: #fff9e5;
  --shadow-card: 0 8px 24px rgba(33, 64, 106, 0.07);
  --shadow-hover: 0 4px 16px rgba(33, 64, 106, 0.09);
  --radius: 20px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* =========== GENERAL LAYOUT ============ */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
main {
  flex: 1 1 auto;
}
header, footer {
  background: var(--color-white);
}

/* --- FLEXBOX PATTERNS ---*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========= NAVIGATION ========= */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  background: var(--color-pastel-blue);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 3px 16px rgba(33, 64, 106,0.06);
  position: relative;
  z-index: 50;
}
.navbar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.navbar nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--color-primary);
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.navbar nav a:hover, .navbar nav a:focus {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary {
  background: linear-gradient(90deg, #ffe6b2 0%, #f9b233 100%);
  color: var(--color-primary);
  border: none;
  border-radius: var(--radius);
  padding: 14px 26px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.20s, color 0.20s, box-shadow 0.2s;
  margin-left: 24px;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #f9b233 0%, #ffe6b2 100%);
  color: var(--color-white);
  box-shadow: var(--shadow-hover);
}
.btn-link {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  text-decoration: underline;
  transition: color 0.2s;
}
.btn-link:hover, .btn-link:focus {
  color: var(--color-accent);
}
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  background: transparent;
  border: none;
  color: var(--color-primary);
  border-radius: 10px;
  padding: 5px 15px;
  margin-left: 16px;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 101;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-accent);
  color: #fff;
}

/* Hide menu toggle on desktop by default */
@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* ========== MOBILE MENU ============= */
.mobile-menu {
  position: fixed;
  inset: 0;
  left: 0;
  top: 0;
  background: rgba(222,230,240, 0.96);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform .42s cubic-bezier(.7,0,.3,1), opacity .2s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 18px 0 0;
  font-size: 2.4rem;
  background: var(--color-pastel-pink);
  color: var(--color-primary);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  cursor: pointer;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-pastel-yellow);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 40px 28px 0 28px;
}
.mobile-nav a {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
  padding: 16px 0 8px 4px;
  border-radius: 10px;
  background: transparent;
  transition: background 0.17s, color 0.18s;
  text-decoration: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/* ==== HEADER & RESPONSIVE NAV ==== */
@media (max-width: 1024px) {
  .navbar nav, .btn-primary {
    display: none !important;
  }
}

/* =============== HERO, HEADLINES AND TYPOGRAPHY =============== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: 2.2rem; margin-bottom: 18px; }
h2 { font-size: 1.45rem; margin-top: 42px; margin-bottom: 18px; }
h3 { font-size: 1.17rem; margin-bottom: 13px; }
h4 { font-size: 1.08rem; margin-bottom: 5px; }
h5, h6 { font-size: 1rem; margin-bottom: 3px; }

@media (min-width: 480px) {
  h1 { font-size: 2.7rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.33rem; }
}
@media (min-width: 820px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.5rem; }
}

.subheadline, .support-text {
  color: #517495;
  font-family: var(--font-body);
  font-size: 1.17rem;
  font-weight: 400;
  margin-bottom: 22px;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
li {
  margin-bottom: 8px;
}
blockquote {
  font-style: italic;
  padding-left: 14px;
  border-left: 6px solid var(--color-secondary);
  color: #425b7e;
  background: var(--color-pastel-blue);
  border-radius: 12px;
  font-size: 1.08em;
  margin-bottom: 6px;
}
strong { font-weight: 700; }
p, dd {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 18px;
  color: var(--color-text);
}
small {
  font-size: 0.93rem;
  color: #6b789b;
}
dl {
  margin-bottom: 32px;
}
dt {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-dark);
}
dd {
  margin-bottom: 15px;
}

/* ============ SECTIONS AND CONTENT-WRAPPERS ========== */
section {
  background: var(--color-white);
  border-radius: var(--radius);
  margin-bottom: 40px;
  padding: 42px 0;
  box-shadow: 0 3px 16px rgba(33,64,106,0.044);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.text-section {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== FEATURE CARDS ========== */
.feature-grid, .service-list, .team-grid, .news-list, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 20px;
}
.feature-item, .team-member, .resource-list > li, .news-list article {
  background: var(--color-pastel-blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 24px 20px 18px 20px;
  min-width: 0;
  flex: 1 1 260px;
  max-width: 340px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, background 0.18s, border 0.2s;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.feature-item img, .team-member img {
  width: 54px;
  height: 54px;
  margin-bottom: 10px;
}
.feature-item:hover, .team-member:hover, .resource-list > li:hover, .news-list article:hover {
  background: var(--color-pastel-mint);
  box-shadow: var(--shadow-hover);
  border: 1.5px solid var(--color-accent);
}
.team-grid {
  gap: 24px;
  justify-content: flex-start;
}
.team-member > h3 {
  color: #234f80;
}

.resource-list > li > h2 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #507fb6;
}
.resource-list > li {
  margin-bottom: 24px;
}
.training-list > li {
  background: var(--color-pastel-lavender);
  border-radius: 15px;
  padding: 13px 18px;
  margin-bottom: 15px;
  box-shadow: 0 1px 6px rgba(33,64,106,0.045);
}
.instructor-highlights > ul > li {
  background: var(--color-pastel-yellow);
  color: #6d4f13;
  border-radius: 12px;
  padding: 7px 13px;
  margin-bottom: 7px;
  font-size: 1rem;
}

/* ========= TESTIMONIALS ========== */
.testimonial-card {
  background: var(--color-pastel-yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 32px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 410px;
  color: #25324d;
  margin: 0 16px 30px 0;
  min-width: 0;
}
.testimonial-card blockquote {
  color: #25324d;
  background: none;
  border-left: 4px solid var(--color-accent);
  font-size: 1.09em;
  margin-bottom: 12px;
}
.testimonial-meta {
  font-family: var(--font-body);
  color: #7b6807;
  font-weight: 500;
  font-size: 1rem;
}
.testimonial-rating {
  margin-top: 8px;
  display: flex;
  gap: 2px;
  align-items: center;
}
.testimonial-rating img {
  width: 22px;
  height: 22px;
}

/* =========== CTA and SUPPORT =========== */
.support-text {
  font-family: var(--font-body);
  color: #425b7e;
  background: var(--color-pastel-blue);
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 1.14rem;
  margin-bottom: 18px;
  margin-top: 12px;
}

/* =========== NEWS AND ARTICLES =========== */
.news-filters {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.news-filters a {
  background: var(--color-pastel-pink);
  color: var(--color-primary);
  border-radius: 9px;
  padding: 7px 16px;
  text-decoration: none;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.news-filters a:hover, .news-filters a:focus {
  background: var(--color-accent);
  color: #fff;
}
.news-list {
  gap: 24px 0;
  width: 100%;
  flex-direction: column;
}
.news-list article > h2 {
  font-size: 1.13rem;
  color: #34528b;
}
.event-listings > ul > li {
  background: var(--color-pastel-mint);
  border-radius: 10px;
  color: #367258;
  padding: 7px 13px;
  margin-bottom: 7px;
  font-size: 1rem;
}

/* ============= FOOTER ============== */
footer {
  background: var(--color-pastel-blue);
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: 0 -1px 12px rgba(33,64,106,0.045);
  margin-top: 40px;
  padding: 28px 0 0 0;
  font-size: 1rem;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 18px;
}
.footer-main nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-main nav a {
  color: #325886;
  font-family: var(--font-body);
  text-decoration: underline;
  font-size: 1rem;
  padding: 2px 0;
  transition: color 0.18s;
}
.footer-main nav a:hover, .footer-main nav a:focus {
  color: var(--color-accent);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.98rem;
}
.footer-contact img {
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
.footer-bottom {
  background: var(--color-white);
  color: #425b7e;
  border-radius: 0 0 var(--radius) var(--radius);
  text-align: center;
  padding: 16px 0;
  font-size: 0.96em;
  margin-top: 5px;
  box-shadow: 0 4px 6px rgba(33,64,106,0.04);
}

/* ============ CONTACT & UTILITY ============= */
.direct-contact-info p, .hours-display p {
  background: var(--color-pastel-mint);
  border-radius: 11px;
  padding: 9px 15px;
  font-size: 1rem;
  color: #2d614c;
  margin-bottom: 13px;
}
.direct-contact-info img,
.location-map img {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 6px;
}
.location-map {
  background: var(--color-pastel-blue);
  color: #225488;
  border-radius: 11px;
  padding: 10px 20px;
  margin-bottom: 16px;
  font-weight: 500;
}

/* ========== RESPONSIVE BREAKPOINTS ============== */
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
    padding: 0 8px;
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .content-grid, .news-list, .team-grid {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .feature-item, .team-member, .resource-list > li, .news-list article {
    flex: 1 1 240px;
    min-width: 170px;
    max-width: 100%;
  }
  .testimonial-card {
    max-width: 99vw;
  }
}
@media (max-width: 768px) {
  .feature-grid, .service-list, .content-grid, .news-list, .team-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    min-width: 0;
    width: 100%;
    margin-right: 0;
  }
  .section {
    margin-bottom: 45px;
    padding: 28px 7px;
  }
  section {
    padding: 27px 0;
    margin-bottom: 22px;
    border-radius: 13px;
  }
  .btn-primary {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
  h1, h2 { text-align: center; }
}
@media (max-width: 600px) {
  html, body {
    font-size: 15px;
  }
  .container {
    padding: 0 3vw;
  }
  .feature-grid, .service-list, .content-grid, .news-list, .team-grid {
    gap: 16px;
  }
  .footer-main {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 480px) {
  .btn-primary {
    font-size: 1rem;
    padding: 14px 10px;
  }
}

/* Responsive Flex Directions for Text-Image Sections */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ============ TRANSITIONS & MICRO-INTERACTIONS ============ */
section, .feature-item, .btn-primary, .testimonial-card, .team-member, .resource-list > li {
  transition: box-shadow 0.22s cubic-bezier(.4,.2,.6,1), background 0.19s;
}

/* ============= COOKIE CONSENT BANNER ============= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-pastel-lavender);
  color: #25324d;
  border-radius: 17px 17px 0 0;
  box-shadow: 0 -2px 24px rgba(33,64,106,0.06);
  padding: 28px 20px 20px 22px;
  z-index: 1200;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  transition: opacity 0.23s, transform 0.33s cubic-bezier(.7,0,.3,1);
  opacity: 1;
}
.cookie-banner.hide {
  pointer-events: none;
  opacity: 0;
  transform: translateY(60px);
}
.cookie-banner .cookie-banner-message {
  flex: 1 1 60%;
  font-size: 1.05rem;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-banner .btn-cookie {
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--color-pastel-blue);
  color: var(--color-primary);
  box-shadow: 0 2px 9px rgba(34,60,106,0.06);
  transition: background 0.17s, color 0.17s;
}
.cookie-banner .btn-cookie.accept {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-banner .btn-cookie.accept:hover,
.cookie-banner .btn-cookie.accept:focus {
  background: var(--color-primary);
  color: #fff;
}
.cookie-banner .btn-cookie.settings {
  background: var(--color-pastel-yellow);
  color: #986909;
}
.cookie-banner .btn-cookie.settings:hover {
  background: var(--color-accent);
  color: #fff;
}
.cookie-banner .btn-cookie.reject {
  background: var(--color-pastel-pink);
  color: #bb3261;
}
.cookie-banner .btn-cookie.reject:hover {
  background: #ecb3d2;
  color: #801e59;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    max-width: 98vw;
    padding: 15px 12px 14px 15px;
  }
  .cookie-banner-buttons {
    flex-direction: column;
    gap: 11px;
  }
  .cookie-banner .cookie-banner-message {
    font-size: .98rem;
  }
}

/* ===== COOKIE SETTINGS MODAL ===== */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,48,60,0.32);
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: var(--color-white);
  border-radius: 19px;
  box-shadow: 0 4px 28px rgba(33, 64, 106, 0.14);
  padding: 40px 28px 32px 28px;
  max-width: 420px;
  width: 95vw;
  color: var(--color-text);
  font-family: var(--font-body);
  animation: fadeup .7s;
}
@keyframes fadeup {
  from {
    transform: translateY(80px);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.cookie-modal h2 {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 17px;
  font-family: var(--font-display);
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-pastel-blue);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 600;
}
.cookie-toggle {
  margin-left: 14px;
  accent-color: var(--color-accent);
}
.cookie-category input[type=checkbox]{
  width: 22px;
  height: 22px;
}
.cookie-modal-footer {
  display: flex;
  gap: 12px;
  padding-top: 12px;
  font-size: 1rem;
  justify-content: flex-end;
}
.cookie-modal .btn-cookie {
  min-width: 90px;
}

@media (max-width: 500px) {
  .cookie-modal {
    padding: 19px 7px;
    max-width: 99vw;
  }
  .cookie-category {
    font-size: 0.97rem;
  }
  .cookie-modal-footer {
    flex-direction: column;
    gap:6px;
  }
}

/* ======= UI ELEMENTS & GENERAL ======= */
::-webkit-input-placeholder { color: #b4b8c5; }
::-moz-placeholder          { color: #b4b8c5; }
:-ms-input-placeholder      { color: #b4b8c5; }
::placeholder              { color: #b4b8c5; }
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid var(--color-grey-30);
  padding: 12px 13px;
  margin-bottom: 12px;
  background: var(--color-pastel-blue);
  color: var(--color-primary);
  transition: border 0.2s, box-shadow 0.18s;
}
input:focus, textarea:focus, select:focus {
  border: 1.7px solid var(--color-accent);
  outline: none;
  background: #fff;
  box-shadow: 0 2px 7px rgba(249,178,51,0.06);
}
button {
  font-family: var(--font-display);
  font-size: 1rem;
}
hr {
  border: none;
  height: 1px;
  background: var(--color-grey-30);
  margin: 36px 0 28px 0;
}

/* ========== Z-INDEX LAYERS ========== */
header, .navbar { z-index: 50; }
.mobile-menu { z-index: 999; }
.cookie-banner { z-index: 1200; }
.cookie-modal-overlay { z-index: 2001; }

/* ========== UTILITIES, VISUAL EFFECTS ========== */
.shadow-sm { box-shadow: var(--shadow-card); }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.gap-20 { gap: 20px; }
.align-center { align-items: center; }
.rounded {
  border-radius: var(--radius);
}
.bg-white { background: #fff; }
.bg-pastel-lavender { background: var(--color-pastel-lavender); }
.bg-pastel-yellow { background: var(--color-pastel-yellow); }

/* ========== REMOVE GRID & ABSOLUTE FORBIDDEN ========== */
/* NO display: grid, grid-*, col-*, position: absolute (content-only) */

/* ======= PRINT TWEAKS ======= */
@media print {
  header, nav, footer, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  body, main, section { background: #fff !important; }
}
