/* ===============================
   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;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  background: #FEF7E7;
  color: #30261c;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; font-family: 'Montserrat', Arial, Helvetica, sans-serif; letter-spacing: 0.01em; }
b, strong { font-weight: bold; }
button, input, select, textarea { font-family: inherit; }

/* ===============================
   VINTAGE RETRO STYLE VARIABLES
   =============================== */
:root {
  --primary: #183153;
  --secondary: #f7c948;
  --accent: #ffffff;
  --retro-orange: #ef8250;
  --retro-blue: #2871a3;
  --retro-taupe: #a8795e;
  --retro-mustard: #f7c948;
  --retro-bg: #fef7e7;
  --border-radius: 18px;
  --shadow: 0 2px 10px 0 rgba(40, 15, 0, 0.11),0 0.5px 2.5px 0 rgba(40,15,0,0.09);
  --transition: all 0.18s cubic-bezier(.64,.09,.08,1);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --text-dark: #30261c;
  --text-contrast: #183153;
  --text-light: #fef7e7;
  --pattern-bg: repeating-linear-gradient(
    -45deg,
    #fae2a0 0 10px,
    #f7c948 10px 20px
  );
}

/* ===============================
   GENERAL LAYOUT CONTAINERS
   =============================== */
.container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--retro-bg);
}

/* ===============================
   HEADER & MAIN NAVIGATION
   =============================== */
header {
  width: 100%;
  background: var(--pattern-bg);
  border-bottom: 5px solid var(--retro-blue);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  box-shadow: 0 2px 8px #ECB47E33;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  padding: 8px 0;
}
.logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 1px 0 #F8D477);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.02em;
  color: var(--primary);
  padding: 6px 16px;
  border-radius: var(--border-radius);
  position: relative;
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--retro-orange);
  color: var(--accent);
}

/* CTA Button styles (header + throughout) */
.cta-btn {
  display: inline-block;
  padding: 11px 30px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  background: var(--secondary);
  border: none;
  border-radius: 999px;
  box-shadow: 0 2px 16px #18315322;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  margin-left: 12px;
  margin-right: 12px;
}
.cta-btn.primary {
  background: var(--retro-orange);
  color: var(--accent);
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: var(--retro-blue);
  color: var(--accent);
  box-shadow: 0 6px 30px #2871a342;
  transform: translateY(-2px) scale(1.04);
}
.cta-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.03em;
  color: var(--retro-blue);
  margin-top: 14px;
  text-decoration: underline;
  transition: color var(--transition);
}
.cta-link:hover, .cta-link:focus {
  color: var(--retro-orange);
}

/* ===============================
   MOBILE NAVIGATION
   =============================== */
.mobile-menu-toggle {
  display: none;
  background: var(--retro-blue);
  color: var(--accent);
  font-size: 28px;
  border: none;
  border-radius: 10px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  margin-left: 10px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 2px 14px #EF825033;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fef7e7ee;
  box-shadow: 0 4px 50px #18315333;
  z-index: 2000;
  transform: translateX(-105vw);
  transition: transform 0.37s cubic-bezier(.83,.18,.36,1.16);
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: var(--retro-orange);
  font-size: 38px;
  border: none;
  cursor: pointer;
  margin-bottom: 18px;
  margin-top: 4px;
  padding: 6px 9px;
  border-radius: 9px;
  transition: color var(--transition), background var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--retro-blue);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
  padding-left: 14px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--primary);
  background: none;
  padding: 10px 0 6px 7px;
  border-radius: var(--border-radius);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--retro-orange);
  background: #f5e8b4;
}

/* ===============================
   TYPOGRAPHY: RETRO STYLES
   =============================== */
h1 {
  font-size: 48px;
  font-family: var(--font-display);
  color: var(--retro-blue);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 0 #FAE2A0;
}
h2 {
  font-size: 32px;
  color: var(--retro-orange);
  margin-bottom: 24px;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}
h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 13px;
  font-family: var(--font-display);
}
.subheadline {
  font-size: 20px;
  color: var(--retro-taupe);
  margin-bottom: 18px;
  font-weight: 600;
}
p, li, ul, ol {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
}
strong { color: var(--retro-orange); }

