/* =========================================================
   CSS RESET & NORMALIZE (MOBILE-FIRST BASE)
   ========================================================= */
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;
}
body {
  line-height: 1.5;
  background: #FAF9F6;
  color: #183028;
}
*, *:before, *:after {
  box-sizing: inherit;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  border: none;
  max-width: 100%;
  height: auto;
  display: block;
}
table {
  border-collapse: collapse;
  width: 100%;
}
input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  transition: background 0.2s;
}

/* =========================================================
   BRAND FONTS & TYPOGRAPHY
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');
:root {
  --brand-primary: #173F5F;
  --brand-secondary: #20639B;
  --brand-accent: #F6D55C;
  --earth-brown: #8C6849;
  --earth-green: #4B7B53;
  --earth-background: #FAF9F6;
  --text-main: #244032;
  --text-light: #FAF9F6;
  --border-earth: #D0C9B2;
  --surface-card: #F4F1EC;
  --shadow-card: 0 4px 16px rgba(84, 92, 69, 0.07), 0 1.5px 4px rgba(113, 143, 111, 0.08);
  --radius-soft: 24px;
  --radius-round: 9999px;
  --focus-outline: 0 0 0 2px #F6D55C;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: var(--text-main);
  background: var(--earth-background);
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--brand-primary);
}
h1 { font-size: 2.4rem; margin-bottom: 18px; }
h2 { font-size: 1.7rem; margin-bottom: 14px; }
h3 { font-size: 1.3rem; margin-bottom: 8px; font-weight: 700; }
h4 { font-size: 1.1rem; margin-bottom: 6px; }
p, ul, ol, blockquote {
  margin-bottom: 18px;
  font-size: 1rem;
  color: var(--text-main);
}
strong { color: var(--earth-green); }
em { font-style: italic; color: var(--earth-brown); }

/* =========================================================
   FLEX LAYOUT: WRAPPERS & SECTIONS
   ========================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--surface-card);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-soft);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.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;
  background: #F4F8F3;
  border-radius: var(--radius-soft);
  box-shadow: 0 2px 12px rgba(61,89,74,0.10);
  margin-bottom: 24px;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Prevent overlapping for all flex children */
.card, .testimonial-card, .feature-item, .section, .card-container > *, .content-grid > * { min-width: 0; }

/* =========================================================
   HEADER, NAVIGATION & MOBILE MENU
   ========================================================= */
header {
  position: relative;
  background: var(--brand-primary);
  box-shadow: 0 2px 10px rgba(32,64,47, 0.07);
  padding: 0;
  z-index: 30;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 70px;
  padding: 0 18px;
}
header nav ul {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
header nav li {
  display: flex;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  padding: 12px 10px;
  border-radius: var(--radius-round);
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
  outline: none;
}
.cta-primary {
  background: var(--brand-accent);
  color: var(--brand-primary) !important;
  border-radius: var(--radius-round);
  padding: 12px 30px;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(246,213,92,0.12);
  transition: background 0.18s, color 0.12s, box-shadow 0.16s;
  margin-left: 15px;
  display: inline-block;
  border: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #ffe37e;
  color: var(--brand-primary);
  box-shadow: 0 8px 24px rgba(246,213,92,0.16);
  outline: var(--focus-outline);
}
.cta-secondary {
  background: var(--earth-green);
  color: white;
  border-radius: var(--radius-round);
  padding: 12px 30px;
  font-weight: 700;
  font-size: 1rem;
  margin-left: 0;
  display: inline-block;
  border: none;
  transition: background 0.18s, box-shadow 0.15s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #306d4e;
  color: #fff;
  box-shadow: 0 6px 20px rgba(75,123,83,0.12);
  outline: var(--focus-outline);
}
/* logo */
header nav > a > img {
  max-height: 38px;
  margin-right: 10px;
}

/* =============== MOBILE NAVIGATION =============== */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  padding: 4px 14px;
  color: #fff;
  background: transparent;
  border: none;
  border-radius: var(--radius-round);
  position: absolute;
  right: 18px;
  top: 16px;
  z-index: 99;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--brand-secondary);
  outline: var(--focus-outline);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(27,40,30,0.97);
  z-index: 120;
  transform: translateX(100vw);
  transition: transform 0.34s cubic-bezier(.48,1.58,.54,0.94);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2rem;
  color: #fff;
  background: transparent;
  border: none;
  position: absolute;
  right: 26px;
  top: 24px;
  z-index: 121;
  transition: background 0.18s;
  border-radius: var(--radius-round);
  padding: 4px 16px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--earth-green);
  outline: var(--focus-outline);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 90px;
  padding: 0 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #fff;
  background: none;
  padding: 14px 0;
  border-radius: var(--radius-round);
  font-weight: 700;
  transition: color 0.18s, background 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-accent);
  background: none;
  outline: var(--focus-outline);
}

