/* 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,
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, 
main, 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;
  font-family: 'Roboto', Arial, sans-serif;
  scroll-behavior: smooth;
  background: #F8F6F1;
}
*, *:before, *:after { box-sizing: inherit; }

body {
  color: #2d251b;
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F8F6F1;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #B57E36;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C69243;
  text-decoration: underline;
}

/* TYPOGRAPHY - Vintage/Retro */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1C253A;
}
h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }

@media (max-width:600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}

strong { font-weight: 700; color: #BF993A; }
blockquote {
  font-size: 1.05rem;
  font-style: italic;
  position: relative;
  color: #4B3707;
  padding-left: 24px;
}
blockquote:before {
  content: '“';
  font-size: 3.2em;
  line-height: 0.5;
  color: #F3C978;
  position: absolute;
  left: 0; top: -10px;
  font-family: 'Montserrat', serif;
}
cite {
  display: block;
  font-size: 0.93rem;
  color: #585135;
  margin-top: 10px;
  font-style: normal;
}

/* VINTAGE RETRO COLORS */
:root {
  --mh-primary: #1C253A;
  --mh-accent: #F3C978;
  --mh-secondary: #6B7D94;
  --mh-vintage-cream: #F8F6F1;
  --mh-vintage-brown: #6C4327;
  --mh-vintage-green: #AFB47A;
  --mh-vintage-red: #B9563E;
  --mh-card-bg: #FFFDF7;
  --mh-card-shadow: rgba(52, 39, 4, 0.10);
  --mh-pattern: repeating-linear-gradient(-45deg,#f3c978 0 2px,transparent 2px 10px);
}

/* CONTAINER & GENERAL LAYOUT */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--mh-card-bg);
  border-radius: 16px;
  box-shadow: 0 4px 24px var(--mh-card-shadow);
  position: relative;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

@media (min-width: 900px) {
  .content-wrapper {
    align-items: center;
    gap: 40px;
  }
}

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

/* Vintage Patterns */
.section.pattern-top {
  background: var(--mh-card-bg) var(--mh-pattern);
  background-size: auto 24px;
  background-repeat: repeat-x;
}

/* MAIN NAV BAR */
header {
  background: var(--mh-primary);
  color: #fff;
  box-shadow: 0 2px 10px rgba(28,37,58,0.07);
  position: sticky;
  top: 0;
  z-index: 80;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 14px 20px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
.main-nav a {
  color: #FFE8BC;
  font-size: 1.03rem;
  padding: 7px 12px;
  border-radius: 5px;
  transition: background 0.15s, color 0.15s;
  text-shadow: 0px 1px 0px #4B3707;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--mh-accent);
  color: var(--mh-primary);
  text-decoration: none;
}
.main-nav .logo-link img {
  height: 38px;
  margin-right: 18px;
  display: block;
}
.cta-primary {
  background: var(--mh-accent);
  color: var(--mh-primary) !important;
  border-radius: 30px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 24px;
  margin-left: 7px;
  box-shadow: 0 2px 8px rgba(243,201,120,0.11);
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.2s, box-shadow 0.2s, filter 0.2s;
  letter-spacing: 0.03em;
  text-shadow: 0px 1px 0px #FCEDCA;
}
.cta-primary:hover, .cta-primary:focus {
  background: #FFE8BC;
  box-shadow: 0 4px 12px rgba(243,201,120,0.16);
  filter: brightness(1.05);
}
.cta-secondary {
  background: transparent;
  color: var(--mh-primary);
  border: 2px solid var(--mh-secondary);
  border-radius: 22px;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  padding: 7px 22px;
  margin-top: 8px;
  transition: background 0.2s, border 0.2s, color 0.2s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--mh-secondary);
  color: #fff;
  border-color: var(--mh-secondary);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 17px;
  background: var(--mh-accent);
  color: var(--mh-primary);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 101;
  box-shadow: 0 2px 8px rgba(28,37,58,0.10);
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #FFE8BC;
  color: #3A2E19;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--mh-primary);
  z-index: 999;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(.86,.01,.47,.99), opacity 0.26s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 0.99;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #F3C978;
  font-size: 2.3rem;
  border: none;
  align-self: flex-end;
  margin: 25px 25px 12px 0;
  cursor: pointer;
  border-radius: 50%;
  padding: 2px 10px;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFE8BC;
  color: #2E2110;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  margin-top: 12vh;
}
.mobile-nav a {
  color: #FFF1D7;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  padding: 14px 32px;
  border-radius: 12px;
  text-shadow: 0px 1px 0px #4B3707;
  transition: background 0.20s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--mh-accent);
  color: var(--mh-primary);
  text-decoration: none;
}

