/* ================= SILKEN SWEEP PSYCHOLOGIE - STYLE.CSS =====================
   -- Elegant Classic Theme, Flexbox Layout Only --
   Brand: Silken Sweep Psychologie
   Responsive, accessible, mobile-first, timeless elegance
========================================================================= */

/* === RESET & NORMALIZE === */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
form,
fieldset,
legend,
input,
select,
textarea,
button,
figure,
figcaption,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: normal;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
  color-scheme: light;
}
body {
  min-height: 100vh;
  background: #F2EDD7;
  color: #263145;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #29508A;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover,
a:focus {
  color: #547FB3;
  text-decoration: underline;
}
ul, ol {
  margin: 0 0 16px 24px;
}
button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}
button, [type="button"], [type="submit"] {
  cursor: pointer;
}
:focus-visible {
  outline: 2px solid #547FB3;
  outline-offset: 2px;
}

/* ===== VARIABLES for Colors (with fallback) ===== */
:root {
  --color-primary: #263145;
  --color-secondary: #F2EDD7;
  --color-accent: #29508A;
  --color-accent-light: #547FB3;
  --color-white: #fff;
  --color-text: #263145;
  --color-bg: #F2EDD7;
  --color-shadow: rgba(38,49,69,.13);
}

/* ==================== TYPOGRAPHY ===================== */
body,
p,
ul,
ol,
li,
.text-section,
.text-image-section,
.card-content,
.testimonial-card,
.services-grid span,
.content-wrapper {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: var(--color-text);
}
.logo,
.logo-footer {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 700;
  letter-spacing: .03em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}
h1 {
  font-size: 2.1rem;
  line-height: 1.17;
  letter-spacing: .01em;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
  font-weight: 600;
}
.subheadline {
  font-size: 1.17rem;
  font-style: italic;
  color: #29508A;
  margin-bottom: 20px;
  line-height: 1.35;
}
.font-display {
  font-family: 'Montserrat', 'Arial', sans-serif;
  letter-spacing: .04em;
}

/* ==================== GENERIC CONTAINER & SPACING ========================= */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
/* For visually separated sections */
.section + .section {
  border-top: 1px solid #e2e2e2;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}

/* =================== HEADER & MAIN NAV ===================== */
header {
  background: var(--color-white);
  box-shadow: 0 3px 24px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 500;
}
header .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 13px;
  padding-bottom: 13px;
}
.logo {
  margin-right: 24px;
  display: flex;
  align-items: center;
  height: 42px;
}
.logo img {
  height: 39px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 500;
}
.main-nav a {
  color: var(--color-primary);
  font-size: 1.04rem;
  letter-spacing: .012em;
  position: relative;
  opacity: 0.93;
  transition: color 0.15s, opacity 0.15s;
  padding: 4px 0;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-accent);
  opacity: 1;
  text-decoration: underline;
}
.header .cta-btn {
  margin-left: auto;
}
.cta-btn {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 12px 32px;
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-size: 1.06rem;
  border-radius: 40px;
  font-weight: bold;
  letter-spacing: .04em;
  box-shadow: 0 2px 18px rgba(84,127,179,0.09);
  border: none;
  outline: none;
  margin-left: 16px;
  margin-right: 0;
  display: inline-block;
  transition: background 0.2s, box-shadow 0.16s, transform 0.15s;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #547FB3;
  color: var(--color-white);
  box-shadow: 0 6px 24px rgba(84,127,179,0.15);
  transform: translateY(-2px) scale(1.03);
}

.mobile-menu-toggle {
  font-size: 2.1rem;
  color: var(--color-accent);
  background: none;
  border: none;
  padding: 6px 10px;
  border-radius: 7px;
  margin-left: 10px;
  display: none;
  z-index: 1101;
  transition: background 0.12s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: rgba(41,80,138,0.09);
}

