/* =====================================================================
   CSS RESET & NORMALIZE FOR MAXIMUM COMPATIBILITY
===================================================================== */
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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  height: 100%;
  background: #F5F3EB;
  color: #321900;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, li {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

/* =====================================================================
   BRAND FONTS (Playfair Display for Display, Roboto for Body)
   You MUST load these fonts in HTML separately.
===================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #7B3F00;
  letter-spacing: 0.01em;
  font-weight: 700;
}
h1 { font-size: 2.5rem; line-height: 1.14; margin-bottom: 20px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 18px; }
h3 { font-size: 1.25rem; line-height: 1.25; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
h5, h6 { font-size: 1rem; margin-bottom: 8px; }

p, ul, ol, li, span, label {
  font-family: 'Roboto', Arial, sans-serif;
  color: #321900;
  font-size: 1rem;
  line-height: 1.7;
}
strong, b {
  font-weight: 700;
}

.subheadline {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #B5B0A1;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

/* ================== CONTAINER & LAYOUT SYSTEM (FLEXBOX ONLY) =========== */
.container {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

/* -------------- FLEX SPACING PATTERNS (MANDATORY) ------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =====================================================================
   HEADER & MAIN NAVIGATION
===================================================================== */
header {
  background: #FFF;
  box-shadow: 0 2px 14px rgba(123, 63, 0, 0.06);
  position: relative;
  z-index: 50;
}
header .container {
  min-height: 80px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo img {
  max-height: 48px;
  display: block;
}
nav.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
nav.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  padding: 8px 14px;
  font-weight: 500;
  border-radius: 5px;
  color: #7B3F00;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.02em;
}
nav.main-nav a:hover,
nav.main-nav a:focus {
  background: #F5F3EB;
  color: #321900;
}
.cta-button {
  font-family: 'Playfair Display', serif;
  background: #7B3F00;
  color: #fff;
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(123,63,0,0.10);
  border: 2px solid #B5B0A1;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-left: 20px;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
.cta-button:hover,
.cta-button:focus {
  background: #B5B0A1;
  color: #7B3F00;
  box-shadow: 0 2px 10px rgba(123,63,0,0.08);
}

/* =====================================================================
   MOBILE NAVIGATION
===================================================================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  color: #7B3F00;
  padding: 8px 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.15s;
  margin-left: 6px;
  z-index: 120;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F5F3EB;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF;
  box-shadow: 0 0 60px rgba(60,27,0,0.25);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 30px 24px 30px;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.42s cubic-bezier(.8,0,.2,1), opacity 0.2s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 24px;
  background: none;
  color: #7B3F00;
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #321900;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 40px;
}
.mobile-nav a {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  color: #7B3F00;
  padding: 12px 0;
  border-bottom: 1px solid #F0E8DC;
  border-radius: 0;
  transition: background 0.19s, color 0.18s;
  letter-spacing: 0.03em;
}
.mobile-nav a:last-child {
  border-bottom: 0;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F5F3EB;
  color: #321900;
}

@media (max-width: 1130px) {
  nav.main-nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 12px;
  }
  .cta-button {
    padding: 8px 20px;
    font-size: 1rem;
    margin-left: 8px;
  }
}
@media (max-width: 840px) {
  nav.main-nav {
    display: none;
  }
  .cta-button {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (max-width: 480px) {
  .mobile-menu {
    padding: 32px 16px 16px 16px;
  }
}

/* =====================================================================
   HERO SECTION (creative_artistic)
===================================================================== */
.hero {
  background: linear-gradient(120deg, #FFF9F2 65%, #ffeadf 100%);
  background-blend-mode: multiply;
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  border-bottom-right-radius: 80px 70px;
  box-shadow: 0 6px 32px 0 rgba(123,63,0,0.10);
  margin-bottom: 56px;
}
.hero .container {
  min-height: 340px;
  justify-content: center;
}
.hero .content-wrapper {
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  max-width: 650px;
}
@media (max-width: 900px) {
  .hero {
    min-height: 250px;
    border-bottom-right-radius: 38px 32px;
    margin-bottom: 32px;
  }
  .hero .content-wrapper {
    max-width: 100%;
    gap: 16px;
  }
}

/* =====================================================================
   FEATURES SECTION (creative_artistic CARD GRID)
===================================================================== */
.features {
  background: #FFF;
  border-radius: 48px 80px 38px 0;
  box-shadow: 0 6px 30px -8px #7B3F0033;
  margin-bottom: 60px;
}
.features .container > h1,
.features .container > h2 {
  text-align: center;
  margin-bottom: 36px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}
.feature {
  background: #F5F3EB;
  border-radius: 24px 24px 56px 12px;
  box-shadow: 0 4px 24px 0 rgba(181, 176, 161, 0.21);
  padding: 28px 22px 32px 22px;
  min-width: 220px;
  flex: 1 1 282px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  transition: box-shadow 0.21s, transform 0.21s, background 0.2s;
  position: relative;
}
.feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}
.feature h3 {
  font-weight: 700;
  font-size: 1.16rem;
  margin-bottom: 4px;
  color: #7B3F00;
  font-family: 'Playfair Display', serif;
}
.feature p {
  font-size: 1rem;
  color: #442100;
}
.feature:hover, .feature:focus {
  background: #FFFAF4;
  box-shadow: 0 8px 36px 0 rgba(123,63,0,0.13);
  transform: translateY(-8px) scale(1.025);
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 20px;
  }
  .feature {
    flex: 1 1 100%;
    min-width: 0;
    padding: 16px 12px 22px 14px;
  }
}
@media (max-width: 680px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* =====================================================================
   TESTIMONIALS SECTION (creative_artistic CARDS)
===================================================================== */
.testimonials {
  background: #FFF9F3;
  border-radius: 18px 64px 28px 0;
  box-shadow: 0 2px 32px -8px #7B3F0033;
  margin-bottom: 56px;
}
.testimonials .container > h2 {
  text-align: center;
  margin-bottom: 34px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.testimonial-card {
  background: #FFF;
  border-radius: 30px 60px 24px 12px;
  min-width: 245px;
  max-width: 420px;
  box-shadow: 0 4px 32px 0 rgba(181, 176, 161, 0.22);
  border: 1px solid #F1E9D9;
  padding: 28px 26px 22px 26px;
  color: #321900;
  font-size: 1.08rem;
  flex: 1 0 265px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.20s, transform 0.18s, border 0.15s;
  margin-bottom: 20px;
  outline: none;
  z-index: 2;
}
.testimonial-card p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #7B3F00;
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.testimonial-card span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.98rem;
  color: #321900;
}
.testimonial-card:focus,
.testimonial-card:hover {
  border: 1.5px solid #B5B0A1;
  box-shadow: 0 8px 36px 0 rgba(123,63,0,0.11);
  transform: translateY(-5px) scale(1.018);
}
@media (max-width: 760px) {
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 20px 12px 18px 12px;
  }
}

/* =====================================================================
   ABOUT, CONTACT, POLICY & TEXT SECTIONS
===================================================================== */
.about, .contact, .services, .footer-policy {
  background: #FFF;
  border-radius: 28px 56px 24px 0;
  box-shadow: 0 2px 24px -4px #B5B0A124;
  margin-bottom: 60px;
}
.about .container>h1,
.contact .container>h1,
.services .container>h1,
.footer-policy .container>h1 {
  text-align: center;
  margin-bottom: 32px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section ul,
.text-section ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
  margin-bottom: 8px;
  margin-left: 10px;
}
.text-section li {
  line-height: 1.6;
  padding-left: 0.5em;
  position: relative;
}
.text-section li strong {
  font-family: 'Playfair Display', serif;
  color: #7B3F00;
}
.standortkarte {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  background: #F5F3EB;
  border-radius: 14px;
  padding: 12px 15px;
  box-shadow: 0 1px 4px 0 #B5B0A11c;
}
.standortkarte img {
  width: 44px;
  height: 44px;
}
.contact-hours {
  margin-top: 10px;
  color: #7B3F00;
  font-weight: 500;
}

.contact .cta-button {
  margin-top: 34px;
  align-self: flex-start;
}

.footer-policy ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 12px;
}
.footer-policy li strong {
  color: #7B3F00;
}

