/* --------------------------------- 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F6F8F2;
  color: #1C3728;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 24px; }
li { margin-bottom: 8px; }
a {
  color: #186943;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}
a:focus, a:hover {
  color: #FFD600;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button { cursor: pointer; background: none; }

/* --------------------------------- BRAND TYPOGRAPHY ---------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500|Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: #13291e;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 24px;
  text-transform: uppercase;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  text-transform: uppercase;
}
h4, h5, h6 {
  font-size: 1rem;
  text-transform: uppercase;
}
p, li, ul, ol, span, a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  color: #263425;
}
p {
  margin-bottom: 18px;
  font-size: 1rem;
}
strong {
  font-weight: 700;
  color: #186943;
}

/* -------------------------- CONTAINER, STRUCTURE, GRID PATTERNS ------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  position: relative;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.bg-light { background: #F6F8F2; }
.bg-dark { background: #13291e; color: #fff; }
.section:last-child { margin-bottom: 0; }

/* ---------------------------- MAIN NAVIGATION & HEADER ------------------------------ */
header {
  background: #fff;
  padding-top: 0;
  box-shadow: 0 2px 8px rgba(20,49,22, 0.04);
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
  width: 100%;
}
.logo img { height: 38px; width: auto; }
.main-nav ul {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  list-style: none;
  margin: 0;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #186943;
  padding: 6px 18px 6px 6px;
  border-radius: 20px;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  color: #FFD600;
  background: #186943;
}
.header .button.primary {
  margin-left: 24px;
}
/* Burger menu button */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 22px;
  right: 20px;
  font-size: 2.2rem;
  background: #fff;
  color: #186943;
  border: 2px solid #186943;
  border-radius: 10px;
  padding: 2px 15px 4px 15px;
  z-index: 101;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #186943;
  color: #fff;
  box-shadow: 0 4px 16px rgba(24,105,67,0.18);
}


/* ------------------------------ MOBILE MENU STYLING ---------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(19,41,30, 0.97);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.6,0,.55,1);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 10px 18px;
  font-size: 2rem;
  color: #FFD600;
  background: #13291e;
  border: 2px solid #FFD600;
  border-radius: 9px;
  z-index: 10001;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #FFD600;
  color: #186943;
}
.mobile-nav {
  margin: 80px auto 0 auto;
  width: 94vw;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.mobile-nav a {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #fff;
  padding: 18px 0 8px 0;
  border-bottom: 2px solid rgba(255,255,255,0.08);
  width: 100%;
  transition: background 0.16s, color 0.14s;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FFD600;
  background: #13391e;
}

/* Hide desktop nav on small screens, show mobile toggle/button */
@media (max-width: 1024px) {
  .main-nav ul,
  .main-nav .button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .main-nav { gap: 12px; }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* ------------------------------- BUTTONS & INTERACTIONS ------------------------------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 16px 36px;
  transition: background 0.14s, color 0.13s, box-shadow 0.14s;
  border: none;
  cursor: pointer;
  min-width: 150px;
  box-shadow: 0 2px 10px rgba(24,105,67, 0.08);
  outline: none;
}
.button.primary {
  background: #186943;
  color: #fff;
  box-shadow: 0 3px 19px rgba(24,105,67,.10), 0 1.5px 3px rgba(24,105,67,0.08);
  border: 2px solid #186943;
}
.button.primary:hover,
.button.primary:focus {
  background: #FFD600;
  color: #186943;
  border: 2px solid #FFD600;
}
.button.secondary {
  background: #FFD600;
  color: #186943;
  border: 2px solid #FFD600;
}
.button.secondary:hover,
.button.secondary:focus {
  background: #186943;
  color: #FFD600;
  border: 2px solid #186943;
}
.button.small { padding: 8px 16px; font-size: 0.95rem; }
.button[disabled], .button.disabled {
  opacity: 0.6;
  pointer-events: none;
}