@media (max-width: 1100px) {
  .main-nav a:not(.logo-link), .main-nav .cta-primary {
    font-size: 0.95rem;
    padding: 6px 8px;
  }
}
@media (max-width: 850px) {
  .main-nav .logo-link img {
    margin-right: 9px;
    height: 32px;
  }
}
@media (max-width: 780px) {
  .main-nav {
    padding: 6px 12px 6px 10px;
    justify-content: flex-start;
    gap: 8px;
  }
  .main-nav a:not(.logo-link):not(.cta-primary) {
    display: none;
  }
  .main-nav .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 781px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* HERO SECTION */
.hero {
  background: var(--mh-accent);
  background-image: repeating-linear-gradient(135deg, #FFF9E7 0px, #FFF9E7 6px, transparent 6px, transparent 20px),
    repeating-linear-gradient(-45deg, #FAECD2 0px, #FAECD2 8px, transparent 8px, transparent 26px);
  border-bottom: 5px solid #C9A73A;
  padding: 70px 0 50px 0;
  position: relative;
}
@media (max-width: 600px) {
  .hero {
    padding: 36px 0 28px 0;
  }
}
.hero h1 {
  font-size: 2.2rem;
  color: #1C253A;
  margin-bottom: 11px;
  font-family: 'Montserrat', Courier, serif;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 1px #FDDB77;
}
.hero p {
  color: #4F3B00;
  font-size: 1.15rem;
  margin-bottom: 23px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 620px;
}

/* FEATURES SECTIONS (Index, About, Services) */
.features, .features-about, .features-services, .features-references, .features-contact {
  margin-bottom: 60px;
}
.features .content-wrapper, .features-about .content-wrapper, .features-services .content-wrapper, .features-references .content-wrapper, .features-contact .content-wrapper {
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.features h2, .features-about h2, .features-services h2, .features-references h2, .features-contact h2 {
  margin-bottom: 9px;
}

/* Feature Grid Patterns */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
}
.feature-grid li {
  background: #FFF9EF;
  border: 2.5px dashed #E1D5B9;
  box-shadow: 0 2px 10px rgba(243,201,120,0.09);
  border-radius: 14px;
  padding: 22px 22px 18px 22px;
  min-width: 210px;
  flex: 1 1 200px;
  font-size: 1rem;
  color: #473518;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  transition: transform 0.15s, box-shadow 0.2s;
}
.feature-grid li:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 8px 20px rgba(243,201,120,0.16);
}
.feature-grid img {
  margin-bottom: 5px;
  height: 40px;
  width: 40px;
}

/* GENERIC LISTS IN SECTION */
section ul {
  margin-left: 20px;
  margin-bottom: 6px;
  list-style: disc;
  font-size: 1rem;
}
section ul li {
  margin-bottom: 9px;
  padding-left: 2px;
}

/* TESTIMONIALS & REVIEWS */
.testimonials, .testimonials-references {
  background: #fffbe6;
  margin-bottom: 60px;
  border-radius: 18px;
  padding: 40px 20px;
}
.testimonials h2, .testimonials-references h2 {
  color: #836229;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 26px 28px 20px 28px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 14px rgba(108,67,39,0.11);
  border: 2px solid #E6D0A1;
  min-width: 270px;
  max-width: 370px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, border 0.19s;
  position: relative;
  font-size: 1.03rem;
  color: #2d251b;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(191,153,58,0.16);
  border-color: #F3C978;
}
.testimonial-card blockquote { color: #2d251b; }
.testimonial-card cite { color: #795c15; font-family: 'Roboto', Arial, sans-serif; }

/* ABOUT, SERVICE, ETC. SECTION STYLING */
.about-company, .about-teaser, .service-list, .services-overview, .features-about, .features-services, .features-contact, .features-references, .contact-details, .privacy-policy, .gdpr, .cookie-policy, .terms-of-use, .faq-main, .faq-contact, .thankyou, .pricing, .cta-block, .cta-block-pricing {
  background: var(--mh-card-bg);
  border-radius: 18px;
  margin-bottom: 60px;
  box-shadow: 0 3px 18px var(--mh-card-shadow);
  padding: 40px 20px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 7px;
  list-style: none;
}
.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.01rem;
}
.contact-info-list img {
  height: 22px;
  width: 22px;
}

/* PRICING TABLE */
.pricing table {
  width: 100%;
  border-collapse: collapse;
  background: #fffcf3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 13px rgba(190,152,58,0.13);
  margin-bottom: 22px;
}
.pricing th, .pricing td {
  border: 1px solid #E6D0A1;
  padding: 12px 10px;
  text-align: left;
}
.pricing th {
  background: #f9efce;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #624F24;
  font-weight: 700;
}
.pricing tr:nth-child(odd) td {
  background: #fffbe9;
}

/* CTA Blocks */
.cta-block, .cta-block-pricing {
  background: var(--mh-accent);
  padding: 32px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}
.cta-block h2, .cta-block-pricing h2 {
  color: #1C253A;
}
@media (min-width: 700px) {
  .cta-block, .cta-block-pricing {
    flex-direction: row;
    justify-content: space-between;
    gap: 36px;
    text-align: left;
  }
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.faq-item {
  background: #fffbe6;
  border-left: 5px solid var(--mh-accent);
  padding: 23px 22px 18px 19px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(243,201,120,0.13);
  margin-bottom: 14px;
}
.faq-item h2 {
  font-size: 1.2rem;
  color: #99741F;
  margin-bottom: 10px;
}

.google-maps-placeholder {
  background: #F7EDD2;
  border: 2px dashed #EDD197;
  padding: 16px 24px;
  border-radius: 10px;
  color: #66572B;
  margin-top: 16px;
}

/* FOOTER */
footer {
  background: var(--mh-primary);
  color: #f6eeea;
  padding: 38px 0 10px 0;
  width: 100%;
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  font-size: 1rem;
}
.footer-content img {
  height: 38px;
  margin-bottom: 0px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 7px 0;
}
.footer-nav a {
  color: #F7D691;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 0.99rem;
  border-radius: 5px;
  transition: background 0.13s, color 0.13s;
  padding: 5px 9px;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--mh-accent);
  color: var(--mh-primary);
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.99rem;
  color: #FFE8BC;
}
@media (max-width: 700px) {
  .footer-content {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 12px; flex-wrap: wrap;
  }
  .footer-contact {
    flex-direction: column; align-items: flex-start; gap: 5px;
  }
}

/* SECTION SPACING & ALIGNMENT */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFFDF7;
  border-radius: 16px;
  box-shadow: 0 2px 13px #f3c97822;
  padding: 22px 19px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 870px) {
  .content-wrapper {
    gap: 18px;
  }
  .section, .about-company, .about-teaser, .service-list, .services-overview, .features-about, .features-services, .features-contact, .features-references, .contact-details, .privacy-policy, .gdpr, .cookie-policy, .terms-of-use, .faq-main, .faq-contact, .thankyou, .pricing, .cta-block, .cta-block-pricing {
    padding: 22px 4.5vw;
  }
  .hero {
    padding: 30px 0 18px 0;
  }
}
@media (max-width: 600px) {
  .section, .about-company, .about-teaser, .service-list, .services-overview, .features-about, .features-services, .features-contact, .features-references, .contact-details, .privacy-policy, .gdpr, .cookie-policy, .terms-of-use, .faq-main, .faq-contact, .thankyou, .pricing, .cta-block, .cta-block-pricing {
    border-radius: 10px;
    box-shadow: 0 1px 9px #e1ce997a;
    padding: 12px 2vw;
  }
  .testimonials, .testimonials-references {
    padding: 12px 3vw;
    border-radius: 7px;
  }
}

/* BUTTONS & INTERACTIVES */
button, .cta-primary, .cta-secondary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  cursor: pointer;
  outline: none;
}
button:focus-visible {
  outline: 2.5px dotted #99723d;
  outline-offset: 2px;
}

/* TABLES */
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  border: 1px solid #e5deb2;
  padding: 10px 7px;
}
tr:hover td {
  background: #FFF9E2;
}

