/* ===================================================================
   CSS RESET & BASE STYLES (normalize + typography reset)
   =================================================================== */
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.5;
  background-color: #F1EEE5;
  color: #27382A;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #32623E;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  outline: none;
  color: #B38938;
}
ul, ol {
  list-style: none;
}
*, *::before, *::after {
  box-sizing: inherit;
}


/* ===================================================================
   TYPOGRAPHY
   =================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #32623E;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem; /* 40px */
  margin-bottom: 20px;
  text-transform: uppercase;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 16px;
  text-transform: uppercase;
}
h3 {
  font-size: 1.375rem; /* 22px */
  margin-bottom: 12px;
  text-transform: uppercase;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
p, li, span, label, input, textarea, select {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem; /* 16px */
  color: #27382A;
}
strong { font-weight: bold; }
em, i { font-style: italic; }


/* ===================================================================
   LAYOUT CONTAINERS – FLEXBOX ONLY
   =================================================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
}

.section, .hero, .about-section, .service-list-section, .category-highlights, .legal-content, .thank-you-section, .contact-hero, .contact-details-section, .blog-preview-section, .workshop-features, .workshop-testimonials, .upcoming-events-section, .plant-advice-section, .cta-newsletter-section, .features {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(50,98,62,0.05);
  position: relative;
}

@media (max-width: 768px) {
  .section, .hero, .about-section, .service-list-section, .category-highlights, .legal-content, .thank-you-section, .contact-hero, .contact-details-section, .blog-preview-section, .workshop-features, .workshop-testimonials, .upcoming-events-section, .plant-advice-section, .cta-newsletter-section, .features {
    margin-bottom: 36px;
    padding: 24px 8px;
    border-radius: 9px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.card-container, .content-grid, .service-highlights, .testimonial-slider, .feature-grid, .category-tiles, .blog-preview-grid, .workshop-list, .highlighted-benefits, .upcoming-events, .footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .service-card, .testimonial-card, .category-tile, .blog-preview-card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 14px;
  background: #FFFFFF;
  box-shadow: 0 3px 12px rgba(50,98,62,0.07);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover, .service-card:hover, .testimonial-card:hover {
  box-shadow: 0 12px 32px rgba(179,137,56,0.10);
  transform: translateY(-4px) scale(1.01);
}

.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 {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .card-container, .feature-grid, .content-grid, .testimonial-slider, .category-tiles, .blog-preview-grid {
    flex-direction: column;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  min-width: 280px;
  background: #fff;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =============================
   HEADER & NAVIGATION
   ============================= */
header {
  background: #FFFFFF;
  border-bottom: 2px solid #C7A570;
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 0;
}
.logo-link img {
  width: 160px;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 7px 15px;
  border-radius: 8px;
  text-transform: uppercase;
  color: #32623E;
  letter-spacing: 0.08em;
  transition: background 0.15s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #C7A570;
  color: #fff;
}
.main-nav .cta-btn.primary {
  margin-left: 18px;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #32623E;
  padding: 9px 16px;
  border-radius: 8px;
  cursor: pointer;
  display: none;
  transition: background 0.19s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #C7A570;
  color: #fff;
}
@media (max-width: 980px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* =============================
   MOBILE MENU 
   ============================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.47,0.15,0.76,0.75);
  box-shadow: -8px 0 36px rgba(50,98,62,0.08);
  display: flex;
  flex-direction: column;
  padding: 0 0 40px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #32623E;
  padding: 16px;
  margin-left: auto;
  margin-right: 10px;
  margin-top: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #C7A570;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: #32623E;
  padding: 14px 32px 14px 24px;
  border-radius: 7px;
  text-transform: uppercase;
  margin-left: 10px;
  min-width: 240px;
  transition: background 0.2s, color 0.17s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #C7A570;
  color: #fff;
}
@media (min-width: 981px) {
  .mobile-menu { display: none !important; }
}

/* =============================
   BUTTONS & CTA
   ============================= */
