/* --- 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,
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FCF7EF;
  color: #202021;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  letter-spacing: 0.015em;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 12px;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}

/* --- BRANDING - FONTS & COLORS --- */
:root {
  --color-primary: #264666;
  --color-secondary: #F7F7F7;
  --color-accent: #71AFC6;
  --color-vintage1: #E8D3A4;  /* pale but warm sand */
  --color-vintage2: #c97e4c;  /* burnt orange */
  --color-vintage3: #56816d;  /* pine green */
  --color-dark: #24303C;
  --color-light: #FFF9EC;
  --color-grey: #A59B86;
  --card-shadow: 0 2px 16px 0 rgba(41,37,36,0.07);
}

@font-face {
  font-family: 'Montserrat';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: local('Montserrat Bold'), local('Montserrat-Bold'),
    url('https://fonts.gstatic.com/s/montserrat/v25/JTURjIg1_i6t8kCHKm45_dJE3gnD-w.ttf') format('truetype');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: local('IBM Plex Mono Bold'),
    url('https://fonts.gstatic.com/s/ibmplexmono/v12/-F62fjtqLzI2JPCgQBnw7HFQogg.ttf') format('truetype');
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'IBM Plex Mono', Arial, sans-serif;
  font-weight: bold;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 12px;
  text-transform: none;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.38rem; margin-bottom: 8px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
p, li, ul, ol {
  font-size: 1rem;
  color: #332E23;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
strong { font-weight: bold; }

/* Vintage decorative font for retro logo/elements */
.logo {
  font-family: 'IBM Plex Mono', 'Montserrat', Arial, sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.03em;
  color: var(--color-vintage2);
  text-shadow: 1px 1px 0 #ecd09c;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}
.logo img { height: 50px; width: auto; border-radius: 6px; }

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: var(--color-vintage1);
  border-bottom: 3px solid var(--color-primary);
  box-shadow: 0 2px 12px 0 rgba(41,37,36,0.09);
  position: relative;
  z-index: 30;
}
header > .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 80px;
}
.logo {
  flex-shrink: 0;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  font-family: 'IBM Plex Mono', 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  border-radius: 6px;
  padding: 6px 12px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav a::after {
  content: "";
  display: block;
  height: 3px;
  width: 0%;
  background: var(--color-vintage2);
  margin-top: 2px;
  transition: width 0.25s;
  border-radius: 2px;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-vintage3);
  color: #fff;
}
.main-nav a:hover::after {
  width: 80%;
}

.cta.primary {
  background: var(--color-vintage2);
  color: #fff;
  padding: 10px 28px;
  border-radius: 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.17rem;
  font-weight: 700;
  box-shadow: 0 3px 14px 0 rgba(41,37,36,0.14);
  border: 2px solid var(--color-primary);
  letter-spacing: 0.03em;
  cursor: pointer;
  text-shadow: 0 1px 0 #aa5c2a;
  margin-left: 18px;
  transition: background 0.18s, color 0.18s;
}
.cta.primary:hover, .cta.primary:focus {
  background: #a34300;
  color: #f7deaf;
}
.cta.secondary {
  background: var(--color-vintage3);
  color: #fff;
  padding: 10px 22px;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: 0 2px 8px 0 rgba(41,37,36,0.09);
  border: 2px solid var(--color-primary);
  letter-spacing: 0.03em;
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.16s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--color-vintage2);
}

/* HAMBURGER MOBILE BUTTON */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  padding: 8px 18px;
  border-radius: 10px;
  transition: background 0.15s;
  z-index: 51;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-vintage2);
  color: #fff;
  outline: none;
}

/* --- MOBILE NAVIGATION MENU --- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-light);
  z-index: 999;
  transform: translateX(-110vw);
  transition: transform 0.38s cubic-bezier(.68,-0.08,.56,1.1);
  box-shadow: 4px 0 30px 0 rgba(41,37,36,0.16);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-vintage2);
  color: #fff;
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  margin: 24px 24px 12px 0;
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #a34300;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 32px 0 40px;
  font-family: 'IBM Plex Mono', 'Montserrat', Arial, sans-serif;
}
.mobile-nav a {
  font-size: 1.23rem;
  color: var(--color-primary);
  border-radius: 7px;
  padding: 13px 0 13px 10px;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}

@media (max-width: 1023px) {
  .main-nav, .cta.primary {
    display: none!important;
  }
  .mobile-menu-toggle {
    display: block!important;
  }
}

@media (min-width: 1024px) {
  .mobile-menu, .mobile-menu.open { display: none!important; }
  .mobile-menu-toggle { display: none!important; }
}

/* --- MAIN LAYOUT SECTIONS --- */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-light);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  position: relative;
}

