/* CSS 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;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #FCFAF6;
  color: #21404F;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: #21404F;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover, a:focus {
  color: #B9772B;
  text-decoration: underline;
}

ul, ol {
  list-style: none;
  padding-left: 0;
}

/* ======= VINTAGE RETRO FONTS ======= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #21404F;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #6E4729;
  text-shadow: 1px 2px 0 #F0B94140;
  margin-bottom: 24px;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #B9772B;
  text-shadow: 0 1px 0 #FCFAF630;
}

h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #21404F;
}

h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 700;
}

p, li, table, .testimonial-meta {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2F2921;
  font-size: 1rem;
}

strong, b {
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ======= FLEXBOX LAYOUTS ======= */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-container, .feature_grid, .services .content-wrapper, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.card {
  margin-bottom: 20px;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 4px 16px #1d23380d;
  background: #FFF7EB;
  padding: 28px 18px;
}

.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;
  background: #FCFAF6;
  padding: 20px 26px;
  margin-bottom: 20px;
  border-radius: 16px;
  border: 2px dashed #F0B941;
  box-shadow: 0 4px 24px #EA80310e;
}

.testimonial-card p {
  font-size: 1.12rem;
  line-height: 1.7;
  color: #312C24;
  margin-bottom: 0;
}

.testimonial-meta {
  color: #B9772B;
  font-weight: 700;
  font-size: 0.99em;
  letter-spacing: 0.04em;
  opacity: 0.8;
}

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

.features .feature_grid {
  gap: 24px;
}

.features .feature_grid li {
  flex: 1 1 220px;
  min-width: 200px;
  background: #FFF8E3;
  border-radius: 14px;
  padding: 24px 18px 18px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px #18081213;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1.5px solid #E6C290;
  gap: 12px;
}

.features .feature_grid img {
  width: 38px;
  margin-bottom: 10px;
}

/* ======= BUTTONS ======= */
.btn-primary, nav .btn-primary, .btn-primary:visited {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #F0B941;
  color: #21404F !important;
  border: none;
  border-radius: 34px;
  padding: 13px 34px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 3px 12px #F0B94144;
  margin-top: 8px;
  margin-bottom: 8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-shadow: 0px 2px 0px #FCFAF6bb;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #21404F;
  color: #F0B941 !important;
  box-shadow: 0 7px 18px #21404F22;
}

.btn-secondary {
  background: #21404F;
  color: #F0B941;
  border: none;
  border-radius: 34px;
  padding: 11px 34px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.07em;
  font-weight: 700;
  margin-top: 7px;
  margin-bottom: 7px;
  cursor: pointer;
  box-shadow: 0 2px 10px #21404F33;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #F0B941;
  color: #21404F;
}

/* ============ NAVIGATION HEADER ============= */
header {
  background: #21404F url('../assets/vintage-bg.svg') repeat-x bottom;
  box-shadow: 0 3px 18px #18081219;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
  padding-bottom: 17px;
}
header img {
  height: 42px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FCE9BA;
  font-weight: 700;
  font-size: 1.03rem;
  padding: 7px 14px;
  border-radius: 22px;
  transition: background 0.16s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FCE9BA;
  color: #21404F;
}
.main-nav .btn-primary {
  padding: 8px 28px;
  font-size: 1rem;
}

/* ===== MOBILE BURGER MENU ===== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #F0B941;
  font-size: 2.1rem;
  line-height: 1;
  cursor: pointer;
  margin-left: 20px;
  z-index: 1031;
  padding: 5px 9px;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F0B94133;
  color: #FCFAF6;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 90vw;
  max-width: 410px;
  background: #FCFAF6 url('../assets/vintage-menu-bg.svg') repeat-y right;
  box-shadow: 6px 0 24px #1d233824;
  transform: translateX(-100%);
  transition: transform 0.27s cubic-bezier(.39,.57,.56,1.04);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #B9772B;
  font-size: 2.1rem;
  align-self: flex-end;
  padding: 19px 21px 5px 5px;
  cursor: pointer;
  z-index: 1;
  transition: color 0.12s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #21404F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 14px 36px 36px 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #21404F;
  font-weight: 700;
  padding: 11px 0;
  border-bottom: 1.2px dashed #E2BB81;
  transition: background 0.18s, color 0.17s;
}
.mobile-nav a:last-child {
  border: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #B9772B;
}

/* Overlay background for opened mobile menu */
body.mobile-menu-open::after {
  content: '';
  position: fixed;
  background: rgba(33,64,79,0.36);
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1049;
  pointer-events: auto;
  transition: background 0.17s;
}
body.mobile-menu-open {
  overflow: hidden;
}

