/* =================================================================== */
/* CSS RESET & BASE TYPOGRAPHY NORMALIZATION */
/* =================================================================== */

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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F9F7F2;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  padding: 0;
}

/* =================================================================== */
/* VINTAGE RETRO BRAND COLORS & TYPOGRAPHY */
/* =================================================================== */
:root {
  --primary: #8A1E2B;
  --secondary: #26734D;
  --accent: #F3F3EE;
  --text-dark: #3a291b;
  --text-light: #FFFFFF;
  --retro-yellow: #F7D774;
  --retro-mint: #99C2A2;
  --retro-beige: #F3EEE8;
  --retro-orange: #F49A57;
  --retro-brown: #7B5749;
  --shadow-retro: 0 6px 32px 0 rgba(85,50,34,0.09), 0 2px 8px 0 rgba(122,77,68,0.07);
  --radius: 14px;
  --font-display: 'EB Garamond', Garamond, 'Times New Roman', serif;
  --font-body: 'Roboto', Arial, sans-serif;
}
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 400;
  src: local('EB Garamond'), url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;700&display=swap');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
}
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--accent);
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--primary);
  text-shadow: 0 2px 0 #efd9c7;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 18px;
  line-height: 1.1;
}
h2 {
  font-size: 2.1rem;
  margin-bottom: 16px;
  line-height: 1.2;
  border-bottom: 3px dotted var(--secondary);
  display: inline-block;
  padding-bottom: 4px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--secondary);
  font-family: var(--font-display);
}
h4,h5,h6 {
  font-family: var(--font-display);
}

p, li, .price {
  font-family: var(--font-body);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
}
strong {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
}

/* =================================================================== */
/* GENERAL LAYOUT STRUCTURE */
/* =================================================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
header, footer {
  width: 100%;
  background: var(--accent);
  box-shadow: 0 4px 22px 0 rgba(106,53,40,0.07);
  z-index: 20;
}
header .container, footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 84px;
  flex-wrap: wrap;
}
footer .footer-main {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  position: relative;
  padding-top: 34px;
  padding-bottom: 24px;
  border-top: 3px grooved var(--retro-brown);
}
.logo,
.logo-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img, .logo-footer img {
  height: 54px;
  width: auto;
}
.footer-menu {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-menu a {
  color: var(--secondary);
  font-weight: 600;
  font-size: 16px;
  position: relative;
  transition: color 0.3s;
}
.footer-menu a:hover {
  color: var(--primary);
  text-decoration: underline wavy var(--primary);text-underline-offset:2px;
}
.footer-socials {
  display: flex;
  gap: 17px;
}
.footer-socials a img {
  width: 28px;
  height: 28px;
  filter: sepia(0.28) hue-rotate(-20deg) saturate(0.6) brightness(0.95);
  opacity: 0.85;
  transition: opacity .2s, filter .3s;
}
.footer-socials a:hover img {
  opacity: 1;
  filter: none;
}
.footer-legal {
  color: var(--retro-brown);
  font-size: 13px;
  margin-top: 10px;
  width: 100%;
  text-align: right;
}

/* =================================================================== */
/* NAVIGATION & MOBILE MENU */
/* =================================================================== */
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: var(--font-body);
  color: var(--secondary);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover {
  color: var(--primary);
  border-bottom: 2px groove var(--primary);
  text-shadow: 0 2px 2px #efd9c7b0;
}

.btn-primary, .btn-secondary {
  font-family: var(--font-display);
  font-size: 1.12rem;
  padding: 13px 33px;
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  background: var(--retro-yellow);
  color: var(--primary);
  margin-left: 8px;
  box-shadow: 0 3px 20px 0 rgba(138,30,43,0.04);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background-color .25s, color .19s, border-color .23s, transform .18s, box-shadow .18s;
  cursor: pointer;
  position: relative;
  z-index: 1;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary);
  color: var(--retro-yellow);
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 6px 20px 0 rgba(138,30,43,0.16);
}
.btn-secondary {
  border: 2px dashed var(--secondary);
  background: var(--retro-mint);
  color: var(--secondary);
  margin-left: 0;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--secondary);
  color: #fff;
  border-style: solid;
}

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  background: var(--retro-yellow);
  border-radius: 50%;
  border: 2px solid var(--retro-brown);
  color: var(--primary);
  margin-left: 12px;
  transition: background .18s, color .2s;
  z-index: 1001;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--retro-yellow);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: rgba(250, 242, 232, 0.94);
  transform: translateX(100%);
  transition: transform 380ms cubic-bezier(.77,.06,.45,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 38px 26px 26px 26px;
  min-width: 220px;
  max-width: 99vw;
  width: 360px;
  box-shadow: -8px 0 32px 0 rgba(85,50,34,0.13);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  padding: 5px 12px;
  margin-bottom: 12px;
  border: 2px solid var(--primary);
  transition: background .2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--retro-yellow);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.34rem;
  padding: 6px 0 6px 4px;
  color: var(--primary);
  border-left: 4px solid transparent;
  background: none;
  transition: color .19s, border-color .2s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--secondary);
  border-left: 4px solid var(--secondary);
  background: var(--retro-yellow);
}

