/* ===========================
   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;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #FAFAF6;
  color: #22301a;
}
img, svg {
  max-width: 100%;
  display: block;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; }
button, input, select, textarea { font: inherit; }

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

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background-color: #F4F7FB;
  color: #22301a;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #22301a;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
p, ul, ol, table { font-size: 1rem; margin-bottom: 16px; }

.subheadline {
  font-size: 1.18rem;
  font-weight: 400;
  color: #697a5a;
  margin-bottom: 26px;
  line-height: 1.4;
}

@media (max-width: 500px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.11rem; }
  .subheadline { font-size: 1rem; }
}

/* ===========================
   COLOR SYSTEM & VIBES
   =========================== */
:root {
  --color-primary: #1A4C7A;
  --color-secondary: #F4F7FB;
  --color-accent: #EABF4D;
  --color-bg: #FAFAF6;
  --color-green: #406c25;
  --color-earth: #d1c6ae;
  --color-forest: #22301a;
  --color-brown: #6d5945;
  --color-white: #ffffff;
  --color-error: #b5383c;
  --shadow-card: 0 3px 18px rgba(56, 83, 11, 0.08);
  --radius-card: 22px;
  --radius-btn: 20px;
  --transition: 0.26s cubic-bezier(.3,.55,.39,1);
  --gap-lg: 30px;
  --gap-md: 20px;
  --gap-sm: 12px;
}

/* ===========================
   LAYOUT BASICS
   =========================== */
.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section,
.hero,
.features,
.about,
.pricing,
.legal,
.cta,
.services,
.workshops,
.process,
.contact-details,
.thankyou {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-card);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

@media (max-width: 768px) {
  .section, .hero, .features, .about, .pricing, .legal, .cta, .services, .workshops, .process, .contact-details, .thankyou {
    padding: 28px 8px;
    margin-bottom: 40px;
    border-radius: 15px;
  }
}

/* ===========================
   NAVIGATION
   =========================== */
header {
  background: #F9FDFB;
  box-shadow: 0 2px 12px rgba(34, 48, 26,0.08);
  border-bottom: 1px solid #d1c6ae;
  position: sticky;
  width: 100%;
  top: 0; left: 0;
  z-index: 1010;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  padding: 18px 0;
}
.main-nav > a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #22301a;
  padding: 8px 18px;
  border-radius: 18px;
  transition: background var(--transition), color var(--transition);
}
.main-nav > a:hover, .main-nav > a:focus {
  background: var(--color-green);
  color: var(--color-white);
}
.main-nav img {
  height: 34px;
  margin-right: 12px;
  vertical-align: middle;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-green);
  position: absolute;
  right: 18px;
  top: 12px;
  z-index: 1012;
  cursor: pointer;
  padding: 7px 11px;
  border-radius: 12px;
  transition: background var(--transition);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #d1c6ae44;
}

@media (max-width: 950px) {
  .main-nav {
    gap: 10px;
    padding: 10px 0;
  }
  .main-nav > a { padding: 7px 10px; }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* -- Mobile Menu Overlay -- */
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(237, 243, 231, 0.98);
  box-shadow: 0 12px 28px rgba(56, 83, 11, 0.20);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.29,1.12,.44,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 48px;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px; right: 24px;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--color-forest);
  cursor: pointer;
  padding: 6px 9px;
  border-radius: 10px;
  transition: background var(--transition);
  z-index: 1101;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #d1c6ae42;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 34px 32px 22px 30px;
  width: 100vw;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: var(--color-green);
  font-weight: 600;
  padding: 14px 0 8px 14px;
  border-radius: 12px;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--color-forest);
}

