/* --- 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,
main, 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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F5F4F0;
  color: #273043;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #3A6B35;
  outline-offset: 2px;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

/* --- BRAND PALETTE & NATURE-ORGANIC CUSTOM PROPERTIES --- */
:root {
  --primary: #273043;
  --secondary: #D9B25C;
  --accent: #F5F4F0;
  --earth-green: #3A6B35;
  --moss-green: #A4C29B;
  --earth-brown: #977F5B;
  --clay: #D7C4A3;
  --organic-white: #F9F7F3;
  --body-font: 'Roboto', Arial, sans-serif;
  --display-font: 'Montserrat', 'Roboto', Arial, sans-serif;
  --box-radius: 22px;
  --card-radius: 20px;
  --shadow: 0 2px 12px rgba(39, 48, 67, 0.08), 0 1.5px 6px rgba(58, 107, 53, 0.07);
  --btn-shadow: 0 1.5px 9px rgba(58, 107, 53, 0.18);
  --transition: 0.2s cubic-bezier(.4,.15,.4,1);
}

/* --- LAYOUT & CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--organic-white);
  border-radius: var(--box-radius);
  box-shadow: var(--shadow);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 8px;
  }
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--display-font);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 14px;
  line-height: 1.14;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1.16;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 6px;
  color: var(--earth-green);
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 6px;
}
p, ul, ol, dd {
  font-size: 1rem;
  color: #36382B;
  margin-bottom: 0;
}
.subheadline {
  color: var(--earth-brown);
  font-size: 1.21rem;
  font-family: var(--body-font);
  margin-bottom: 16px;
}
.text-section, .faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
dl {
  margin-bottom: 20px;
}
dt {
  font-weight: 700;
  color: var(--earth-green);
  margin-top: 14px;
}
dd {
  margin-left: 0;
  margin-top: 4px;
  margin-bottom: 4px;
}
address {
  font-style: normal;
  color: #544D38;
}

/* --- BUTTONS --- */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 44px;
  font-family: var(--display-font);
  font-size: 1.03rem;
  font-weight: 700;
  border-radius: 32px;
  padding: 0.8em 2.2em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  margin-top: 6px;
  box-shadow: var(--btn-shadow);
  border: none;
  text-align: center;
  outline: none;
}
.btn-primary {
  background: var(--earth-green);
  color: var(--accent);
  border: 2px solid var(--earth-green);
}
.btn-primary:hover, .btn-primary:focus {
  background: #2E7D32;
  color: #F5F4F0;
  box-shadow: 0 5px 24px rgba(42, 86, 37, 0.18);
}
.btn-secondary {
  background: var(--clay);
  color: var(--earth-green);
  border: 2px solid var(--earth-green);
  font-weight: 600;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #fff7ea;
  color: var(--primary);
  border-color: var(--primary);
}

