/* 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: 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: #F8F6F3;
  color: #222;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s, background 0.18s;
}
ul, ol {
  list-style-position: inside;
  margin-left: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}
:focus {
  outline: 2px solid #E7B448;
  outline-offset: 2px;
}

/* FONT IMPORT */
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');

body {
  font-family: 'Open Sans', Georgia, serif;
  font-size: 16px;
  background: #F8F6F3;
  color: #222;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #215B2F;
}
h1 {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 700;
}
h2 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 18px;
  font-weight: 700;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
}
h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  font-weight: 700;
}
p, li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
p.subheadline {
  font-size: 1.15rem;
  color: #215B2F;
  font-weight: 600;
}
strong {
  font-weight: bold;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* HEADER */
header {
  background: #fff;
  border-bottom: 1px solid #EDE9E0;
  box-shadow: 0 2px 8px 0 rgba(31,60,29, 0.045);
  position: relative;
  z-index: 51;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  gap: 24px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Open Sans', Georgia, serif;
  font-weight: 600;
  color: #215B2F;
  font-size: 1rem;
  padding: 6px 0;
  position: relative;
  transition: color 0.16s;
}
.main-nav a:hover {
  color: #E7B448;
}
.cta.primary {
  background: #215B2F;
  color: #fff;
  padding: 13px 28px;
  border-radius: 30px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 4px 16px 0 rgba(31,60,29, 0.06);
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  border: 2px solid transparent;
  display: inline-block;
}
.cta.primary:hover, .cta.primary:focus {
  background: #E7B448;
  color: #215B2F;
  border-color: #E7B448;
  box-shadow: 0 8px 28px 0 rgba(31,60,29,0.13);
}
.cta {
  background: #E7B448;
  color: #215B2F;
  padding: 11px 24px;
  border-radius: 28px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 3px 14px 0 rgba(231,180,72,0.10);
  margin-top: 16px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  border: 2px solid transparent;
}
.cta:hover, .cta:focus {
  background: #215B2F;
  color: #fff;
  border-color: #215B2F;
  box-shadow: 0 6px 18px 0 rgba(33,91,47,0.12);
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: #E7B448;
  width: 44px;
  height: 44px;
  font-size: 1.75rem;
  color: #215B2F;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  margin-left: 16px;
  z-index: 54;
  transition: background 0.17s, color 0.17s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #215B2F;
  color: #fff;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 100;
  transform: translateX(100vw);
  transition: transform 0.38s cubic-bezier(.4,1,.5,1.1);
  box-shadow: 0 0 40px 0 rgba(33,91,47,0.18);
  flex-direction: column;
  align-items: flex-start;
  padding: 44px 28px 28px 28px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: #215B2F;
  background: #F8F6F3;
  border-radius: 8px;
  margin-bottom: 18px;
  align-self: flex-end;
  padding: 4px 12px;
  transition: background 0.17s, color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E7B448;
  color: #215B2F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 10px;
}
.mobile-nav a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  color: #215B2F;
  padding: 10px 4px;
  border-radius: 5px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E7B448;
  color: #215B2F;
}