@media (max-width: 990px) {
  .section, section {
    padding: 28px 10px;
    margin-bottom: 38px;
    border-radius: 15px;
  }
}
@media (max-width: 600px) {
  .section, section {
    padding: 14px 2vw;
    margin-bottom: 30px;
    border-radius: 10px;
  }
}

/* --- VINTAGE RETRO DECORATIVE ACCENTS --- */
.section::before {
  content: "";
  display: block;
  position: absolute;
  left: 18px;
  top: 27px;
  width: 44px;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--color-vintage2), var(--color-vintage2) 22px, transparent 22px, transparent 44px);
  border-radius: 3px;
  opacity: 0.22;
  z-index: 0;
}
.section > .container { position: relative; z-index: 3; }

/* --- FLEX LAYOUTS --- */
.card-container, .feature-grid, .service-summary-cards, .service-list, .testimonial-list, .post-list, .case-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.card, .service-card, .feature-item, .service-block, .testimonial-card, .text-section {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 22px 0 rgba(41,37,36,0.11);
  padding: 24px 21px 19px 21px;
  flex: 1 1 300px;
  min-width: 270px;
  transition: box-shadow 0.18s, transform 0.18s;
  z-index: 2;
}
.card:hover, .service-card:hover, .feature-item:hover, .testimonial-card:hover, .service-block:hover {
  box-shadow: 0 8px 36px 0 rgba(41,37,36,0.16);
  transform: translateY(-2px) scale(1.01);
}
.case-snippets .text-section {
  background: var(--color-vintage1);
  border-radius: 13px;
  box-shadow: 0 2px 10px 0 rgba(41,37,36,0.08);
  min-width: 250px;
}

.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;
  margin-bottom: 20px;
}
@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;
  background: var(--color-secondary);
  border-left: 7px solid var(--color-vintage2);
  padding: 19px 18px 18px 18px;
  min-width: 220px;
}
.feature-item img {
  width: 52px;height: 52px; object-fit: contain;
  filter: sepia(0.55) contrast(1.1) hue-rotate(3deg) saturate(1.2);
  margin-bottom: 3px;
}
.feature-item h3 {
  font-size: 1.12rem; color: var(--color-vintage3);
}

.service-card {
  border-left: 7px solid var(--color-vintage3);
  background: #FFE7C4;
  min-width: 210px;
}
.service-card h3 {
  color: var(--color-vintage2);
  font-family: 'IBM Plex Mono', 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.02em;
  font-size: 1.07rem;
}

.service-block {
  border-left: 7px solid var(--color-vintage2);
  background: #fff8ea;
  min-width: 250px;
}
.service-block strong {
  color: var(--color-vintage3);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  color: #222;
  border-left: 7px solid var(--color-vintage3);
  box-shadow: 0 6px 28px 0 rgba(41,37,36,0.11);
  padding: 20px 24px 20px 21px;
  margin-bottom: 20px;
  min-width: 245px;
  max-width: 400px;
  transition: box-shadow 0.19s, transform 0.14s;
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #222;
  font-style: italic;
  letter-spacing: 0.012em;
}
.testimonial-card .author {
  font-family: 'IBM Plex Mono', 'Roboto', Arial, sans-serif;
  font-size: 0.97rem;
  color: var(--color-vintage2);
  font-weight: 600;
  margin-top: 6px;
  letter-spacing: 0.017em;
}

.process-outline {
  background: var(--color-vintage1);
  border-radius: 11px;
  box-shadow: 0 2px 8px 0 rgba(41,37,36,0.07);
  border-left: 6px solid var(--color-vintage3);
  margin-top: 16px;
  margin-bottom: 17px;
  padding-top: 12px;
}

.working-hours {
  display: flex;
  align-items: center;
  font-family: 'IBM Plex Mono', 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  gap: 9px;
  margin: 16px 0 0 0;
}
.working-hours img { width: 22px; height: 22px; margin-right: 7px; }

/* --- HERO STYLES --- */
.hero {
  background: linear-gradient(103deg,#FFE7C4 0%, #ffedd2 67%, var(--color-vintage1) 100%);
  border-radius: 0 0 38px 38px;
  box-shadow: 0 8px 36px 0 rgba(41,37,36,0.11);
  padding-top: 68px;
  padding-bottom: 60px;
}
.hero .container { align-items: center; }
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 700px;
  gap: 19px;
}
.hero h1 {
  font-size: 2.8rem;
  color: var(--color-vintage2);
  font-family: 'IBM Plex Mono', 'Montserrat', Arial, sans-serif;
  text-shadow: 0 2px 0 #FBDEA6;
}
.hero p {
  font-size: 1.18rem;
  color: #202021;
  margin-bottom: 12px;
}
@media (max-width: 460px) {
  .hero { padding-top: 35px; padding-bottom: 32px; border-radius: 0 0 15px 15px; }
  .hero h1 { font-size: 1.50rem; }
}