/* --- HEADER --- */
header {
  background: var(--organic-white);
  box-shadow: 0 1px 8px rgba(39,48,67,0.08);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 14px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.logo img {
  height: 48px;
  width: auto;
  transition: transform var(--transition);
}
.logo img:hover {
  transform: scale(1.06) rotate(-3deg);
}

/* --- MAIN NAVIGATION (DESKTOP) --- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: var(--display-font);
  font-size: 1.01rem;
  color: var(--primary);
  padding: 6px 0;
  border-radius: 4px;
  transition: color 0.18s, background 0.18s;
  font-weight: 500;
  position: relative;
}
.main-nav a:not(.btn-primary):hover,
.main-nav a:not(.btn-primary):focus {
  color: var(--earth-green);
  background: #ecf3e7;
}
.main-nav .btn-primary {
  margin-left: 10px;
  font-size: 1rem;
}

/* --- MOBILE MENU BUTTON --- */
.mobile-menu-toggle {
  display: none;
  background: var(--earth-green);
  color: var(--accent);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  border: none;
  cursor: pointer;
  font-size: 1.45rem;
  align-items: center;
  justify-content: center;
  z-index: 50;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #2E7D32;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: var(--organic-white);
  box-shadow: -4px 0 26px rgba(58,107,53,0.12);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.78,.14,.15,.86);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 22px;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--earth-green);
  color: var(--accent);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(39,48,67,0.10);
  z-index: 1000;
  transition: background 0.18s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #2E7D32;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 90px;
  padding-left: 24px;
  padding-right: 24px;
}
.mobile-nav a {
  font-family: var(--display-font);
  font-size: 1.16rem;
  padding: 16px 0 12px;
  color: var(--earth-green);
  border-radius: 6px;
  text-align: left;
  transition: background var(--transition), color var(--transition);
  font-weight: 600;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: #e8efeb;
  color: var(--primary);
}
@media (max-width: 1060px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1061px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(120deg, #F5F4F0 70%, #e4e6da 100%);
  border-bottom-left-radius: 80px 60px;
  border-bottom-right-radius: 160px 80px;
  box-shadow: 0 4px 38px rgba(58,107,53,0.08);
  padding: 54px 0 34px 0;
  margin-bottom: 36px;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.hero h1 {
  font-size: 2.7rem;
  color: var(--earth-green);
  letter-spacing: 0.01em;
}
.hero p {
  max-width: 540px;
  margin-bottom: 8px;
}
@media (max-width: 600px) {
  .hero {
    border-bottom-left-radius: 44px 28px;
    border-bottom-right-radius: 84px 36px;
    padding: 32px 0 16px;
  }
  .hero h1 {
    font-size: 2.0rem;
  }
}

/* --- ORGANIC FEATURE CARDS --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--card-radius) 56px 34px 24px/28px 46px 30px 18px;
  padding: 34px 24px 24px 24px;
  min-width: 245px;
  flex: 1 1 260px;
  max-width: 320px;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid #e0e2de;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-item:hover {
  box-shadow: 0 10px 35px 0 rgba(58,107,53,0.13);
  transform: translateY(-3px) scale(1.025);
}
.feature-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 4px;
  filter: drop-shadow(0 1px 2px rgba(58,107,53,0.09));
}

/* --- WHY RENOVCASCADE SECTION --- */
.why-renovcascade {
  background: #e8efeb;
  border-radius: 38px;
  box-shadow: var(--shadow);
}
.why-renovcascade .text-section ul {
  padding-left: 22px;
}
.why-renovcascade .text-section li {
  margin-bottom: 12px;
  font-size: 1.04rem;
  color: #333d2e;
  line-height: 1.7;
  position: relative;
}
.why-renovcascade .text-section li strong {
  color: var(--earth-green);
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: var(--accent);
  border-radius: 44px;
  box-shadow: var(--shadow);
}
.testimonials h2 {
  text-align: center;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: 0 2.5px 17px rgba(39,48,67,0.07);
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #e0e2de;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  transition: box-shadow var(--transition), top var(--transition);
}
.testimonial-card:hover {
  box-shadow: 0 8px 38px rgba(58,107,53,0.18);
  top: -2px;
}
.testimonial-card p {
  color: #374632;
  font-size: 1.10rem;
  line-height: 1.6;
}
.testimonial-details {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 1rem;
  color: var(--earth-green);
  font-weight: 600;
}
.testimonial-details span:last-child {
  color: #ceae3e;
  font-family: var(--display-font);
  font-size: 1.05em;
}

/* --- CTA Section --- */
.cta {
  background: var(--earth-green);
  color: #fff;
  border-radius: 36px;
  box-shadow: 0 7px 32px rgba(50,104,53,0.15);
  margin-bottom: 44px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta h2, .cta p {
  color: #fff;
}

/* --- SERVICE LIST --- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.service-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--card-radius) 40px 25px 25px/26px 36px 18px 12px;
  box-shadow: var(--shadow);
  min-width: 254px;
  flex: 1 1 270px;
  max-width: 330px;
  margin-bottom: 20px;
  border: 1px solid #e0e2de;
  padding: 32px 22px 22px 22px;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.service-item:hover {
  box-shadow: 0 12px 40px rgba(137,153,79,0.15);
  transform: translateY(-2.5px) scale(1.02);
}
.service-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 3px;
}
.service-item h2 {
  font-size: 1.235rem;
  color: var(--earth-green);
  margin-bottom: 4px;
}

/* --- TABLES & PRICING --- */
.preis-tabelle table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 10px rgba(58,107,53,0.07);
  margin-bottom: 12px;
}
.preis-tabelle th, .preis-tabelle td {
  padding: 14px 18px;
  border-bottom: 1px solid #ece9df;
  font-size: 1rem;
  color: #273043;
}
.preis-tabelle th {
  background: var(--clay);
  color: var(--earth-green);
  font-family: var(--display-font);
  font-weight: 700;
}
.preis-tabelle tr:last-child td {
  border-bottom: none;
}
.preisanfrage-hinweis {
  color: #6d5c3e;
  font-size: 1.02em;
  margin-top: 8px;
  margin-bottom: 2px;
}

/* --- FAQ SECTION --- */
.faq-list {
  margin-bottom: 18px;
}
.faq-list h2 {
  color: var(--earth-green);
  font-size: 1.24rem;
  margin-bottom: 14px;
}
.faq-list dt {
  margin-top: 12px;
}
.faq-list dd {
  margin-bottom: 8px;
}

/* --- MAP EMBED & CONTACT --- */
.map-embed {
  margin-top: 12px;
  border-radius: 26px;
  overflow: hidden;
  background: #eaf6e1;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 380px;
}
.social-links {
  margin-top: 14px;
  display: flex;
  gap: 18px;
}
.social-links a {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  justify-content: center;
  box-shadow: 0 2.5px 17px rgba(39,48,67,0.10);
  transition: transform .12s, box-shadow .18s;
}
.social-links a:hover {
  transform: scale(1.07);
  box-shadow: 0 7.5px 19px rgba(58,107,53,0.13);
  background: #f7faec;
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: #f9f7f3;
  padding: 0;
  margin-top: 32px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 0 18px 0;
}
.footer-logo img {
  max-width: 54px;
  height: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: var(--accent);
  font-family: var(--display-font);
  font-size: 1.01rem;
  padding: 4px 0;
  text-decoration: underline 0.1em rgba(217,178,92,0.18);
  transition: color .13s, text-decoration-color .13s;
}
.footer-nav a:hover {
  color: var(--secondary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.97rem;
  color: #ede8da;
}
.footer-contact img {
  width: 22px;
  height: 22px;
  margin-right: 7px;
  vertical-align: middle;
}
.footer-contact span, .footer-contact a {
  vertical-align: middle;
  color: #ebe7dc;
}
.footer-copy {
  width: 100%;
  margin-top: 18px;
  font-size: 0.96rem;
  color: #bdb291;
  text-align: center;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .footer-nav {
    flex-direction: row;
    gap: 12px;
  }
}

/* --- RESPONSIVE FLEX LAYOUTS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: var(--card-radius) 34px 24px 18px/28px 46px 14px 10px;
  background: #fff;
  box-shadow: var(--shadow);
  position: relative;
  flex: 1 1 240px;
  min-width: 260px;
  max-width: 350px;
  padding: 24px 18px 16px 18px;
}
.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: 820px) {
  .feature-grid, .service-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item, .service-item, .card {
    max-width: 100%;
    min-width: 190px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* --- MODALS, OVERLAYS, GENERAL UTILS --- */
[hidden] {
  display: none !important;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffdfa;
  color: #36382B;
  box-shadow: 0 -3px 18px rgba(58,107,53,0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 18px 16px 16px 16px;
  z-index: 20000;
  border-top-left-radius: 18px;
  border-top-right-radius: 48px;
  font-size: 1rem;
  min-height: 74px;
  animation: banner-in 0.35s cubic-bezier(.66,.08,.48,1);
}
@keyframes banner-in {
  0% { transform: translateY(100%); opacity: .11; }
  83% { opacity: 1; }
  100% { transform: translateY(0); }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: var(--display-font);
  font-size: 1rem;
  padding: 0.53em 1.51em;
  border-radius: 28px;
  cursor: pointer;
  margin-right: 0;
  border: none;
  box-shadow: 0 1.5px 7px rgba(43, 92, 41, 0.09);
  transition: background var(--transition), color var(--transition), border var(--transition);
}
.cookie-banner .accept {
  background: var(--earth-green);
  color: var(--accent);
  border: 2px solid var(--earth-green);
  font-weight: 600;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #38632F;
}
.cookie-banner .reject {
  background: #fcf6ea;
  color: var(--earth-green);
  border: 2px solid var(--earth-green);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #ffeccf;
}
.cookie-banner .settings {
  background: #f1e3c1;
  color: var(--primary);
  border: 2px solid var(--secondary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--secondary);
  color: #273043;
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 21111;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(39, 48, 67, 0.26);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: overlay-in 0.22s ease;
}
@keyframes overlay-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fffdfa;
  border-radius: 22px 44px 28px 22px/22px 38px 22px 18px;
  box-shadow: 0 8px 42px rgba(58,107,53,0.19);
  max-width: 380px;
  width: 95vw;
  padding: 32px 26px 24px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modal-in .27s cubic-bezier(.72,.2,.31,1);
}
@keyframes modal-in {
  0% { transform: scale(0.75) translateY(80px); opacity: 0.17; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal .modal-close {
  position: absolute;
  top: 12px; right: 20px;
  background: var(--earth-green);
  color: var(--accent);
  border-radius: 50%;
  width: 34px; height: 34px;
  border: none;
  font-size: 1.18rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.15s;
}
.cookie-modal .modal-close:hover {
  background: #259a4a;
}
.cookie-modal .modal-title {
  font-family: var(--display-font);
  font-size: 1.21rem;
  color: var(--earth-green);
  font-weight: 700;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8f7f2;
  border-radius: 14px;
  padding: 10px 14px;
}
.cookie-modal .category-title {
  font-size: 1.05rem;
  font-family: var(--display-font);
  color: var(--earth-green);
  font-weight: 600;
}
.cookie-modal .cookie-toggle {
  display: inline-block;
  width: 42px;
  height: 26px;
  position: relative;
}
.cookie-modal .cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ebdfd9;
  border-radius: 14px;
  transition: background .18s;
}
.cookie-modal .cookie-toggle input:checked + .slider {
  background: var(--earth-green);
}
.cookie-modal .slider:before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: #fff;
  border-radius: 50%;
  transition: transform .18s;
  box-shadow: 0 2.5px 8px rgba(39,48,67,0.09);
}
.cookie-modal .cookie-toggle input:checked + .slider:before {
  transform: translateX(16px);
}
.cookie-modal .category-desc {
  width: 100%;
  font-size: 0.97rem;
  color: #36382B;
  margin-top: 3px;
  margin-bottom: 4px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.cookie-modal .cookie-modal-actions button {
  padding: 0.52em 1.42em;
  border-radius: 23px;
  font-family: var(--display-font);
  font-size: 1rem;
  cursor: pointer;
  border: none;
  color: var(--accent);
  background: var(--earth-green);
  font-weight: 700;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal .cookie-modal-actions button:last-child {
  background: #fcf6ea;
  color: var(--earth-green);
  border: 2px solid var(--earth-green);
  font-weight: 500;
}
.cookie-modal .cookie-modal-actions button:last-child:hover {
  background: #fff5e6;
}

/* --- FORM ELEMENTS --- */
input[type="text"], input[type="email"], input[type="tel"], textarea {
  display: block;
  width: 100%;
  font-size: 1rem;
  background: #f8faf5;
  color: var(--primary);
  border: 1.5px solid #a4c29b7b;
  border-radius: 18px;
  padding: 10px 18px;
  margin-bottom: 18px;
  transition: border-color .15s, box-shadow .15s;
  box-shadow: none;
  outline: none;
}
input:focus, textarea:focus {
  border-color: var(--earth-green);
  box-shadow: 0 0 0 2px #a4c29b42;
}
label {
  font-family: var(--display-font);
  color: var(--earth-green);
  font-size: 1.07rem;
  margin-bottom: 4px;
  display: block;
  font-weight: 600;
}

/* --- MEDIA QUERIES / MOBILE FIRST RESPONSIVENESS --- */
@media (max-width: 768px) {
  .content-wrapper, .section, .feature-grid, .service-list, .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .container {
    padding: 0 6px;
  }
  h1 {
    font-size: 1.55rem;
  }
  h2 {
    font-size: 1.22rem;
  }
  .feature-item, .service-item {
    max-width: 100%;
    min-width: 125px;
    padding: 18px 10px 14px 10px;
  }
  .testimonial-card {
    max-width: 98vw;
    padding: 15px 8px;
  }
  .cta {
    border-radius: 20px;
    padding-top: 22px;
    padding-bottom: 18px;
  }
  .footer-contact {
    font-size: 0.92rem;
    gap: 7px;
  }
}
@media (max-width: 480px) {
  .card, .feature-item, .service-item {
    min-width: 90px;
    padding: 14px 4px 11px 4px;
    font-size: 0.98rem;
  }
  .cookie-modal {
    padding: 14px 3.5vw;
  }
  .cookie-banner {
    padding: 10px 2.5vw 6px;
    font-size: 0.96rem;
  }
}

/* --- MICRO-INTERACTIONS & ORGANIC DECORATIVE ELEMENTS --- */
.feature-item:before, .service-item:before, .testimonial-card:before {
  content: '';
  position: absolute;
  left: -22px; top: -18px;
  width: 36px; height: 36px;
  background: radial-gradient(circle at 65% 25%, #a4c29b2e 48%, transparent 90%);
  border-radius: 24px 56px 30px 22px/18px 44px 22px 16px;
  z-index: 1;
  pointer-events: none;
  opacity: .55;
}
.feature-item:after, .service-item:after, .testimonial-card:after {
  content: '';
  position: absolute;
  right: -18px; bottom: -12px;
  width: 26px; height: 26px;
  background: radial-gradient(circle at 35% 80%, #d9b25c1a 58%, transparent 100%);
  border-radius: 22px 11px 30px 22px/18px 44px 22px 16px;
  z-index: 1;
  pointer-events: none;
  opacity: .45;
}

/* --- ACCESSIBILITY --- */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
  .mobile-menu, .cookie-banner, .cookie-modal, .cookie-modal-overlay {
    animation: none !important;
  }
}
