/* 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  background-color: #FAEFE5;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F9F7F2;
  color: #342E1F;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
a {
  color: #234A75;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #CF7332;
  outline: none;
}
ul, ol {
  list-style: none;
}

/* BRAND FONTS (Vintage-Retro) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans:wght@400;600&family=Fredoka+One&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Fredoka One', 'Open Sans', Arial, sans-serif;
  color: #2D1821;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 1px 2px 0px #f7e6d0;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.12;
  margin-bottom: 20px;
  font-family: 'Fredoka One', 'Montserrat', Arial, sans-serif;
  color: #234A75;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #B05836;
  text-shadow: 1px 1px 0 #EBDCAA;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 14px;
  color: #234A75;
}
h4, h5, h6 {
  font-size: 1.125rem;
  color: #57432C;
}
p, ul, ol, blockquote, .feature-item p, .testimonial-card p {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #57432C;
  margin-bottom: 12px;
}
strong {
  font-weight: 600;
}
blockquote {
  font-style: italic;
  padding: 18px 24px;
  border-left: 6px solid #CF7332;
  background: #FFF9EF;
  margin-bottom: 24px;
}
blockquote footer {
  display: block;
  margin-top: 10px;
  color: #B05836;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
}

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

.content-wrapper {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  padding: 0;
}

/* --- RETRO VINTAGE COLORS --- */
:root {
  --primary: #234A75;
  --secondary: #57B6A9;
  --accent: #F3F6F9;
  --cream: #fcf6ec;
  --retro-orange: #CF7332;
  --retro-mustard: #EBDCAA;
  --retro-brown: #B05836;
  --retro-bg: #FAEFE5;
  --retro-shadow: 0 6px 24px 0 rgba(78,56,38,0.08);
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: var(--retro-mustard);
  border-bottom: 4px solid var(--retro-brown);
  box-shadow: 0 2px 16px 0 rgba(46,28,23,0.03);
  font-family: 'Montserrat', Arial, sans-serif;
  position: relative;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo img {
  height: 48px;
  width: auto;
  margin-right: 12px;
  filter: sepia(0.25) saturate(1.2) hue-rotate(-10deg);
}
nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  letter-spacing: 0.08em;
  color: #3B2518;
  padding: 9px 0;
  border-bottom: 2px solid transparent;
  transition: border, color 0.18s cubic-bezier(.4,0,.2,1);
}
nav a:hover, nav a:focus {
  color: var(--retro-orange);
  border-bottom: 2px solid var(--retro-orange);
}
.cta.primary {
  background: var(--retro-orange);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  border-radius: 30px;
  padding: 12px 32px;
  box-shadow: 0 3px 12px 0 #e8c7ad99;
  border: none;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-left: 22px;
  transition: background 0.2s, transform 0.13s;
  position: relative;
  outline: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: #b05836;
  color: #ffe9c2;
  transform: translateY(-2px) scale(1.05);
}
.cta {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  border-radius: 26px;
  padding: 10px 24px;
  box-shadow: 0 2px 10px 0 #e8f4f196;
  border: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.015em;
  text-align: center;
  transition: background 0.16s, box-shadow 0.14s, transform 0.12s;
  outline: none;
}
.cta:hover, .cta:focus {
  background: var(--primary);
  color: #fff8f2;
  box-shadow: 0 4px 18px 0 #cf733220;
  transform: translateY(-1px) scale(1.04);
}