/* ======= HERO SECTION ======= */
.hero {
  background: #F0B941 url('../assets/vintage-pattern-1.svg') repeat top right;
  min-height: 320px;
  padding-top: 60px;
  padding-bottom: 70px;
  border-bottom: 5px solid #B9772B33;
  box-shadow: 0 12px 60px #F0B94113;
}
.hero .container, .hero .content-wrapper {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}
.hero h1,
.hero p {
  color: #21404F;
}
.hero p {
  font-size: 1.28rem;
  margin-bottom: 16px;
}
.hero .btn-primary {
  margin-top: 12px;
  font-size: 1.12rem;
}

/* ======= SERVICE, VALUE, TOUR AND FAQ SECTIONS ======= */
.services .service-card {
  background: #FFF7EB;
  border-radius: 14px;
  border: 1.5px solid #E6C290;
  box-shadow: 0 2px 12px #F0B94111;
  flex: 1 1 210px;
  min-width: 200px;
  padding: 20px 18px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.services .service-price {
  color: #B9772B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: 0.03em;
}

.short-services ul, .quickstart ul, .about ul, .values ul, .cultural-highlights ul, .cultural-experience ol, .pricing ul {
  margin-bottom: 16px;
  padding-left: 0;
}
.short-services li, .quickstart li, .about ul li, .values ul li, .cultural-highlights ul li, .cultural-experience ol li, .pricing ul li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  font-size: 1rem;
}
.short-services li:before, .quickstart li:before, .values ul li:before, .pricing ul li:before {
  content: '\25A0 ';
  color: #B9772B;
  font-size: 1.1em;
  position: absolute;
  left: 0;
  top: 2px;
  opacity: 0.7;
}
.cultural-experience ol {
  counter-reset: num;
}
.cultural-experience ol li {
  counter-increment: num;
  padding-left: 36px;
}
.cultural-experience ol li:before {
  content: counter(num) '. ';
  color: #F0B941;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  left: 0;
  position: absolute;
}

.usp-list {
  background: #FFFBE9;
  border-left: 8px solid #B9772B;
  padding: 18px 20px;
  border-radius: 13px;
  margin-top: 22px;
  color: #654628;
  font-size: 1.13rem;
  box-shadow: 0 4px 20px #E5BF7A12;
}

.about .text-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about h2, .values h2 {
  color: #D09038;
}

