/* =========================================================
   CSS RESET & BASE NORMALIZATION (Vintage Retro Style)
   ========================================================= */
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 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #26221a;
  background: #FCF7E8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #194082;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F37962;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}

/* =====================================
   COLOR PALETTE RETRO VINTAGE
   ===================================== */
:root {
  --primary: #194082;
  --secondary: #FFD966;
  --accent: #E6F0FA;
  --bg-vintage: #FCF7E8;
  --retro-orange: #F37962;
  --retro-brown: #7C614C;
  --retro-green: #80B29A;
  --white: #fff;
  --black: #1a1815;
  --shadow-main: 0 4px 16px rgba(30,15,0,0.1);
}

/* =====================================
   TYPOGRAPHY - RETRO/VINTAGE
   ===================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@400;600;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.15;
  text-shadow: 1px 1px 0 #FFD966, 0 2px 0 #fff;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, ol, li {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #26221a;
}
strong {
  font-weight: 700;
  color: var(--retro-brown);
}

/* =====================================
   CONTAINER, WRAPPERS, FLEX LAYOUTS
   ===================================== */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
/* Legacy and extra containers */
.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-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-vintage);
  border-radius: 20px;
  box-shadow: var(--shadow-main);
}
@media (max-width: 1200px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .card-container, .content-grid, .feature-grid {
    flex-direction: column;
    gap: 20px !important;
  }
  .section {
    padding: 32px 10px;
    margin-bottom: 40px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}

/* =====================================
   HEADER & NAVIGATION
   ===================================== */
header {
  background: var(--secondary);
  border-bottom: 4px solid var(--retro-orange);
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 5px 24px 0 rgba(97, 90, 14, 0.07);
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.logo img {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(81,60,0,0.08);
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.main-nav li {
  margin: 0 7px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 1px;
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a.cta-nav {
  background: var(--retro-orange);
  color: #fff;
  font-family: 'Playfair Display', serif;
  border-radius: 20px;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(243,121,98,0.08);
}
.main-nav a:hover {
  background: var(--primary);
  color: var(--secondary);
}
.main-nav a.cta-nav:hover {
  background: var(--retro-brown);
  color: var(--secondary);
}

@media (max-width: 1000px) {
  .main-nav ul {
    gap: 2px;
  }
  .main-nav a {
    padding: 7px 6px;
    font-size: 1rem;
  }
}

/* =============================================
   MOBILE BURGER MENU
   ============================================= */
.mobile-menu-toggle {
  display: none;
  background: var(--retro-orange);
  color: #fff;
  font-size: 2.25rem;
  border: none;
  border-radius: 12px;
  padding: 4px 20px 3px 14px;
  cursor: pointer;
  margin-left: 8px;
  z-index: 120;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--retro-brown);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(70deg, var(--secondary) 50%, var(--retro-orange) 120%);
  z-index: 200;
  transition: transform 0.35s cubic-bezier(0.77,0.2,0.05,1.0);
  transform: translateX(100%);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-shadow: 0 10px 80px 0 rgba(95,68,27,0.13);
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  color: #fff;
  border: none;
  margin: 22px 26px 12px 0;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 0 28px;
  gap: 17px;
  margin-top: 10px;
}
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.38rem;
  color: var(--primary);
  background: var(--accent);
  width: 100%;
  text-align: left;
  margin: 0 0 8px 0;
  padding: 14px 20px 11px 14px;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 2px 13px rgba(97,90,14,0.08);
  transition: background 0.16s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-brown);
  color: #fff;
}

@media (max-width: 900px) {
  .main-nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .main-nav {
    justify-content: flex-start;
    gap: 0;
  }
  .logo img {
    width: 45px;
    height: 45px;
  }
}

/* Hide mobile menu in desktop */
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
    transform: none;
  }
}

/* =====================================
   HERO SECTIONS
   ===================================== */
.hero {
  background: url('../assets/bg-vintage.webp'), var(--accent);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 330px;
  padding-top: 36px;
  padding-bottom: 36px;
  margin-bottom: 40px;
  border-bottom: 8px double var(--secondary);
}
@media (max-width: 700px) {
  .hero {
    min-height: 180px;
    padding-top: 23px;
    padding-bottom: 23px;
    margin-bottom: 20px;
  }
}
.hero .content-wrapper h1 {
  font-size: 2.4rem;
  color: var(--primary);
}
.hero .cta-button {
  margin-top: 17px;
}

