/* ------------------------------
   CSS RESET & BASE 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F5F5F5;
  color: #111;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color .2s cubic-bezier(.4,0,.2,1); }
img { max-width: 100%; display: block; height: auto; }
button, input, textarea, select { font: inherit; outline: none; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #111;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; font-weight: 600; }
h4, h5, h6 { font-weight: 500; }

.subheadline {
  font-size: 1.15rem;
  font-weight: 400;
  color: #444;
  margin-bottom: 28px;
  line-height: 1.6;
}
strong { font-weight: 700; }

p { font-family: 'Open Sans', Arial, sans-serif; font-size: 1rem; color: #232323; margin-bottom: 20px; }

/* --------------------------
   LAYOUT CONTAINER BASICS  
-------------------------- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: stretch;
  justify-content: flex-start;
}
.text-section {
  max-width: 750px;
  margin: 0 auto;
}

/* Section Spacing Patterns */
section { margin-bottom: 60px; padding: 40px 0 40px 0; background: transparent; }
.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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* Ensure minimum gaps between all content cards */
.cta-banner, .cta-btn, .testimonial-card, .card, .service-item, .faq-item, .feature-list>li, .project-list>li, .blog-post-teaser, .newsletter-teaser {
  margin-bottom: 20px;
}

/* Visual Card Styles */
.card, .service-item, .testimonial-card, .blog-post-teaser, .faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07), 0 1.5px 5px rgba(0,0,0,0.03);
  padding: 28px 24px;
  transition: box-shadow .25s cubic-bezier(.4,0,.2,1), transform .2s cubic-bezier(.4,0,.2,1);
}
.card:hover, .service-item:hover, .blog-post-teaser:hover, .faq-item:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.14), 0 3px 16px rgba(0,0,0,0.04);
  transform: translateY(-3px) scale(1.01);
}

.cta-banner {
  background: #111;
  color: #fff;
  border-radius: 18px;
  text-align: center;
  padding: 36px 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cta-banner h2 {
  color: #fff;
}

/* Feature List Icons */
.feature-list {
  display: flex; flex-wrap: wrap; gap: 32px;
  justify-content: space-between;
}
.feature-list > li {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 1em;
  box-shadow: 0 2px 12px rgba(0,0,0,0.045);
  padding: 30px 16px 22px 16px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  min-width: 190px;
}
.feature-list img { margin: 0 0 12px 0; width: 44px; height: 44px; filter: grayscale(1) contrast(1.3); }

/* Value Icons */
.values-icons, .value-icons, .green-tech-icons, .innovation-icons {
  display: flex; flex-direction: row; gap: 18px;
  margin-top: 8px;
  align-items: center; justify-content: flex-start;
}
.values-icons img,
.value-icons img,
.green-tech-icons img,
.innovation-icons img {
  width: 40px; height: 40px; opacity: .85; filter: grayscale(1) brightness(.94) contrast(1.25);
}
.value-icons > div {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  flex: 1 1 240px;
  margin: 0 8px 0 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.045);
  min-width: 170px;
}
.value-icons {gap:24px;}

/* Process Steps */
.process-steps { display: flex; flex-wrap: wrap; gap: 18px; margin: 0; }
.process-steps li {
  display: flex; flex-direction: row; align-items: center;
  gap: 12px; margin-bottom:20px;
  background: #fff; border-radius: 10px; padding:12px 20px;
  box-shadow: 0 1px 7px rgba(0,0,0,0.06);
  font-size: 1rem;
}
.process-steps img { width:28px;height:28px;filter: grayscale(1) contrast(1.2); }

/* Service Grid */
.service-grid { display: flex; flex-wrap: wrap; gap:24px; justify-content: flex-start; }
.service-item {
  flex: 1 1 280px;
  min-width: 220px;
  min-height: 220px;
  background: #fff;
  border-radius: 1em;
  box-shadow: 0 2px 9px rgba(0,0,0,0.037);
  padding: 28px 20px 20px 20px;
  display: flex; flex-direction: column; align-items:flex-start; gap:14px;
}
.service-price {
  display:inline-block;
  font-family:'Montserrat',Arial,sans-serif;
  font-size:1.1em; font-weight:700;
  color: #25593D;
  letter-spacing:0.01em;
  margin-top: 4px;
}

.benefit-list {
  display: flex; flex-wrap: wrap; gap: 13px;
  margin-bottom: 14px;
}
.benefit-list li {
  background: #fff;
  color: #232323;
  border-radius: 9px;
  font-size: 0.99rem;
  padding: 12px 18px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.03);
  margin-bottom: 8px;
}