/* ===============================
   FLEXBOX SPACING & ALIGNMENT
   =============================== */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--border-radius);
  box-shadow: 0 1.5px 10px #CBA26822;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  background: var(--accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  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: flex-start;
  gap: 20px;
  padding: 32px 26px;
  background: #ffffffee;
  font-size: 18px;
  color: var(--primary);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 22px;
  position: relative;
  min-width: 260px;
  max-width: 430px;
  border-left: 8px solid var(--retro-orange);
}
.testimonial-name {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--retro-taupe);
  margin-top: 4px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ===============================
   HOMEPAGE FEATURES & GRIDS
   =============================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 -6px;
  justify-content: space-between;
}
.feature-grid li {
  flex: 1 1 210px;
  min-width: 210px;
  background: #fff9ea;
  border-radius: var(--border-radius);
  box-shadow: 0 0.5px 8px #CBA2681A;
  padding: 26px 20px 15px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow var(--transition), border var(--transition), transform var(--transition);
  border: 2.5px solid #fff6ce;
  position: relative;
}
.feature-grid li img {
  height: 48px;
  width: 48px;
  margin-bottom: 14px;
  filter: sepia(60%) hue-rotate(-18deg) saturate(110%);
}
.feature-grid li h3 {
  font-size: 19px;
  color: var(--retro-blue);
  margin-bottom: 7px;
}
.feature-grid li span {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-display);
  color: var(--retro-mustard);
  font-size: 15px;
  font-weight: 700;
  background: #1831530a;
  padding: 2px 14px;
  border-radius: 10px;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  border: 2.5px solid var(--retro-orange);
  box-shadow: 0 6px 30px #EF825022;
  transform: translateY(-2px) scale(1.03);
}

/* Service highlights (homepage) */
.service-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.service-highlights li {
  font-size: 16px;
  color: var(--primary);
  padding-left: 22px;
  position: relative;
}
.service-highlights li:before {
  content: '\2605';
  color: var(--retro-orange);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.85;
}

/* Latest Blog Posts preview (homepage) */
.latest-blog-posts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.latest-blog-posts li {
  flex: 1 1 230px;
  min-width: 230px;
  background: #fff9ce;
  border-radius: 17px;
  box-shadow: 0 0.5px 7px #f7c9481A;
  padding: 22px 18px 10px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), background var(--transition);
}
.latest-blog-posts li h3 { margin-bottom: 7px; }
.latest-blog-posts li:hover {
  background: #FFF1C2;
  box-shadow: 0 6px 30px #f7c94833;
}

/* ===============================
   BLOG SECTION STYLES
   =============================== */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 28px;
}
.category-filters a {
  font-family: var(--font-display);
  padding: 5px 15px;
  border-radius: 17px;
  background: #f7c94833;
  color: var(--retro-blue);
  font-size: 15px;
  transition: background var(--transition), color var(--transition);
}
.category-filters a:hover, .category-filters a:focus {
  background: var(--retro-orange);
  color: var(--accent);
}
.article-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.article-list li {
  background: #fff9ea;
  border-radius: 16px;
  box-shadow: 0 0.5px 9px #cba26822;
  flex: 1 1 255px;
  min-width: 230px;
  padding: 23px 18px 12px 18px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), background var(--transition);
  display: flex;
  flex-direction: column;
}
.article-list li h3 { margin-bottom: 7px; }
.article-list li:hover {
  background: #f7c94822;
  box-shadow: 0 5px 35px #f7c94841;
}

/* ===============================
   ABOUT / GENERIC TEXT STYLES
   =============================== */
.text-section {
  margin-bottom: 20px;
}
.text-section ul, .text-section ol {
  margin-left: 28px;
  margin-bottom: 12px;
}
.text-section li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 10px;
}
.text-section ul li:before {
  content: '\25AA';
  color: var(--retro-taupe);
  position: absolute;
  left: -14px;
  font-size: 13px;
  line-height: 1.8;
}
.text-section ol {
  list-style: decimal inside;
}

/* ===============================
   SPECIAL LAYOUTS (STEPS, MAPS)
   =============================== */