/* ========== PRICING TABLE =========== */
.pricing table {
  width: 100%;
  margin-bottom: 18px;
  background: #FFF7EB;
  border-radius: 10px;
  box-shadow: 0 2px 12px #2B32430f;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}
.pricing th, .pricing td {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  text-align: left;
  padding: 13px 19px;
  border-bottom: 1px solid #E6C290;
  color: #6D5C43;
}
.pricing th {
  background: #F0B941;
  color: #21404F;
  font-weight: 700;
}
.pricing tr:last-child td {
  border: none;
}
.pricing-note {
  color: #B9772B;
  font-size: 0.99em;
  background: #FFFBE3;
  border-left: 5px solid #F0B941;
  padding: 13px 16px;
  margin-top: 12px;
}

/* ========== FAQ DETAILS ========== */
.faq-main details {
  background: #FFF7EB;
  border-radius: 12px;
  box-shadow: 0 2px 12px #B9772B13;
  margin-bottom: 16px;
  padding: 16px 18px 8px 18px;
  border: 1.5px dotted #B9772B99;
  transition: box-shadow 0.18s;
}
.faq-main details[open] {
  box-shadow: 0 6px 24px #B9772B22;
}
.faq-main summary {
  color: #B9772B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.16rem;
  cursor: pointer;
  margin-bottom: 10px;
  outline: none;
}
.faq-main details p {
  margin-top: 6px;
  margin-bottom: 10px;
  font-size: 1rem;
}

/* ========== CONTACT MINI CARD ========== */
.mini-contact {
  background: #F0B94122;
  border-radius: 12px;
  border: 2px dotted #EAC178;
  box-shadow: 0 2px 12px #FCFAF622;
  padding: 20px 22px;
  margin-bottom: 18px;
  color: #21404F;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-contact p {
  margin-bottom: 9px;
  color: #2F2921;
  font-size: 1rem;
}

/* ====== CTA SECTIONS ====== */
.quickstart, .touren-cta, .angebot-cta, .contact-cta, .faq-contact, .confirmation {
  background: #FCFAF6 url('../assets/vintage-cta-bg.svg') repeat;
  border-radius: 18px;
  box-shadow: 0 6px 32px #F0B94113;
  margin-bottom: 36px;
  padding: 40px 22px;
}

.confirmation h1 {
  color: #B9772B;
}

/* ========== FOOTER ========== */
footer {
  background: #21404F;
  color: #F0B941;
  padding-top: 30px;
  padding-bottom: 16px;
  font-size: 1rem;
  box-shadow: 0 -5px 30px #21404F18;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-main a {
  color: #F0B941;
  transition: color 0.18s;
}
.footer-main a:hover, .footer-main a:focus {
  color: #fff8e3;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-contact {
  font-size: 0.98rem;
  color: #fff8e3;
}
.copy {
  color: #F0B941cc;
  text-align: center;
  font-size: 0.92rem;
}
.footer-main img {
  height: 38px;
  margin-bottom: 7px;
}

/* ========== COOKIE CONSENT BANNER ========== */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #FCFAF6;
  color: #21404F;
  border-top: 2px solid #F0B941;
  box-shadow: 0 -6px 32px #F0B94133;
  z-index: 1080;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  padding: 22px 24px;
  font-size: 1rem;
  animation: banner-slide-up 0.36s cubic-bezier(.39,.69,.42,1.01);
}
@keyframes banner-slide-up {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
#cookie-banner .cookie-text {
  flex: 2 1 280px;
  margin-bottom: 8px;
}
#cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-banner-btn {
  background: #F0B941;
  border: none;
  color: #21404F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 27px;
  padding: 8px 20px;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 1px 8px #E2BB8144;
  margin-right: 8px;
  transition: background 0.16s, color 0.18s;
}
.cookie-banner-btn:not([disabled]):hover {
  background: #21404F;
  color: #F0B941;
}
#cookie-banner .cookie-settings-btn {
  background: #FFF7EB;
  color: #B9772B;
  border: 1.7px dashed #E6C290;
  margin-right: 0;
  box-shadow: none;
  transition: background 0.16s, color 0.18s;
}
#cookie-banner .cookie-settings-btn:hover {
  background: #F0B94144;
  color: #21404F;
}

#cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(33,64,79,0.41);
  animation: modal-fade-in 0.25s;
}
@keyframes modal-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-dialog {
  background: #FFF7EB;
  border: 2.5px solid #F0B941;
  border-radius: 17px;
  max-width: 440px;
  width: 91vw;
  padding: 36px 27px 19px 27px;
  box-shadow: 0 12px 44px #EAC17844;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #B9772B;
  font-weight: 700;
  font-size: 1.33rem;
  margin-bottom: 11px;
}
.cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 17px;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #D09038;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  color: #21404F;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #F0B941;
  width: 1.2em;
  height: 1.2em;
  margin: 0 7px 0 0;
}
.cookie-category-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  color: #21404F;
  font-weight: 600;
}
.cookie-essential {
  font-size: 1.005rem;
  color: #777;
  margin-left: 30px;
  font-style: italic;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 18px;
}

/* ========== CONSISTENT SPACING & UTILITIES ========== */
.section, section {
  margin-bottom: 60px !important;
  padding: 40px 20px !important;
}
.card {
  margin-bottom: 20px !important;
  position: relative;
}
.card-container, .content-grid, .feature_grid, .services .content-wrapper {
  gap: 24px !important;
  margin-bottom: 24px !important;
}
.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;
}

/* Overwrite unwanted absolute positioning on content cards (safe) */
.card {
  position: relative !important;
}