/* =========================================
   CTA BUTTONS & LINKS (Retro Style)
   ========================================= */
.cta-button, .cta-contact .cta-button {
  background: var(--retro-orange);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.20rem;
  padding: 16px 36px 13px 36px;
  border-radius: 24px;
  border: none;
  box-shadow: 0 6px 24px rgba(243,121,98,0.10), 0 1.5px 3px rgba(120,90,30,0.2);
  margin-top: 18px;
  display: inline-block;
  letter-spacing: 1px;
  cursor: pointer;
  outline: none;
  transition: background 0.13s, color 0.13s, box-shadow 0.19s;
  text-shadow: 1px 1px 0 #fbeadb, 0 2px 2px #fff;
}
.cta-button:hover, .cta-button:focus {
  background: var(--retro-brown);
  color: var(--secondary);
  box-shadow: 0 7px 28px rgba(243,121,98,0.14);
}

/* =====================================
   FEATURES, CARDS, SERVICES
   ===================================== */
.features, .services, .calculator, .calendar, .about, .values, .pricing {
  background: var(--bg-vintage);
  border-radius: 18px;
  box-shadow: 0 1.5px 6px rgba(81,69,41,0.06);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff7eb;
  border: 2px dashed var(--retro-brown);
  padding: 20px 20px 14px 20px;
  border-radius: 15px;
  box-shadow: 0 3px 16px rgba(128, 90, 50, 0.08);
  min-width: 230px;
  flex: 1 1 280px;
  min-height: 240px;
  transition: box-shadow 0.2s, transform 0.14s;
}
.feature-item img {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
  filter: sepia(0.5) brightness(0.9) contrast(1.1);
}
.feature-item h3 {
  margin-bottom: 4px;
  font-size: 1.17rem;
  color: var(--retro-brown);
  text-shadow: none;
}
.feature-item p {
  margin-bottom: 4px;
  color: #463c2d;
}
.feature-item strong {
  color: var(--retro-orange);
  font-size: 1.1em;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 7px 18px 0 rgba(194,104,42,0.13);
  transform: scale(1.025);
}

/* =====================================
   CARDS & CARD CONTAINERS
   ===================================== */
.card-container {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #f2e1bd;
  box-shadow: 0 3px 16px rgba(81,69,41,0.12);
  border-radius: 12px;
  padding: 26px 26px 18px 26px;
  position: relative;
}

/* =====================================
   TESTIMONIALS
   ===================================== */
.testimonials {
  background: var(--accent);
  padding: 50px 0 38px 0;
}
.testimonials h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 28px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #fff7eb;
  border: 1.5px solid var(--retro-brown);
  border-radius: 13px;
  min-width: 250px;
  flex: 1 1 350px;
  box-shadow: 0 2px 10px rgba(27,22,18,0.13);
  transition: box-shadow 0.18s, transform 0.13s;
}
.testimonial-card p {
  color: #282615;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card strong {
  color: var(--retro-orange);
}
.testimonial-card:hover {
  box-shadow: 0 7px 18px 0 rgba(128, 90, 50, 0.17);
  transform: translateY(-3px) scale(1.02);
}
@media (max-width: 850px) {
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
}

/* =====================================
   CTA FEATURE SECTION
   ===================================== */
.cta-feature {
  background: linear-gradient(85deg, var(--secondary) 58%, var(--accent) 99%);
  border-radius: 18px;
  margin-bottom: 50px;
  padding: 38px 16px 38px 16px;
  text-align: center;
  box-shadow: 0 2px 21px rgba(194,115,75,0.06);
}
.cta-feature .cta-button {
  margin-top: 24px;
}