/* HERO & SECTIONS -- LAYOUT */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.hero, .cta-banner {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px 0 rgba(33,91,47,0.08);
  margin-bottom: 60px;
}
.hero .container,
.cta-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper,
.cta-banner .content-wrapper {
  max-width: 660px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.features {
  background: #F8F6F3;
}
.features .container {
  flex-direction: column;
}
.features h2 {
  text-align: center;
  margin-bottom: 32px;
}
.features .content-wrapper.grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.feature-tile {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 14px 0 rgba(33,91,47,0.08);
  padding: 32px 28px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 296px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 1px solid #EDE9E0;
}
.feature-tile img {
  height: 40px;
  width: 40px;
  margin-bottom: 7px;
}
.feature-tile h3 {
  margin-bottom: 4px;
}
.feature-tile p {
  flex: 1;
  margin-bottom: 0;
}
.feature-tile .feature-price {
  font-family: 'Playfair Display', Georgia, serif;
  color: #E7B448;
  font-weight: 700;
  font-size: 1.2rem;
}
.feature-tile:hover {
  box-shadow: 0 8px 28px 0 rgba(33,91,47,0.15);
  transform: translateY(-6px) scale(1.025);
  border-color: #E7B448;
}

.about-preview, .about-mission, .about-usp, .about-team, .services-intro, .service-details, .services-process, .plant-hero, .plant-advice, .seasonal-tips, .article-list, .newsletter-signup, .workshop-hero, .workshop-list, .workshop-value-prop, .contact, .faq-brief, .ratgeber-hero, .legal, .legal-gdpr, .legal-cookie, .legal-terms, .thank-you-confirmation {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 16px 0 rgba(33,91,47,0.07);
}

.content-wrapper,
.text-section,
.card-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section ul, .text-section ol {
  margin-left: 24px;
  margin-bottom: 10px;
}
.text-section ul li {
  margin-bottom: 8px;
  list-style-type: disc;
}
.text-section a.cta {
  align-self: flex-start;
}

/* FLEX WRAP GRIDS */
.grid,
.content-grid,
.card-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card-container {
  margin-bottom: 20px;
}
.card, .team-member, .service-module, .plant-category, .workshop-item, .blog-teaser {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 16px 0 rgba(33,91,47,0.08);
  border: 1px solid #EDE9E0;
  margin-bottom: 20px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover,
.team-member:hover,
.service-module:hover,
.plant-category:hover,
.workshop-item:hover,
.blog-teaser:hover {
  box-shadow: 0 8px 36px 0 rgba(33,91,47,0.13);
  transform: translateY(-4px) scale(1.015);
}

.team-member {
  align-items: center;
  text-align: center;
}
.team-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px auto;
  display: block;
}

.service-module, .plant-category, .workshop-item {
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 296px;
}
.service-module .service-price,
.workshop-item .price {
  color: #E7B448;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 3px;
}

.blog-teaser .tags {
  font-size: 0.93rem;
  color: #215B2F;
  margin-top: 2px;
  margin-bottom: 8px;
  display: inline-block;
  background: #F8F6F3;
  padding: 3px 11px;
  border-radius: 6px;
}
.read-more {
  color: #215B2F;
  font-weight: 700;
  text-decoration: underline;
  margin-top: 8px;
}
.read-more:hover {
  color: #E7B448;
}

.filters {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 24px;
  gap: 10px;
}
.filters ul {
  display: flex;
  gap: 16px;
}
.filters a {
  background: #F8F6F3;
  color: #215B2F;
  font-weight: 600;
  border-radius: 8px;
  padding: 4px 16px;
  transition: background 0.14s, color 0.13s;
}
.filters a:hover {
  background: #E7B448;
  color: #215B2F;
}

.newsletter-signup .content-wrapper {
  align-items: center;
  text-align: center;
}

/* LAYOUT SPECIFIC: FLEXBOX */
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: #F8F6F3;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(33,91,47,0.07);
  margin-bottom: 20px;
  min-width: 230px;
  max-width: 360px;
  flex: 1 1 265px;
  border: 1px solid #EDE9E0;
}
.testimonial-card blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  color: #215B2F;
  text-align: center;
  margin: 0 0 8px 0;
}
.testimonial-meta {
  font-size: 0.99rem;
  color: #215B2F;
  font-family: 'Open Sans', Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.testimonials .content-wrapper.slider {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* CARD SPACING */
.card:not(:last-child),
.feature-tile:not(:last-child),
.team-member:not(:last-child),
.service-module:not(:last-child),
.workshop-item:not(:last-child),
.blog-teaser:not(:last-child),
.testimonial-card:not(:last-child) {
  margin-right: 20px;
}

/* PLANTS & SEASONAL GRID */
.seasonal-tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 22px;
  justify-content: space-between;
}
.seasonal-tip {
  background: #F8F6F3;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(33,91,47,0.07);
  padding: 19px 14px;
  min-width: 190px;
  flex: 1 1 175px;
  margin-bottom: 12px;
}
.seasonal-tip h3 {
  color: #E7B448;
  margin-bottom: 8px;
  font-weight: 700;
}

/* FOOTER */
footer {
  background: #215B2F;
  color: #fff;
  font-size: 0.98rem;
  letter-spacing: 0.015em;
  padding: 28px 0 10px 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #E7B448;
  font-family: 'Open Sans', Georgia, serif;
  font-size: 1rem;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: #fff;
  text-decoration: underline;
}
footer p {
  color: #fff;
  font-size: 0.98rem;
  margin-bottom: 0;
  text-align: center;
}

/* CONTACT DETAILS ICONS */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-details img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
}
.contact-details p,
.contact-details a {
  display: flex;
  align-items: center;
  color: #215B2F;
  font-size: 1rem;
  font-family: 'Open Sans', Georgia, serif;
}
.contact-details a {
  color: #215B2F;
  text-decoration: underline;
}
.contact-details a:hover {
  color: #E7B448;
}
.google-maps-embed {
  background: #F8F6F3;
  border-radius: 10px;
  padding: 14px 10px;
  color: #215B2F;
  margin-top: 13px;
  font-size: 0.99rem;
}