.steps-section ol {
  list-style: decimal inside;
  margin-bottom: 14px;
  margin-left: 5px;
}
.steps-section li {
  background: #fff6ce;
  border-radius: 9px;
  padding: 8px 12px;
  margin-bottom: 10px;
  color: var(--retro-blue);
  font-weight: 600;
  font-size: 16px;
}
.map-location.neutral-placeholder {
  background: #f0ede6;
  color: #a09d94;
  border: 2px dashed #e6d9b8;
  border-radius: var(--border-radius);
  padding: 34px 0;
  margin-top: 18px;
  text-align: center;
  font-style: italic;
  font-size: 17px;
}

/* Newsletter benefits (blog) */
.signup-benefits ul {
  margin-left: 16px;
  margin-bottom: 10px;
}
.signup-benefits li:before {
  content: '^';
  color: var(--retro-orange);
  font-size: 14px;
  margin-right: 6px;
}

/* ===============================
   TESTIMONIALS / SLIDER
   =============================== */
.testimonials-section {
  background: #18315307;
  border-radius: var(--border-radius);
  padding: 40px 20px 60px 20px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 24px;
}
.testimonial-card {
  border-left: 8px solid var(--retro-orange);
  background: #fff9ea;
  color: var(--primary);
  box-shadow: 0 1.5px 10px #cba2681A;
}
.testimonial-card p {
  color: var(--primary);
  font-size: 18px;
}
.testimonial-card .testimonial-name {
  color: var(--retro-taupe);
}

/* For non-slider testimonials */
.testimonials-section .testimonial-card {
  margin-bottom: 24px;
}