/* ------------------------------ HERO / HEADER SECTIONS ------------------------------- */
.hero {
  background: #186943;
  color: #fff;
  padding: 60px 0 48px 0;
  position: relative;
  min-height: 280px;
}
.hero .container { position: relative; }
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 740px;
  margin: 0 auto;
}
.hero h1, .hero h2, .hero h3 {
  color: #FFD600;
  text-shadow: 0 3px 17px rgba(24,105,67,0.09);
  font-size: 2.2rem;
}
.hero p {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 400;
}
.hero .button.primary {
  margin-top: 18px;
  background: #FFD600;
  color: #186943;
  border: 2px solid #FFD600;
  box-shadow: 0 2px 10px rgba(255,214,0,0.10);
}
.hero .button.primary:hover, .hero .button.primary:focus {
  background: #186943;
  color: #FFD600;
  border: 2px solid #186943;
}


/* --------------------------------- FLEX CONTENT PATTERNS ------------------------------- */
.feature-grid,
.service-list,
.project-list,
.job-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.feature-item,
.service-item,
.project-item,
.job-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(24,105,67, 0.10);
  padding: 32px 28px 28px 28px;
  flex: 1 1 270px;
  min-width: 250px;
  margin-bottom: 20px;
  border: 2px solid #F6F8F2;
  position: relative;
  transition: box-shadow 0.19s, border-color 0.14s;
}
.feature-item:hover, .service-item:hover, .project-item:hover, .job-item:hover {
  box-shadow: 0 6px 26px rgba(24,105,67,0.18);
  border-color: #FFD600;
}
.service-item span {
  margin-top: 14px;
  font-weight: bold;
  color: #186943;
  font-size: 1.15em;
  background: #F6F8F2;
  padding: 4px 14px;
  border-radius: 18px;
  letter-spacing: 0.04em;
}
.project-list {
  gap: 28px;
  flex-wrap: wrap;
}
.project-item {
  border-left: 7px solid #186943;
  border-radius: 7px;
  background: #F6F8F2;
  margin-bottom: 20px;
}
.job-item {
  border-left: 7px solid #FFD600;
  border-radius: 7px;
  background: #FCFCF7;
  margin-bottom: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
/* For consistent flex-based pattern across multiple classes */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 15px rgba(24,105,67,0.07);
  background: #fff;
  position: relative;
  padding: 30px 22px;
}

/* ------------------------------------ FEATURES LISTS -------------------------------------- */
.features ul, .features ol, .about ul, .about ol, .contact ul {
  background: none;
  border-radius: 9px;
  padding: 0 0 0 20px;
  font-size: 1.06rem;
  margin-bottom: 0;
  color: #262d25;
}
.features ul li, .features ol li, .about ul li, .about ol li, .contact ul li {
  margin-bottom: 12px;
  padding-bottom: 3px;
  font-weight: 500;
  line-height: 1.45;
  position: relative;
}
.features ul li:before, .about ul li:before {
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  background: #FFD600;
  margin-right: 12px;
  border-radius: 2px;
  vertical-align: middle;
}

/* ------------------------------------ TESTIMONIALS --------------------------------------- */
.testimonials {
  background: #F6F8F2;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 3px 19px rgba(24,105,67,0.09);
  border-left: 6px solid #186943;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: box-shadow 0.16s, border-color 0.16s;
}
.testimonial-card p {
  color: #1C3728;
  font-weight: 500;
}
.testimonial-meta {
  color: #186943;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 8px 32px rgba(24,105,67,0.18);
  border-color: #FFD600;
}

/* ------------------------------------ CTA SECTION --------------------------------------- */
.cta {
  background: #186943;
  color: #fff;
  text-align: center;
  padding: 60px 0 32px 0;
  position: relative;
}
.cta h2 {
  color: #FFD600;
  margin-bottom: 24px;
  font-size: 1.7rem;
}
.cta p {
  color: #fff;
  font-size: 1.12rem;
}
.cta .button.primary {
  background: #FFD600;
  color: #186943;
  border: 2px solid #FFD600;
  margin-bottom: 10px;
}
.cta .button.primary:hover,
.cta .button.primary:focus {
  background: #186943;
  color: #FFD600;
}