/* --- FLEX LAYOUTS (NO GRID) --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF8F0;
  border-radius: 22px;
  box-shadow: var(--retro-shadow);
  border: 2px solid #EBDCAA;
  padding: 24px 18px;
}
.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;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FCF9F5;
  border-radius: 21px;
  border: 1.5px solid #EBDCAA;
  box-shadow: 0 3px 20px 0 #faefe552;
  padding: 26px 22px 18px 22px;
  min-width: 270px;
  flex: 1 1 265px;
  margin-bottom: 16px;
  position: relative;
  transition: box-shadow 0.14s, transform 0.16s;
}
.feature-item img {
  height: 44px;
  width: 44px;
  margin-bottom: 0;
  filter: sepia(0.3) contrast(1.2) hue-rotate(-15deg);
  border-radius: 50%;
  box-shadow: 0 1px 5px #e2d0b3aa;
  background: #fffefd;
  padding: 4px;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 6px 32px 0 #b0583622;
  transform: translateY(-2px) scale(1.025);
}
.feature-item ul {
  list-style: disc inside;
  margin-left: 5px;
  color: #7c5b39;
  padding-left: 14px;
  font-size: 1rem;
}
.feature-item li {
  margin: 0 0 5px;
}

/* --- HERO SECTION --- */
.hero {
  background: repeating-linear-gradient(-45deg, #F3DDC1 0px, #F3DDC1 18px, #FAEFE5 18px, #FAEFE5 36px);
  border-bottom: 3px dashed #CF7332;
  padding-top: 56px;
  padding-bottom: 56px;
  margin-bottom: 52px;
}
.hero .content-wrapper {
  align-items: center;
  padding: 0 8px;
}
.hero h1 {
  color: #234A75;
  letter-spacing: 0.01em;
  text-shadow: 2px 3px 0 #EBDCAA;
}
.hero p {
  font-size: 1.33rem;
  margin-bottom: 22px;
  color: #57432C;
}

/* --- CTA SECTION --- */
.cta-section {
  background: var(--retro-brown);
  border-radius: 40px;
  box-shadow: 0 8px 22px 0 #b0583612;
  color: #fff;
  margin: 46px 0 22px 0;
  padding: 44px 0 40px 0;
}
.cta-section h2,
.cta-section p {
  color: #fff;
  text-shadow: 1px 1px 0 #cf7332;
}
.cta-section .cta {
  margin-top: 10px;
}

/* --- TESTIMONIAL CARDS --- */
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fffdf9;
  border: 2px solid #EBDCAA;
  border-radius: 22px;
  box-shadow: 0 3px 16px 0 #234a7514;
  flex: 1 1 320px;
  max-width: 390px;
  min-width: 250px;
  margin-bottom: 18px;
  transition: box-shadow 0.15s, transform 0.14s;
  position: relative;
  z-index: 1;
}
.testimonial-card p {
  color: #234A75;
  font-size: 1.17rem;
  margin-bottom: 10px;
  font-style: italic;
}
.testimonial-card span {
  color: #B05836;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.testimonial-card:before {
  content: '\201C';
  font-family: 'Fredoka One', serif;
  font-size: 46px;
  color: #CF7332;
  position: absolute;
  left: 22px;
  top: 8px;
  line-height: 1;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 32px 0 #234a7530;
  transform: scale(1.03);
  border-color: #CF7332;
}

/* --- BLOG TEASERS --- */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 30px;
}
.blog-teaser {
  background: #FEF6ED;
  border: 2px solid #EBDCAA;
  border-radius: 19px;
  box-shadow: 0 5px 18px 0 #b0583622;
  padding: 22px 20px 14px 20px;
  flex: 1 1 275px;
  min-width: 240px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, border 0.16s, transform 0.14s;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.blog-teaser h3 {
  margin-bottom: 1px;
  font-size: 1.175rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.blog-teaser h3 a {
  color: #CF7332;
  border-bottom: 2px dotted #cf7332;
  transition: color 0.19s, border 0.15s;
}
.blog-teaser h3 a:hover, .blog-teaser h3 a:focus {
  color: #234A75;
  border-bottom: 2px solid #234A75;
}
.blog-teaser .category {
  background: #EBDCAA;
  color: #B05836;
  border-radius: 13px;
  font-size: 0.99rem;
  padding: 2px 14px;
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: .07em;
}

/* --- FOOTER --- */
footer {
  background: #F3DDC1;
  border-top: 4px solid #CF7332;
  box-shadow: 0 -1px 24px 0 #b058360a;
  padding: 36px 0 18px 0;
  font-size: 1.03rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 7px;
}
.footer-nav a {
  color: #234A75;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: underline wavy #EBDCAA;
  font-size: 1rem;
}
.footer-nav a:hover {
  text-decoration: underline wavy #CF7332;
  color: #CF7332;
}
.footer-contact {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
  color: #57432C;
  font-size: 0.99rem;
}
.footer-contact span {
  display: flex;
  gap: 6px;
  align-items: center;
}
.footer-contact img {
  height: 18px;
  width: 18px;
}
.footer-brand {
  color: #B05836;
  font-size: 1.04rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 12px;
}

/* --- CONTACT INFO FLEX --- */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 18px;
  margin-bottom: 16px;
}
.address-block, .phone-email, .business-hours, .map-block {
  background: #FFF7ED;
  border: 2px dashed #EBDCAA;
  border-radius: 16px;
  padding: 18px 19px;
  min-width: 220px;
  flex: 1 1 190px;
  margin-bottom: 12px;
}
.address-block img, .phone-email img {
  height: 17px;
  width: 17px;
  margin-right: 6px;
}

/* --- Forms (if any present) --- */
input,textarea,select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 11px;
  border: 2px solid #EBDCAA;
  background: #FFF9F3;
  padding: 11px 14px;
  margin-bottom: 18px;
  outline: none;
  transition: box-shadow 0.18s, border 0.12s;
  box-shadow: 0 1px 4px 0 #EBDCAA34;
}
input:focus,textarea:focus,select:focus {
  border: 2.5px solid #CF7332;
  box-shadow: 0 2px 10px 0 #CF733236;
}

