/* ===================
   CSS RESET & NORMALIZATION
   =================== */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #FFF9EF;
  color: #183059;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .18s;
}
a:focus { outline: 2px dashed #FFD166; outline-offset: 2px; }
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}
:root {
  --primary: #183059;
  --secondary: #FFD166;
  --accent: #FFFFFF;
  --vintage-red: #C44536;
  --vintage-green: #62A87C;
  --vintage-blue: #547AA5;
  --vintage-bg: #FFFAED;
  --vintage-beige: #F5E8C7;
  --vintage-card: #FFF7E0;
  --shadow: 0 4px 18px 0 rgba(24,48,89,.10);

  /* Font stack */
  --font-display: 'Montserrat', 'Arial Black', Impact, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ===================
   TYPOGRAPHY
=================== */
h1, .h1 {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 2rem;
  letter-spacing: .01em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 1px 1px 0 #FFF7E0;
}
h2, .h2 {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 1.5rem;
  letter-spacing: .02em;
  color: var(--vintage-red);
  font-weight: 600;
  margin-bottom: 12px;
  text-shadow: 1px 1px 0 #FFD16633;
}
h3, .h3 {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 1.125rem;
  color: var(--vintage-green);
  font-weight: 600;
  margin-bottom: 10px;
}
h4, .h4 {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
}
p, li, label, span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 10px;
}

strong, b {
  font-weight: 700;
}
blockquote {
  font-style: italic;
  border-left: 4px solid var(--vintage-red);
  padding-left: 16px;
  margin: 20px 0;
}

.short-text {
  font-size: 1.06rem;
  color: var(--vintage-blue);
  margin-top: 16px;
  margin-bottom: 16px;
  font-weight: 500;
}

/* =========================
   LAYOUT CONTAINERS & SPACING
============================= */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card containers and grid utilities */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--vintage-card);
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: relative;
  padding: 28px 20px;
  transition: box-shadow .18s;
  border: 2px solid #E2D4B7;
}
.card:hover {
  box-shadow: 0 8px 40px 0 rgba(196,69,54,.14);
  border-color: var(--secondary);
}
.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;
  background: var(--accent);
  border-radius: 16px;
  box-shadow: var(--shadow);
  min-width: 250px;
  margin-bottom: 20px;
  border: 2px dashed var(--secondary);
  position: relative;
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.08em;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  color: #444;
  font-size: 0.98em;
}
.testimonial-meta span:first-child {
  color: var(--vintage-red);
  letter-spacing: 3px;
  font-family: var(--font-display);
}

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

/* ================
   NAVIGATION HEADER & FOOTER
================= */
header {
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 2px 14px 0 rgba(24, 48, 89, 0.11);
  padding: 0;
  position: sticky;
  top: 0; left: 0; right: 0; z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 18px;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: var(--font-display);
  font-size: 1.05em;
  color: var(--accent);
  padding: 10px 18px;
  border-radius: 18px;
  transition: background 0.16s, color 0.16s;
}
header nav a.cta-primary {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  box-shadow: var(--shadow);
  margin-left: 12px;
  border: 2px solid var(--primary);
}
header nav a.cta-primary:hover,
header nav a.cta-primary:focus {
  background: var(--vintage-red);
  color: #fff;
  border-color: var(--vintage-red);
}
header nav a:not(.cta-primary):hover {
  color: var(--secondary);
  background: #17305122;
}
header img {
  height: 46px;
  width: auto;
}

/* =========================
   MOBILE MENU
============================= */
.mobile-menu-toggle {
  background: var(--secondary);
  color: var(--primary);
  font-size: 2rem;
  border: none;
  border-radius: 12px;
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px #0001;
  transition: background 0.18s, color 0.18s;
  z-index: 1002;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--vintage-blue);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  transform: translateX(-100vw);
  transition: transform .34s cubic-bezier(.6,.03,.3,1.2);
  display: flex;
  flex-direction: column;
  padding: 36px 24px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--vintage-red);
  color: #fff;
  border: none;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 24px;
  transition: background .18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-start;
}
.mobile-nav a {
  color: var(--accent);
  font-size: 1.1rem;
  font-family: var(--font-display);
  background: none;
  padding: 12px 0;
  border-radius: 7px;
  font-weight: 500;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--secondary);
  background: #1a3a6666;
  padding-left: 8px;
}