.cta-btn, button, input[type="submit"] {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  border-radius: 7px;
  padding: 13px 32px;
  font-size: 1.14rem;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.17s, transform 0.17s;
  box-shadow: 0 1px 4px rgba(50,98,62,0.08);
  margin-top: 12px;
  letter-spacing: 0.072em;
}
.cta-btn.primary {
  background: #32623E;
  color: #fff;
  border: 2px solid #32623E;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #B38938;
  border-color: #B38938;
  color: #fff;
  transform: scale(1.035);
}
.cta-btn.secondary {
  background: #C7A570;
  color: #fff;
  border: 2px solid #C7A570;
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: #32623E;
  color: #fff;
  border-color: #32623E;
  transform: scale(1.025);
}

/* =============================
   HERO SECTIONS
   ============================= */
.hero {
  background: #F1EEE5;
  box-shadow: none;
  border-radius: 0;
  padding-bottom: 0;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.hero .content-wrapper {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}
.hero h1 {
  color: #32623E;
  font-size: 2.7rem;
  margin-bottom: 10px;
  letter-spacing: 0.045em;
}
.hero p {
  color: #394C38;
  font-size: 1.16rem;
  margin-bottom: 24px;
}

@media (max-width: 650px) {
  .hero .container { min-height: 200px; }
  .hero h1 { font-size: 1.7rem; }
}

/* =============================
   FEATURES, SERVICE CARDS, CATEGORIES, BLOG PREVIEW
   ============================= */
.feature-grid, .category-tiles, .blog-preview-grid, .workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.feature-grid li, .category-tiles li, .blog-preview-grid li, .workshop-list li {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1.5px 8px rgba(50,98,62,0.08);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  padding: 26px 20px 19px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  border: 1.5px solid #E2E0D8;
  margin-bottom: 20px;
  transition: box-shadow 0.13s, border-color 0.13s;
}
.feature-grid li:hover, .category-tiles li:hover, .blog-preview-grid li:hover, .workshop-list li:hover {
  box-shadow: 0 6.5px 24px rgba(199,165,112,0.10);
  border-color: #C7A570;
}
.feature-grid img, .category-tiles img, .workshop-list img {
  width: 44px; height: 44px;
  margin-bottom: 2px;
  align-self: flex-start;
  border-radius: 50%;
  background: #F1EEE5;
  padding: 5px;
}
.feature-grid h3, .category-tiles h3, .workshop-list h3, .blog-preview-grid h3 {
  color: #32623E;
  margin-bottom: 4px;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.feature-grid p, .category-tiles p, .blog-preview-grid p, .workshop-list p {
  color: #394C38;
  font-size: 0.98rem;
}

@media (max-width: 900px) {
  .feature-grid, .category-tiles, .blog-preview-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid li, .category-tiles li, .blog-preview-grid li {
    min-width: unset;
    max-width: 100%;
  }  
}

/* =============================
   SERVICE HIGHLIGHTS (INDEX), SERVICE LIST (DIENSTLEISTUNGEN) 
   ============================= */
.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0 20px 0;
}
.service-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1.5px 8px rgba(50,98,62,0.10);
  border: 1.3px solid #E2E0D8;
  padding: 28px 22px 20px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: box-shadow 0.15s, border-color 0.13s;
}
.service-card:hover {
  box-shadow: 0 8px 25px rgba(50,98,62,0.13);
  border-color: #B38938;
}
.service-card h3 {
  margin-bottom: 6px;
  font-size: 1.15rem;
  color: #32623E;
}
.service-card p {
  color: #394C38;
  font-size: 0.97rem;
}
.service-price {
  color: #B38938;
  font-weight: 700;
  font-size: 1.14rem;
  margin-top: 7px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.service-list li {
  background: #fff;
  border-radius: 11px;
  border: 1px solid #E2E0D8;
  box-shadow: 0 1px 7px rgba(50,98,62,0.07);
  padding: 19px 16px 13px 16px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.service-list li h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.11rem;
  color: #32623E;
}
.service-list li .service-price {
  color: #B38938;
  font-size: 1.04rem;
  margin-left: 14px;
}

@media (max-width: 900px) {
  .service-highlights {
    flex-direction: column;
    gap: 16px;
  }
  .service-card { min-width: unset; max-width: 100%; }
}

/* =============================
   TESTIMONIALS
   ============================= */
.testimonials, .workshop-testimonials {
  background: #F1EEE5;
  border: none;
  box-shadow: none;
  margin-bottom: 64px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 20px 0;
}
.testimonial-card {
  background: #fff;
  box-shadow: 0 3px 14px rgba(50,98,62,0.09);
  border-radius: 15px;
  border-left: 7px solid #B38938;
  flex: 1 1 290px;
  padding: 22px 26px;
  margin-bottom: 20px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  min-width: 260px;
  max-width: 390px;
}
.testimonial-card p {
  color: #27382A;
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 5px;
}
.testimonial-card .testimonial-name {
  color: #32623E;
  font-weight: bold;
  font-size: 0.99rem;
}
.rating-summary {
  background: #32623E;
  color: #fff;
  padding: 12px 16px;
  border-radius: 9px;
  font-size: 1.02rem;
  font-weight: 600;
  margin-top: 12px;
  text-align: center;
}
@media (max-width: 900px) {
  .testimonial-slider { flex-direction: column; gap: 18px; }
  .testimonial-card { min-width: unset; max-width: 100%; }
}

/* =============================
   CTA BANNER (on multiple pages)
   ============================= */
.cta-banner-section {
  background: transparent;
  border: none; box-shadow: none; padding: 0; margin-bottom: 36px;
}
.cta-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #C7A570;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(179,137,56, 0.08);
  padding: 32px 30px;
  font-size: 1.16rem;
}
.cta-banner p {
  color: #fff;
  font-size: 1.11rem;
  margin-bottom: 0;
  font-weight: 600;
}
@media (max-width: 768px) {
  .cta-banner { flex-direction: column; gap: 16px; padding: 18px 10px; }
  .cta-banner-section { margin-bottom: 26px; }
}