/* UTILITY */
.mt-24 { margin-top: 24px; }
.mt-36 { margin-top: 36px; }
.mb-12 { margin-bottom: 12px; }
.mb-32 { margin-bottom: 32px; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ===========================
   COOKIE CONSENT BANNER
   =========================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 9999;
  background: #453920;
  color: #FFE8BC;
  padding: 17px 12px 14px 12px;
  box-shadow: 0 -3px 22px rgba(108,67,39,0.18);
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(.7,.2,.23,.99), opacity 0.33s;
  border-top: 3.5px solid var(--mh-accent);
}
.cookie-consent-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 16px;
  margin-left: 18px;
}
.cookie-btn {
  padding: 7px 18px;
  border-radius: 18px;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  border: none;
  margin-top: 0px;
  margin-bottom: 0px;
  cursor: pointer;
  transition: background 0.14s, color 0.12s;
}
.cookie-btn.accept {
  background: var(--mh-accent);
  color: var(--mh-primary);
  margin-left: 0;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #FFE8BC;
}
.cookie-btn.reject {
  background: #ffe7d4;
  color: var(--mh-vintage-red);
  border: 2px solid #EBAA90;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #f5d9ce;
}
.cookie-btn.settings {
  background: transparent;
  color: #FFE8BC;
  border: 2px solid #FFE8BC;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #FFE8BC;
  color: var(--mh-primary);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 10000;
  inset: 0;
  background: rgba(32,24,8, 0.48);
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.4s;
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fffbe6;
  border-radius: 20px;
  max-width: 420px;
  min-width: 280px;
  width: 90vw;
  box-shadow: 0 6px 42px rgba(190,152,58,0.18);
  padding: 34px 28px 28px 28px;
  color: var(--mh-primary);
  position: relative;
  font-size: 1.07rem;
  animation: modalDropIn 0.38s cubic-bezier(.78,.01,.32,.97);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
}
@keyframes modalDropIn {
  from { transform: translateY(-65px) scale(0.95); opacity:0; }
  to { transform: translateY(0) scale(1); opacity:1; }
}
.cookie-modal h2 {
  margin-bottom: 11px;
  color: #917312;
  font-size: 1.2rem;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .category-item {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-switch {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #ccc;
  border-radius: 40px;
  position: relative;
  outline: none;
  transition: background 0.18s;
}
.cookie-modal .cookie-switch:checked {
  background: #f3c978;
}
.cookie-modal .cookie-switch:before {
  content: '';
  position: absolute;
  width: 17px;
  height: 17px;
  background: white;
  border-radius: 50%;
  top: 1.5px; left:2px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: left 0.18s;
}
.cookie-modal .cookie-switch:checked:before {
  left: 17px;
}
.cookie-modal .category-label {
  font-weight: 600;
  color: #38290B;
  margin-right: 5px;
}
.cookie-modal .cookie-essential-label {
  color: #AD8A0C;
  font-size: 0.98rem;
  font-weight: 500;
  margin-left: 6px;
}
.cookie-modal .cookie-close-modal {
  position: absolute; top:13px; right:15px;
  background: transparent;
  color: #caab23;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 3px 6px;
  border-radius: 50%;
  transition: background 0.15s;
}
.cookie-modal .cookie-close-modal:hover, .cookie-modal .cookie-close-modal:focus {
  background: #FFEFBB;
}

/* Animations for opening/closing banners */
@keyframes cookieBannerSlideUp {
  from {transform: translateY(100%); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}
.cookie-consent-banner {
  animation: cookieBannerSlideUp 0.46s cubic-bezier(.27,.55,.65,1.01);
}

/* ================
   VINTAGE Details
   ================ */
/* Vintage badge */
.vintage-badge {
  background: var(--mh-accent);
  color: #3E2900;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  border-radius: 18px;
  padding: 3px 18px;
  letter-spacing: 0.06em;
  box-shadow: 0 1px 3px #4B370766;
}
/* Decorative dividers */
.section-divider {
  width: 120px;
  height: 6px;
  background: var(--mh-accent);
  border-radius: 8px;
  margin: 20px 0;
  position: relative;
  box-shadow: 0 2px 8px rgba(243,201,120,0.08);
}
/* Vintage shadow */
.vintage-shadow {
  box-shadow: 0 10px 38px 0 rgba(79, 48, 7, 0.16);
}
/* Retro pattern background for section */
.section.vintage-bg {
  background: #ffeec3 url('data:image/svg+xml,%3Csvg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="14" cy="14" r="3" fill="%23F3C978"/%3E%3C/svg%3E') repeat;
}

/* Miscellaneous */
hr {
  border: none;
  height: 2px;
  background: #F3C978;
  margin: 32px 0 28px 0;
  border-radius: 3px;
}

/* FOCUS / ACCESSIBILITY */
a:focus-visible, button:focus-visible, .cta-primary:focus-visible, .cta-secondary:focus-visible {
  outline: 2.5px dashed #B57E36;
  outline-offset: 3px;
}

/* ===== Scrollbars ===== */
body::-webkit-scrollbar {
  width: 11px;
  background: #F3C97833;
}
body::-webkit-scrollbar-thumb {
  background: #F3C97888;
  border-radius: 5px;
}

/* Hide scroll on cookie-modal-overlay (if modal open) */
body.cookie-modal-open { overflow: hidden; }

/* END CSS */