/* ======================= MOBILE MENU =========================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100dvh;
  background: var(--color-secondary);
  box-shadow: 0 0 56px 8px rgba(38,49,69,0.12);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100%);
  transition: transform 0.39s cubic-bezier(0.55,0,0.32,1), opacity 0.28s cubic-bezier(0.4, 1, 0.3, 1);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: var(--color-accent);
  background: none;
  border: none;
  margin: 24px 26px 10px 8px;
  align-self: flex-end;
  cursor: pointer;
  z-index: 1202;
  transition: color 0.17s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #547FB3;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  padding: 36px 38px 20px 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-size: 1.19rem;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: .035em;
  padding: 10px 0;
  border-bottom: 1px solid #e5e0d5;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #29508A;
  background: rgba(84,127,179,0.05);
}

/* Hide desktop nav on small screens, show burger */
@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =================== HERO / BANNER ==================== */
.hero {
  background: linear-gradient(115deg, #F2EDD7 80%, #ffffff 100%);
  min-height: 300px;
  padding: 70px 0 50px 0;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 32px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 21px;
  padding-bottom: 0;
}

/* ================= CARD & FLEX SECTION LAYOUTS ============= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 1px 12px var(--color-shadow);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.16s;
  border: 1px solid #ece8de;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(41,80,138,0.12);
  transform: translateY(-6px) scale(1.015);
}

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

.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;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Features grid (e.g. Schwerpunkte) */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}
.features-grid > div {
  background: var(--color-white);
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: 0 2px 20px var(--color-shadow);
  flex: 1 1 240px;
  min-width: 210px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.16s;
}
.features-grid img {
  width: 43px;
  height: 43px;
  margin-bottom: 10px;
}
.features-grid > div:hover,
.features-grid > div:focus-within {
  box-shadow: 0 8px 30px 0 rgba(84,127,179,0.15);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 18px;
}
.services-grid > div {
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: 0 1px 13px var(--color-shadow);
  flex: 1 1 240px;
  min-width: 210px;
  max-width: 330px;
  padding: 30px 24px 18px 24px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  border: 1.5px solid #edeae2;
  transition: box-shadow 0.18s;
}
.services-grid > div:hover,
.services-grid > div:focus-within {
  box-shadow: 0 13px 36px rgba(41,80,138, 0.12);
}
.services-grid img {
  width: 43px;
  height: 43px;
  margin-bottom: 9px;
}
.services-grid span {
  font-size: 1.06rem;
  font-family: 'Montserrat', 'Arial', sans-serif;
  color: var(--color-accent);
  font-weight: 500;
  margin-top: 4px;
}

.schedule-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.schedule-list > .text-section {
  background: var(--color-white);
  border-radius: 12px;
  border: 1px solid #ece8de;
  box-shadow: 0 1px 11px var(--color-shadow);
  min-width: 210px;
  max-width: 370px;
  flex: 1 1 240px;
  padding: 20px 23px 17px 23px;
}

/* =================== TESTIMONIALS & SLIDERS =================== */
.testimonials-list,
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 22px 18px 22px;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 2px 19px 0 var(--color-shadow);
  border: 1.5px solid #ece8de;
  min-width: 240px;
  max-width: 380px;
  flex: 1 1 250px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 7px 36px 0 rgba(41,80,138,0.14);
  transform: translateY(-3px) scale(1.01);
}
.testimonial-card p {
  font-size: 1.12rem;
  line-height: 1.45;
  color: var(--color-primary);
  font-style: italic;
  margin-bottom: 11px;
}
.testimonial-card span {
  font-size: 0.99rem;
  font-family: 'Montserrat', 'Arial', sans-serif;
  color: #547FB3;
  font-style: normal;
  margin-left: 2px;
}