/* Ensure mobile menu higher than other overlays */
@media (max-width: 768px) {
  .mobile-menu { width: 100vw; }
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  background: linear-gradient(120deg, #f7fbed 77%, #f0ece2 100%);
  margin-bottom: 60px;
  border-radius: 0 0 34px 34px;
  box-shadow: 0 6px 32px rgba(56,83,11,0.15);
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  color: var(--color-green);
  font-size: 2.3rem;
  text-shadow: 0 2px 10px #c1dab038;
}
@media (max-width: 768px) {
  .hero { padding: 28px 0 28px 0; }
  .hero .container { padding: 0 8px; }
  .hero h1 { font-size: 1.5rem; }
}

/* ===========================
   FEATURES & SERVICES (Index/Leistungen)
   =========================== */
.features .feature-grid, .services .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 220px;
  min-width: 210px;
  background: #edf5e7;
  border-radius: var(--radius-card);
  padding: 24px 22px 18px 22px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px 0 rgba(56,83,11,0.07);
  border: 1px solid #deebd9;
  transition: box-shadow var(--transition), background var(--transition);
  position: relative;
}
.feature-item img {
  width: 46px; height: 46px;
  filter: drop-shadow(0 2px 9px #a2c19733);
  margin-bottom: 7px;
}
.feature-item h3 {
  font-size: 1.11rem;
  color: var(--color-green);
  margin-bottom: 7px;
}
.feature-item p {
  color: #22301a;
  font-size: 1rem;
}
.feature-item:hover, .feature-item:focus-within {
  background: #d8e7c9;
  box-shadow: 0 7px 42px 0 rgba(34,48,26,0.11);
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  flex: 1 1 215px;
  min-width: 210px;
  background: #F9FDFB;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  padding: 22px 18px 20px 18px;
  border: 1px solid #dfefe7;
  transition: box-shadow var(--transition), background var(--transition);
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.service-card h3 {
  color: var(--color-green);
  font-size: 1.04rem;
}
.service-card:hover, .service-card:focus-within {
  background: #e6f3d8;
  box-shadow: 0 7px 34px rgba(56,83,11,0.13);
}

@media (max-width: 960px) {
  .features .feature-grid, .services .service-cards {
    gap: 16px;
  }
  .feature-item, .service-card {
    min-width: 155px;
    flex: 1 1 168px;
    padding: 18px 10px 13px 10px;
  }
}
@media (max-width: 600px) {
  .features .feature-grid, .services .service-cards {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item, .service-card {
    width: 100%;
    min-width: 0;
    margin-bottom: 0;
  }
}

/* ===========================
   ABOUT & TEXT SECTIONS
   =========================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section ul, .text-section ol {
  margin-left: 14px;
  margin-bottom: 18px;
}
.text-section ul li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: middle;
}
.text-section ul li {
  color: #406c25;
  font-size: 1rem;
  margin-bottom: 9px;
  padding-left: 3px;
}
/* For process/numbered steps */
.text-section ol {
  counter-reset: mycount;
  padding-left: 0;
}
.text-section ol li {
  counter-increment: mycount;
  margin-bottom: 22px;
  position: relative;
  padding-left: 38px;
  color: #22301a;
}
.text-section ol li::before {
  content: counter(mycount);
  font-family: 'Montserrat', Arial, sans-serif;
  position: absolute;
  left: 0;
  top: 1px;
  width: 28px;
  height: 28px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 1.08rem;
  font-weight: bold;
  border-radius: 80% 45% 55% 60%/64% 80% 55% 66%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials .content-wrapper {
  gap: var(--gap-md);
}
.testimonial-card {
  background: #F7F6F1;
  color: #22301a;
  border-left: 6px solid #8ab864;
  border-radius: var(--radius-card);
  margin-bottom: 20px;
  padding: 20px 28px 20px 22px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 3px 15px rgba(34,48,26,0.05);
  position: relative;
  transition: box-shadow var(--transition), border var(--transition);
}
.testimonial-card p {
  font-size: 1.12rem;
  color: #344b1f;
  font-style: italic;
  margin-bottom: 0;
  flex: 1 1 auto;
}
.testimonial-card span {
  font-size: .98rem;
  color: #6d5945;
  margin-left: 10px;
  white-space: nowrap;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 7px 16px 0 #e2f3ccab;
  border-left: 7px solid var(--color-green);
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 19px 10px 16px 13px;
    gap: 7px;
  }
  .testimonial-card span { margin-left: 0; }
}

/* ===========================
   CTA/BUTTONS
   =========================== */
.cta-button, button.cta-button, input[type="submit"].cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--color-green);
  color: var(--color-white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.09rem;
  border-radius: var(--radius-btn);
  box-shadow: 0 2px 10px #294a1729;
  margin-top: 6px;
  border: none;
  cursor: pointer;
  letter-spacing: .02em;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  border-bottom: 3px solid #b8a35b2a;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-accent);
  color: var(--color-green);
  box-shadow: 0 6px 17px #c3be924a;
  outline: none;
}

/* ===========================
   PRICING TABLE
   =========================== */
.pricing table {
  width: 100%;
  background: #edf5e7;
  border-radius: 11px;
  margin-bottom: 22px;
  box-shadow: 0 2px 7px rgba(64,108,37,0.06);
  overflow: hidden;
  margin-top: 10px;
}
.pricing th, .pricing td {
  text-align: left;
  padding: 13px 20px;
  font-size: 1.1rem;
}
.pricing th {
  background: #f7fbed;
  color: var(--color-green);
}
.pricing tr {
  border-bottom: 1px solid #d1c6ae44;
}
.pricing tr:last-child { border-bottom: none; }
.pricing td {
  color: #22301a;
}

@media (max-width: 600px) {
  .pricing table, .pricing th, .pricing td {
    font-size: 1rem;
  }
  .pricing th, .pricing td { padding: 10px 10px; }
}

/* ===========================
   FOOTER
   =========================== */
footer {
  width: 100%;
  background: #f7fbed;
  border-top: 1.5px solid #d1c6ae;
  box-shadow: 0 -2px 15px #294a1713;
  padding: 38px 0 0 0;
  font-size: 1rem;
}
.footer-nav {
  width: 100%;
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #6d5945;
  font-size: 1rem;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 9px;
  transition: background var(--transition);
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #eabf4d17;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
  padding: 0 0 18px 0;
  margin-bottom: 0;
}
.footer-contact img {
  width: 48px;
  height: auto;
  margin-right: 18px;
  margin-top: 3px;
  border-radius: 13px;
  background: #f5e5bb;
}
.footer-contact > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact a {
  color: var(--color-green);
  transition: color var(--transition);
}
.footer-contact a:hover, .footer-contact a:focus {
  color: var(--color-accent);
}

@media (max-width: 700px) {
  .footer-nav {
    gap: 10px;
    font-size: .97rem;
    flex-wrap: wrap;
  }
  .footer-contact {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding-bottom: 10px;
  }
  .footer-contact img { margin-bottom: 8px; margin-right: 0; }
}

/* ===========================
   CONTACT DETAILS
   =========================== */
.contact-details .content-wrapper > div > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.contact-details img {
  width: 28px;
  height: 28px;
  background: #d8e7c9;
  border-radius: 8px;
  padding: 4px;
}
.contact-details a {
  color: var(--color-green);
  transition: color .2s;
}
.contact-details a:hover, .contact-details a:focus {
  color: var(--color-accent);
}

/* ===========================
   THANK YOU PAGE
   =========================== */
.thankyou .cta-button {
  margin-top: 24px;
}

/* ===========================
   COOKIE CONSENT BANNER & MODAL
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  z-index: 1200;
  background: #f6fbef;
  color: #22301a;
  box-shadow: 0 -4px 24px #588f2b11;
  border-top: 2px solid #b8a35b44;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  padding: 18px 40px 18px 18px;
  font-size: 1rem;
  animation: fadeInCookie 0.4s .3s backwards;
}
@keyframes fadeInCookie {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  margin-bottom: 0;
  max-width: 520px;
  line-height: 1.4;
  font-size: 1rem;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 15px;
  padding: 9px 22px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 1px 7px #d8e7c96b;
  transition: background var(--transition), color var(--transition);
}
.cookie-banner .accept {
  background: var(--color-green);
  color: var(--color-white);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--color-accent);
  color: var(--color-forest);
}
.cookie-banner .reject {
  background: none;
  border: 2px solid var(--color-brown);
  color: var(--color-brown);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #6d594511;
  color: var(--color-green);
  border-color: var(--color-green);
}
.cookie-banner .settings {
  background: var(--color-accent);
  color: var(--color-green);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--color-green);
  color: var(--color-white);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    padding: 14px 7px 14px 8px;
    gap: 15px;
    font-size: .93rem;
  }
  .cookie-banner .cookie-buttons { gap: 9px; }
}

/* COOKIE MODAL */
.cookie-modal-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: rgba(68,80,42,0.43);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookie .3s backwards;
}
.cookie-modal {
  background: #f3fbe8;
  border-radius: var(--radius-card);
  box-shadow: 0 7px 60px #669b2b22;
  max-width: 420px;
  width: 95vw;
  max-height: 94vh;
  overflow-y: auto;
  padding: 36px 28px 18px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popCookie .27s .1s cubic-bezier(.4,1.34,.44,1) backwards;
}
@keyframes popCookie {
  from { transform: scale(.93); opacity:0; }
  to { transform: scale(1); opacity:1; }
}
.cookie-modal h2 {
  color: var(--color-green);
  font-size: 1.26rem;
  margin-bottom: 3px;
}
.cookie-modal .category {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-modal .category label {
  font-size: 1rem;
  color: #22301a;
  font-weight: 600;
}
.cookie-modal .switch {
  width: 38px;
  height: 22px;
  display: inline-block;
  position: relative;
  margin-right: 8px;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #d1c6ae;
  border-radius: 22px;
  transition: .22s;
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 3px;
  top: 2.5px;
  background: #FFF;
  border-radius: 50%;
  transition: .22s;
  box-shadow: 0 1px 6px #b2b2b259;
}
.cookie-modal .switch input:checked + .slider {
  background: var(--color-green);
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(13px);
}
.cookie-modal .category small {
  font-size: .9em;
  color: #8fa27f;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 13px;
  padding: 8px 19px;
  border: none;
  font-weight: 700;
  transition: background .2s, color .2s;
  font-size: 1rem;
  cursor: pointer;
}
.cookie-modal .save {
  background: var(--color-green);
  color: var(--color-white);
}
.cookie-modal .save:hover, .cookie-modal .save:focus {
  background: var(--color-accent);
  color: var(--color-forest);
}
.cookie-modal .cancel {
  background: none;
  border: 2px solid var(--color-earth);
  color: var(--color-forest);
}
.cookie-modal .cancel:hover, .cookie-modal .cancel:focus {
  background: #d1c6ae26;
  color: var(--color-green);
}

/* ===========================
   GENERAL UTILITIES & ORGANIC EFFECTS
   =========================== */
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #F7F6F1;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; }
  .content-wrapper, .text-section { gap: 13px; }
}

.content-grid > * {
  flex: 1 1 325px;
  min-width: 220px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card {
  margin-bottom: 20px;
  position: relative;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.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;
}

/* Subtle hand-drawn corner for organic shapes */
.section, .features, .about, .testimonials, .cta, .pricing, .services, .workshops, .process, .contact-details, .thankyou, .legal {
  border-radius: 37px 18px 33px 19px/32px 36px 26px 34px;
}

/* Custom scrollbars -- more natural look */
::-webkit-scrollbar {
  width: 10px;
  background: #e6e7dd;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: #b8a35b55;
  border-radius: 99px;
}

/* ===========================
   SELECTION & FOCUS
   =========================== */
::selection {
  background: #eabf4d44;
  color: #22301a;
}
:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ===========================
   RESPONSIVE ADJUSTMENTS
   =========================== */
@media (max-width: 950px) {
  .container { max-width: 98vw; }
}
@media (max-width: 600px) {
  html, body { font-size: 15px; }
}

/* ===========================
   MICRO-INTERACTIONS & ANIMATIONS
   =========================== */
.cta-button, .feature-item, .testimonial-card, .service-card, .cookie-banner button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

/* ===========================
   ERROR & UTILITY CLASSES
   =========================== */
.error {
  background: #feecec;
  color: #b5383c;
  border-radius: 12px;
  padding: 10px 18px;
  font-weight: 600;
}

/* =========== END ========= */