@media (max-width: 1024px) {
  header .container { gap: 5px; }
  header nav { gap: 6px; }
  header nav a {
    font-size: 0.97rem;
    padding: 8px 10px;
  }
}

@media (max-width: 900px) {
  header nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}

@media (max-width: 900px) {
  .container { padding: 0 10px; }
}

@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}

/* =========================
   HERO & MAIN CTA SECTIONS
============================= */
.hero, .hero-tours, .hero-tips, .hero-contact, .thank-you-section {
  background:
    repeating-linear-gradient(135deg, #F5E8C7 0 40px, #FFF9EF 40px 80px),
    var(--vintage-bg);
  border-bottom: 4px solid var(--vintage-red);
}
.hero .container, .thank-you-section .container, .hero-tours .container, .hero-tips .container, .hero-contact .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper,
.hero-tours .content-wrapper,
.hero-tips .content-wrapper,
.hero-contact .content-wrapper,
.thank-you-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 44px 8px;
}
.hero h1, .hero-tours h1, .hero-tips h1, .thank-you-section h1 {
  font-size: 2.1rem;
  color: var(--vintage-red);
}
.hero p, .hero-tours p, .hero-tips p, .thank-you-section p {
  font-size: 1.18em;
  color: var(--primary);
}

.cta-primary {
  display: inline-block;
  background: var(--vintage-red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.08em;
  font-weight: 700;
  border-radius: 24px;
  padding: 12px 36px;
  margin-top: 6px;
  letter-spacing: .1em;
  border: 2px solid transparent;
  box-shadow: 0 2px 12px #C4453633;
  transition: background .18s, color .18s, border .18s;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--vintage-red);
}

/* Reviews/testimonials distinct contrast */
.testimonials, .testimonials-warsaw, .testimonials-krakow {
  background: #F5E8C7;
  border-top: 3px dotted var(--secondary);
  border-bottom: 3px dotted var(--secondary);
  padding-top: 48px;
  padding-bottom: 48px;
}
.testimonials h2, .testimonials-warsaw h2, .testimonials-krakow h2 {
  color: var(--vintage-green);
}
.testimonials .content-wrapper, .testimonials-warsaw .content-wrapper, .testimonials-krakow .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

/* CTA blocks (Final/Action sections) */
.cta-final, .cta-section, .cta-warsaw, .cta-krakow, .cta-tips, .cta-contact, .cta-section-tours {
  background: var(--vintage-red);
  color: #fff;
  border-radius: 22px;
  margin-bottom: 60px;
  margin-top: 48px;
}
.cta-final .content-wrapper,
.cta-section .content-wrapper,
.cta-warsaw .content-wrapper,
.cta-krakow .content-wrapper,
.cta-tips .content-wrapper,
.cta-contact .content-wrapper,
.cta-section-tours .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 26px;
  padding: 38px 8px;
}
.cta-final h2, .cta-section h2, .cta-warsaw h2, .cta-krakow h2, .cta-tips h2, .cta-contact h2, .cta-section-tours h2 {
  color: #fff;
  text-shadow: 2px 2px 0 #8d2c24;
}
.cta-final p, .cta-section p, .cta-warsaw p, .cta-krakow p, .cta-tips p, .cta-contact p, .cta-section-tours p {
  color: #fff;
}

/* ========================
  FEATURES & SERVICE CARDS
========================== */
.feature-grid, .feature-list, .feature-grid, .features-grid, .service-list, .team-list, .tip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  justify-content: flex-start;
}
.feature, .service, .team-member, .tip {
  background: var(--vintage-card);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 24px 18px 14px 18px;
  flex-basis: calc(33% - 24px);
  min-width: 235px;
  border: 2px solid #e2d5bb;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .17s, border .17s;
}
.feature img, .service img, .tip img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  border-radius: 8px;
  box-shadow: 0 1px 7px #c4453611;
  background: #fff;
}
.feature:hover, .service:hover, .team-member:hover, .tip:hover {
  border-color: var(--vintage-red);
  box-shadow: 0 8px 24px #C4453633;
}
.feature h3, .team-member h3, .service h3, .tip h3 {
  margin-bottom: 6px;
}
.service {
  border-left: 6px double var(--vintage-green);
  border-top: none;
  border-right: none;
  border-bottom: 2px solid #FFD166;
  background: #fffdf7;
}
.team-member {
  border-left: 4px dotted var(--vintage-blue);
  background: #F7F7FA;
}
.tip {
  border-left: 5px solid var(--secondary);
  background: #fffbe8;
}