/* =========== Cookie Consent Banner / Cookie Modal ============ */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #263145;
  color: #F2EDD7;
  z-index: 1600;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px 18px 20px;
  box-shadow: 0 -3px 32px 0 rgba(41,80,138,0.13);
  gap: 13px;
  opacity: 1;
  transition: transform 0.38s cubic-bezier(0.43,0,0.39,1), opacity 0.22s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-consent-text {
  font-size: 1.06rem;
  font-family: 'Georgia', serif;
  margin-bottom: 8px;
  text-align: center;
  color: #F2EDD7;
}
.cookie-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.cookie-btn {
  background: #F2EDD7;
  color: #263145;
  border-radius: 40px;
  border: none;
  font-size: 1.01rem;
  font-family: 'Montserrat', 'Arial', sans-serif;
  padding: 9px 26px;
  margin: 0 2px;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(84,127,179,0.10);
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
}
.cookie-btn.accept {
  background: #29508A;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #547FB3;
}
.cookie-btn.reject {
  background: #ece8de;
  color: #263145;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #e0dfd1;
}
.cookie-btn.settings {
  background: transparent;
  color: #F2EDD7;
  border: 1.2px solid #F2EDD7;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #39425a;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(38,49,69,0.36);
  z-index: 1700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 42px 0 rgba(38,49,69,0.16);
  width: 96%;
  max-width: 424px;
  padding: 32px 28px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  z-index: 1702;
  animation: modalIn .36s cubic-bezier(.69,.11,.52,.98) both;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal h3 {
  color: var(--color-accent);
  margin-bottom: 8px;
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-size: 1.44rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.cookie-category-label {
  font-size: 1.03rem;
  font-family: 'Georgia', serif;
  color: var(--color-primary);
  flex: 1 1 auto;
}
.cookie-category-toggle {
  min-width: 50px;
  height: 30px;
  position: relative;
  display: inline-block;
}
.cookie-category-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-category-slider {
  position: absolute; left: 0; top: 0; right: 0; bottom: 0;
  background: #ece8de;
  border-radius: 18px;
  transition: background 0.16s;
}
.cookie-category-toggle input:checked + .cookie-category-slider {
  background: #547FB3;
}
.cookie-category-slider:before {
  content: "";
  position: absolute;
  left: 5px; top: 5px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(84,127,179,0.07);
  transition: transform 0.18s;
}
.cookie-category-toggle input:checked + .cookie-category-slider:before {
  transform: translateX(18px);
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal-close {
  position: absolute;
  right: 13px; top: 12px;
  padding: 2px 7px;
  font-size: 1.7rem;
  color: #29508A;
  border: none;
  background: transparent;
  border-radius: 7px;
  transition: background 0.12s;
}
.cookie-modal-close:hover { background: #ece8de; }

/* ============= FOOTER ============ */
footer {
  background: var(--color-primary);
  color: #F2EDD7;
  padding: 44px 0 20px 0;
  font-size: 1.1rem;
  margin-top: 30px;
  border-top: 1.5px solid #eee;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 0 18px;
}
.logo-footer {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  height: 36px;
}
.logo-footer img {
  height: 29px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 0 0 7px 0;
}
.footer-nav a {
  color: #F2EDD7;
  font-size: 0.99rem;
  letter-spacing: .01em;
  font-family: 'Montserrat', 'Arial', sans-serif;
  padding: 3px 0;
  transition: color 0.14s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #ffffff;
  text-decoration: underline;
}
.copyright {
  font-size: 0.94rem;
  font-family: 'Georgia', serif;
  color: #e9e5db;
  letter-spacing: .015em;
  margin: 14px 0 0 0;
  text-align: center;
}

/* ========== MISC LAYOUTS & SPACING ========== */
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ============= RESPONSIVE DESIGN ============= */
@media (max-width: 1100px) {
  .features-grid > div, .services-grid > div, .schedule-list > .text-section {
    max-width: 45%;
    min-width: 200px;
  }
}
@media (max-width: 900px) {
  .features-grid > div, .services-grid > div {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .footer-nav {
    gap: 20px;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .section {
    margin-bottom: 36px;
    padding: 26px 5px;
  }
  .hero {
    padding: 46px 0 30px 0;
    margin-bottom: 24px;
    min-height: 200px;
  }
  .hero h1 {
    font-size: 1.47rem;
    margin-bottom: 11px;
  }
  .content-wrapper {
    gap: 20px;
  }
  .features-grid, .services-grid, .testimonials-list, .schedule-list {
    gap: 13px;
  }
  .features-grid > div, .services-grid > div, .schedule-list > .text-section {
    max-width: 100%;
    min-width: 150px;
    padding: 18px 9px 13px 13px;
  }
  .testimonial-card {
    padding: 13px 11px 11px 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-nav {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .features-grid > div,
  .services-grid > div,
  .schedule-list > .text-section {
    min-width: 110px;
    padding: 12px 6px 8px 8px;
    font-size: 0.997rem;
  }
  .testimonial-card,
  .cookie-modal {
    padding: 8px 7px 8px 7px;
  }
}

/* ======== UTILITIES ========= */
.muted {
  color: #8e8e98;
}
.text-center { text-align: center; }
.flex-center {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

.hidden {
  display: none !important;
}

/* ========== FORM ELEMENTS/ BUTTONS ========== */
input[type="email"],
input[type="text"],
input[type="password"],
textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1.2px solid #edeae2;
  border-radius: 8px;
  background: #fff;
  color: #263145;
  font-size: 1rem;
  font-family: 'Open Sans', 'Arial', sans-serif;
  transition: border 0.16s, box-shadow 0.14s;
  margin-bottom: 18px;
}
input:focus,
textarea:focus {
  border: 1.5px solid #29508A;
  box-shadow: 0 2px 10px rgba(84,127,179,0.09);
}

button,
[type="submit"],
.button {
  background: var(--color-accent);
  color: #fff;
  font-family: 'Montserrat', 'Arial', sans-serif;
  border-radius: 36px;
  border: none;
  font-size: 1.02rem;
  font-weight: 600;
  padding: 9px 24px;
  margin: 0 4px 0 0;
  transition: background 0.16s, box-shadow 0.16s, transform 0.14s;
  outline: none;
}
button:hover, button:focus, .button:hover, .button:focus {
  background: #547FB3;
  box-shadow: 0 6px 22px rgba(84,127,179,0.15);
  transform: translateY(-2px) scale(1.03);
}


/* =========== DESIGN DETAILS =========== */
hr {
  border: 0;
  border-top: 1.5px solid #DDD8C7;
  margin: 36px 0;
}
::selection { background: #dde8fa; color: #263145; }
::-webkit-selection { background: #dde8fa; color: #263145; }

/* Lists */
ul li, ol li {
  margin-bottom: 8px;
  font-size: 1.03rem;
  line-height: 1.7;
}
ul li strong,
ol li strong {
  color: var(--color-accent);
  font-weight: bold;
  font-family: 'Montserrat', 'Arial', sans-serif;
  letter-spacing: .02em;
}

/* Blockquotes */
blockquote {
  font-style: italic;
  border-left: 3px solid #29508A;
  padding-left: 13px;
  color: #263145;
  margin: 18px 0;
}

/* Emphasized text */
em {
  color: var(--color-accent-light);
  font-style: italic;
}


/* ======= ANIMATIONS & TRANSITIONS ======= */
section, .card, .services-grid > div, .features-grid > div, .testimonial-card, .cta-btn, .cookie-consent-banner, .cookie-modal {
  transition: box-shadow 0.16s, transform 0.13s, background 0.20s;
}
.mobile-menu,
.cookie-consent-banner,
.cookie-modal-overlay,
.cookie-modal {
  will-change: transform, opacity;
}

/* ==== Hide visually on load for fade-in JS-control (optional) ==== */
.preload {
  opacity: 0 !important;
  pointer-events: none;
  transition: opacity 0.3s;
}
.fade-in {
  opacity: 1 !important;
  pointer-events: auto;
  transition: opacity 0.37s;
}

/* ========== PRINT STYLES (minimally) ========== */
@media print {
  header, .main-nav, .mobile-menu, .cta-btn, .cookie-consent-banner, .cookie-modal, footer { display: none !important; }
  body { background: #fff; color: #263145; }
}