/* ========== ANIMATIONS, MICRO-INTERACTIONS ========== */
a, .btn-primary, .btn-secondary, .mobile-menu-toggle, .main-nav a,
.testimonial-card, .mini-contact, .card, .features .feature_grid li,
.services .service-card, .faq-main details {
  transition: box-shadow 0.2s, transform 0.14s, border 0.14s, background 0.17s, color 0.2s;
}
.card:hover, .card:focus,
.features .feature_grid li:hover, .features .feature_grid li:focus,
.service-card:hover {
  box-shadow: 0 7px 26px #D0903840;
  transform: translateY(-3px) scale(1.021);
  border-color: #F0B941;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */
@media (max-width: 1040px) {
  .container {
    max-width: 96vw;
    padding: 0 16px;
  }
  .footer-main {
    flex-direction: column;
    gap: 22px;
  }
}

@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  header .container { flex-direction: row; gap: 8px; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
  .footer-main, .container, .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .hero .container, .hero .content-wrapper {
    align-items: flex-start;
    padding: 0 2px;
  }
  .card-container, .content-grid, .feature_grid {
    flex-direction: column;
    gap: 20px;
  }
  .features .feature_grid li, .services .service-card {
    min-width: 0;
    width: 100%;
  }
  .testimonial-card {
    width: 100%;
    padding: 18px 10px !important;
  }
  .text-image-section { flex-direction: column; align-items: flex-start; }
  .quickstart, .touren-cta, .angebot-cta, .contact-cta, .faq-contact, .confirmation {
    padding: 28px 7px !important;
  }
  #cookie-banner {
    flex-direction: column;
    gap: 8px;
    padding: 18px 7px !important;
    font-size: 0.98rem;
  }
  .cookie-modal-dialog {
    padding: 24px 7vw 16px 7vw;
  }
  .main-nav { display: none !important; }
  .mobile-menu {
    width: 100vw;
    max-width: 100vw;
  }
}
@media (max-width: 490px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
  .btn-primary, .btn-secondary {
    padding: 9px 10vw;
    font-size: 0.95rem;
  }
  .usp-list { font-size: 1.01rem; padding: 11px 7px; }
  footer .container { padding: 0 5px; }
}

/* Accessibility focus states */
a:focus, .btn-primary:focus, .btn-secondary:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2.5px solid #B9772B;
  outline-offset: 3px;
}

/* Smaller table font-size for mobile */
@media (max-width: 600px) {
  .pricing th, .pricing td {
    font-size: 0.93em;
    padding: 9px 6px;
  }
}

/* ========== VINTAGE/RETRO NOSTALGIA ========== */
body,
section,
.card,
.features .feature_grid li,
.services .service-card,
.testimonial-card,
footer,
#cookie-banner,
.cookie-modal-dialog {
  background-repeat: repeat;
  /* Optionally, if you have subtle patterned PNG/SVG backgrounds add here */
}

/* Example nostalgic patterns (substitute with your SVG/PNG in prod) */
body { background-image: url('../assets/vintage-bg-dots.png'); background-size: 240px; }
.hero { background-image: url('../assets/vintage-lines.svg'); }
footer { background-image: url('../assets/vintage-footer-flair.svg'); background-size: cover; background-repeat: no-repeat; background-position: bottom center; }

.features .feature_grid li::before {
  content: '\2605';
  font-size: 1.3em;
  color: #F0B94188;
  position: absolute;
  left: 10px;
  top: 13px;
  z-index: 0;
  opacity: 0.44;
  pointer-events: none;
}

/* Optional: decorative borders */
.card, .testimonial-card, .service-card {
  border-style: solid;
  border-width: 1.7px;
  border-color: #E6C290;
  border-left-width: 5px;
}

/* Hide asset faux backgrounds if not available */
@media (prefers-color-scheme: dark) {
  body { background: #27211B; color: #eedcbf; }
  footer { background: #172230; }
  .card, .testimonial-card, .service-card, .features .feature_grid li { background: #312520; color: #eedcbf; }
  .btn-primary, .btn-secondary { color: #1c232d; background: #F3D090; }
}

/* ========== UTILITIES & MISC ========== */
.hide {
  display: none !important;
}
.centered {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

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