/* --- CTA BOTTOM --- */
.cta-bottom {
  background: var(--color-vintage3);
  border-radius: 25px;
  text-align: center;
  color: #fff;
  box-shadow: 0 2px 22px 0 rgba(41,37,36,0.16);
  margin-bottom: 52px;
}
.cta-bottom h2, .cta-bottom p {
  color: #fff;
}
.cta-bottom .cta.primary {
  background: #f7deaf;
  color: var(--color-vintage2);
  border: 2px solid #fff;
  margin: 0 auto;
}
.cta-bottom .cta.primary:hover, .cta-bottom .cta.primary:focus {
  background: var(--color-vintage2);
  color: #fff;
}

/* --- BLOG POSTS --- */
.post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
  justify-content: flex-start;
}
.post-list .text-section {
  background: #fffdf6;
  border-left: 7px solid var(--color-accent);
  min-width: 240px;
}
.search-filter {
  background: var(--color-vintage1);
  border-radius: 11px;
  border-left: 6px solid var(--color-vintage2);
  box-shadow: 0 1px 8px 0 rgba(41,37,36,0.08);
  margin-bottom: 12px;
}

/* --- FOOTER --- */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 36px 0 12px 0;
  border-radius: 38px 38px 0 0;
  box-shadow: 0 -2px 16px 0 rgba(41,37,36,0.09);
  margin-top: 80px;
  font-family: 'IBM Plex Mono', 'Montserrat', Arial, sans-serif;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  justify-content: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #ffe7cd;
  font-size: 1.02rem;
  text-decoration: underline;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-vintage2);
}
.company-data {
  color: #FFF9EE;
  font-size: 0.97rem;
  margin-bottom: 10px;
  text-align: center;
  line-height: 1.55;
}
.company-data span {
  font-weight: 700;
  color: #ffe7cd;
  margin-right: 7px;
}

/* --- LEGAL SECTIONS --- */
.legal-section {
  background: #fffdf6;
  border-left: 12px double var(--color-vintage2);
  border-radius: 13px;
  box-shadow: 0 2px 13px 0 rgba(41,37,36,0.09);
}

/* --- THANK YOU PAGE --- */
.thank-you-section h1 {
  font-size: 1.65rem;
  color: var(--color-vintage3);
  text-shadow: 0 1px 0 #ffe7cd;
  margin-bottom: 19px;
}

/* --- STATIC MAP MOCK --- */
.static-map {
  background: url('assets/img/map-vintage.svg') center center no-repeat;
  background-color: #FFE7C4;
  border-radius: 12px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 13px;
  color: #264666;
  margin-bottom: 18px;
}

/* --- MISC ELEMENTS --- */
.text-section ul li, .text-section ol li,
.text-section li {
  margin-bottom: 6px;
  font-size: 1rem;
}
.text-section ul {
  margin-bottom: 15px;
}
.text-section h3 {
  margin-bottom: 7px;
}
.text-section a {
  text-decoration: underline;
  color: var(--color-primary);
}
.text-section a:hover, .text-section a:focus {
  color: var(--color-vintage2);
}
@media (max-width: 900px) {
  .main-nav { gap: 11px; }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 900px) {
  .card-container, .feature-grid, .service-summary-cards, .service-list, .testimonial-list, .post-list, .case-snippets, .footer-nav {
    gap: 14px;
  }
  .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .container { padding: 0 10px; }
  .main-nav { font-size: 0.97rem; }
  .feature-item, .text-section, .service-card, .service-block, .testimonial-card, .case-snippets .text-section {
    min-width: 94vw;
    max-width: 99vw;
    width: 100%;
  }
  .card-container, .feature-grid, .service-summary-cards, .service-list, .testimonial-list, .post-list, .case-snippets {
    flex-direction: column;
    gap: 19px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 9px;
  }
}
@media (max-width: 600px) {
  footer { border-radius: 17px 17px 0 0; margin-top: 38px; padding: 18px 0 4px 0; }
  .company-data { font-size: 0.89rem; }
}

/* --- BUTTONS --- */
button, .cta {
  outline: none;
  border: none;
  transition: background 0.17s, color 0.17s, box-shadow 0.14s, transform 0.12s;
}
button:active, .cta:active {
  transform: scale(0.97);
}