/* --- BLOG CATEGORY FILTER --- */
.categories-filter {
  display: flex;
  gap: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 7px;
  align-items: baseline;
  flex-wrap: wrap;
}
.categories-filter a {
  color: #CF7332;
  font-weight: 700;
  text-decoration: underline dotted #EBDCAA;
  padding: 2px 4px;
}
.categories-filter a:hover {
  color: #234A75;
  text-decoration: underline solid #234A75;
}
.categories-filter span {
  font-weight: 600;
  font-size: 1rem;
  color: #B05836;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  z-index: 150;
  background: #fce9cd;
  border-top: 3px solid #CF7332;
  color: #2D1821;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 -2px 12px #b0583620;
  padding: 18px 20px 18px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  animation: fadeInBanner 0.82s cubic-bezier(.19,1,.22,1);
}
@keyframes fadeInBanner {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: none; }
}
.cookie-banner .cookie-banner__text {
  flex: 2 1 280px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #3b2518;
}
.cookie-banner .cookie-banner__actions {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 19px;
  border: none;
  font-size: 1rem;
  padding: 8px 22px;
  font-weight: 700;
  cursor: pointer;
  margin-right: 6px;
  transition: background 0.15s, color 0.13s, box-shadow 0.12s;
}
.cookie-banner .btn-accept {
  background: var(--retro-orange);
  color: #fff;
  box-shadow: 0 1.5px 8px #b058363a;
}
.cookie-banner .btn-accept:hover {
  background: var(--retro-brown);
  color: #fbe0bb;
}
.cookie-banner .btn-reject {
  background: #EBDCAA;
  color: #B05836;
}
.cookie-banner .btn-reject:hover {
  background: #234A75;
  color: #fff;
}
.cookie-banner .btn-settings {
  background: #fff;
  color: var(--retro-orange);
  border: 1.5px solid #EBDCAA;
}
.cookie-banner .btn-settings:hover {
  background: #f3ddc1;
  color: #234A75;
  border-color: #CF7332;
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 151;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(42,32,20, 0.33);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: opacity 0.3s;
}
.cookie-modal {
  background: #fffbe8;
  border-radius: 25px;
  box-shadow: 0 7px 42px #234a7533;
  padding: 28px 30px 18px 30px;
  width: 90vw;
  max-width: 385px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2d1821;
  position: relative;
  animation: popInCookie 0.45s cubic-bezier(.13,1.2,.25,1.1);
}
@keyframes popInCookie {
  from { opacity: 0; transform: scale(0.4) translateY(60px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.32rem;
  color: #CF7332;
  margin-bottom: 11px;
}
.cookie-modal .cookie-pref-category {
  margin: 11px 0 13px 0;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.03rem;
  padding: 8px 0;
}
.cookie-modal label {
  flex: 1 1 80%;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #57432C;
}
.cookie-modal input[type="checkbox"] {
  margin-right: 10px;
  accent-color: #CF7332;
  height: 20px; width: 20px;
}
.cookie-modal .cookie-modal__actions {
  display: flex;
  gap: 13px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .btn-save {
  background: var(--retro-orange);
  color: #fff;
}
.cookie-modal .btn-cancel {
  background: #EBDCAA;
  color: #B05836;
}
.cookie-modal .btn-save:hover {
  background: #234A75;
  color: #fffbe8;
}
.cookie-modal .btn-cancel:hover {
  background: #f3ddc1;
  color: #234A75;
}

/* --- MOBILE FIRST RESPONSIVENESS --- */
@media (max-width: 1100px) {
  .feature-item {flex: 1 1 190px; min-width: 180px;}
  .testimonial-card {max-width: 95vw;}
}
@media (max-width: 900px) {
  .container {max-width: 95vw;}
  .hero {padding-top: 32px; padding-bottom: 32px;}
  .feature-item {min-width: 160px;}
}
@media (max-width: 768px) {
  header .container {flex-direction: row; flex-wrap: wrap; gap: 12px;}
  nav { display: none; }
  .cta.primary { display: none; }
  .mobile-menu-toggle { display: block; }
  .feature-grid, .blog-list, .testimonial-cards, .content-grid, .card-container, .categories-filter, .footer-contact, .contact-info {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 20px !important;
  }
  .feature-item, .testimonial-card, .blog-teaser, .card, .address-block, .phone-email, .business-hours, .map-block {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .section, .cta-section {
    padding: 20px 8px;
    margin-bottom: 39px;
    border-radius: 21px;
  }
  .hero {padding-top: 22px; padding-bottom: 22px;}
  .footer-contact, .footer-nav {
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
  }
  .content-wrapper {
    padding: 0;
  }
  .testimonial-card {padding: 13px;}
  .cookie-banner {padding: 12px 6vw; gap: 13px; flex-direction: column; align-items: stretch;}
}
@media (max-width: 520px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.33rem;}
  .hero {padding-top: 9px; padding-bottom: 17px;}
  .section, .cta-section {padding: 10px 2px;}
  .cookie-modal {padding: 17px 5vw 11px 5vw; min-width: 0;}
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: var(--retro-orange);
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  border: none;
  width: 50px;height: 50px;
  position: absolute;
  right: 17px;
  top: 12px;
  cursor: pointer;
  z-index: 60;
  box-shadow: 0 2px 12px #CF733236;
  transition: background 0.2s, color 0.14s, transform 0.13s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #234A75;
  color: #fffbe8;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #FAEFE5;
  z-index: 170;
  transform: translateX(-110vw);
  transition: transform 0.37s cubic-bezier(.61,.17,.23,1.01);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: 0 0 30px 0 #CF733236;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #CF7332;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 46px; height: 46px;
  position: absolute;
  top: 18px; right: 18px;
  z-index: 181;
  cursor: pointer;
  box-shadow: 0 1px 12px #57432c4a;
  transition: background 0.13s, color 0.09s, transform 0.13s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #234A75;
  color: #FFD6B0;
}
.mobile-nav {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 0 32px 32px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.225rem;
  color: #B05836;
  background: #F3DDC1;
  border-radius: 16px;
  padding: 10px 20px;
  font-weight: 600;
  letter-spacing: .01em;
  width: 100%;
  margin-bottom: 0;
  transition: background 0.17s, color 0.11s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #CF7332;
  color: #fff;
}

/* --- THANK YOU SECTION --- */
.thank-you {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(135deg,#FAEFE5 0 20px,#f7e0bb 22px,#FAEFE5 40px);
}

/* --- MICRO-INTERACTIONS & TRANSITIONS --- */
button, [type="button"], [type="submit"] {
  transition: background 0.15s, color 0.12s, box-shadow 0.13s, transform 0.10s;
}
::-webkit-input-placeholder { color: #B05836; }
::-moz-placeholder { color: #B05836; }
:-ms-input-placeholder { color: #B05836; }
::placeholder { color: #B05836; }

/* --- Z-INDEX SAFEGUARDS --- */
header, .mobile-menu, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner, .cookie-modal-overlay, .cookie-modal {
  z-index: 100;
}

/* --- VISUAL RETRO DETAILS --- */
.feature-item, .testimonial-card, .blog-teaser, .card, .address-block, .phone-email, .business-hours, .map-block {
  background-image: repeating-linear-gradient(150deg, transparent, transparent 36px, #F3DDC1 40px);
}

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

/* === END === */