@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {display: none !important;}
  .main-nav {display: flex !important;}
}
@media (max-width: 1024px) {
  header .container {
    flex-wrap: wrap;
    gap: 16px;
  }
  .main-nav {
    display: none;
  }
  .btn-primary, .btn-secondary {
    padding: 13px 20px;
    font-size: 1rem;
  }
}

/* =================================================================== */
/* HERO SECTION & CONTENT WRAPPER */
/* =================================================================== */
.hero-section {
  background: repeating-linear-gradient(120deg, var(--retro-yellow) 0 35px, var(--retro-mint) 35px 85px, var(--retro-yellow) 85px 125px);
  border-bottom: 4px double var(--primary);
  box-shadow: 0 4px 38px 0 rgba(124,84,50,0.07);
  position: relative;
}
.hero-section .container {
  min-height: min(54vw,480px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 70px;
  padding-bottom: 56px;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  background: rgba(255,255,255,0.82);
  border-radius: var(--radius);
  padding: 36px 24px;
  box-shadow: 0 2px 18px 0 rgba(124,84,50,0.1);
  border: 3px dashed var(--retro-mint);
  max-width: 666px;
}
.hero-section h1 { color: var(--primary); }
.hero-section p { color: var(--retro-brown); font-size: 1.16rem; }

/* =================================================================== */
/* SECTION SPACING & FLEX PATTERNS */
/* =================================================================== */
.section,
main > section,
.services-section,
.features-section,
.about-section,
.contact-section,
.contact-details-section,
.testimonials-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px 0 rgba(140,54,24,0.045);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--retro-beige);
  border-radius: var(--radius);
  box-shadow: 0 4px 18px 0 rgba(125,60,30,0.08);
  padding: 34px 27px;
  min-width: 220px;
  margin-bottom:20px;
  position: relative;
  transition: box-shadow .23s, transform .11s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 9px 30px 0 rgba(120,66,41,0.17);
  transform: translateY(-3px) scale(1.019);
}

.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,
  .content-grid,
  .footer-main {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
  }
  .section, main > section {
    padding: 26px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .hero-section .content-wrapper {
    padding: 20px 10px;
    max-width: 100%;
  }
}