/* LISTS & QUALIFICATIONS */
ul {
  margin-bottom: 18px;
  margin-left: 22px;
  color: var(--primary);
}
ul li {
  list-style-type: square;
  padding-left: 10px;
  margin-bottom: 8px;
  font-size: 1em;
}

/* ===================
   FOOTER
=================== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 32px 0 0 0;
  margin-top: 30px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 0 14px 0;
  border-bottom: 2px solid #FFD16688;
}
.footer-top a img {
  height: 38px;
  width: auto;
  margin-right: 10px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-menu a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1em;
  margin-bottom: 3px;
  transition: color .16s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: var(--secondary);
}
.newsletter-signup {
  background: var(--vintage-beige);
  border-radius: 12px;
  padding: 10px 18px 12px 18px;
  box-shadow: 0 3px 18px #ffd16622;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 230px;
}
.newsletter-signup label {
  color: var(--primary);
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 0.99em;
  font-family: var(--font-display);
}
.newsletter-signup input[type='email'] {
  height: 38px;
  font-size: 1em;
  border-radius: 8px;
  border: 1.6px solid #E2D4B7;
  padding: 0 14px;
  margin-right: 10px;
  background: #fff;
  margin-bottom: 8px;
  width: 100%;
  transition: border .17s, outline .17s;
}
.newsletter-signup input[type='email']:focus {
  outline: 2px solid var(--secondary);
  border-color: var(--primary);
}
.newsletter-signup button {
  background: var(--vintage-green);
  color: #fff;
  font-family: var(--font-display);
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 1em;
  font-weight: 600;
  transition: background .17s;
  cursor: pointer;
  margin-top: 2px;
  box-shadow: 0 1px 7px #62A87C22;
}
.newsletter-signup button:hover,
.newsletter-signup button:focus {
  background: var(--vintage-red);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  padding: 20px 0;
}
.contact-info p {
  color: #FFF7E0;
  font-size: 0.98em;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
}
.contact-info img {
  width: 18px;
  height: 18px;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF7E0;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  box-shadow: 0 1px 7px #c4453613;
  transition: background .16s;
}
.social-links a:hover,
.social-links a:focus {
  background: var(--secondary);
}
.social-links img {
  width: 20px;
  height: 20px;
}

/* ================================
    COOKIE CONSENT BANNER & MODAL
================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--secondary);
  color: var(--primary);
  z-index: 2000;
  box-shadow: 0 -2px 16px #c4453633;
  padding: 20px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  animation: fadeinUp .5s;
}
@keyframes fadeinUp {
  from { transform: translateY(100%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 8px 22px;
  font-family: var(--font-display);
  border-radius: 14px;
  border: 1.5px solid var(--primary);
  font-size: 1em;
  background: #fff;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1px 7px #FFD16622;
  transition: background .16s, color .16s, border .16s;
}
.cookie-banner button.accept {
  background: var(--vintage-green);
  color: #fff;
  border-color: var(--vintage-green);
}
.cookie-banner button.accept:hover {
  background: var(--primary);
  color: #fff;
}
.cookie-banner button.reject {
  background: var(--vintage-red);
  color: #fff;
  border-color: var(--vintage-red);
}
.cookie-banner button.reject:hover {
  background: #fff;
  color: var(--vintage-red);
}
.cookie-banner button.settings {
  background: #fff;
  color: var(--primary);
}
.cookie-banner button.settings:hover {
  background: var(--vintage-blue);
  color: #fff;
}

/* === COOKIE MODAL === */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: #0007;
  z-index: 2011;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein .29s;
}
@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--vintage-bg);
  color: var(--primary);
  border-radius: 22px;
  max-width: 420px;
  min-width: 320px;
  padding: 36px 18px 24px 24px;
  box-shadow: 0 6px 44px #C4453633;
  position: relative;
  animation: popin .21s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@keyframes popin {
  from { transform: scale(.93); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-family: var(--font-display);
  font-size: 1.32em;
  margin-bottom: 7px;
  color: var(--vintage-red);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff7e0;
  border-radius: 8px;
  padding: 8px 0 8px 12px;
  border: 1.1px solid #e2d4b7;
  font-size: 1em;
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--vintage-red);
  width: 19px;
  height: 19px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}
