/* -------------------
   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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.45;
  background: #FFF;
  color: #15211c;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.20s cubic-bezier(.79,-0.03,.53,.86);
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style: none;
}
*, *:before, *:after {
  box-sizing: inherit;
}
button {
  border: none;
  cursor: pointer;
  background: none;
  font-family: inherit;
}

/* ------------
  VARIABLES
------------- */
:root {
  --primary: #184340;
  --secondary: #60BC5B;
  --accent-bg: #F9F9F9;
  --deep-dark: #15211c;
  --card-bg: #fff;
  --brand-orange: #fbbd46;
  --brand-pink: #ff4e8b;
  --brand-blue: #5bd6fb;
  --shadow: 0 4px 20px rgba(30,30,50,0.07);
  --radius-xl: 28px;
  --radius: 16px;
  --radius-s: 7px;
  --duration: 0.3s;
  --ff-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --ff-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* -------------
   TYPOGRAPHY
-------------- */
h1 {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1.1;
  color: var(--primary);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
h2 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary);
}
h4, h5, h6 {
  font-family: var(--ff-body);
  font-weight: 600;
  color: var(--primary);
}
p, li, ul, ol, blockquote, cite {
  font-family: var(--ff-body);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
  color: var(--deep-dark);
}
blockquote {
  font-style: italic;
  background: var(--brand-blue);
  color: var(--deep-dark);
  border-left: 5px solid var(--secondary);
  padding: 24px 26px 16px 22px;
  margin-bottom: 8px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
}
cite { display: block; font-size: 0.93em; color: var(--primary); font-weight: 600; margin-top: 6px; letter-spacing: 0.03em; }

ul li, ol li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 26px;
  line-height: 1.4;
}
ul li::before {
  content: '';
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary) 55%, var(--brand-orange));
  position: absolute; left: 0; top: 4px;
}

/* Artistic Font Touches */
h1, h2, h3 {
  text-shadow: 0 2px 18px rgba(96,188,91,0.06), 0 1px 0 #fff;
}

/* -----------------
   LAYOUT CONTAINERS
------------------- */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--card-bg);
}
.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: var(--accent-bg);
  color: #191919;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(24,67,64,0.06);
  margin-bottom: 22px;
  flex-direction: column;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Artistic cards for features/services/testimonials */
.feature-grid, .benefit-grid, .service-list, .project-summaries {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.feature-grid > div,
.benefit-grid > div,
.service-list > div,
.project-summaries > div {
  background: var(--brand-blue);
  border-radius: var(--radius-xl);
  padding: 32px 22px;
  box-shadow: 0 4px 18px rgba(30,130,100,0.10);
  min-width: 220px;
  flex: 1 1 260px;
  position: relative;
  border: 2.5px solid #c0facc24;
  transition: transform 0.23s, box-shadow 0.23s;
  will-change: transform;
}
.feature-grid > div:hover,
.benefit-grid > div:hover,
.service-list > div:hover,
.project-summaries > div:hover {
  transform: translateY(-6px) scale(1.03) rotate(-1deg);
  box-shadow: 0 10px 32px rgba(96,188,91,0.13), 0 2px 8px var(--brand-blue);
  z-index: 1;
}
.feature-grid img, .benefit-grid img, .service-list img, .project-summaries img {
  width: 38px;
  height: 38px;
  margin-bottom: 13px;
  filter: drop-shadow(0 2px 6px #49e37a44);
}
.project-summaries > div {
  background: var(--brand-orange);
  color: #2a2a2a;
}

/* Actions & Buttons */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 30px 13px;
  font-family: var(--ff-display);
  font-size: 1.09rem;
  font-weight: 700;
  border-radius: 24px;
  box-shadow: 0 3px 14px #0001;
  letter-spacing: 0.04em;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: background .24s, color .21s, transform .13s;
  outline: none;
  border: none;
}
.cta.primary {
  background: var(--secondary);
  color: #fff;
  border: 2.5px solid var(--secondary);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--brand-pink);
  color: #fff;
  box-shadow: 0 8px 22px #ff4e8b33;
  transform: translateY(-2px) scale(1.04);
}
.cta.secondary {
  background: var(--brand-blue);
  color: var(--primary);
  border: 2.5px solid var(--secondary);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 10px #60bc5b33;
  transform: translateY(-2px) scale(1.03);
}