/* LEGAL PAGES */
.legal, .legal-gdpr, .legal-cookie, .legal-terms {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 14px 0 rgba(33,91,47,0.07);
  padding: 36px 24px;
  margin-bottom: 50px;
}
.legal h1, .legal-gdpr h1, .legal-cookie h1, .legal-terms h1 {
  margin-bottom: 24px;
}
.legal h2, .legal-gdpr h2, .legal-cookie h2, .legal-terms h2 {
  margin: 24px 0 12px 0;
}
.legal ul, .legal-gdpr ul, .legal-cookie ul, .legal-terms ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

/* THANK YOU PAGE */
.thank-you-confirmation .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 24px;
}

/* BUTTONS (General) */
button, .btn, input[type=submit] {
  font-family: 'Open Sans', Georgia, serif;
  padding: 12px 24px;
  border-radius: 28px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: #215B2F;
  border: 2px solid #215B2F;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, border-color 0.16s;
}
button:hover, .btn:hover, input[type=submit]:hover {
  background: #E7B448;
  color: #215B2F;
  border-color: #E7B448;
}

/* COOKIE CONSENT */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #215B2F;
  color: #fff;
  z-index: 200;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 20px 20px 20px;
  box-shadow: 0 -2px 16px 0 rgba(33,91,47,0.18);
  border-radius: 20px 20px 0 0;
  animation: fadeInUp 0.65s cubic-bezier(.4,1,.7,1.1);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(64px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0;
  flex: 1 1 auto;
}
.cookie-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: 'Playfair Display', Georgia, serif;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  min-width: 93px;
  transition: background 0.17s, border-color 0.14s, color 0.17s;
}
.cookie-btn.accept {
  background: #E7B448;
  color: #215B2F;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #215B2F;
  color: #fff;
  border-color: #E7B448;
}
.cookie-btn.settings {
  background: #F8F6F3;
  color: #215B2F;
  border: 2px solid #E7B448;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #E7B448;
  color: #215B2F;
}
.cookie-btn.reject {
  background: #fff;
  color: #215B2F;
  border: 2px solid #E7B448;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #215B2F;
  color: #fff;
  border-color: #E7B448;
}