/* --- MICRO-INTERACTIONS & HOVER EFFECTS --- */
.card:hover, .service-card:hover, .feature-item:hover, .service-block:hover, .testimonial-card:hover {
  box-shadow: 0 10px 40px 0 rgba(201,126,76,0.13), 0 2px 8px #c97e4c18;
  z-index: 5;
}
.cta:active {
  box-shadow: 0 1px 1px #c97e4c22;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; width: 100vw;
  z-index: 1300;
  background: #fffbe8;
  border-top: 4px solid var(--color-vintage2);
  box-shadow: 0 -3px 18px 0 rgba(41,37,36,0.11);
  padding: 24px 18px 24px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1rem;
}
.cookie-banner p {
  flex: 1;
  margin-bottom: 0;
  color: #24303C;
  font-size: 0.99rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-banner button {
  padding: 8px 24px;
  border-radius: 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin: 0;
  border: 2px solid var(--color-vintage2);
  background: #fff9ec;
  color: var(--color-vintage2);
  cursor: pointer;
}
.cookie-banner button.accept {
  background: var(--color-vintage2);
  color: #fff;
  border: 2px solid var(--color-vintage2);
  margin-right: 5px;
}
.cookie-banner button.accept:hover { background: #a34300; color: #fffbe8; }
.cookie-banner button.reject {
  background: #fff;
  color: var(--color-vintage2);
  border: 2px solid var(--color-vintage2);
}
.cookie-banner button.reject:hover { background: #fffbe8; color: #a34300; }
.cookie-banner button.settings {
  background: #FFC288;
  color: var(--color-primary);
  border: 2px solid var(--color-vintage2);
}
.cookie-banner button.settings:hover { background: #fffbe8; color: #a34300; }

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 8px;
    gap: 11px;
    font-size: 0.93rem;
  }
  .cookie-banner .cookie-actions { flex-direction: column; gap: 10px; }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(41,37,36,0.25);
  z-index: 1500;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fffdf6;
  border-radius: 22px;
  padding: 40px 19px 30px 28px;
  min-width: 320px;
  max-width: 99vw;
  box-shadow: 0 6px 40px -6px #c97e4c24;
  z-index: 1700;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal h3 {
  color: var(--color-vintage2);
  margin-bottom: 6px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid #ffd5b2;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-size: 1.01rem;
  color: var(--color-dark);
  font-weight: 500;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--color-vintage2);
  width: 22px;
  height: 22px;
  border-radius: 7px;
}
.cookie-category .always-on-label {
  color: var(--color-accent);
  font-size: 0.93rem;
  font-weight: 600;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 18px;
}
.cookie-modal button {
  background: var(--color-vintage2);
  color: #fff;
  border: 2px solid var(--color-vintage2);
  border-radius: 12px;
  font-size: 1.03rem;
  padding: 9px 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  cursor: pointer;
}
.cookie-modal button.close {
  background: #fff9ec;
  color: var(--color-vintage2);
  border: 2px solid var(--color-vintage2);
}
.cookie-modal button.close:hover {
  background: #ffe7cd;
  color: #a34300;
}
.cookie-modal button.save {
  background: var(--color-vintage3);
  color: #fff;
}
.cookie-modal button.save:hover { background: #56816dcc; }
@media (max-width: 500px) {
  .cookie-modal { padding: 27px 2vw 17px 2vw; min-width: 90vw; }
}

/* --- RETRO VINTAGE PATTERNS (Decorative only, not on content) --- */
body:before {
  content: "";
  position: fixed;
  right: 0; top: 0; width: 270px; height: 270px;
  background: repeating-linear-gradient(135deg, var(--color-vintage2) 0, var(--color-vintage2) 24px, transparent 24px, transparent 48px);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
body:after {
  content: "";
  position: fixed;
  left: 0; bottom: 0; width: 180px; height: 170px;
  background: repeating-linear-gradient(45deg, var(--color-vintage3) 0, var(--color-vintage3) 18px, transparent 18px, transparent 36px);
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}

/* --- SCROLLBAR (Styled for vintage look) --- */
::-webkit-scrollbar {
  width: 11px;
  background: #faecd5;
}
::-webkit-scrollbar-thumb {
  background: #c97e4c;
  border-radius: 7px;
  border: 2px solid #ffe7cd;
}

/* --- PRINT SUPPORT --- */
@media print {
  header, .main-nav, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay, .footer-nav { display: none !important; }
  .section, section, .container { box-shadow: none!important; background: #fff!important; }
}