/* ------------
  HEADER & NAV
------------- */
header {
  background: var(--primary);
  color: #fff;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 4px 16px #1843400d;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 22px;
  height: 84px;
  position: relative;
}
header a img {
  height: 38px;
  margin-right: 28px;
}
header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-left: 20px;
  flex: 1 1 auto;
}
header nav a {
  display: inline-flex;
  color: #fff;
  font-family: var(--ff-body);
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 1.01rem;
  opacity: 0.88;
  padding: 7px 15px;
  border-radius: 13px;
  transition: background 0.18s, color 0.18s, opacity 0.18s;
  position: relative;
  z-index: 2;
}
header nav a.active, header nav a:focus, header nav a:hover {
  background: var(--brand-orange);
  color: var(--primary);
  opacity: 1;
}
header nav a.cta {
  margin-left: 18px;
  background: var(--brand-pink);
  color: #fff !important;
  border: 2px solid #fff3;
  font-family: var(--ff-display);
}
header nav a.cta:hover, header nav a.cta:focus {
  background: #fff;
  color: var(--brand-pink) !important;
  border: 2px solid var(--brand-pink);
}

/* --- Mobile Header Controls --- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  color: #fff;
  border: none;
  margin-left: auto;
  z-index: 42;
  transition: color .19s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: var(--brand-pink);
}
.mobile-menu {
  display: none;
}

/* ----------
  HERO BANNER
------------- */
.hero {
  background: linear-gradient(100deg, #e9fff3 69%, #c6dbe6 100%) no-repeat;
  padding: 74px 0 44px 0;
  margin-bottom: 50px;
  border-bottom-left-radius: 68px 44px;
  border-bottom-right-radius: 30px 13px;
  box-shadow: 0 6px 26px #5bd6fb16;
  overflow: hidden;
}
.hero .content-wrapper {
  min-height: 340px;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  gap: 20px;
}
.hero h1 {
  font-size: 2.7rem;
  color: var(--primary);
}
.hero h2 {
  color: var(--secondary);
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.09rem;
}
.hero .cta {
  margin-top: 28px;
}

/* ---------------
   MAIN SECTIONS
----------------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 34px 20px 28px 24px / 22px 22px 34px 22px;
  background: transparent;
}

.features {
  background: var(--accent-bg);
  box-shadow: 0 2px 18px #1843400b;
}

.about-preview, .sustainability-teaser, .services-preview {
  background: #f8feff;
}

.contact-cta, .cta-statement, .cta-green-future, .newsletter-cta {
  background: var(--brand-blue);
  box-shadow: 0 2px 14px #5bd6fb21;
}

.contact-cta h2, .cta-statement h2, .cta-green-future h2, .newsletter-cta h2 {
  color: var(--brand-pink);
}

.contact-cta .cta, .cta-statement .cta, .cta-green-future .cta, .newsletter-cta .cta {
  margin-top: 16px;
}

/* --- Testimonials --- */
.testimonials, .testimonial-card {
  background: var(--brand-blue);
}
.testimonial-card {
  color: #232d1a;
  background: #fff;
  border-left: 7px solid var(--secondary);
  margin-bottom: 32px;
  transition: box-shadow .19s, transform .19s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px #60bc5b29;
  transform: translateY(-3px) scale(1.01);
  border-color: var(--brand-pink);
}

/* --- Partner Logos --- */
.partner-logos {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 22px;
}

/* --- Footer --- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 40px 0 20px 0;
}
footer p {
  color: white;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
footer a img {
  height: 36px; margin-bottom: 12px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-menu a {
  color: #fff;
  opacity: 0.8;
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  margin-bottom: 3px;
  border-radius: 5px;
  padding: 2px 7px;
  transition: color 0.17s, background 0.15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--brand-orange);
  background: #fff2;
}
.footer-contact {
  font-size: 0.97rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-contact img {
  vertical-align: middle;
  width: 18px;
  margin-right: 4px;
}
.brand-statement {
  margin-top: 8px;
  font-family: var(--ff-body);
  font-size: 1.01rem;
  max-width: 300px;
  opacity: 0.83;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}
.social-links a img {
  width: 28px;
  opacity: 0.75;
  transition: opacity 0.18s;
}
.social-links a:hover img {
  opacity: 1;
}

/* --- Miscellaneous --- */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* --- News Feed --- */
.news-feed {
  background: var(--accent-bg);
}
.news-feed article {
  border-left: 6px solid var(--secondary);
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 24px;
  padding: 20px 18px 12px 14px;
  box-shadow: var(--shadow);
  transition: box-shadow .16s;
}
.news-feed article:hover {
  box-shadow: 0 6px 22px #60bc5b22, var(--shadow);
}

/* --- Contact Page --- */
.contact-info-section .contact-details ul {
  margin-bottom: 18px;
}
.contact-details ul li img {
  width: 20px;
  vertical-align: middle;
  margin-right: 7px;
}
.contact-summary {
  background: var(--accent-bg);
  border-radius: var(--radius-xl);
  padding: 20px 22px;
  margin-top: 12px;
  box-shadow: var(--shadow);
}

/* --------------
  MOBILE MENU
-------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2.3rem;
  border: none;
  color: #fff;
  padding: 7px 3px;
  border-radius: 6px;
  z-index: 98;
}
@media (max-width: 1100px) {
  header .container {
    padding-right: 7px;
  }
}
@media (max-width: 900px) {
  header nav a.cta {
    min-width: 120px;
    margin-left: 8px;
  }
}
@media (max-width: 880px) {
  header nav {
    gap: 12px;
    margin-left: 8px;
  }
}
@media (max-width: 780px) {
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 99;
    background: linear-gradient(118deg, var(--primary) 70%, var(--brand-pink) 100%);
    transform: translateX(-110vw);
    box-shadow: 0 6px 32px #0007;
    transition: transform 0.34s cubic-bezier(.87,-0.02,.47,.97);
  }
  .mobile-menu.open {
    transform: translateX(0);
    box-shadow: 0 12px 34px #18434044;
  }
  .mobile-menu-close {
    position: absolute;
    top: 18px; right: 18px;
    font-size: 2.4rem;
    color: #fff;
    background: none;
    border: none;
    z-index: 100;
    border-radius: 9px;
    padding: 2px 8px 0 8px;
    transition: background 0.19s, color 0.18s;
  }
  .mobile-menu-close:focus, .mobile-menu-close:hover {
    background: var(--brand-pink);
    color: #fff;
  }
  .mobile-nav {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 80px;
  }
  .mobile-nav a {
    color: #fff;
    padding: 13px 22px;
    border-radius: 18px;
    font-size: 1.33rem;
    font-family: var(--ff-display);
    font-weight: 600;
    background: none;
    letter-spacing: 0.02em;
    margin: 3px 0;
    width: 85vw;
    text-align: center;
    transition: background 0.18s, color 0.19s;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    background: var(--brand-orange);
    color: var(--primary);
  }
  .mobile-nav a.cta {
    background: var(--brand-pink);
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.04em;
    border: 2px solid #fff2;
    margin-top: 10px;
  }
  .mobile-nav a.cta:hover, .mobile-nav a.cta:focus {
    background: #fff;
    color: var(--brand-pink) !important;
  }
}

/* --- Cookie Consent Banner --- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, var(--secondary) 70%, var(--brand-blue) 100%);
  color: var(--primary);
  box-shadow: 0 -2px 32px #18434019;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 22vw 22px 20px;
  z-index: 120;
  transform: translateY(200%);
  opacity: 0;
  animation: none;
  transition: transform 0.38s cubic-bezier(.4,1.7,.5,1), opacity 0.22s;
  font-family: var(--ff-display);
  font-size: 1.07rem;
  border-radius: 20px 20px 0 0;
}
.cookie-consent-banner.show {
  transform: translateY(0);
  opacity: 1;
  animation: cookiefadein 0.7s cubic-bezier(.62,1.8,.27,.89);
}
@keyframes cookiefadein {
  from { opacity: 0; transform: translateY(120%); } to { opacity: 1; transform: translateY(0); }
}
.cookie-buttons {
  display: flex;
  gap: 18px;
}
.cookie-buttons button {
  min-width: 110px;
  padding: 8px 18px;
  border-radius: 11px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 2px 10px #1843400c;
  cursor: pointer;
  margin-left: 6px;
  font-family: var(--ff-display);
  transition: background .18s,color .16s;
}
.cookie-buttons button.accept {
  background: var(--brand-green, var(--secondary));
  color: #fff;
}
.cookie-buttons button.accept:hover {
  background: var(--primary);
  color: #fff;
}
.cookie-buttons button.reject {
  background: var(--brand-pink);
  color: #fff;
}
.cookie-buttons button.reject:hover {
  background: var(--primary);
  color: #fff;
}
.cookie-buttons button.settings {
  background: #fff;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.cookie-buttons button.settings:hover {
  background: var(--secondary);
  color: #fff;
}

/* --- Cookie Consent Modal --- */
.cookie-modal-overlay {
  position: fixed; z-index: 130;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(20,34,33,0.60);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  box-shadow: 0 6px 40px #1843402f;
  border-radius: 22px;
  padding: 34px 26px;
  width: 95vw;
  max-width: 400px;
  position: relative;
  animation: modalin 0.4s cubic-bezier(.84,1.3,.39,1.05);
  display: flex; flex-direction: column; gap: 18px;
  z-index: 131;
}
@keyframes modalin { from { transform: translateY(60px) scale(0.95); opacity: 0; } to { transform: none; opacity: 1; } }
.cookie-modal h2 {
  font-size: 1.3rem;
  color: var(--primary);
  font-family: var(--ff-display);
  margin-bottom: 8px;
}
.cookie-modal-category {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.08rem;
}
.cookie-modal-category input[type=checkbox] {
  transform: scale(1.15);
  accent-color: var(--secondary);
  margin-right: 5px;
}
.cookie-modal-category label {
  font-weight: 600;
}
.cookie-modal-category.essential label {
  color: #7dbb6e;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 15px;
}
.cookie-modal .cookie-modal-actions button {
  min-width: 105px;
  padding: 8px 16px;
  border-radius: 7px;
  font-weight: bold;
  border: none;
  font-size: 1rem;
}
.cookie-modal .cookie-modal-actions .accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-modal .cookie-modal-actions .close {
  background: #fff;
  color: var(--deep-dark);
  border: 1.5px solid #e1e1e199;
}

/* --- Responsive, Artistic & Consistency --- */
@media (max-width: 980px) {
  .container { max-width: 95vw; }
  .footer-contact, .footer-menu { font-size: 0.98rem; }
  .footer-contact br { display: none; }
}
@media (max-width: 800px) {
  .content-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .feature-grid, .benefit-grid, .service-list, .project-summaries {
    flex-direction: column;
    gap: 18px;
  }
  .section {
    padding: 28px 11px;
  }
  footer .content-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .hero { padding: 41px 0 30px 0; }
  .contact-cta, .cta-statement, .cta-green-future, .newsletter-cta {
    padding: 24px 8px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  h1, h2 { font-size: 1.35rem; }
  .card, .card-content, .testimonial-card, .section, .footer-contact, .brand-statement, .feature-grid > div, .benefit-grid > div, .service-list > div, .project-summaries > div {
    padding-left: 9px;
    padding-right: 9px;
    min-width: unset;
  }
  .testimonial-card {
    padding: 14px 7px;
    font-size: 0.99rem;
  }
}
@media (max-width: 540px) {
  .container { padding: 0 3vw; }
  .footer-contact, .footer-menu { font-size: 0.93rem; }
  .social-links img { width: 20px !important; }
  .cookie-consent-banner { flex-direction: column; gap: 14px; padding: 18px 10px 15px 10px; font-size: 0.98rem; }
}
@media (max-width: 480px) {
  .footer-menu { font-size: 0.89rem; }
  .footer-contact img { width: 16px; }
  section, .section { margin-bottom: 27px; }
}
/* --- Flex Direction Shift for text-image-sections --- */
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* --- Utility: Hide visually --- */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; border: 0; clip: rect(0 0 0 0); overflow: hidden; white-space: nowrap; }

/* --- Artistic accent doodles/decorative --- */
.card::before, .feature-grid > div::before, .testimonial-card::before, .service-list > div::before {
  content: '';
  position: absolute;
  right: 18px; top: 16px;
  width: 32px; height: 32px;
  border-radius: 70% 30% 40% 60% / 50% 43% 56% 67%;
  background: linear-gradient(120deg, var(--brand-pink) 52%, var(--brand-orange) 100%);
  opacity: 0.11;
  pointer-events: none;
  z-index: 1;
}
.feature-grid > div::before {top:12px; right:12px; width:22px; height:22px;}
.testimonial-card::before {left:96%; right:unset; top:8px; width:18px; height:18px;}
.service-list > div::before {right:8px; top:8px; width:15px; height:15px;}

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