/* Project List */
.project-list {
  display: flex; flex-direction: column; gap: 22px; margin-bottom:26px;}
.project-list > li {
  background: #fff;
  padding: 24px 18px;
  border-radius: 12px;
  box-shadow: 0 2px 9px rgba(0,0,0,0.034);
}
.project-highlights {
  margin-top: 28px;
}

/* Blog List */
.blog-list { display: flex; flex-wrap: wrap; gap: 20px; }
.blog-post-teaser {
  flex: 1 1 290px;
  min-width: 230px;
  max-width: 33%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 9px rgba(0,0,0,0.026);
  padding: 26px 18px 22px 18px;
  display: flex; flex-direction: column; gap: 13px;
}
.blog-readmore {
  color: #25593D;
  font-weight: 600;
  border-bottom: 1px solid #25593D;
  transition: color 0.2s, border-bottom 0.2s;
}
.blog-readmore:hover, .blog-readmore:focus {
  color: #111;
  border-bottom: 1px solid #111;
}

.newsletter-teaser {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 7px rgba(0,0,0,0.025);
  padding: 20px 18px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}

/* Technology List */
.technology-list {
  display: flex; flex-wrap: wrap; gap: 22px;
  margin-bottom: 18px;
}
.technology-list li {
  flex: 1 1 250px;
  min-width: 180px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.031);
  display: flex; align-items: center; gap: 16px;
  padding: 18px 14px 16px 15px;
}
.technology-list img { width:32px; height:32px; filter: grayscale(1) contrast(1.14);}

/* FAQ */
.faq-list { display: flex; flex-wrap: wrap; gap: 20px; }
.faq-item { flex:1 1 270px; min-width:200px; }
.faq-item h3 {font-size:1.08rem;margin-bottom:9px;color:#25593D;}
.faq-item p {font-size:0.98rem;color:#232323;}

/*----------------------------
  HEADER & NAVIGATION STYLES
----------------------------*/
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.045);
  position: relative;
  width: 100%;
  z-index: 6;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  min-height: 77px;
}
header > a img {
  height: 40px; width: auto;
  margin: 18px 0 18px 0;
}

.main-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-left: 32px;
  align-items: center;
}
.main-navigation a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem; font-weight: 600;
  color: #222;
  opacity: .88;
  position: relative;
  padding: 2px 0;
  transition: color .20s;
}
.main-navigation a:hover, .main-navigation a:focus {
  color: #25593D;
  opacity: 1;
}
.main-navigation a:after {
  content: '';
  display: block;
  margin: auto;
  height: 2px;
  width: 0px;
  background: #25593D;
  transition: width 0.25s;
}
.main-navigation a:hover:after, .main-navigation a:focus:after {
  width: 100%;
}

.cta-btn {
  background: #25593D;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .01em;
  border: none;
  border-radius: 8px;
  padding: 13px 24px;
  margin-left: auto;
  box-shadow: 0 2px 14px rgba(37,89,61,.08);
  transition: background .22s, color .22s, box-shadow .16s;
  cursor: pointer;
  text-align: center;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #333;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,89,61, .13);
}

/* Hamburger */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #111;
  margin-right: 9px;
  margin-left: 20px;
  cursor: pointer;
  z-index: 22;
  padding: 6px 12px;
  border-radius: 4px;
  line-height: 1;
  transition: background .15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #eee;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, .95);
  z-index: 20;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform .35s cubic-bezier(.7,0,.25,1),opacity .25s;
  will-change: transform, opacity;
  opacity: 0;
  transform: translateX(100vw);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  align-self: flex-end;
  margin: 25px 24px 3px 0;
  cursor: pointer;
  z-index: 31;
  transition: color .17s;
  padding: 8px 15px;
  border-radius: 6px;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #232323;
  color: #75B776;
}

.mobile-nav {
  margin-top: 54px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-left: 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
  width: fit-content;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #75B776;
  border-bottom: 2px solid #75B776;
}

@media (max-width:1200px) {
  .container {
    max-width: 94vw;
  }
  .feature-list, .technology-list, .service-grid, .blog-list {
    gap: 16px;
  }
}
@media (max-width: 990px) {
  .feature-list > li, .service-item, .blog-post-teaser {
    min-width: 160px;
    flex-basis: 45%;
  }
  .technology-list li {flex-basis:45%;}
}

@media (max-width: 900px) {
  .main-navigation {
    gap: 19px;
    margin-left: 16px;
  }
}

