/* CSS RESET by Andy Bell (modified for this project) */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  line-height: 1.5;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F4F7F5;
  color: #2A332B;
  font-weight: 400;
  overflow-x: hidden;
}
img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
a {
  color: #364B3C;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #C6B3D9;
  outline-offset: 2px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #364B3C;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 8px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #2A332B;
}
strong {
  color: #364B3C;
  font-weight: 700;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
body, html {
  background: #F4F7F5;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 16px 0 rgba(54,75,60,0.09);
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features-grid > div {
  flex: 1 1 230px;
  min-width: 230px;
  max-width: 340px;
  background: #F4F7F5;
  border-radius: 18px;
  padding: 24px 20px;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(198,179,217,0.07);
  gap: 8px;
  border: 2px solid #C6B3D9;
  transition: box-shadow 0.2s, border 0.2s;
}
.features-grid > div:hover, .features-grid > div:focus-within {
  box-shadow: 0 4px 20px rgba(54,75,60,0.17);
  border: 2px solid #364B3C;
}
.features-grid h3 {
  color: #364B3C;
  font-size: 1.16rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.features-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}
/* Cards & Lists */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(54,75,60,0.10);
  padding: 24px 18px;
  margin-bottom: 20px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.2s, border 0.2s;
  border: 2px solid #C6B3D9;
}
.card:hover, .card:focus-within {
  box-shadow: 0 3px 20px rgba(54,75,60,0.18);
  border: 2px solid #364B3C;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border: 2px solid #C6B3D9;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(54,75,60,0.10);
  margin-bottom: 20px;
  color: #2A332B;
  font-size: 1rem;
}
.testimonial-card p {
  margin-bottom: 8px;
  color: #2A332B;
  font-size: 1.1rem;
  line-height: 1.4;
}
.testimonial-card strong {
  color: #364B3C;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
/* Header & Navigation */
header {
  width: 100%;
  background: #fff;
  border-bottom: 3px solid #C6B3D9;
  box-shadow: 0 2px 10px rgba(54,75,60,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header img {
  height: 48px;
  width: auto;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
nav.main-nav a {
  color: #364B3C;
  font-size: 1rem;
  padding: 8px 0px;
  letter-spacing: 0.01em;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  color: #C6B3D9;
  border-bottom: 2px solid #C6B3D9;
}
.button-primary {
  display: inline-flex;
  align-items: center;
  background: #364B3C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 1.1rem;
  border: none;
  border-radius: 40px;
  padding: 12px 36px;
  cursor: pointer;
  margin-left: 18px;
  box-shadow: 0 2px 6px rgba(54,75,60,0.10);
  transition: background 0.18s, color 0.18s, transform 0.16s, box-shadow 0.18s;
}
.button-primary:hover, .button-primary:focus {
  background: #C6B3D9;
  color: #364B3C;
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 4px 18px 0 rgba(54,75,60,0.16);
}
.button-secondary {
  display: inline-flex;
  align-items: center;
  background: #C6B3D9;
  color: #364B3C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 40px;
  padding: 11px 28px;
  font-size: 1rem;
  transition: background 0.20s, color 0.20s, transform 0.16s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(198,179,217,0.07);
  margin-top: 4px;
}
.button-secondary:hover, .button-secondary:focus {
  background: #364B3C;
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(54,75,60,0.13);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2.1rem;
  color: #364B3C;
  border: none;
  margin-left: 16px;
  cursor: pointer;
  z-index: 1101;
  padding: 8px 8px;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #C6B3D9;
}
@media (max-width: 1024px) {
  nav.main-nav {
    gap: 18px;
  }
  .button-primary {
    padding: 12px 22px;
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  .footer-brand {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 810px) {
  nav.main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .button-primary {
    margin-left: 12px;
  }
}
/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-100vw);
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 2px 0 12px rgba(54,75,60,0.22);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transition: transform 0.37s cubic-bezier(.6,1,.57,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #364B3C;
  font-size: 2.4rem;
  position: absolute;
  top: 28px;
  right: 26px;
  cursor: pointer;
  z-index: 1220;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #C6B3D9;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 90px;
  align-items: center;
}
.mobile-nav a {
  color: #364B3C;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  border-radius: 12px;
  padding: 12px 34px;
  transition: background 0.16s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #C6B3D9;
  color: #fff;
  outline: none;
}
@media (min-width: 811px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}
/* --- BLOG & SERVICES --- */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item {
  background: #F4F7F5;
  border-radius: 18px;
  padding: 24px 20px;
  border: 2px solid #C6B3D9;
  box-shadow: 0 2px 8px rgba(198,179,217,0.09);
  flex: 1 1 300px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border 0.18s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 4px 18px rgba(54,75,60,0.13);
  border: 2px solid #364B3C;
}
.blog-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-post-teaser {
  background: #fff;
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 2px 8px rgba(198,179,217,0.09);
  border: 2px solid #C6B3D9;
  flex: 1 1 290px;
  min-width: 290px;
  max-width: 390px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.16s, border 0.16s;
}
.blog-post-teaser:hover, .blog-post-teaser:focus-within {
  box-shadow: 0 4px 16px 0 rgba(54,75,60,0.11);
  border: 2px solid #364B3C;
}
/* Project Page */
.project-highlight {
  background: #fff;
  border: 2px solid #C6B3D9;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(198,179,217,0.07);
  padding: 28px 22px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: box-shadow 0.21s, border 0.21s;
}
.project-highlight:hover {
  box-shadow: 0 7px 22px 0 rgba(54,75,60,0.16);
  border: 2px solid #364B3C;
}
/* Contact Details */
.contact-details ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.03rem;
  color: #364B3C;
}
.contact-details img {
  width: 24px;
  height: 24px;
}
.map-placeholder {
  background: #F4F7F5;
  border: 2px dashed #C6B3D9;
  border-radius: 16px;
  padding: 20px 16px;
  margin-top: 18px;
  margin-bottom: 16px;
  color: #364B3C;
}
.cta-section {
  background: #C6B3D9;
  color: #364B3C;
  border-radius: 18px;
  padding: 28px 22px;
  margin-top: 28px;
  box-shadow: 0 1px 7px rgba(198,179,217,0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-section a.button-primary {
  background: #364B3C;
  color: #fff;
  margin-left: 0;
}
.cta-section a.button-primary:hover {
  background: #fff;
  color: #364B3C;
}
/* --- FOOTER --- */
footer {
  width: 100%;
  background: #364B3C;
  color: #fff;
  padding: 34px 0 0 0;
  border-top: 4px solid #C6B3D9;
  box-shadow: 0 -2px 10px rgba(54,75,60,0.06);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 26px;
}
.footer-brand img {
  width: 60px;
  height: auto;
}
.brand-info {
  color: #fff;
  font-size: 1rem;
  line-height: 1.45;
  opacity: 0.92;
}
footer nav.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 22px;
}
footer nav.footer-menu a {
  color: #C6B3D9;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.16s;
}
footer nav.footer-menu a:hover, footer nav.footer-menu a:focus {
  color: #fff;
}
/* --- Responsive Tweaks --- */
@media (max-width: 900px) {
  .features-grid, .services-list, .content-grid, .blog-posts, .card-container {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  section {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  footer .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .features-grid, .services-list, .content-grid, .blog-posts, .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .features-grid > div,
  .service-item,
  .blog-post-teaser,
  .card {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 580px) {
  html {
    font-size: 14px;
  }
  header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-brand img {
    width: 46px;
  }
  section {
    border-radius: 0;
    box-shadow: none;
  }
}
/* --- GEOMETRIC DECORATION --- */
.features-grid > div::before,
.service-item::before,
.card::before,
.blog-post-teaser::before {
  content: '';
  display: block;
  position: absolute;
  top: 12px;
  left: 12px;
  width: 22px;
  height: 22px;
  border-radius: 6px 50% 8px 50px;
  background: #C6B3D9;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}
.features-grid > div::before {
  left: 18px; top: 14px;
  width: 30px; height: 30px;
}
/* Remove decoration for mobile for simplicity */
@media (max-width: 480px) {
  .features-grid > div::before,
  .service-item::before,
  .card::before,
  .blog-post-teaser::before { display: none; }
}
/* --- FORM ELEMENTS --- */
input, textarea, select, button {
  font-family: inherit;
}
input, textarea, select {
  border: 2px solid #C6B3D9;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 12px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #364B3C;
  outline: none;
}
button[type="submit"] {
  background: #364B3C;
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.12s, color 0.11s;
}
button[type="submit"]:hover, button[type="submit"]:focus {
  background: #C6B3D9;
  color: #364B3C;
}
/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #364B3C;
  color: #fff;
  padding: 28px 12px 18px 12px;
  box-shadow: 0 -2px 18px rgba(54,75,60,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 6000;
  gap: 16px;
  font-size: 1rem;
  transition: transform 0.25s cubic-bezier(.7,1,.5,1);  
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner .cookie-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.cookie-btn-accept {
  background: #C6B3D9;
  color: #364B3C;
  border: none;
  border-radius: 34px;
  font-weight: 700;
  padding: 10px 26px;
  font-size: 1.08rem;
  margin-left: 4px;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: #fff;
  color: #364B3C;
}
.cookie-btn-reject {
  background: #fff;
  color: #364B3C;
  border: none;
  border-radius: 34px;
  font-weight: 700;
  padding: 10px 24px;
  font-size: 1.08rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #C6B3D9;
  color: #fff;
}
.cookie-btn-settings {
  background: #364B3C;
  color: #C6B3D9;
  border: 2px solid #C6B3D9;
  border-radius: 34px;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 9px 22px;
  cursor: pointer;
  transition: background 0.12s, color 0.12s, border 0.1s;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #C6B3D9;
  color: #364B3C;
}
@media (max-width: 600px) {
 .cookie-btn-row {flex-direction: column;gap: 12px;}
}
/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  z-index: 6900;
  left: 50%;
  top: 50%;
  width: 97vw;
  max-width: 420px;
  background: #fff;
  border: 3px solid #C6B3D9;
  border-radius: 22px;
  transform: translate(-50%,-50%) scale(1.01);
  box-shadow: 0 7px 42px rgba(54,75,60,0.21);
  padding: 36px 24px 24px 24px;
  color: #364B3C;
  font-size: 1.09rem;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.23s, transform 0.23s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,-50%) scale(0.98);
}
.cookie-modal h3 {
  color: #364B3C;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.22rem;
}
.cookie-toggle-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}
.cookie-toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
}
.cookie-toggle-label {
  font-weight: 600;
  flex: 1;
}
.cookie-toggle-switch {
  width: 48px;
  height: 28px;
  background: #C6B3D9;
  border-radius: 18px;
  position: relative;
  transition: background 0.15s;
  cursor: pointer;
}
.cookie-toggle-switch[aria-checked="true"] {
  background: #364B3C;
}
.cookie-toggle-slider {
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.15s, background 0.15s;
}
.cookie-toggle-switch[aria-checked="true"] .cookie-toggle-slider {
  left: 23px;
  background: #C6B3D9;
}
.cookie-modal-btn-row {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #364B3C;
  font-size: 2rem;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #C6B3D9;
}
@media (max-width: 480px) {
  .cookie-modal {
    max-width: 97vw;
    padding: 24px 8px;
  }
}
/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.button-primary, .button-secondary, .card, .service-item, .blog-post-teaser, .project-highlight, .testimonial-card, .features-grid > div, .cookie-banner, .mobile-menu {
  transition: box-shadow 0.19s, border 0.17s, background 0.15s, color 0.14s, transform 0.18s;
}
.button-primary:active, .button-secondary:active {
  transform: scale(0.97);
}
.card:active, .service-item:active, .blog-post-teaser:active, .project-highlight:active {
  transform: scale(0.985);
}
.mobile-menu.open {
  animation: menu-slide-in 0.36s cubic-bezier(.6,1,.57,1);
}
@keyframes menu-slide-in {
  from {transform: translateX(-100vw);}
  to {transform: translateX(0);}
}

/* --- TYPOGRAPHY SYSTEM --- */
:root {
  --fs-xs: 0.88rem;
  --fs-sm: 1rem;
  --fs-md: 1.18rem;
  --fs-lg: 1.4rem;
  --fs-xl: 2rem;
  --fs-xxl: 2.5rem;
}
/* Utility classes */
.text-center {text-align: center;}
.mt-2 {margin-top: 16px;}
.mb-2 {margin-bottom: 16px;}
.mt-4 {margin-top: 32px;}
.mb-4 {margin-bottom: 32px;}

/* --- BRAND FONTS LOADERS (fall back to system sans) ---*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