/* =====================================
   FOOTER
   ===================================== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 22px 0 8px 0;
  border-top: 4px solid var(--retro-orange);
  box-shadow: 0 -2px 22px rgba(25,64,130,0.07);
}
footer .container {
  width: 100%;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: center;
}
footer .contact-info {
  flex: 1 1 270px;
  min-width: 220px;
}
footer .contact-info h3 {
  color: var(--secondary);
  font-size: 1.21rem;
}
footer .contact-info p {
  color: #fff9ef;
  font-size: 1rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 180px;
  min-width: 140px;
}
.footer-links a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  text-decoration: underline;
  margin-bottom: 6px;
  transition: color 0.11s;
}
.footer-links a:hover {
  color: var(--secondary);
}
.brand-signature {
  flex: 1 1 210px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
}
.brand-signature img {
  width: 45px;
  height: 45px;
  filter: brightness(0.94) sepia(0.16) contrast(1.11);
}
.brand-signature p {
  font-size: 0.98rem;
  color: var(--secondary);
  font-family: 'Playfair Display', serif;
  text-align: right;
}
@media (max-width: 820px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    text-align: left;
  }
  .brand-signature {
    align-items: flex-start;
    text-align: left;
  }
}

/* =====================================
   TEXT SECTION, LISTS, MISC PADDING
   ===================================== */
.text-section {
  background: #fffffa;
  border-left: 6px dotted var(--retro-green);
  box-shadow: 0 2px 7px rgba(151,130,100,0.09);
  border-radius: 12px;
  padding: 18px 20px 13px 24px;
  margin-bottom: 12px;
  position: relative;
}
.text-section h2, .text-section h3 {
  color: var(--retro-brown);
  text-shadow: none;
}
.text-section ul, .values ul {
  padding-left: 24px;
  margin: 9px 0 5px 0;
  list-style: disc inside;
}
.text-section li, .values li {
  margin-bottom: 7px;
  color: #5a482b;
  font-size: 1rem;
}
.values {
  background: #fff7eb;
}

/* =====================================
   PRICING / CALENDAR
   ===================================== */
.pricing {
  background: #fff6e0;
  margin-bottom: 35px;
}
.pricing h3 {
  color: var(--primary);
  margin-bottom: 10px;
}
.pricing p {
  color: #7C614C;
  font-family: 'Montserrat', Arial, sans-serif;
}
.calendar {
  background: #f6f8f5;
  padding-top: 37px;
}

/* =====================================
   FORM/CONTACT SECTION
   ===================================== */
.contact-section, .confirmation-message, .thankyou-section {
  background: #fff7eb;
  border-radius: 22px;
  box-shadow: 0 3px 16px rgba(81,69,41,0.09);
  margin-bottom: 46px;
  padding: 40px 20px;
}
.contact-section h1, .confirmation-message h1, .thankyou-section h1 {
  color: var(--primary);
  font-family: 'Playfair Display', serif;
}
.contact-details p {
  font-size: 1rem;
  color: #7C614C;
  margin-bottom: 9px;
}
.cta-contact {
  margin-top: 14px;
}
@media (max-width:600px) {
  .contact-section, .confirmation-message, .thankyou-section {
    padding: 28px 8px;
  }
}

/* =====================================
   COOKIE CONSENT BANNER & MODAL
   ===================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: linear-gradient(90deg, var(--secondary) 90%, var(--retro-orange) 140%);
  color: #332916;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 22px 7vw 20px 7vw;
  box-shadow: 0 -3px 21px rgba(243,121,98,0.13);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  gap: 18px;
}
.cookie-banner p {
  margin-right: 20px;
  color: #332916;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-banner button {
  font-family: 'Playfair Display', serif;
  font-size: 1.01rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 13px;
  padding: 10px 19px 8px 19px;
  cursor: pointer;
  margin: 0 1px;
  box-shadow: 0 2px 8px rgba(25,64,130,0.09);
  transition: background 0.14s, color 0.13s;
  outline: none;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--retro-orange);
  color: var(--secondary);
}
.cookie-banner .cookie-settings {
  background: var(--retro-brown);
  color: #fff;
}
.cookie-banner .cookie-settings:hover {
  background: var(--retro-green);
  color: #332916;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 18px 10px;
    font-size: 0.98rem;
    align-items: flex-start;
  }
  .cookie-banner .cookie-actions {
    width: 100%;
    gap: 10px;
  }
}

/* Cookie preferences modal */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(45, 31, 13, 0.45);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff7eb;
  border-radius: 18px;
  padding: 38px 22px 28px 22px;
  box-shadow: 0 12px 28px 0 rgba(81,69,41,0.19);
  max-width: 99vw;
  width: 370px;
  color: #332916;
  position: relative;
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-content h2 {
  color: var(--retro-brown);
  font-size: 1.35rem;
  margin-bottom: 14px;
}
.cookie-modal-content .cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 14px 0;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-option input[type="checkbox"] {
  accent-color: var(--primary);
  width: 22px;
  height: 22px;
  margin-right: 12px;
}
.cookie-modal-content .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 11px;
  margin-top: 14px;
}
.cookie-close {
  position: absolute;
  top: 15px;
  right: 17px;
  background: none;
  color: var(--retro-orange);
  font-size: 1.3rem;
  border: none;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
}
.cookie-close:hover {
  color: var(--primary);
}
@media (max-width: 530px) {
  .cookie-modal-content {
    width: 99vw;
    min-width: 0;
    padding: 19px 3vw 20px 3vw;
  }
}