@media (max-width: 870px) {
  .main-navigation { display: none; }
  .mobile-menu-toggle { display: block; }
  header {
    flex-wrap: wrap;
    justify-content: flex-start;
    min-height: 65px;
    padding: 0 4px 0 8px;
  }
  .cta-btn { margin-left: 0; }
  .content-wrapper, .text-section {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1rem; }
  
  .feature-list, .technology-list, .service-grid, .blog-list {
    flex-direction: column;
    gap: 18px;
  }
  .blog-post-teaser, .service-item, .faq-item, .feature-list > li, .technology-list li {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .value-icons { flex-direction: column; gap:14px; }
  .values-icons, .green-tech-icons, .innovation-icons {
    flex-wrap: wrap;
    gap:10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .content-wrapper, .text-section { gap: 13px;}
}

@media (max-width: 520px) {
  html, body { font-size: 15px; }
  .feature-list, .technology-list,
  .service-grid, .blog-list {
    gap: 11px;
  }
  .cta-banner { padding: 22px 8px; }
  .testimonial-card, .card, .service-item, .faq-item { padding: 14px 10px; }
}

/*--------------------
   TESTIMONIALS
---------------------*/
.testimonial-card {
  background: #F4F8F3;
  color: #111;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.025);
  margin-bottom: 22px;
  padding: 22px 17px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 6px solid #25593D;
  transition: box-shadow .15s;
}
.testimonial-card:hover {
  box-shadow: 0 5px 30px rgba(37,89,61,.12);
}
.testimonial-card span {
  font-size: 0.95em;
  color: #25593D;
  font-style: italic;
  margin-left: 7px;
}

/*--------------------
       FOOTER
---------------------*/
footer {
  background: #232323;
  color: #fff;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.04);
  padding: 34px 0 0 0;
  margin-top: 60px;
}
footer .content-wrapper {
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 24px;
}
.footer-brand {
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
}
.footer-brand img {
  height: 32px; width: auto;
  filter: grayscale(1) brightness(.9);
  margin-bottom: 8px;
}
.footer-navigation {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-navigation a {
  color: #fff;
  opacity: .75;
  transition: opacity .2s, color .2s;
  font-size: 0.98rem;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  opacity: 1;
  color: #75B776;
}
.footer-contact {
  font-size: 0.98rem;
  display: flex; flex-direction: column; gap: 7px;
}
.footer-contact a {
  color: #fff;
  border-bottom: 1px dotted #fff;
  transition:color .2s, border-bottom .2s;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #75B776;
  border-bottom: 1px solid #75B776;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/*--------------------
      FORM ELEMENTS
---------------------*/
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fff;
  color: #232323;
  border: 1.4px solid #d3d3d3;
  border-radius: 7px;
  padding: 10px 13px;
  margin-bottom: 16px;
  font-size: 1rem;
  transition: border-color 0.16s;
  width: 100%;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  border-color: #25593D;
  background: #F4F8F3;
}

/*--------------------
      MISC. STYLES
----------------------*/
.location-map, .geo-map {
  display: flex; align-items: center; gap: 14px;
  background: #fff;
  border-radius: 9px;
  padding: 10px 16px;
  font-size: 1.01em;
  box-shadow: 0 1px 5px rgba(0,0,0,0.029);
}
.location-map img, .geo-map img { width: 22px; height: 22px; }

/* Cookie Consent Banner */
.cookie-consent-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #232323;
  color: #fff;
  z-index: 1002;
  padding: 30px 20px 20px 20px;
  box-shadow: 0 -2px 24px rgba(0,0,0,0.12);
  transition: transform 0.38s cubic-bezier(.56,0,.19,1),opacity .25s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  opacity: 0;
  transform: translateY(120px);
  pointer-events: none;
}
.cookie-consent-banner p {
  margin-bottom: 0;
  color: #fff;
  font-size: 0.98em;
  text-align: center;
}
.cookie-consent-btns {
  display: flex; flex-direction: row; gap: 13px; justify-content: center;
}

.cookie-btn {
  background: #fff;
  color: #222;
  border: none;
  border-radius: 7px;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 17px;
  transition: background .17s, color .17s, box-shadow .12s;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.09);
}
.cookie-btn.accept {
  background: #25593D;
  color: #fff;
}
.cookie-btn.reject {
  background: #ccc;
  color: #222;
}
.cookie-btn.settings {
  background: #75B776;
  color: #111;
}
.cookie-btn:hover, .cookie-btn:focus {
  box-shadow: 0 5px 17px rgba(37,89,61,.17);
  opacity: .97;
  background: #f4f8f3;
  color: #25593D;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #232323;
  color: #75B776;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #bbb;
  color: #222;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #232323;
  color: #75B776;
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed; left:0; right:0; top:0; bottom:0;
  background: rgba(17,17,17,0.82);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #111;
  border-radius: 16px;
  padding: 34px 28px 22px 28px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.14);
  max-width: 380px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 19px;
  animation: modalIn .49s cubic-bezier(.53,0,.18,1);
}
@keyframes modalIn {
  from { opacity:0; transform:translateY(80px) scale(0.96); }
  to   { opacity:1; transform: none;}
}
.cookie-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 7px;
}
.cookie-modal-header h3 {
  color: #25593D;
  font-size: 1.1rem;
  margin-bottom: 0;
}
.cookie-modal-close {
  background: transparent;
  border: none;
  font-size: 1.7rem;
  color: #232323;
  transition: color 0.2s;
  cursor: pointer;
  line-height: 1;
  padding: 7px 12px;
  border-radius: 5px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #f4f8f3;
  color: #25593D;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  background: #f4f8f3;
  border-radius: 8px;
  padding: 12px 10px;
  display: flex; flex-direction: row; align-items: center; gap: 11px;
  font-size: .96em;
  justify-content: space-between;
}
.cookie-category-toggle {
  appearance: none;
  height: 24px;
  width: 44px;
  background: #ccc;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background .19s;
}
.cookie-category-toggle:checked {
  background: #75B776;
}
.cookie-category-toggle:before {
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: left .18s;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.cookie-category-toggle:checked:before {
  left: 23px;
}
.cookie-category-label {
  flex: 1 1 auto;
  color: #222;
}
.cookie-category-essential {
  color: #444;
  opacity: 0.8;
  font-style: italic;
}

/* Essential cookies do not have toggle */
.cookie-category[data-essential='true'] .cookie-category-toggle, .cookie-category[data-essential='true'] label {
  opacity:0.5;
  pointer-events:none;
}

.cookie-modal-actions {
  display: flex; flex-direction: row; gap: 17px; justify-content: flex-end;
}
.cookie-modal-actions button {
  flex: 1 1 auto;
}

@media (max-width: 480px) {
  .cookie-modal { padding: 17px 10px 16px 10px; }
  .cookie-modal-header h3 { font-size: 1rem; }
}

/*--------------------
    UTILITY CLASSES
---------------------*/
.flex { display: flex; }
.wrap { flex-wrap: wrap; }
.center { align-items: center; justify-content: center; }
.gap8 { gap: 8px; }
.gap16 { gap: 16px; }
.gap20 { gap: 20px; }
.gap24 { gap: 24px; }
.margin-t-32 { margin-top: 32px; }
.hide { display: none !important; }

@media (max-width: 575px) {
  .container { padding: 0 3vw; }
  section { padding: 22px 0 22px 0; }
}

/*--------------------
 Dramatic Monochrome Accent & Hover States
---------------------*/
.card, .cta-banner, .feature-list > li, .blog-post-teaser, .benefit-list li, .faq-item {
  border: 1.4px solid #e4e4e4;
}
.card:hover, .feature-list > li:hover, .benefit-list li:hover, .faq-item:hover {
  border-color: #bbb;
  box-shadow: 0 6px 24px rgba(90,90,90,0.11);
}

.cta-btn, .cookie-btn, .service-price, .footer-contact a, .main-navigation a, .value-icons h3 {
  letter-spacing: 0.01em; text-transform: none;
}

/* Strong contrast for monochrome sophisticated look */
h1, h2, h3, h4, h5, h6, .cta-btn, .main-navigation a, .service-price, .cookie-btn, .footer-navigation a, .cookie-category-label {
  color: #111;
}
footer, .footer-navigation a, .cookie-consent-banner, .cookie-btn.accept {
  color: #fff;
}

/* Brand accent backgrounds where appropriate */
.cta-banner, .cta-btn, .cookie-btn.accept, .main-navigation a.active {
  background: #25593D;
}


/* MONOCHROME AESTHETIC UTILITIES */
/* Slight overlay for purely white backgrounds on cards */
.card, .service-item, .blog-post-teaser, .faq-item {
  background: linear-gradient(180deg, #fff 85%, #f6f6f6 120%);
}

::selection {
  background: #c4d2ce; color: #111;
}

/* Accessible Skip Link (visually hidden until focused) */
.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  position: static; width: auto; height: auto; background: #fff; color: #25593D; z-index:99; padding: 8px 20px; }
}