/* =====================================================================
   GALLERY
===================================================================== */
.features.galerie {
  background: #FFF;
}
.features.galerie .feature-grid {
  gap: 20px;
}
.features.galerie .feature {
  border-radius: 32px 64px 28px 12px;
  background: #FFFAF4;
  font-size: 1.03rem;
}

/* =====================================================================
   FOOTER
===================================================================== */
footer {
  background: #7B3F00;
  color: #fff;
  padding: 28px 0 18px 0;
  border-top-left-radius: 70px 58px;
  box-shadow: 0 -2px 14px rgba(123,63,0,0.09);
  margin-top: 40px;
  font-size: 0.97rem;
}
footer p {
  color: white;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
footer a, footer a:visited {
  color: #FFF;
  transition: color 0.14s;
  text-decoration: underline dotted 1.5px #B5B0A1;
}
footer a:hover, footer a:focus {
  color: #B5B0A1;
  text-decoration: underline solid 2px #FFF;
}
footer img {
  max-height: 42px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 8px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
  text-align: right;
  font-size: 0.97rem;
}
@media(max-width: 1040px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
  .footer-contact {
    align-items: flex-start;
    text-align: left;
  }
}
@media (max-width: 700px) {
  footer {
    font-size: 0.93rem;
    padding: 18px 0 16px 0;
  }
  footer img {
    max-height: 32px;
  }
}

/* =====================================================================
   RESPONSIVE FLEX-DIRECTION/SIZING
===================================================================== */
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .content-wrapper, .feature-grid, .card-container, .content-grid {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: stretch;
  }
  .section {
    margin-bottom: 38px;
    padding: 30px 6px;
  }
  .features, .testimonials, .about, .contact, .services, .footer-policy {
    margin-bottom: 28px;
    border-radius: 20px 36px 12px 0;
    box-shadow: 0 2px 14px -7px #7B3F0040;
    padding: 14px 3px;
  }
  .feature, .testimonial-card {
    padding: 12px 10px 12px 10px;
    min-width: unset;
    max-width: 100%;
    border-radius: 22px 38px 12px 7px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.68rem; }
  h2 { font-size: 1.28rem; }
  .features, .about, .contact, .testimonials, .footer-policy {
    padding: 7px 1px;
    margin-bottom: 18px;
  }
  .standortkarte img { width:34px; height:34px; }
}