.cookie-modal button {
  background: var(--vintage-green);
  color: #fff;
  font-family: var(--font-display);
  border: none;
  border-radius: 12px;
  padding: 9px 22px;
  font-size: 1em;
  transition: background .16s, color .16s;
  cursor: pointer;
}
.cookie-modal button.cancel {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--vintage-green);
}
.cookie-modal button.cancel:hover { background: var(--vintage-blue); color: #fff; border: 1.5px solid var(--vintage-blue); }
.cookie-modal-close {
  position: absolute; top: 10px; right: 18px;
  background: var(--vintage-red);
  color: #fff;
  font-size: 1.5rem;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  transition: background .15s;
  cursor: pointer;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus { background: #FFD166; color: var(--primary); }

/* Accessibility: Hide elements visually with .hidden */
.hidden {
  display: none !important;
}

/* ================================
  CONTACT DETAILS SECTION
================================== */
.contact-details .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
  margin-top: 10px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFF7E0;
  padding: 16px 20px;
  border-radius: 11px;
  box-shadow: 0 2px 7px #FFD16633;
  font-size: 1em;
  color: var(--primary);
  min-width: 210px;
}
.contact-item img {
  width: 28px;
  height: 28px;
}
.contact-item a {
  color: var(--vintage-red);
  text-decoration: underline dotted;
  font-weight: 600;
  transition: color .17s;
}
.contact-item a:hover,
.contact-item a:focus { color: var(--primary); text-decoration: underline; }

/* thank-you .followup-info */
.followup-info {
  background: #fffbe8;
  border: 2px dashed var(--vintage-green);
  border-radius: 13px;
  margin-top: 25px;
  padding: 15px 20px;
  color: var(--primary);
}
.followup-info a {
  color: var(--vintage-red);
  text-decoration: underline;
}

/* ===================
   MISC INTERACTIVE & MICRO-ANIMATION
=================== */
button, .cta-primary, .newsletter-signup button, .cookie-banner button, .cookie-modal button {
  outline: none;
  transition: background .17s, color .17s, box-shadow .17s, border .17s;
  cursor: pointer;
}
button:active, .cta-primary:active {
  transform: translateY(1.2px) scale(0.98);
}

input[type="email"]::placeholder {
  color: #ADADAD;
  opacity: .8;
  font-style: italic;
}

/* =============================
   MEDIA QUERIES - RESPONSIVE
================================ */
@media (max-width: 910px) {
  .footer-top, .footer-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .footer-bottom { gap: 12px; }
}
@media (max-width: 768px) {
  .section { padding: 30px 3vw; margin-bottom: 42px; }
  .hero .content-wrapper, .hero-tours .content-wrapper, .hero-tips .content-wrapper, .hero-contact .content-wrapper, .thank-you-section .content-wrapper {
    padding: 32px 2vw;
    font-size: 1em;
  }
  h1, .h1 { font-size: 1.45rem; }
  h2, .h2 { font-size: 1.18rem; }
  .feature, .service, .team-member, .tip { flex-basis: 100%; min-width: unset; }
  .feature-grid, .feature-list, .team-list, .service-list, .features-grid, .tip-list {
    flex-direction: column;
    gap: 18px;
  }
  .content-wrapper, .content-grid { flex-direction: column; gap: 16px; }
  .testimonial-card { min-width: 180px; }
  .container { padding: 0 4px; }
  .contact-item { min-width: unset; padding: 12px 10px; }
  .newsletter-signup { min-width: unset; padding: 8px 8px; }
}
@media (max-width: 550px) {
  .hero, .hero-tours, .hero-tips, .hero-contact, .thank-you-section {
    border-radius: 0;
    padding: 0 0 16px 0;
  }
  .cta-final, .cta-section, .cta-warsaw, .cta-krakow, .cta-tips, .cta-contact, .cta-section-tours {
    margin: 32px 0 24px 0;
    border-radius: 14px;
  }
  .feature, .service, .tip, .team-member {
    padding: 14px 5vw 9px 5vw;
  }
  .cookie-banner { font-size: .97em; flex-direction: column; justify-content: flex-start; align-items: flex-start; }
}
/* Text-image sections flex-direction fix */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

/* =============================
   PRINT (Optional, for completeness)
============================= */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { color: #000; background: #fff !important; }
}