/* =============================
   FOOTER
   ============================= */
footer {
  background: #27382A;
  color: #fff;
  border-top: 4px solid #32623E;
  margin-top: 38px;
  width: 100%;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  padding: 36px 0 28px 0;
}
.footer-nav, .legal-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a, .legal-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus,
.legal-nav a:hover, .legal-nav a:focus {
  color: #C7A570;
}
.footer-contact {
  color: #F1EEE5;
  font-size: 1rem;
  margin-bottom: 8px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.footer-contact a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.18s;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #B38938;
}
@media (max-width: 900px) {
  .footer-flex {
    flex-direction: column;
    gap: 21px;
    align-items: flex-start;
    padding: 22px 0 18px 0;
  }
}

/* =============================
   LEGAL PAGES
   ============================= */
.legal-content {
  background: #fff;
  box-shadow: 0 3px 12px rgba(50,98,62,0.05);
  border-radius: 13px;
  padding: 40px 20px;
  margin-bottom: 48px;
}
.legal-content h1 {
  color: #32623E;
  margin-bottom: 30px;
}
.legal-content h2 {
  font-size: 1.28rem;
  margin-top: 22px;
  color: #32623E;
}
.legal-content ul { margin-left: 20px; list-style: disc; }
.legal-content li { margin-bottom: 6px; color: #394C38; font-size: 1.01rem; }

/* =============================
   THANK YOU PAGE
   ============================= */
.thank-you-section .text-section {
  margin-bottom: 24px;
}
.thank-you-section h1 {
  color: #32623E;
  margin-bottom: 19px;
}
.next-steps ul {
  list-style: square inside;
  margin-bottom: 17px;
  color: #394C38;
}
@media (max-width: 650px) {
  .thank-you-section {
    margin-bottom: 25px;
    padding: 18px 6px;
  }
}

/* =============================
   FORM/CONTACT (structure only, style as needed)
   ============================= */
input, textarea, select {
  padding: 10px 13px;
  border: 1.5px solid #C7A570;
  border-radius: 7px;
  font-size: 1rem;
  margin-bottom: 14px;
  width: 100%;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  transition: border-color 0.15s, box-shadow 0.11s;
}
input:focus, textarea:focus, select:focus {
  border-color: #32623E;
  outline: none;
  box-shadow: 0 0 8px rgba(50,98,62,0.07);
}
label {
  margin-bottom: 6px;
  display: block;
  color: #32623E;
  font-weight: bold;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* =============================
   BLOG HIGHLIGHTS / HINTS
   ============================= */
.highlighted-tips, .format-options, .editorial-recommendations {
  background: #fff8e6;
  border-left: 6px solid #B38938;
  padding: 14px 16px;
  border-radius: 10px;
  margin: 20px 0 12px 0;
}
.editorial-recommendations p { margin-bottom: 0; }

.mt-3 { margin-top: 22px !important; }

/* =============================
   FLEX LAYOUT SPACING HELPERS
   - minimum gap: 20px between blocks, cards etc.
   ============================= */
.section > *, .content-wrapper > * {
  margin-bottom: 20px;
}
.section > *:last-child, .content-wrapper > *:last-child {
  margin-bottom: 0;
}

/* =============================
   COOKIE CONSENT BANNER & MODAL
   ============================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  color: #27382A;
  border-top: 2.5px solid #B38938;
  box-shadow: 0 -7px 32px rgba(50,98,62,0.13);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 22px 28px 20px 28px;
  font-size: 1.07rem;
  transition: transform 0.24s cubic-bezier(0.47,0.15,0.76,0.75);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 9px 12px 9px;
    font-size: 0.97rem;
  }
}
.cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn, .cookie-banner .cta-btn {
  border-radius: 5px;
  padding: 10px 22px;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.17s, color 0.15s;
  border: 2px solid #C7A570;
  margin-top: 0;
  text-transform: uppercase;
}
.cookie-btn.accept {
  background: #32623E;
  color: #fff;
  border-color: #32623E;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #B38938;
  border-color: #B38938;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #32623E;
  border-color: #32623E;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #C7A570;
  color: #fff;
}
.cookie-btn.settings {
  background: #C7A570;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #32623E;
  color: #fff;
}

.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(50,98,62,0.35);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(.52,-0.11,.44,1.13);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 14px;
  padding: 38px 28px 28px 28px;
  box-shadow: 0 11px 42px rgba(50,98,62, 0.18);
  max-width: 420px;
  width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 23px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 17px; right: 17px;
  background: #fff;
  color: #32623E;
  border: 1.5px solid #C7A570;
  border-radius: 50%;
  font-size: 1.25rem;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #C7A570;
  color: #fff;
}
.cookie-modal-content h3 {
  font-size: 1.22rem;
  margin-bottom: 9px;
  color: #32623E;
}
.cookie-preference-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #F1EEE5;
  border-radius: 7px;
  padding: 11px 13px;
  margin-bottom: 10px;
}
.cookie-preference-category.always-on label {
  color: #32623E;
  font-weight: 700;
  opacity: 0.7;
}
.cookie-preference-category input[type='checkbox'] {
  accent-color: #32623E;
  width: 19px; height: 19px;
}

/* =============================
   GEOMETRIC VISUAL DETAILS
   ============================= */
.section, .card, .service-card, .testimonial-card, .category-tiles li, .blog-preview-grid li, .feature-grid li, .workshop-list li, .cookie-modal-content {
  border-radius: 18px 4px 14px 0;
  border-width: 1.5px;
}
.cta-btn, .cookie-btn, .cta-banner {
  border-radius: 8px 0 8px 0;
}
h1, h2, h3, .cta-btn, .main-nav a, .mobile-nav a, .cookie-btn, .cookie-modal-content h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif !important;
  font-variant: small-caps;
  letter-spacing: 0.06em;
  font-weight: 700;
}

/* =============================
   UTILITIES & ACCESSIBILITY
   ============================= */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0; clip: rect(0,0,0,0); overflow: hidden;
}

/* ===================================================================
   TRANSITIONS & MICRO-INTERACTIONS
   =================================================================== */
.card, .service-card, .testimonial-card, .feature-grid li, .category-tiles li {
  transition: box-shadow 0.16s, transform 0.19s, border-color 0.1s;
}
.card:hover, .service-card:hover, .testimonial-card:hover, .feature-grid li:hover, .category-tiles li:hover {
  box-shadow: 0 10px 32px rgba(199,165,112,0.16);
  transform: translateY(-4px) scale(1.02);
  border-color: #B38938;
}
.cta-btn, .cookie-btn {
  transition: background 0.14s, color 0.13s, transform 0.14s;
}
.cta-btn:active, .cookie-btn:active {
  transform: scale(0.97);
}

/* ===================================================================
   CUSTOM SCROLLBAR (WEBKIT BROWSERS)
   =================================================================== */
::-webkit-scrollbar {
  width: 10px;
  background-color: #F1EEE5;
}
::-webkit-scrollbar-thumb {
  background: #C7A570;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #B38938;
}