/* =====================================================================
   CARD, BUTTON, LINK STYLES (Modern, playful, artistic)
===================================================================== */
.card, .feature, .testimonial-card {
  border-radius: 24px 48px 16px 8px;
  box-shadow: 0 2px 16px rgba(123,63,0,0.07);
  background: #FFF;
  overflow: hidden;
  transition: box-shadow 0.18s, background 0.18s, border 0.14s;
}

.card:hover, .card:focus,
.feature:hover, .feature:focus,
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 40px 0 rgba(123,63,0,0.14);
}

a, area, button {
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: outline 0.15s;
}
a:focus-visible, .cta-button:focus-visible, button:focus-visible {
  outline: 2.5px solid #B5B0A1;
  outline-offset: 2px;
}

/* ======================= UNIQUE ARTISTIC ELEMENTS ======================== */
.card::before, .feature::before, .testimonial-card::before {
  content: '';
  display: block;
  position: absolute;
  top: -18px;
  left: -18px;
  width: 56px;
  height: 56px;
  background: #FFF9F3;
  border-radius: 80% 46% 62% 93%;
  z-index: 0;
  opacity: 0.25;
  pointer-events: none;
}
.card:hover::before, .feature:hover::before, .testimonial-card:hover::before {
  background: #FFF4E4;
  opacity: 0.4;
}
@media (max-width: 768px) {
  .card::before, .feature::before, .testimonial-card::before {
    width: 35px;
    height: 35px;
    left: -12px; top: -12px;
  }
}

