/* --- 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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  width: 100%;
  background: #FFF;
  color: #24323A;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: #24323A; text-decoration: none; transition: color 0.2s; }
a:focus { outline: 2px solid #D6B36A; outline-offset: 2px; }
img { max-width: 100%; display: block; border-radius: 6px; }
ul, ol { margin-left: 24px; }

/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@600;800&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #24323A;
  font-weight: 800;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  font-weight: 700;
}
h4, h5, h6 {font-size: 1.1rem; margin-bottom: 10px; font-weight: 600;}

/* --- CONTAINERS & BASIC LAYOUT FLEX --- */
.container {
  width: 100%;
  max-width: 1170px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 28px;
  box-shadow: 0 7px 32px rgba(36,50,58,0.06), 0 1.5px 8px #e9eaea;
}

/* --- CREATIVE ARTISTIC COLORS & ACCENT --- */
:root {
  --primary: #24323A;
  --secondary: #D6B36A;
  --accent: #FFFFFF;
  --muted: #F6F4EF;
  --artistic1: #E06666;
  --artistic2: #769cdc;
  --artistic3: #F8B195;
  --artistic4: #483D8B;
}

/* Extra pattern backgrounds for accent */
.hero-section {
  background: linear-gradient(120deg, #FFF 70%, #F8B195 100%);
  padding-top: 64px; padding-bottom: 64px;
  margin-bottom: 0;
}
.features-section, .services-section, .project-highlights-section, .testimonials-section, .about-section, .process-section, .cookies-policy-section, .policy-section, .rodo-section, .terms-section {
  background: var(--muted);
}
.testimonial-highlight-section {
  background: linear-gradient(120deg, #FFF 60%, #769cdc 100%);
}
.contact-cta-section, .appointment-cta-section, .blog-cta-section, .thank-you-section {
  background: linear-gradient(90deg, #F8B195 0, #D6B36A 100%);
  color: #24323A;
}
.blog-posts-section {
  background: #FFF9EE;
}

/* --- NAVIGATION --- */
header {
  width: 100%;
  background: #FFF;
  box-shadow: 0 3px 14px rgba(36,50,58,0.07);
  z-index: 20;
  position: relative;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 22px 0 19px 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.main-nav a {
  padding: 6px 18px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  color: #24323A;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--secondary);
  color: #FFF;
}
.main-nav img {
  height: 38px;
  margin-right: 16px;
}
.cta-primary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #E06666;
  color: #FFF;
  padding: 10px 28px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 17px;
  margin-left: 16px;
  box-shadow: 0 2px 8px #e6c2bf;
  letter-spacing: 0.01em;
  border: none;
  /* Painted artistic stroke on button edge */
  box-shadow: 0 0 0 2px #E06666, 0 3px 16px rgba(224,102,102,0.09);
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  cursor: pointer;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--secondary);
  color: #24323A;
  box-shadow: 0 0 0 2px var(--secondary), 0 6px 28px #f8b09544;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 23px;
  width: 44px; height: 44px;
  background: #E06666;
  color: #FFF;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 12px #e9b9a4;
  z-index: 30;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.mobile-menu-toggle:focus {
  outline: 3px solid var(--secondary);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; height: 100vh;
  width: 100vw;
  background: #24323A;
  z-index: 100;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.36s cubic-bezier(.77,.2,.29,.95), opacity 0.23s;
  box-shadow: 0 8px 48px rgba(36,50,58,0.22);
  padding: 48px 24px 32px 32px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 28px; right: 28px;
  background: none;
  color: #FFF;
  border: none;
  font-size: 2.1rem;
  z-index: 101;
  cursor: pointer;
  transition: color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 56px;
  width: 100%;
}
.mobile-nav a {
  color: #FFF;
  font-size: 1.25rem;
  padding: 14px 0;
  border-bottom: 1px solid #3f4d57;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
}

/* --- HERO --- */
.hero-section .container {
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.hero-section .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero-section h1 {
  font-size: 2.6rem;
  color: #24323A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.028em;
  margin-bottom: 8px;
}
.hero-section p {
  font-size: 1.22rem;
  color: #483D8B;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  margin-bottom: 20px;
  letter-spacing: 0.005em;
}

/* --- FEATURES --- */
.features-section .feature-grid, .services-section .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  list-style: none;
}
.feature-grid li, .service-grid li {
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 4px 24px #d6b36a18;
  padding: 28px 24px 18px 24px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  max-width: 316px;
  transition: box-shadow 0.19s, transform 0.19s;
  position: relative;
}
.feature-grid li:hover, .service-grid li:hover {
  box-shadow: 0 9px 40px #9f9fff40;
  transform: translateY(-4px) scale(1.02);
}
.feature-grid li img, .service-grid li img, .benefits-section li img {
  width: 46px;
  margin-bottom: 1px;
  filter: drop-shadow(0px 2px 0px #D6B36A33);
}
.feature-grid h3, .service-grid h3 {
  color: #E06666;
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.feature-grid p, .service-grid p {
  font-size: 1rem;
  color: #24323A;
}

/* --- CARDS & CARD-CONTAINERS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 14px #e6c2bf44;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 28px #F8B19599;
  transform: translateY(-3px) scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 24px 20px;
}

/* --- TESTIMONIALS --- */
.testimonial-highlight-section, .testimonials-section {
  padding: 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 32px;
  margin-bottom: 32px;
  background: #FFF;
  border-left: 8px solid #E06666;
  box-shadow: 0 2px 12px #f0afaa10;
  border-radius: 13px;
  max-width: 600px;
  font-size: 1.12rem;
}
.testimonial-card p {
  color: #24323A;
  font-size: 1.19rem;
  margin-bottom: 8px;
}
.testimonial-info, .testimonial-card span {
  color: #24323A;
  font-weight: 700;
}
.star-rating {
  color: #D6B36A;
  font-size: 1.2em;
  letter-spacing: 0.1em;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonials-section .testimonial-card {
  margin-bottom: 22px;
  background: #FFF;
  border-left: 8px solid #769cdc;
}

/* --- SERVICES PREVIEW LIST --- */
.services-preview-section .service-list,
.benefits-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
  list-style: none;
}
.service-list li, .benefits-section li {
  background: #F8B195;
  color: #24323A;
  border-radius: 17px;
  box-shadow: 0 2px 12px #e6c2bf55;
  padding: 20px 24px;
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  min-width: 180px;
  max-width: 310px;
  transition: background 0.2s, box-shadow 0.17s, transform 0.17s;
}
.service-list li:hover, .benefits-section li:hover {
  background: #D6B36A;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 6px 18px #f8b19566;
}
.service-list li strong, .benefits-section li strong {
  color: #483D8B;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
}
.service-list li span, .benefits-section li span {
  color: #24323A;
  font-size: .98rem;
}

/* --- ABOUT/TEAM/STRUCTURAL --- */
.about-section, .team-section, .heritage-section, .policy-section, .rodo-section, .terms-section, .cookies-policy-section {
  padding: 64px 0;
}
.about-section .text-section,
.team-section .text-section,
.heritage-section .text-section,
.policy-section .text-section,
.rodo-section .text-section,
.terms-section .text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section ul {
  margin-left: 16px;
}
.text-section li {
  margin-bottom: 8px;
  font-size: 1rem;
}

/* --- REALIZATIONS --- */
.project-highlights-section .project-card {
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 4px 24px #769cdc33;
  padding: 30px 28px 18px 28px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 6px solid #769cdc;
  transition: box-shadow 0.13s, transform 0.15s;
}
.project-highlights-section .project-card:hover {
  box-shadow: 0 10px 34px #769cdc55;
  transform: translateY(-4px) scale(1.01);
}
.project-card h3 { color: #483D8B; font-size: 1.23rem; font-weight: 700; }
.project-outcome { color: #E06666; font-weight: 700; margin-top: 6px; }

/* --- BLOG --- */
.blog-summary {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 2px 10px #d6b36a22;
  padding: 30px 32px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 6px solid #D6B36A;
  transition: box-shadow 0.17s, transform 0.15s;
}
.blog-summary:hover {
  box-shadow: 0 8px 28px #D6B36A55;
  transform: translateY(-4px) scale(1.01);
}
.blog-summary h3 {
  font-size: 1.09rem;
  font-weight: 800;
  color: #24323A;
}
.blog-summary a {
  color: #E06666;
  font-weight: 700;
  margin-top: 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: color 0.17s;
}
.blog-summary a:hover {
  color: #483D8B;
}

/* --- CONTACT/INFO/CTA --- */
.contact-section, .appointment-cta-section, .hours-info-section {
  padding: 40px 0 0 0;
}
.map-snippet {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  padding: 14px 16px;
  background: #F8B195;
  border-radius: 15px;
  color: #24323A;
}
.map-snippet img {
  width: 46px; height: 46px;
}
.hours-info-section ul {
  margin-left: 18px;
}
.hours-info-section li {
  font-size: 1rem; margin-bottom: 8px;
}

/* --- FOOTER --- */
footer {
  background: #24323A;
  color: #FFF;
  padding-top: 32px;
  padding-bottom: 18px;
  margin-top: 62px;
  font-size: 1rem;
  border-top-left-radius: 44px;
  border-top-right-radius: 44px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  margin-bottom: 16px;
}
.footer-menu a {
  color: #FFF;
  opacity: 0.82;
  padding: 4px 10px;
  margin-right: 7px;
  border-radius: 5px;
  font-size: 0.96rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: background 0.13s, color 0.13s, opacity 0.13s;
}
.footer-menu a:hover {
  background: #E06666;
  color: #FFF;
  opacity: 1.0;
}
.footer-menu img {
  height: 38px;
  margin-left: auto;
}
.footer-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}
.footer-cta span {
  font-weight: 700;
  letter-spacing: 0.01em;
}
.footer-cta a {
  background: var(--secondary);
  color: #24323A;
  border-radius: 8px;
  padding: 7px 18px;
  letter-spacing: 0.01em;
  font-weight: 700;
  font-size: 0.98rem;
  box-shadow: 0 1px 6px #d6b36a44;
  transition: background 0.15s, color 0.13s;
  margin-right: 4px;
}
.footer-cta a:hover {
  background: #E06666;
  color: #FFF;
}
.footer-cta img {
  height: 28px; width: 28px; filter: grayscale(4%) contrast(1.1);
  transition: filter 0.11s;
}
.footer-cta a:hover img {
  filter: grayscale(0%) contrast(1.4) saturate(1.3);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #FFF9EE;
  color: #24323A;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 24px 18px 24px;
  box-shadow: 0 -6px 38px #28337316;
  font-size: 1rem;
  gap: 32px;
  transition: transform 0.33s cubic-bezier(.71,.19,.16,.93), opacity 0.21s;
  opacity: 1;
  transform: translateY(0);
  border-radius: 20px 20px 0 0;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(140px);
}
.cookie-banner .cookie-btn {
  margin-left: 8px;
  border-radius: 19px;
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow 0.14s;
}
.cookie-banner .cookie-btn.accept {
  background: #E06666;
  color: #FFF;
  box-shadow: 0 1px 7px #f8b19555;
}
.cookie-banner .cookie-btn.reject {
  background: #769cdc;
  color: #FFF;
  box-shadow: 0 1px 7px #769cdc22;
}
.cookie-banner .cookie-btn.settings {
  background: #F8B195;
  color: #24323A;
  box-shadow: 0 1px 7px #f8b19533;
}
.cookie-banner .cookie-btn:focus {
  outline: 2px solid #D6B36A;
}
.cookie-banner .cookie-btn:hover {
  background: #D6B36A;
  color: #24323A;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36,50,58,0.42);
  z-index: 1600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.21s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #FFF;
  color: #24323A;
  padding: 38px 34px 28px 34px;
  border-radius: 26px;
  box-shadow: 0 8px 40px #28337326;
  max-width: 410px;
  width: 96vw;
  font-size: 1.07rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modalDrop 0.48s cubic-bezier(.71,.19,.16,.93);
}
@keyframes modalDrop {
  0% { opacity: 0; transform: translateY(-60px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #E06666;
  font-size: 1.28rem;
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #F8B195;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
  outline: 0 solid #D6B36A;
}
.cookie-toggle:checked {
  background: #D6B36A;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 2.5px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: #FFF;
  transition: transform 0.22s;
}
.cookie-toggle:checked::before {
  transform: translateX(16px);
}
.cookie-btn-row {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 18px;
}

/* --- FLEXBOX ALIGNMENT PATTERNS --- */
.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-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- SPACING & VISUAL HIERARCHY --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container { gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.content-grid { gap: 20px; }
.text-image-section { gap: 30px; }
.testimonial-card { gap: 20px; padding: 20px; }
.feature-item { gap: 15px; }

/* --- ADDITIONAL ARTISTIC ELEMENTS --- */
.hero-section::after {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 120px; height: 120px;
  background: url('../assets/brush.svg') no-repeat center center/contain;
  opacity: 0.32;
  z-index: 0;
  pointer-events: none;
  display: none;
}
@media (min-width: 1024px) {
  .hero-section {
    position: relative;
  }
  .hero-section::after {
    display: block;
  }
}

/* --- ANIMATION INTERACTIVE ELEMENTS --- */
.cta-primary, .main-nav a, .mobile-nav a, .footer-cta a, .cookie-btn, .cookie-toggle {
  transition: background 0.19s, color 0.16s, box-shadow 0.17s, transform 0.14s;
}
.cta-primary:active {
  transform: scale(0.95);
}
button:focus, .cookie-btn:focus {
  outline: 2px solid #D6B36A;
  outline-offset: 2px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1200px) {
  .container {
    max-width: 980px;
  }
  .feature-grid li, .service-grid li, .service-list li, .benefits-section li {
    min-width: 180px;
    max-width: 230px;
    padding: 18px 10px 14px 14px;
  }
}
@media (max-width: 900px) {
  .container { max-width: 95vw; }
  .footer-menu { flex-wrap: wrap; gap: 12px; }
  .footer-menu img { margin-left: 0; }
  .footer-cta { flex-wrap: wrap; gap: 9px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
  .hero-section {
    padding-top: 36px; padding-bottom: 38px;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
  .hero-section p {
    font-size: 1.05rem;
  }
  .feature-grid, .service-grid, .service-list, .benefits-section ul {
    flex-direction: column;
    gap: 18px;
  }
  .card-container, .footer-menu {
    flex-direction: column;
    gap: 14px;
  }
  .footer-cta { flex-direction: column; gap: 9px; }
  .testimonial-card, .blog-summary, .project-highlights-section .project-card {
    padding: 16px 10px;
  }
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .about-section, .team-section, .heritage-section, .contact-section, .thank-you-section, .process-section {
    padding: 28px 0;
  }
}
@media (max-width: 520px) {
  html { font-size: 15px; }
  .section, section {
    padding: 11vw 3vw;
    margin-bottom: 24px;
  }
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.22rem; }
  .policy-section, .rodo-section, .terms-section, .cookies-policy-section {
    padding: 18px 0;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    font-size: 0.96rem;
    padding: 18px 9px 15px 9px;
  }
  .cookie-modal {
    padding: 18px 9px 16px 11px;
  }
}

/* Hide unnecessary scrollbars for overlays */
body.mobile-menu-open, body.cookie-modal-open {
  overflow: hidden !important;
}

/* --- ARTISTIC BRUSH DECORATION (EXAMPLE STRUCTURE - SVG/IMAGES NEEDED) --- */
/* .decorate-brush {
  background: url('../assets/brush.svg') no-repeat center center/cover;
  width: 90px; height: 35px;
  display: inline-block;
} */