/* =====================================
   VINTAGE AND NOSTALGIC DETAILS
   ===================================== */
div, section, .card, .feature-item, .testimonial-card, .about, .calendar, .cta-feature, .text-section, .contact-section {
  border-radius: 18px;
}
.section, .features, .services, .calculator, .about, .cta-feature, .text-section, .card, .testimonial-card, .confirmation-message, .thankyou-section, .contact-section {
  box-shadow: 0 2px 12px rgba(130, 97, 76, 0.045);
}
/* Subtle retro patterns for sections */
.section, .features, .about, .calendar, .cta-feature {
  background-image: repeating-linear-gradient(135deg, #ffd96622 0 7px, transparent 7px 20px);
}

/* Retro divider (double) */
hr, .retro-divider {
  border: none;
  border-top: 3px double var(--retro-orange);
  height: 0;
  margin: 32px 0;
}

/* Decorative overlays: For card icons, shapes */
.feature-item:before {
  content: '';
  display: block;
  width: 40px;
  height: 11px;
  background: repeating-linear-gradient(90deg, var(--secondary) 0 7px, transparent 7px 12px);
  border-radius: 8px;
  opacity: 0.38;
  position: absolute;
  top: -16px; left: 15px;
  z-index: 0;
  pointer-events: none;
}
.feature-item {
  position: relative;
  overflow: visible;
}

/* ===============
   MEDIA QUERIES
   =============== */
@media (max-width: 1200px) {
  .feature-grid {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 13px;
  }
  .feature-item {
    min-width: 0;
  }
  .footer-links {
    flex: 1 1 100%;
    align-items: flex-start;
  }
}

/* Spacing between sections (MINIMUM 20PX between cards/sections) */
section, .section, .features, .services, .about, .pricing, .calendar, .confirmation-message, .thankyou-section {
  margin-bottom: 60px;
}
.card, .testimonial-card, .feature-item {
  margin-bottom: 20px;
}
@media (max-width: 700px) {
  section, .section, .features, .services, .about, .pricing, .calendar, .confirmation-message, .thankyou-section {
    margin-bottom: 32px;
  }
}

/* ================
   MICRO-INTERACTIONS
   ================ */
.cta-button, .feature-item, .card, .testimonial-card, .mobile-nav a, .cookie-banner button, .cookie-banner .cookie-settings {
  transition: all 0.16s cubic-bezier(.42,0,.58,1.0);
}
.card:hover, .testimonial-card:hover, .feature-item:hover, .mobile-nav a:hover {
  transform: translateY(-2px) scale(1.018);
  box-shadow: 0 7px 28px 0 rgba(151,130,100,0.13);
}

/* Focus states for accessibility */
a:focus-visible, .cta-button:focus-visible, .feature-item:focus-within, .mobile-menu-toggle:focus-visible, .mobile-menu-close:focus-visible {
  outline: 3px dotted var(--retro-green);
  outline-offset: 2px;
}

/* ================
   Scrollbar Styling (vintage flavor)
   ================ */
::-webkit-scrollbar {
  width: 11px;
  background: var(--secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--retro-brown);
  border-radius: 12px;
  border: 2.5px solid var(--secondary);
}

/* ===============================
   PRINT / GENERIC / FALLBACK
   =============================== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff !important; }
}