/* ===============================
   FOOTER STYLES
   =============================== */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 48px 0 0 0;
  font-size: 15px;
  margin-top: 60px;
  box-shadow: 0 -3px 15px #18315322;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: var(--retro-orange);
  background: none;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 3px 7px;
  border-radius: 7px;
  transition: background var(--transition), color var(--transition);
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--retro-orange);
  color: var(--primary);
}
.footer-info {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-logo img {
  height: 38px;
  filter: drop-shadow(0 1px 0 #F7C948);
}
.copyright {
  text-align: center;
  padding: 18px 0 10px 0;
  color: #edd28d;
  font-size: 13px;
  letter-spacing: 0.03em;
}

/* ===============================
   COOKIE CONSENT BANNER
   =============================== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff9ea;
  color: var(--primary);
  border-top: 3px solid var(--retro-orange);
  box-shadow: 0 -3px 20px #18315318;
  z-index: 3000;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 32px;
  padding: 18px 22px;
  animation: slideUpFadeIn 0.38s cubic-bezier(.31,1.12,.42,.98);
  font-size: 17px;
}
.cookie-consent-banner__text {
  margin-right: 16px;
  font-size: 17px;
}
.cookie-consent-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  font-family: var(--font-display);
  font-size: 15px;
  border: none;
  border-radius: 16px;
  padding: 7px 17px;
  margin: 0 3px;
  box-shadow: 0 0.5px 7px #ef82501A;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}
.cookie-btn.accept {
  background: var(--retro-orange);
  color: var(--accent);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--retro-blue);
  color: var(--accent);
}
.cookie-btn.deny {
  background: #fff;
  color: var(--retro-orange);
  border: 1.5px solid var(--retro-orange);
}
.cookie-btn.deny:hover, .cookie-btn.deny:focus {
  background: var(--retro-orange);
  color: var(--accent);
}
.cookie-btn.settings {
  background: var(--retro-blue);
  color: var(--accent);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--retro-orange);
  color: var(--accent);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  background: rgba(24,49,83,0.59);
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.27s cubic-bezier(.72,.01,.75,1.14);
}
.cookie-modal {
  background: #fff9ea;
  color: var(--primary);
  border-radius: var(--border-radius);
  box-shadow: 0 7px 50px #1831532b;
  min-width: 320px;
  max-width: 95vw;
  padding: 34px 28px 22px 28px;
  position: relative;
  z-index: 4100;
  animation: popFadeIn 0.32s cubic-bezier(.16,.98,.56,1.19);
}
.cookie-modal h2 {
  margin-top: 0; margin-bottom: 10px; color: var(--retro-blue);
  font-size: 27px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.cookie-modal label {
  font-size: 16px;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 34px; height: 20px;
  border-radius: 12px;
  background: #f0cac1;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-modal .cookie-toggle:checked {
  background: var(--retro-orange);
}
.cookie-modal .cookie-toggle::before {
  content: '';
  position: absolute;
  left: 4px; top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
  transition: left var(--transition);
}
.cookie-modal .cookie-toggle:checked::before {
  left: 18px;
}
.cookie-modal .close-modal {
  position: absolute; right: 18px; top: 12px;
  background: none;
  color: var(--retro-orange);
  font-size: 25px;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: var(--retro-blue);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 23px;
}

/* ===============================
   ANIMATIONS
   =============================== */
@keyframes slideUpFadeIn {
  0% { transform: translateY(70px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes fadeIn {
  from {opacity: 0;} to {opacity: 1;}
}
@keyframes popFadeIn {
  0% {transform: scale(0.85); opacity: 0;}
  100% {transform: scale(1); opacity: 1;}
}

/* ===============================
   RESPONSIVE DESIGN: MOBILE FIRST
   =============================== */
@media (max-width: 1020px) {
  .container { max-width: 98vw; }
  .main-nav { gap: 15px; }
}
@media (max-width: 860px) {
  .feature-grid, .latest-blog-posts, .article-list {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-info {
    flex-direction: column;
    gap: 7px;
  }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .cta-btn.primary { display: none; }
  .mobile-menu-toggle { display: block; }
  .feature-grid, .latest-blog-posts, .article-list, .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  .testimonials-section, .section, section {
    padding: 30px 8px;
    margin-bottom: 38px;
  }
  .footer-nav { gap: 16px; }
}
@media (max-width: 500px) {
  .container { padding-left: 7px; padding-right: 7px; }
  .footer-nav { flex-direction: column; gap: 7px; }
}
@media (max-width: 600px) {
  .text-image-section { flex-direction: column; align-items: stretch; gap: 18px; }
}

/* ===============================
   MISC DECORATIVE - RETRO ELEMENTS
   =============================== */
.hero-section {
  background: var(--retro-blue);
  background-blend-mode: soft-light;
  color: var(--accent);
  border-radius: var(--border-radius);
  margin-bottom: 60px;
  box-shadow: 0 3px 24px #2871a342, 0 0px 80px #fae2a03b;
  border: 2.5px solid #F7C94844;
}
.hero-section h1, .hero-section .subheadline { color: var(--accent); text-shadow: 0 2px 0 #F7C948; }
.hero-section .cta-btn { margin-top: 18px; }

.final-cta-section {
  background: var(--pattern-bg);
  box-shadow: 0 1.5px 12px #CBA26822;
  border-radius: var(--border-radius);
  text-align: center;
  padding: 36px 10px 36px 10px;
}
.final-cta-section h2 { margin-bottom: 18px; color: var(--retro-blue); }
.final-cta-section .cta-btn { margin-top: 9px; }

.thank-you-section {
  background: #FFF1C2;
  border-radius: var(--border-radius);
  box-shadow: 0 1.5px 12px #f7c94822;
  text-align: center;
  padding: 46px 15px 60px 15px;
}

/* ===============================
   ACCESSIBILITY & USABILITY
   =============================== */
:focus {
  outline: 2px solid var(--retro-mustard);
  outline-offset: 2px;
}
::-webkit-input-placeholder { color: #a97c57; }
:-moz-placeholder { color: #a97c57; }
::-moz-placeholder { color: #a97c57; }
:-ms-input-placeholder { color: #a97c57; }

/* Hide visually but keep for screen readers */
.sr-only { position: absolute !important; width: 1px; height: 1px; padding:0; margin:-1px; overflow: hidden; clip: rect(0,0,0,0); border:0; }

/* ===============================
   PRINT OPTIMIZATION
   =============================== */
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu { display: none !important; }
  section, .section { background: #fff !important; box-shadow: none !important; border: none !important; }
  body { color: #222; font-size: 13px; }
}

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