/* =================================================================== */
/* FEATURES & SERVICES FLEX LISTS */
/* =================================================================== */
.feature-grid,
.services-list,
.detailed-services-list,
.case-study-list,
.success-stories,
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.feature-grid > li,
.services-list > li,
.detailed-services-list > li {
  flex: 1 0 265px;
  max-width: 340px;
  min-width: 190px;
  background: var(--retro-beige);
  border-radius: 11px;
  border: 2.5px solid var(--retro-mint);
  box-shadow: 0 2px 12px 0 rgba(150,86,50,0.09);
  padding: 28px 18px 17px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: background .17s, border-color .18s, box-shadow .14s;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.feature-grid > li img,
.services-list > li img,
.detailed-services-list > li img {
  width: 38px;
  height: 38px;
}
.feature-grid > li:hover,
.services-list > li:hover,
.detailed-services-list > li:hover {
  background: var(--retro-mint);
  border-color: var(--primary);
}
.price {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1rem;
  margin-top: 8px;
  background: var(--retro-yellow);
  padding: 2px 12px;
  border-radius: 8px;
  border: 1.5px dotted var(--primary);
  display: inline-block;
}

@media (max-width: 1024px) {
  .feature-grid,
  .services-list,
  .detailed-services-list,
  .case-study-list,
  .success-stories,.contact-info {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > li,
  .services-list > li,
  .detailed-services-list > li {
    max-width: 100%;
    width: 98%;
  }
}

/* =================================================================== */
/* TESTIMONIALS & CARDS */
/* =================================================================== */
.testimonials-section {
  background: var(--retro-mint);
  border-radius: var(--radius);
  box-shadow: 0 4px 22px 0 rgba(38,95,69,0.07);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px 20px 22px;
  margin-bottom: 24px;
  border-left: 7px solid var(--primary);
  background: #fffbe4;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 1px 10px 0 rgba(153,144,94,0.06);
  font-size: 1.06rem;
  color: #382916;
  max-width: 640px;
  transition: box-shadow .18s, border-color .2s;
}
.testimonial-card:last-child {margin-bottom:0;}
.testimonial-card:hover {
  box-shadow: 0 8px 26px 0 rgba(153,144,94,0.18);
  border-left: 7px solid var(--secondary);
}
.testimonial-card p {
  color: #4f301d;
  font-size: 1.07rem;
  font-family: var(--font-display);
}
.testimonial-meta {
  font-size: 0.96rem;
  color: var(--secondary);
  font-family: var(--font-body);
  font-weight: 700;
}

/* =================================================================== */
/* CONTACT INFO */
/* =================================================================== */
.contact-info {
  flex-wrap: wrap;
  gap: 21px;
  font-size: 1.09rem;
  align-items: flex-start;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 0;
  color: var(--primary);
  font-family: var(--font-body);
}
.contact-info img {
  width: 23px;
  height: 23px;
  filter: sepia(0.25) brightness(1.07) saturate(1.5);
}

.opening-hours {
  margin-top: 12px;
}
.opening-hours h3 {
  font-size: 1.13rem;
  color: var(--secondary);
}
.address-overview {
  font-family: var(--font-display);
  background: var(--retro-mint);
  border-radius: 9px;
  color: #292008;
  border: 1.5px solid var(--primary);
  padding: 17px 22px;
  margin-top: 12px;
  font-size: 1.03rem;
}

/* =================================================================== */
/* LISTS, UL, LI, FAQ, TEXT SECTIONS */
/* =================================================================== */
ul:not(.main-nav,.footer-menu,.mobile-nav,.feature-grid,.services-list,.detailed-services-list,.contact-info) {
  margin: 12px 0 16px 0;
  padding-left: 0;
  list-style: disc inside;
  color: var(--retro-brown);
  font-size: 1rem;
}
ul:not(.main-nav,.footer-menu,.mobile-nav,.feature-grid,.services-list,.detailed-services-list,.contact-info) li {
  padding: 7px 0 7px 0.5em;
  position: relative;
}
ul:not(.main-nav,.footer-menu,.mobile-nav,.feature-grid,.services-list,.detailed-services-list,.contact-info) li:before {
  content: '\25BA';
  color: var(--primary);
  font-size: 0.86em;
  position: absolute;
  left: -1.2em;
  font-family: var(--font-display);
  top: 7px;
}
.text-section {
  font-size: 1.05rem;
  background: var(--retro-beige);
  padding: 15px 18px 10px 16px;
  border-radius: 9px;
  margin-bottom: 8px;
}

/* =================================================================== */
/* MODAL & COOKIE CONSENT BANNER */
/* =================================================================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fffbe9;
  border-top: 4px double var(--retro-brown);
  color: var(--retro-brown);
  font-size: 1.05rem;
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -2px 18px 0 rgba(120,66,41,0.13);
  padding: 22px 12px 20px 12px;
  z-index: 10010;
  animation: cookie-in 0.4s ease-out;
  gap: 24px;
}
@keyframes cookie-in {
  from {transform: translateY(80px);opacity:0;}
  to {transform: translateY(0);opacity:1;}
}
.cookie-actions {
  display: flex;
  gap: 19px;
}
.cookie-btn,
.cookie-btn-settings {
  background: var(--retro-mint);
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1.02rem;
  padding: 7px 24px;
  font-weight: 600;
  margin-right: 0;
  margin-top: 0;
  transition: background .14s, color .16s, border .19s;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: var(--primary);
  color: var(--retro-yellow);
  border-color: var(--primary);
}
.cookie-btn-settings {
  border-style: dashed;
}
.cookie-btn-settings:hover,
.cookie-btn-settings:focus {
  background: var(--retro-yellow);
  color: var(--primary);
}
/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10020;
  background: rgba(34,24,2,0.29);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  animation: modal-overlay-fadeIn 0.2s;
}
@keyframes modal-overlay-fadeIn {
  0% {opacity:0;} 100% {opacity:1;}
}
.cookie-modal {
  background: #fffbe4;
  min-width: 270px;
  max-width: 90vw;
  width: 450px;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -4px 28px 0 rgba(98,70,31,0.18);
  padding: 32px 24px 25px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookie-modal-slideIn .41s cubic-bezier(.41,1.19,.38,.97);
  position: relative;
  margin-bottom: 0;
}
@keyframes cookie-modal-slideIn {
  from {transform: translateY(120%);}
  to {transform: translateY(0);}
}
.cookie-modal-close {
  position: absolute;
  top: 17px; right: 21px;
  background: var(--retro-yellow);
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s, color .18s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: var(--primary);
  color: var(--retro-yellow);
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.32rem;
  margin-bottom: 4px;
  border: none;
  font-family: var(--font-display);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-switch {
  width: 36px;
  height: 20px;
  background: var(--retro-mint);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  border: 1.7px solid var(--primary);
  transition: background .16s, border .17s;
}
.cookie-switch[aria-checked="true"] {
  background: var(--secondary);
  border-color: var(--secondary);
}
.cookie-switch-knob {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left .19s;
}
.cookie-switch[aria-checked="true"] .cookie-switch-knob {
  left: 18px;
  background: var(--accent);
}

/* =================================================================== */
/* MISC RETRO DECOR: PATTERNS, SHADOWS, ARRANGEMENT */
/* =================================================================== */
.section {
  background: var(--accent) url('data:image/svg+xml,%3Csvg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="6" cy="6" r="2" fill="%23F7D774"/%3E%3Ccircle cx="18" cy="18" r="2" fill="%23F49A57"/%3E%3C/svg%3E') repeat right bottom;
  background-size: 90px 90px;
}

main > section:not(.hero-section) {
  background: var(--accent) url('data:image/svg+xml,%3Csvg width="28" height="28" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Crect x="0.5" y="0.5" width="27" height="27" rx="6" stroke="%2399C2A2" stroke-dasharray="2 4"/%3E%3C/svg%3E') repeat left top;
  background-size: 70px 70px;
}

@media (max-width:700px) {
  .section, main > section{
    background: var(--accent);
  }
}

/* =================================================================== */
/* FORMS, INPUTS, FAQ */
/* =================================================================== */
input, textarea, select {
  background: #fffbe4;
  border: 2px solid var(--secondary);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 10px 13px;
  margin-bottom: 13px;
  box-shadow: 0 1px 3px 0 rgba(146,110,79,0.04);
  transition: border .18s;
  width: 100%;
  max-width: 420px;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
}
label {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--primary);
}

/* =================================================================== */
/* RESPONSIVE TYPOGRAPHY + LAYOUT */
/* =================================================================== */
@media (max-width: 700px) {
  h1 {font-size:2.1rem;}
  h2 {font-size:1.4rem;}
  h3 {font-size:1.12rem;}
  html {font-size:15px;}
}

@media (max-width: 480px) {
  html {font-size:14px;}
  header .container, footer .container {
    flex-direction: column;
    gap: 13px;
    min-height: 60px;
  }
}

/* =================================================================== */
/* MICRO-INTERACTIONS & TRANSITIONS */
/* =================================================================== */
a, .btn-primary, .btn-secondary, button, .main-nav a, .footer-menu a {
  transition-property: background, color, border, box-shadow, transform, text-decoration;
  transition-duration: .2s;
  transition-timing-function: cubic-bezier(.68,.04,.43,.93);
}

.card, .feature-grid > li, .services-list > li, .detailed-services-list > li {
  transition: box-shadow .22s, border-color .22s, background .15s, transform .16s;
}
.card:hover, .feature-grid > li:hover, .services-list > li:hover, .detailed-services-list > li:hover {
  box-shadow: 0 7px 32px 0 rgba(144, 59, 41, 0.16);
  border-color: var(--retro-orange);
  background: var(--retro-mint);
  transform: translateY(-3px) scale(1.016);
}

/* =================================================================== */
/* PRINT FRIENDLY */
/* =================================================================== */
@media print {
  body {background: #fff; color: #222;}
  header, nav, footer, .mobile-menu, .cookie-consent-banner {display:none !important;}
  .section, main > section{background: #fff; box-shadow:none;}
}
