/* ------------------------------------------
   CSS RESET & BASELINE NORMALIZATION
------------------------------------------ */
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 {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
  font: inherit;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
input, button, textarea, select {
  font: inherit;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  background: none;
}
button {
  border: none;
  background: none;
  cursor: pointer;
}
:root {
  --color-primary: #205c3b;
  --color-secondary: #66b799;
  --color-accent: #f6f6f2;
  --color-dark: #181F22;
  --color-bg: #15191B;
  --color-text: #F6F6F2;
  --color-grey: #242B2E;
  --color-neon: #bcffb4;
  --color-shadow: rgba(32, 92, 59, 0.12);
  --shadow-lg: 0 8px 32px 0 rgba(32, 92, 59,0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-pill: 100px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --transition: 0.2s cubic-bezier(.55,.05,.68,.19);
}
body {
  min-height: 100vh;
  background: linear-gradient(134deg, #15191B 0%, #205c3b 100%);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* Container & Section Spacing */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
main {
  width: 100%;
  padding-top: 32px;
}
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: none;
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #bcffb4;
  letter-spacing: 0.03em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--color-secondary);
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li {
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 1rem;
}
strong {
  color: var(--color-neon);
  font-weight: 700;
}
em {
  color: var(--color-secondary);
  font-style: italic;
}
blockquote {
  border-left: 4px solid var(--color-secondary);
  background: var(--color-grey);
  color: #181F22;
  padding: 16px 20px;
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-style: italic;
}

/* Links */
a {
  transition: color 0.15s, text-shadow 0.2s;
  color: var(--color-secondary);
}
a:hover, a:focus {
  color: #bcffb4;
  text-shadow: 0 0 4px #8fffd1, 0 0 3px #37ef68;
}

/* BUTTONS */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 32px;
  margin: 12px 0 0 0;
  border-radius: var(--radius-pill);
  border: none;
  box-shadow: 0 2px 12px var(--color-shadow);
  cursor: pointer;
  transition: background 0.19s, color 0.2s, box-shadow 0.19s, transform 0.19s;
  position: relative;
  text-shadow: 0 0 4px #4bf08188;
}
.btn-primary {
  background: var(--color-secondary);
  color: #181F22;
  box-shadow: 0 0 12px 2px #3ae67c55, 0 2px 12px var(--color-shadow);
}
.btn-secondary {
  background: #181F22;
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}
.btn-primary:hover, .btn-secondary:hover,
.btn-primary:focus, .btn-secondary:focus {
  color: var(--color-primary);
  background: #bcffb4;
  box-shadow: 0 0 24px 2px #8fffd1bb, 0 4px 16px var(--color-shadow);
  transform: translateY(-2px) scale(1.03);
}

/* MAIN HEADER ------------------------------------------------------ */
header {
  width: 100%;
  background: #181F22ee;
  border-bottom: 2px solid var(--color-secondary);
  position: sticky;
  top: 0; z-index: 40;
  box-shadow: 0 6px 24px -2px #204e2999;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  padding: 12px 20px 12px 20px;
}
header img {
  max-height: 48px;
  margin-right: 22px;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  margin-right: 16px;
}
.main-nav a {
  position: relative;
  transition: color 0.21s, text-shadow 0.2s;
  padding: 4px 8px;
  color: var(--color-accent);
}
.main-nav a:hover, .main-nav a:focus {
  color: #bcffb4;
  text-shadow: 0 0 7px #8fffd1, 0 0 5px #37ef68;
}
/* Burger Button */
.mobile-menu-toggle {
  background: var(--color-secondary);
  color: #203c2a;
  font-size: 2rem;
  border-radius: var(--radius-pill);
  padding: 6px 15px;
  margin-left: 0px;
  display: none;
  box-shadow: 0 2px 10px #30df8344;
  transition: background 0.18s, color 0.15s;
  z-index: 1002;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #bcffb4;
  color: var(--color-primary);
}

/* MOBILE MENU ----------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #15191be8;
  backdrop-filter: blur(8px);
  transform: translateX(110%);
  transition: transform 0.3s cubic-bezier(.55,.05,.68,.19);
  z-index: 1400;
  width: 100vw;
  height: 100vh;
  padding: 0 0 40px 0;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 2.3rem;
  color: var(--color-neon);
  background: none;
  border: none;
  padding: 4px 10px;
  z-index: 1401;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #00FE88;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 80px 0 0 24px;
}
.mobile-nav a {
  font-size: 1.275rem;
  font-family: var(--font-display);
  color: #bcffb4;
  padding: 12px 6px 12px 2px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.03em;
  transition: background 0.18s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #bcffb41c;
  color: var(--color-primary);
  box-shadow: 0 2px 8px #30df8350;
}

/* Sections and Cards ----------------------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #232c2bbc;
  border-radius: var(--radius);
  box-shadow: 0 8px 16px -3px #205c3b33;
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
  transition: box-shadow 0.21s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 12px 28px 4px #8fffd1b2,0 6px 24px 0px #205c3b33;
  transform: translateY(-2px) scale(1.015);
}
/* For project/service/feature/faq layouts */
.content-grid, .feature-grid, .services-list, .team-section, .workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-grid {
  margin-top: 20px;
}
.feature-item {
  background: #191e1f;
  border: 1.5px solid #3ae67c38;
  border-radius: var(--radius);
  box-shadow: 0 3px 18px #1a986991;
  padding: 26px 18px 24px 18px;
  min-width: 240px;
  max-width: 320px;
  flex: 1 0 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.2s, border 0.19s, transform 0.18s;
  margin-bottom: 20px;
}
.feature-item img {
  height: 44px;
  width: 44px;
  margin-bottom: 8px;
  filter: drop-shadow(0px 0px 6px #00db64bb);
}
.feature-item:hover,
.feature-item:focus {
  border: 1.5px solid #bcffb4;
  box-shadow: 0 8px 30px #31ff9c60,0 2px 8px #00db6460;
  transform: translateY(-2px) scale(1.04);
}
/* Team Section */
.team-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.team-member {
  background: #181F22cc;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 22px #205c3b22;
  padding: 24px 20px 18px 20px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 0 180px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: var(--color-accent);
}

/* Services / Workshops */
.services-list, .workshop-list {
  gap: 24px;
}
.service-item, .workshop-item {
  background: #212b24c9;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 18px 0 #205c3b18;
  padding: 22px 17px 20px 17px;
  min-width: 220px;
  max-width: 360px;
  flex: 1 0 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  border-left: 3px solid var(--color-secondary);
  transition: box-shadow 0.18s, transform 0.18s, border-color 0.17s;
}
.service-item:hover,
.workshop-item:hover {
  border-color: #bcffb4;
  box-shadow: 0 10px 32px #bcffb4a0,0 2px 10px #19d26866;
  transform: translateY(-2px) scale(1.025);
}

/* FAQ Accordions */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion h3 {
  color: var(--color-secondary);
  margin-bottom: 7px;
  font-family: var(--font-display);
}
.faq-accordion div {
  background: #181f2299;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 18px 0 #205c3b1f;
  padding: 18px 20px 12px 20px;
  transition: box-shadow 0.19s, transform 0.18s;
  margin-bottom: 5px;
}
.faq-accordion div:hover {
  box-shadow: 0 10px 22px #31ff9c51;
  transform: scale(1.015);
}

/* Text w/ image (not present but future-proof) */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Text Sections */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
}
.text-section ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--color-accent);
}
.text-section ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  font-size: 1rem;
  color: var(--color-accent);
}
.text-section ul li img {
  width: 20px;
  height: 20px;
  filter: brightness(0.95) drop-shadow(0 0 3px #14faaa77);
  margin-right: 8px;
}

/* Project stats, impact numbers, callouts */
.project-highlights, .impact-numbers, .callout, .pricing-info {
  margin-top: 24px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #15191bad 45%, #66B79944 100%);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  box-shadow: 0 2px 14px #3ae67c22;
}
.project-highlights ul, .impact-numbers ul {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: flex-start;
  align-items: flex-start;
}
.project-highlights li, .impact-numbers li {
  font-family: var(--font-display);
  color: #bcffb4;
  font-size: 1.22rem;
}
.callout {
  border-left: 4px solid var(--color-neon);
  background: #212d24dd;
}

/* Testimonial Card ----------------------------------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F6F6F2;
  color: #181F22;
  border-left: 3px solid var(--color-secondary);
  border-radius: var(--radius-sm);
  box-shadow: 0 3px 12px #205c3b18;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border 0.16s, transform 0.16s;
}
.testimonial-card blockquote {
  background: none;
  border-left: none;
  padding: 0;
  margin: 0;
  color: #205c3b;
  font-size: 1.07rem;
  font-style: italic;
  font-family: var(--font-display);
  line-height: 1.5;
}
.testimonial-card p {
  color: #205c3b;
  font-size: 1rem;
}
.testimonial-card strong {
  color: #11693e;
}
.testimonial-card:hover {
  box-shadow: 0 12px 22px #3ae67c26, 0 3px 12px #8fffd1bb;
  border-left: 3px solid #bcffb4;
  transform: scale(1.015) translateY(-2px);
}


/* Footer ------------------------------------------------------------ */
footer {
  width: 100%;
  background: #15191B;
  border-top: 2px solid var(--color-secondary);
  box-shadow: 0 -4px 24px -2px #1f765e50;
  padding: 0;
  margin-top: 64px;
}
footer .container {
  padding: 36px 20px 18px 20px;
  flex-direction: column;
  gap: 30px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
footer img {
  max-height: 46px;
}
.claim {
  font-family: var(--font-display);
  color: #bcffb4;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  margin-left: 10px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: var(--color-secondary);
  font-size: 0.97rem;
  transition: color 0.14s, text-shadow 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #bcffb4;
  text-shadow: 0 0 8px #8fffd199;
}
.footer-contact {
  font-size: 0.98rem;
  color: var(--color-accent);
}
.footer-contact small {
  color: #66b799;
}


/* Cookie Consent Banner ----------------------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 12000;
  background: #191e1f;
  border-top: 2px solid var(--color-secondary);
  color: var(--color-accent);
  box-shadow: 0 -7px 24px #205c3b44;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  justify-content: center;
  padding: 16px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s, transform 0.21s;
  transform: translateY(50px);
}
.cookie-consent-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-consent-banner p {
  color: var(--color-accent);
  font-size: 1rem;
  margin: 0 8px 0 0;
}
.cookie-consent-banner .cookie-action {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1rem;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-secondary);
  background: var(--color-secondary);
  color: #181F22;
  margin: 0;
  transition: background 0.15s, color 0.15s, box-shadow 0.17s;
  box-shadow: 0 0 8px #bcffb486;
}
.cookie-btn.settings {
  background: #181F22;
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
  box-shadow: 0 0 7px #3ae67c;
}
.cookie-btn.reject {
  background: #191e1f;
  color: #eeb5b4;
  border: 1px solid #eeb5b4;
  box-shadow: 0 0 7px #db326c70;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #bcffb4;
  color: var(--color-primary);
  box-shadow: 0 0 14px #bcffb4a6,0 2px 12px #30df8344;
}
/* Cookie Modal (settings) */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 13000;
  background: #15191bdc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.21s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-inner {
  width: 96%;
  max-width: 400px;
  background: #222c27;
  border-radius: var(--radius);
  box-shadow: 0 2px 20px 2px #3ae67c88;
  padding: 30px 26px 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-inner h2 {
  color: var(--color-neon);
  font-size: 1.4rem;
  margin-bottom: 5px;
}
.cookie-modal-close {
  position: absolute;
  top: 9px; right: 16px;
  background: none;
  color: var(--color-neon);
  font-size: 2.2rem;
  border: none;
  cursor: pointer;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 18px 0 10px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  color: var(--color-accent);
  font-family: var(--font-body);
}
.cookie-category input[type=checkbox] {
  accent-color: var(--color-secondary);
  width: 18px;
  height: 18px;
  margin: 0 0 0 4px;
}
.cookie-category .essential {
  font-weight: 700;
  color: var(--color-neon);
}

/* Hide scroll when modal/banner active */
body.cookie-modal-open {
  overflow: hidden;
}

/* Animations / Transitions -------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  a, button, .btn-primary, .btn-secondary, .feature-item, .testimonial-card, .service-item, .workshop-item, .faq-accordion div, .card {
    transition: all 0.18s cubic-bezier(.43,.09,.48,.98);
  }
}

/* Responsive -------------------------------------------- */
@media (max-width: 1150px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 980px) {
  .main-nav {
    gap: 7px;
    font-size: 0.96rem;
  }
  .feature-grid, .content-grid, .services-list, .team-section, .workshop-list {
    gap: 10px;
  }
  .feature-item, .team-member, .service-item, .workshop-item, .card {
    min-width: 180px;
    max-width: 100%;
    flex-basis: 100%;
  }
}
@media (max-width: 830px) {
  .footer-top, .footer-nav, .footer-contact {
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
  }
  .feature-item, .service-item, .workshop-item, .team-member, .testimonial-card { min-width: 160px; }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 0px;
    padding: 8px 6px 10px 10px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section, section {
    padding: 32px 0 32px 0;
    margin-bottom: 38px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 11px;
    padding: 15px 10px 15px 16px;
  }
  .feature-grid, .content-grid, .services-list, .team-section, .workshop-list, .faq-accordion {
    flex-direction: column;
    gap: 12px;
  }
  .feature-item, .team-member, .service-item, .workshop-item {
    max-width: 100%;
    min-width: unset;
    width: 100%;
    padding: 18px 12px 15px 15px;
  }
  .project-highlights ul, .impact-numbers ul {
    flex-direction: column;
    gap: 10px;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 14px;
    font-size: 1rem;
    padding: 14px 8px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.1rem; }
  .footer-contact, .footer-nav, .claim {
    font-size: 0.89rem; }
  .btn-primary, .btn-secondary {
    font-size: 0.99rem;
    padding: 11px 19px;
  }
  .cookie-modal-inner h2 {
    font-size: 1.02rem;
  }
}

/* Utility classes ---- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 8px !important; }
.mb-3 { margin-bottom: 12px !important; }
.mt-2 { margin-top: 8px !important; }
.mt-3 { margin-top: 12px !important; }
.w-100 { width: 100% !important; }

/* Hide visually (for accessibility) */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

/* STYLE OVERRIDES for cookie banner on light background tester */
@media (max-width: 400px) {
  .cookie-modal-inner {
    padding: 8px 6px 8px 6px;
    font-size: 0.91rem;
  }
  .cookie-modal-inner h2 {
    font-size: 1rem;
  }
}