/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(33,91,47,0.32);
  z-index: 260;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.45s;
}
@keyframes fadeIn {
  from { opacity:0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 19px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 10px 48px 0 rgba(33,91,47,0.19);
  padding: 36px 32px 24px 32px;
  color: #215B2F;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalIn 0.5s cubic-bezier(.5,1,.37,1.12);
}
@keyframes modalIn { from {transform: scale(0.96) translateY(24px); opacity:0;} to {transform:scale(1) translateY(0); opacity:1;} }
.cookie-modal h3 {
  font-family: 'Playfair Display', Georgia, serif;
  margin-bottom: 10px;
  font-size: 1.25rem;
  color: #215B2F;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid #EDE9E0;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal label {
  font-size: 1rem;
  color: #215B2F;
  font-weight: 600;
}
.cookie-modal input[type="checkbox"] {
  transform: scale(1.2);
  margin-left: 9px;
}
.cookie-modal .cookie-category.essential label {
  color: #A1A9A5;
  font-style: italic;
}
.cookie-modal-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal .cookie-close {
  font-size: 1.4rem;
  background: none;
  color: #215B2F;
  border-radius: 5px;
  padding: 4px 12px;
  align-self: flex-end;
  margin-bottom: -18px;
  margin-top: -28px;
}
.cookie-modal .cookie-close:hover,
.cookie-modal .cookie-close:focus {
  background: #E7B448;
  color: #fff;
}

/* Media queries for RESPONSIVE */
@media (max-width: 1200px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 980px) {
  header .container {
    gap: 14px;
  }
  .main-nav {
    gap: 16px;
  }
  .feature-tile,
  .service-module,
  .workshop-item,
  .team-member,
  .plant-category,
  .blog-teaser,
  .testimonial-card {
    min-width: 180px;
    max-width: 98vw;
  }
}
@media (max-width: 768px) {
  /* Responsive flex column for wrappers */
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  header .container {
    flex-direction: row;
    gap: 0;
    padding: 12px 8px;
  }
  .main-nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero, .cta-banner, .about-preview, .about-mission, .about-usp, .about-team, .services-intro, .service-details, .services-process, .plant-hero, .plant-advice, .seasonal-tips, .article-list, .newsletter-signup, .workshop-hero, .workshop-list, .workshop-value-prop, .contact, .faq-brief, .ratgeber-hero, .legal, .legal-gdpr, .legal-cookie, .legal-terms, .thank-you-confirmation {
    border-radius: 12px;
    padding: 26px 6px;
  }
  .features .content-wrapper.grid,
  .content-grid,
  .card-container,
  .seasonal-tips-grid,
  .testimonials .content-wrapper.slider {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .testimonial-card {
    min-width: 90vw;
    max-width: 99vw;
  }
  .about-team .content-wrapper.grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .text-image-section, .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .card, .team-member, .service-module, .plant-category, .workshop-item, .blog-teaser {
    min-width: 95vw;
    max-width: 100vw;
    padding: 22px 8px;
  }
  .hero .content-wrapper, .cta-banner .content-wrapper, .thank-you-confirmation .content-wrapper {
    max-width: 99vw;
    padding: 0 6px;
  }
}
@media (max-width: 560px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  .faq-brief, .ratgeber-hero, .legal, .legal-gdpr, .legal-cookie, .legal-terms, .thank-you-confirmation,
  .about-usp, .about-preview, .cta-banner, .newsletter-signup, .about-mission, .about-team {
    padding: 15px 4px;
    border-radius: 5px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 12px 4px 7px 4px;
    border-radius: 4px 4px 0 0;
  }
  .cookie-modal {
    padding: 12px 6px 16px 6px;
    min-width: 99vw;
  }
}

/* MICRO-ANIMATIONS (cards, links, buttons) */
.card, .feature-tile, .team-member, .service-module, .workshop-item, .plant-category, .blog-teaser, .seasonal-tip, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.15s;
}
a, .cta, .cta.primary, .btn, button {
  transition: background 0.14s, color 0.14s, box-shadow 0.15s, border-color 0.13s;
}

/* UTILITIES */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }

/* VISUAL HIERARCHY & SPACING */
section:not(.footer) + section {
  margin-top: 16px !important;
}

/* PREVENT ABSOLUTE POSITIONING & OVERLAP of content */
/* [No absolute for content. Only logo/decoration allowed via inline styles if ever needed] */