/* -------------------------------------- FOOTER ------------------------------------------ */
.footer {
  background: #13291e;
  color: #fff;
  padding: 40px 0 0 0;
  font-size: 1rem;
  margin-top: 60px;
  border-radius: 0 0 0 0;
}
.footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 28px;
}
.footer-brand {
  min-width: 170px;
  max-width: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background-color: #F6F8F2;
}
.footer-brand img {
  height: 34px;
  margin-bottom: 7px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 0 0 4px 0;
  border-bottom: 1.8px solid rgba(255,255,255, 0.08);
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFD600;
  border-bottom: 2px solid #FFD600;
  background: rgba(30,107,34,0.09);
}
.footer-contact {
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact p {
  color: #fff;
  margin-bottom: 5px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact img {
  width: 20px;
  height: 20px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 18px;
  padding: 16px 0;
}
.footer-social a img {
  width: 26px; height: 26px;
  opacity: 0.88;
  transition: opacity 0.13s, filter 0.15s;
}
.footer-social a:hover img, .footer-social a:focus img {
  opacity: 1;
  filter: drop-shadow(0 0 7px #FFD600);
}
.footer-impressum {
  flex-basis: 100%;
  margin-top: 20px;
  font-size: 0.95rem;
  text-align: left;
  opacity: 0.75;
  background-color: #F6F8F2;
}

/* ------------------------------------ LEGAL / TEXT SECTION STYLING ---------------------- */
.legal .text-section h2 {
  font-size: 1.42rem;
  color: #186943;
  margin-bottom: 10px;
  margin-top: 22px;
}
.legal .text-section p, .legal .text-section ul, .legal .text-section ol {
  color: #262d25;
  font-size: 1.06rem;
}
.legal .text-section ul li {
  margin-bottom: 10px;
}


/* ----------------------------------- COOKIE BANNER/BUTTONS ------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 13000;
  background: #fff;
  box-shadow: 0 -3px 22px rgba(19,41,30,0.16);
  border-top: 5px solid #186943;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 24px 24px 30px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #263425;
  transition: transform 0.32s cubic-bezier(.66,.03,.25,.98);
}
.cookie-banner.hide { 
  transform: translateY(150%); 
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
/* Cookie buttons */
.button.accept-cookie {
  background: #186943;
  color: #fff;
  border: 2px solid #186943;
  padding: 8px 24px;
  border-radius: 8px;
  min-width: 110px;
}
.button.accept-cookie:hover, .button.accept-cookie:focus {
  background: #FFD600;
  color: #186943;
  border-color: #FFD600;
}
.button.reject-cookie {
  background: #FFD600;
  color: #186943;
  padding: 8px 20px;
  border: 2px solid #FFD600;
  border-radius: 8px;
}
.button.reject-cookie:hover, .button.reject-cookie:focus {
  background: #186943;
  color: #FFD600;
  border-color: #186943;
}
.button.cookie-settings {
  background: #fff;
  color: #186943;
  border: 2px solid #186943;
  padding: 8px 20px;
  margin-left: 6px;
  border-radius: 8px;
}
.button.cookie-settings:hover, .button.cookie-settings:focus {
  background: #F6F8F2;
  color: #186943;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 16000;
  background: rgba(19,41,30, 0.81);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: auto;
  transition: opacity 0.22s cubic-bezier(.7,0,.24,1);
}
.cookie-modal {
  background: #fff;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -2px 35px rgba(24,105,67,0.17);
  width: 97vw;
  max-width: 380px;
  margin-bottom: 0;
  padding: 38px 28px 22px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookie-modal-in 0.35s cubic-bezier(.4,0,.35,1);
}
@keyframes cookie-modal-in {
  0% { transform: translateY(150px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  color: #186943;
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
}
.cookie-modal .cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 1rem;
}
.cookie-modal .category-label {
  font-weight: 600;
}
.cookie-modal .category-toggle {
  width: 44px; height: 22px;
  border-radius: 13px;
  background: #F6F8F2;
  border: 1.7px solid #186943;
  position: relative;
  cursor: pointer;
  transition: background 0.14s, border 0.14s;
  display: inline-flex;
  align-items: center;
}
.cookie-modal .category-toggle input {
  display: none;
}
.cookie-modal .toggle-slider {
  width: 19px;
  height: 19px;
  background: #FFD600;
  border-radius: 50%;
  position: absolute;
  left: 2px; top: 1.5px;
  transition: left 0.14s cubic-bezier(.6,0,.4,1), background 0.14s;
}
.cookie-modal .category-toggle input:checked + .toggle-slider {
  left: 22px;
  background: #186943;
}
.cookie-modal .category-toggle[disabled] {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-modal .cookie-actions {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-modal .button {
  padding: 8px 16px;
  font-size: 1rem;
}
.cookie-modal .close-modal {
  position: absolute; top: 16px; right: 16px;
  font-size: 1.6rem;
  color: #186943;
  background: transparent;
  border: none;
  border-radius: 30px;
  padding: 5px 8px;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal .close-modal:hover {
  color: #FFD600;
}

/* ------------------------------------ MEDIA QUERIES: RESPONSIVE ------------------------ */
@media (max-width: 900px) {
  .footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .feature-grid, .service-list, .project-list, .job-listings {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container { padding: 0 10px; }
  .content-wrapper { gap: 18px; }
  .hero { padding: 40px 0 30px 0; min-height: 180px; }
  .hero .content-wrapper { gap: 12px; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.13rem; }
  .feature-grid, .service-list, .project-list, .job-listings { flex-direction: column; gap: 18px; }
  .feature-item, .service-item, .project-item, .job-item { min-width: 0; padding: 22px 12px; }
  .testimonial-card { padding: 16px 9px; flex-direction: column; gap: 6px; }
  .cta, .section { padding: 30px 6px; }
  .footer .content-wrapper { flex-direction: column; gap: 20px; padding-bottom: 18px; }
  .footer-social { padding: 10px 0; gap: 12px; }
  .footer-brand img { height: 30px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 8px; padding: 18px 7px 18px 16px; font-size: 0.98rem; }
  .cookie-modal { padding: 24px 7px 9px 12px; min-width: 0; width: 98vw; max-width: 340px; gap: 12px; }
  .main-nav { min-height: 58px; gap: 10px; }
}
@media (max-width: 440px) {
  .cookie-banner { font-size: 0.92rem; }
  .cookie-modal { font-size: 0.92rem; }
  .main-nav { min-height: 44px; }
}

/* ------------------------------------ GEOMETRIC STRUCTURED EFFECTS --------------------- */
.hero, .cta, .feature-item, .service-item, .card, .testimonial-card, .section, .job-item {
  /* subtle geometric shadow + border */
  box-shadow: 0 2px 12px rgba(24,105,67,0.07), 0 0.6px 2px rgba(24,105,67,0.05);
  border-radius: 16px;
  border-bottom: 5px solid #18694311;
}
.features, .about, .services, .contact, .legal {
  border-radius: 15px;
  border-top: 5px solid #FFD60033;
  margin-bottom: 32px;
}
/* Angular font accents (simulate geometric structured spirit) */
h1, h2, h3, h4 { font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; letter-spacing: 0.025em; }
h3, h2, h1 { text-transform: uppercase; }

/* Geometric decorative accent --- e.g., for hero backgrounds or cards */
@media (min-width: 880px) {
  .hero:after {
    content: '';
    display: block;
    position: absolute;
    right: -70px; top: 10%;
    width: 180px; height: 140px;
    background: #FFD600;
    border-radius: 18px 0 42px 70px;
    opacity: 0.22;
    z-index: 1;
    pointer-events: none;
    transform: rotate(16deg);
  }
}

/* Micro-interaction for card hover and button tap */
.feature-item:hover, .service-item:hover, .card:hover, .testimonial-card:hover, .job-item:hover, .project-item:hover {
  box-shadow: 0 10px 40px rgba(24,105,67,0.19), 0 2px 8px #FFD60030;
  z-index: 2;
  transform: translateY(-3px) scale(1.02);
  transition: box-shadow 0.17s, transform 0.15s;
}
.button:active {
  transform: scale(0.96);
}

/* ------------------------------------ ACCESSIBILITY / CONTRAST ------------------------- */
.testimonial-card,
.card {
  background: #fff;
  color: #13391e;
  border: 1.5px solid #EBEFE4;
}
.testimonial-meta { color: #186943; }
.bg-dark, .footer, .bg-dark a { color: #fff; }

/* ------------------------------------ FOCUS VISIBLE / ACTIVE -------------------------- */
a:focus, button:focus, .button:focus {
  outline: 2px dashed #FFD600;
  outline-offset: 2px;
}

/* ------------------------------------ UTILITY ----------------------------------------- */
.hide { display: none !important; }

/* Geometric divider for CTAs */
.cta:before {
  content: '';
  display: block;
  width: 110px;
  height: 7px;
  margin: 0 auto 18px auto;
  background: #FFD600;
  border-radius: 11px;
}

/* -------------------- END ------------------- */