/* Hide main menu/show burger on mobile */
@media (max-width: 900px) {
  header nav > ul,
  header nav > .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  header nav > ul,
  header nav > .cta-primary {
    display: flex;
  }
}

/* =========================================================
   HERO, HEADINGS, ORGANIC SHAPES & HIGHLIGHT SECTIONS
   ========================================================= */
.hero {
  background: linear-gradient(120deg, #F4F8F3 78%, #D0E8CC 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 2px 18px rgba(36,67,63,0.10);
  margin-bottom: 36px;
  padding-top: 30px;
  padding-bottom: 50px;
}
.hero h1 {
  font-size: 2.2rem;
  color: var(--earth-green);
  font-weight: 900;
  margin-bottom: 12px;
}
.hero p {
  color: var(--brand-primary);
  font-size: 1.1rem;
  margin-bottom: 22px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 22px;
    padding-bottom: 24px;
    border-radius: 0 0 18px 18px;
  }
  .hero h1 {
    font-size: 1.33rem;
  }
}

/* =========================================================
   FEATURES SECTION & LISTS
   ========================================================= */
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
}
.features ul li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 220px;
  background: #F5F9F6;
  border-radius: var(--radius-soft);
  padding: 18px 16px;
  box-shadow: 0 2px 8px rgba(75,123,83,0.05);
  margin-bottom: 20px;
  font-size: 1rem;
  transition: box-shadow 0.13s, transform 0.13s;
  border-left: 5px solid var(--earth-green);
}
.features ul li:hover {
  box-shadow: 0 6px 24px rgba(54,79,67,0.14);
  transform: translateY(-2px) scale(1.017);
}
.features ul li strong {
  color: var(--earth-green);
  font-weight: 700;
}
.features ul li img {
  height: 38px;
  width: 38px;
  margin-right: 8px;
}

/* =========================================================
   SERVICES / COURSES / OFFERING TABLES & CARDS
   ========================================================= */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.services-list > div {
  background: var(--surface-card);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-card);
  flex: 1 1 270px;
  min-width: 220px;
  max-width: 340px;
  padding: 24px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  border-left: 7px solid var(--brand-secondary);
  transition: box-shadow 0.16s, transform 0.11s;
}
.services-list > div:hover {
  box-shadow: 0 8px 32px rgba(30,65,56,0.13);
  transform: translateY(-2px) scale(1.025);
}
.services-list h3 {
  margin-bottom: 4px;
  font-size: 1.16rem;
}
.services-list span {
  color: var(--earth-green);
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  margin-top: 4px;
}