/* =================== BUTTONS ====================== */
button, .cta-button {
  cursor: pointer;
  border: none;
  outline: none;
}
button[disabled], .cta-button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* =================== COOKIE CONSENT BANNER ============================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #FFF9F3;
  color: #321900;
  border-top: 2px solid #B5B0A1;
  box-shadow: 0 -4px 34px 0 rgba(181,176,161,0.11);
  z-index: 10050;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px 20px 32px;
  font-size: 1rem;
  gap: 25px;
  animation: slideUpIn .65s cubic-bezier(.9,-0.2,.1,1.1);
}
@keyframes slideUpIn {
  from { transform: translateY(90px); opacity: 0.2; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  padding: 10px 22px;
  border-radius: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #B5B0A1;
  background: #FFF;
  color: #7B3F00;
  margin-left: 0;
  margin-right: 0;
  box-shadow: 0 1px 6px 0 #7B3F0016;
  transition: background 0.15s, color 0.15s, border 0.13s;
}
.cookie-banner button.accept {
  background: #7B3F00;
  color: #FFF;
  border-color: #7B3F00;
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: #B5B0A1;
  color: #7B3F00;
  border-color: #B5B0A1;
}
.cookie-banner button.reject {
  background: #FFF9F3;
  color: #7B3F00;
  border-color: #B5B0A1;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #F5F3EB;
  color: #321900;
}
.cookie-banner button.settings {
  color: #B5B0A1;
  border-color: #B5B0A1;
  background: #FFF;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #F5F3EB;
  color: #7B3F00;
}
@media (max-width: 680px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px 14px 12px;
    gap: 18px;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-actions {
    gap: 10px;
  }
}

/* -------------------- COOKIE MODAL POPUP ---------------------- */
.cookie-modal {
  position: fixed;
  z-index: 10100;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(60,27,0,0.21);
  pointer-events: auto;
  opacity: 1;
  animation: fadeInModal 0.39s cubic-bezier(.8,-0.1,.2,1);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal .modal-content {
  background: #FFF;
  color: #321900;
  border-radius: 16px 40px 22px 10px;
  box-shadow: 0 8px 44px 0 #7B3F0040;
  max-width: 97vw;
  min-width: 300px;
  width: 420px;
  padding: 32px 28px 18px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: slideInModal 0.45s cubic-bezier(.77,-0.2,.3,1.18);
}
@keyframes slideInModal {
  from { transform: translateY(60px) scale(.85); }
  to   { transform: translateY(0) scale(1); }
}
.cookie-modal .modal-content h2 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  color: #7B3F00;
  font-size: 1.6rem;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
  color: #321900;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}
.cookie-category label {
  font-size: 1.08rem;
  font-weight: 500;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
}
.cookie-toggle[type="checkbox"] {
  appearance: none;
  width: 42px; height: 24px;
  background: #B5B0A1;
  border-radius: 14px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-toggle[type="checkbox"]:checked {
  background: #7B3F00;
}
.cookie-toggle[type="checkbox"]:disabled {
  opacity: 0.42;
}
.cookie-toggle[type="checkbox"]::after {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 20px; height: 20px;
  background: #FFF;
  border-radius: 50%;
  box-shadow: 0 1px 4px #B5B0A122;
  transition: left 0.17s;
}
.cookie-toggle[type="checkbox"]:checked::after {
  left: 20px;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .modal-actions button {
  padding: 8px 18px;
  border-radius: 12px;
  border: 2px solid #B5B0A1;
  background: #FFF;
  color: #7B3F00;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 1px 6px 0 #7B3F0016;
  transition: background 0.14s, color 0.14s, border 0.13s;
}
.cookie-modal .modal-actions .accept {
  border-color: #7B3F00;
  background: #7B3F00;
  color: #FFF;
}
.cookie-modal .modal-actions .accept:hover, .cookie-modal .modal-actions .accept:focus {
  background: #B5B0A1;
  color: #7B3F00;
}
.cookie-modal .modal-actions .reject:hover, .cookie-modal .modal-actions .reject:focus {
  background: #F5F3EB;
  color: #321900;
}
/* Overlay scroll block on modal active */
body.modal-open {
  overflow: hidden;
}

@media (max-width: 560px) {
  .cookie-modal .modal-content {
    min-width: unset;
    width: 98vw;
    padding: 20px 6px 14px 10px;
  }
}

/* =====================================================================
   ADDITIONAL MICRO-INTERACTIONS / EFFECTS (SUBTLE ARTISTIC TOUCHES)
===================================================================== */
.card, .feature, .testimonial-card, .cta-button, .cookie-banner button, .mobile-menu-toggle, .mobile-menu-close {
  transition: box-shadow 0.19s, background 0.19s, color 0.2s, border 0.14s, transform 0.16s;
}

.cta-button:active, .cookie-banner button:active, .card:active, .feature:active, .testimonial-card:active {
  transform: scale(.98);
}

/* =====================================================================
   ADDITIONAL HTML ELEMENTS IN CONTENT (ICONS IN CONTACT, ETC.)
===================================================================== */
.text-section li img {
  width: 21px;
  height: 21px;
  vertical-align: middle;
  margin-right: 6px;
}
@media (max-width: 600px) {
  .text-section li img { width: 19px; height: 19px; margin-right:4px;}
}

/* ======================== SPACINGS & CONSISTENCY ============================= */
.section, .features, .about, .contact, .testimonials, .services, .footer-policy {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .feature-grid, .content-grid, .content-wrapper, .testimonials .content-wrapper {
  gap: 20px;
}
.feature, .testimonial-card, .card {
  margin-bottom: 20px;
}

/* END OF CSS */