.services table {
  width: 100%;
  background: var(--surface-card);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
  font-size: 1rem;
  overflow: hidden;
  border-collapse: separate;
}
.services th, .services td {
  padding: 16px 12px;
  text-align: left;
}
.services thead th {
  background: #EAF1EA;
  color: var(--brand-primary);
  font-weight: 800;
}
.services tbody tr:not(:last-child) td {
  border-bottom: 1px solid var(--border-earth);
}
.services td strong {
  color: var(--earth-green);
}
@media (max-width: 800px) {
  .services-list {
    flex-direction: column;
    gap: 19px;
  }
  .services-list > div {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 680px) {
  .services table, .services thead, .services tbody, .services th, .services td, .services tr {
    display: block;
    width: 100%;
  }
  .services thead {
    display: none;
  }
  .services tr {
    margin-bottom: 18px;
    border-radius: var(--radius-soft);
    overflow: hidden;
    background: #f9faf8;
    box-shadow: 0 3px 12px rgba(42,58,40,0.05);
    padding: 8px 0;
    border-left: 6px solid var(--earth-green);
  }
  .services td {
    padding: 10px 16px;
    text-align: left;
    font-size: 0.96rem;
    border-bottom: none !important;
  }
}

/* =========================================================
   CTA SECTIONS (organic, motivanti!)
   ========================================================= */
.cta {
  background: linear-gradient(86deg, #F6D55C 70%, #C1DF9E 100%);
  border-radius: var(--radius-soft);
  box-shadow: 0 0 32px rgba(210,180,70,0.08);
  margin-bottom: 40px;
}
.cta h2 {
  font-size: 2rem;
  color: var(--brand-primary);
  font-weight: 900;
  margin-bottom: 12px;
}
.cta p {
  color: var(--text-main);
  font-size: 1.07rem;
  font-weight: 600;
  margin-bottom: 16px;
}

/* =========================================================
   TESTIMONIALS (CARD STYLES, CONTRAST)
   ========================================================= */
.testimonials {
  background: #EAF1EA;
  border-radius: var(--radius-soft);
  margin-bottom: 60px;
  padding: 40px 0 26px;
}
.testimonials h2 {
  color: var(--earth-green);
  font-size: 1.46rem;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-soft);
  box-shadow: 0 4px 16px rgba(84, 92, 69, 0.11);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
  padding: 28px 24px 22px;
  border-left: 7px solid var(--brand-accent);
  color: #193324;
  min-width: 0;
}
.testimonial-card p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #244032;
}
.testimonial-card span {
  color: var(--earth-green);
  font-size: 1.01rem;
  margin-left: 10px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-style: italic;
  font-weight: 700;
}
@media (max-width: 800px) {
  .testimonials {
    padding: 22px 0 14px;
    border-radius: 0;
  }
  .testimonial-card {
    padding: 18px 10px 14px;
    font-size: 1rem;
    flex-direction: column;
    gap: 7px;
  }
}

/* =========================================================
   FORMS (if shown), CONTACT SECTIONS  & SOCIAL ICONS
   ========================================================= */
.contact ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 14px;
}
.map-embed {
  background: #F4F8F3;
  border-radius: var(--radius-soft);
  padding: 24px;
  margin-bottom: 22px;
  color: var(--earth-brown);
  text-align: center;
  font-style: italic;
}
.features ul li img, .contact ul li img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.contact .cta-secondary {
  margin-top: 24px;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--brand-primary);
  color: #fff;
  padding: 34px 0 22px;
  font-size: 1rem;
  box-shadow: 0 -4px 22px rgba(32,64,47,0.07);
  margin-top: 44px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
  color: #d1ede6;
  font-size: 0.96rem;
}
footer nav a {
  color: #cfd9ce;
  font-weight: 600;
  transition: color 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--brand-accent);
}
.footer-contact address {
  font-style: normal;
  color: #f7f9f5;
  font-size: 0.98rem;
  line-height: 1.4;
  margin-top: 6px;
}

/* =========================================================
   COOKIE CONSENT BANNER & PREFERENCES MODAL
   ========================================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: #244032;
  color: #fff;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 -3px 18px rgba(39,63,39,0.14);
  gap: 18px;
  min-width: 0;
  transition: transform 0.32s ease, opacity 0.32s ease;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  color: #F6F8F4;
  margin-bottom: 4px;
  font-size: 1rem;
}
.cookie-buttons {
  display: flex;
  gap: 16px;
  margin-top: 7px;
}
.cookie-banner button {
  padding: 11px 22px;
  border-radius: var(--radius-round);
  font-weight: 700;
  font-size: 0.97rem;
  border: none;
  text-align: center;
  background: var(--brand-accent);
  color: var(--brand-primary);
  margin-right: 2px;
  transition: background 0.16s, color 0.14s;
  outline: none;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #ffe083;
}
.cookie-banner .reject {
  background: #cdd6cd;
  color: #3b463a;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus{
  background: #b2b7a7;
  color: #183028;
}
.cookie-banner .settings {
  background: var(--earth-green);
  color: #fff;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #4ea86d;
  color: #fff;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 3500;
  background: rgba(27, 40, 30, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.32s;
}
.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #F4F8F3;
  color: #2c2f23;
  padding: 38px 30px 28px;
  border-radius: 24px;
  min-width: 320px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 8px 36px rgba(95,139,92,0.15);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-content h3 {
  color: var(--brand-primary);
  font-size: 1.28rem;
  margin-bottom: 6px;
  font-weight: 900;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  margin: 8px 0;
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: var(--earth-green);
  width: 20px;
  height: 20px;
}
.cookie-modal-close {
  position: absolute;
  right: 22px;
  top: 17px;
  background: #e9e7d9;
  color: #728058;
  border-radius: 50%;
  font-size: 1.44rem;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border: none;
  transition: background 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #f6d55c;
  color: var(--brand-primary);
  outline: var(--focus-outline);
}
.cookie-modal-content .essential {
  color: #71846c;
  font-size: 0.98rem;
  font-style: italic;
}
.cookie-modal-content .save {
  background: var(--brand-accent);
  color: var(--brand-primary);
  border-radius: var(--radius-round);
  padding: 10px 20px;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 7px;
  border: none;
  transition: background 0.13s;
}
.cookie-modal-content .save:hover, .cookie-modal-content .save:focus {
  background: #ffe083;
}

/* sticky for mobile */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 20px 10px 16px;
    border-radius: 0;
    font-size: 0.98rem;
  }
  .cookie-modal-content {
    min-width: 0;
    max-width: 94vw;
    padding: 24px 10px 10px 20px;
    border-radius: 14px;
  }
}

/* =========================================================
   ORGANIC ELEMENTS & NATURAL TEXTURE (Subtle Effects)
   ========================================================= */
.section, .card, .cta, .testimonials, .services-list > div, .features ul li {
  box-shadow: 0 4px 16px rgba(105,128,85,0.07), 0 1.5px 4px rgba(113,143,111,0.08);
}
.section, .cta, .testimonials, .services-list > div, .features ul li {
  border-radius: var(--radius-soft);
}

/* organic dotted border for special sections */
.cta, .testimonials {
  border: 2.5px dotted #C1DF9E;
}

/* decorative leaf/shape for hero and cta - see SVG placement if needed */
/* Could be present as a .leaf-decor element in HTML, style as example: */
.leaf-decor {
  position: absolute;
  right: -38px;
  top: -18px;
  z-index: 2;
  opacity: 0.19;
  pointer-events: none;
  width: 100px;
  height: 100px;
}

/* =========================================================
   MEDIA QUERIES & RESPONSIVE FLEX ADJUSTMENTS
   ========================================================= */
@media (max-width: 900px) {
  .content-grid, .card-container, .services-list, .features ul, .footer .container {
    flex-direction: column;
    gap: 20px;
  }
  .features ul li {
    min-width: unset;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    padding: 22px 8px;
    margin-bottom: 38px;
    border-radius: 9px;
  }
  .content-wrapper {
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .hero {
    padding-top: 18px;
    padding-bottom: 16px;
    border-radius: 0 0 14px 14px;
    margin-bottom: 19px;
  }
}
@media (max-width: 600px) {
  .container { padding-left: 3px; padding-right: 3px; }
  .hero h1, .cta h2 { font-size: 1.06rem; }
}

/* =========================================================
   ANIMATIONS & MICRO-INTERACTIONS
   ========================================================= */
.card,
.services-list > div,
.features ul li,
.cta,
.testimonial-card {
  transition: box-shadow 0.18s, transform 0.13s, background 0.18s, border-color 0.16s;
}
.card:hover, .services-list > div:hover, .features ul li:hover {
  box-shadow: 0 8px 32px rgba(30,65,56, 0.14);
  transform: translateY(-4px) scale(1.012);
}

.cta-primary:active, .cta-secondary:active {
  transform: scale(0.97) translateY(1px);
}

input:focus, textarea:focus, select:focus {
  outline: var(--focus-outline);
}

::-webkit-input-placeholder { color: #ABB9A4; }
::-moz-placeholder { color: #ABB9A4; }
:-ms-input-placeholder { color: #ABB9A4; }
::placeholder { color: #ABB9A4; }

/* =============== ACCESSIBILITY: FOCUS =============== */
a:focus, button:focus {
  outline: var(--focus-outline) !important;
  background: #ffe17e40;
}

/* Hide outline for mouse users */
body:not(.user-is-tabbing) a:focus,
body:not(.user-is-tabbing) button:focus {
  outline: none !important;
}

/*
  END OF NATURE_ORGANIC CSS
  All required classes are covered, flexbox is strictly enforced (no grid, columns).
  No positioning except .leaf-decor and mobile menus.
  Organic shapes, spacing, color, responsive and all required components, incl. Cookie banner and mobile nav.
*/
