/* Arcadia Mod – NATURE_ORGANIC Responsive Flexbox CSS Styles */
/* === RESET & BASE === */
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background-color: #F8F6F2;
  color: #313024;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  padding-left: 1.5em;
  margin-top: 12px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 6px;
}

/* Typography scale & hierarchy */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2E3440;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2E3440;
  margin-bottom: 20px;
  line-height: 1.18;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2E3440;
  margin-bottom: 12px;
  line-height: 1.22;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2E3440;
  margin-bottom: 10px;
}
.subheadline {
  font-size: 1.2rem;
  color: #5a593f;
  margin-bottom: 22px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
}
strong, b {
  font-weight: 700;
  color: #2E3440;
}

/* === CONTAINER & LAYOUT === */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* === HEADER === */
header {
  background: #ECEFF4;
  box-shadow: 0 2px 8px rgba(107, 100, 80, 0.04), 0 1.5px 0 rgba(163,190,140,0.03);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo img {
  height: 42px;
  width: auto;
  filter: brightness(0.95) contrast(1.03);
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #465735;
  padding: 7px 6px;
  border-radius: 7px;
  transition: background 0.18s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #A3BE8C11;
  color: #69966e;
}
.cta-primary {
  background: #A3BE8C;
  color: #2E3440;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  box-shadow: 0 1.5px 12px rgba(163,190,140,0.09);
  padding: 11px 36px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.22s;
  display: inline-block;
  margin-left: 12px;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: #88a366;
  color: #fff;
  box-shadow: 0 5px 24px rgba(163,190,140,0.16);
}
.mobile-menu-toggle {
  display: none;
  background: #A3BE8C;
  color: #2E3440;
  border: none;
  border-radius: 8px;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.22s, color 0.22s, box-shadow 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #88a366;
  color: #fff;
  box-shadow: 0 6px 22px rgba(163,190,140,0.13);
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #ECEFF4ee;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.87,0.02,0.13,0.96);
  display: flex;
  flex-direction: column;
  padding: 22px 0 0 0;
  box-shadow: 2px 0 36px rgba(46,52,64,0.08);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #2E3440;
  font-size: 2.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  align-self: flex-end;
  margin-right: 24px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: color 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #A3BE8C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-left: 32px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #465735;
  padding: 8px 4px;
  border-radius: 7px;
  transition: background 0.18s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A3BE8C15;
  color: #2E3440;
}

@media (max-width: 1100px) {
  header .container { gap: 8px; }
  .main-nav { gap: 16px; }
  .cta-primary { margin-left: 0; }
}
@media (max-width: 900px) {
  header .container {
    gap: 8px;
  }
  .main-nav {
    gap: 8px;
  }
}
@media (max-width: 850px) {
  .main-nav, .cta-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* === HERO/BANNER === */
.hero {
  background: url('../assets/hero-bg.jpg'), linear-gradient(120deg, #ECEFF4ee 90%, #A3BE8C22 100%);
  background-blend-mode: lighten;
  background-size: cover;
  background-position: center;
  padding: 56px 0 56px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 600px;
  gap: 18px;
}
.hero h1 {
  color: #2E3440;
}
.hero .cta-primary {
  margin-top: 16px;
}

/* === FEATURES, SERVICES, CARDS === */
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.feature-item, .service-item {
  background: #fff;
  border-radius: 18px 34px 16px 32px / 22px 22px 40px 18px;
  box-shadow: 0 4px 20px rgba(163,190,140,0.05), 0 1.5px 0 rgba(90,89,63,0.015);
  padding: 30px 26px 26px 26px;
  flex: 1 1 265px;
  min-width: 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.20s, transform 0.18s;
  border: 1.5px solid #dbe6da;
}
.feature-item:hover, .service-item:hover {
  box-shadow: 0 8px 28px rgba(163,190,140,0.20), 0 2.5px 0 rgba(90,89,63,0.04);
  transform: translateY(-2px) scale(1.015);
  border-color: #A3BE8C44;
}
.feature-item img, .service-item img {
  height: 48px;
  width: 48px;
  background: #A3BE8C26;
  border-radius: 29px;
  padding: 8px;
  margin-bottom: 4px;
}
.feature-item h3, .service-item h3 {
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 2px;
  color: #2E3440;
}
.feature-item p, .service-item p {
  color: #59624e;
  font-size: 1rem;
}
.service-price {
  margin-top: 10px;
  font-weight: 600;
  color: #7d9958;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
}

/* General card container (for other usages) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 18px rgba(46,52,64,0.03), 0 1.5px 0 rgba(163,190,140,0.03);
  padding: 30px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.19s;
}
.card:hover {
  box-shadow: 0 11px 36px rgba(163,190,140,0.15), 0 3px 0 rgba(163,190,140,0.04);
}

/* === CTA BOXES === */
.cta-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: #A3BE8C15;
  border-radius: 28px 18px 44px 22px/20px 33px 26px 18px;
  padding: 32px 30px 32px 34px;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(163,190,140,0.065);
}
.cta-box .cta-primary {
  margin-bottom: 5px;
}

/* === TEXT SECTIONS & IMAGE-TEXT FLEX === */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.consultation-offer {
  background: #fff;
  border-radius: 16px 31px 16px 19px / 22px 24px 40px 18px;
  padding: 18px 24px;
  box-shadow: 0 2px 8px rgba(90,89,63,0.04);
  border: 1.5px solid #dbe6da;
}
.founder-message {
  background: #E9F2E3;
  border-radius: 22px;
  padding: 18px 24px 12px 24px;
  margin-top: 8px;
  font-style: italic;
}

/* === BLOG & ARTICLES === */
.blog-articles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.blog-summary {
  background: #fff;
  border-radius: 24px 38px 18px 32px / 20px 20px 40px 24px;
  box-shadow: 0 2px 10px rgba(163,190,140,0.07);
  padding: 22px 20px 20px 24px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 360px;
  gap: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.13s;
}
.blog-summary:hover {
  box-shadow: 0 8px 24px rgba(163,190,140,0.18);
  transform: translateY(-2px) scale(1.013);
}
.blog-category {
  background: #A3BE8C22;
  color: #7d9958;
  font-size: 0.95rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 2.5px 16px;
  border-radius: 15px;
  align-self: flex-start;
  margin-top: 5px;
}

/* === TESTIMONIALS === */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 36px 22px 22px 24px / 38px 20px 32px 17px;
  box-shadow: 0 4px 18px rgba(90,89,63,0.06);
  padding: 22px 28px 20px 26px;
  min-width: 270px;
  max-width: 410px;
  margin-bottom: 20px;
  border: 1.5px solid #dbe6da;
  color: #383823;
  font-size: 1.04rem;
  transition: box-shadow 0.21s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 34px rgba(163,190,140,0.2);
}
.testimonial-card blockquote {
  color: #2E3440;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 7px;
  line-height: 1.44;
  quotes: "\201C" "\201D" "\2018" "\2019";
}
.client-name {
  color: #799062;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-style: italic;
  margin-top: 0.5rem;
}

/* === FOOTER === */
footer {
  background: #ECEFF4;
  color: #586243;
  padding: 56px 0 0 0;
  border-radius: 36px 36px 0 0/18px 18px 0 0;
  box-shadow: 0 -2px 19px rgba(90,89,63,0.04);
  margin-top: 80px;
}
.footer-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1.5px solid #dbe6da;
  padding-bottom: 24px;
  gap: 32px;
  margin-bottom: 18px;
}
.footer-top img {
  height: 42px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a {
  color: #465735;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px;
  border-radius: 7px;
  transition: background 0.13s, color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #A3BE8C26;
  color: #2E3440;
}
.footer-bottom {
  margin-top: 14px;
  padding-bottom: 34px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
  align-items: flex-start;
}
footer address {
  font-style: normal;
  color: #586243;
  line-height: 1.3;
  margin-bottom: 2px;
}
footer a {
  color: #47524a;
  text-decoration: underline dotted #A3BE8C44 1.5px;
  transition: color 0.13s, border-color 0.13s;
}
footer a:hover { color: #A3BE8C; }

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2200;
  background: #ECEFF4cc;
  color: #2E3440;
  box-shadow: 0 -3px 34px rgba(46,52,64,0.13);
  border-top: 2px solid #A3BE8C69;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 34px;
  padding: 18px 36px 16px 36px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: transform 0.39s;
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner__text {
  flex: 1 1 0%;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-btn {
  background: #A3BE8C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 19px;
  padding: 9px 20px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.18s, color 0.21s, box-shadow 0.22s;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #78965a;
  color: #fff;
}
.cookie-btn--ghost {
  background: #f8f6f2;
  color: #2E3440;
  border: 2px solid #A3BE8C;
  transition: background 0.17s, color 0.19s;
}
.cookie-btn--ghost:hover, .cookie-btn--ghost:focus {
  background: #E9F2E3;
  color: #2E3440;
}
.cookie-btn--settings {
  background: none;
  color: #7d9958;
  border: none;
  padding: 0 7px;
  font-weight: 500;
  transition: color 0.17s;
}
.cookie-btn--settings:hover, .cookie-btn--settings:focus {
  color: #465735;
}

/* Cookie Modal */
.cookie-modal-backdrop {
  z-index: 2400;
  position: fixed;
  inset: 0;
  background: #00000044;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.37s ease;
}
@keyframes fadeIn {from {opacity: 0;} to {opacity: 1;}}
.cookie-modal {
  background: #ECEFF4;
  color: #2E3440;
  border-radius: 34px 18px 36px 24px / 38px 22px 20px 14px;
  box-shadow: 0 8px 34px rgba(46,52,64,0.17);
  padding: 38px 42px 32px 42px;
  min-width: 320px;
  max-width: 94vw;
  font-family: 'Open Sans', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}
.cookie-modal h2 { font-size: 1.28rem; margin-bottom: 21px; color: #2E3440; }
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 22px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.65rem;
  color: #2E3440;
  cursor: pointer;
  border-radius: 6px;
  transition: color 0.15s, background 0.12s;
}
.cookie-modal .cookie-modal-close:hover { color: #A3BE8C; background: #e8f6d1; }

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #A3BE8C22;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category__desc { flex: 1 1 0%; }
.cookie-category__toggle {
  width: 38px;
  height: 22px;
  border-radius: 17px;
  background: #d3e6d1;
  position: relative;
  margin-left: 14px;
  transition: background 0.16s;
  border: 1.5px solid #A3BE8C53;
  cursor: pointer;
  flex-shrink: 0;
}
.cookie-category__toggle[data-checked="true"] {
  background: #A3BE8C;
}
.cookie-category__toggle::before {
  content: "";
  display: block;
  position: absolute;
  left: 3px; top: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  transition: left 0.16s;
}
.cookie-category__toggle[data-checked="true"]::before {
  left: 16px;
}
.cookie-category__label {
  font-weight: 600;
  color: #465735;
  margin-right: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category__label.essential {
  color: #C26134;
  cursor: not-allowed;
}

.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

/* === BEFORE-AFTER & PROJECT SUMMARY === */
.before-after-descriptions ul,
.project-summary ul,
.project-highlights ul {
  margin-bottom: 16px;
}

/* === CONTENT GRIDS === */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.project-highlights, .before-after-descriptions, .result-highlights {
  background: #E9F2E3;
  border-radius: 19px;
  padding: 20px 24px 20px 24px;
  margin-top: 10px;
  font-size: 1rem;
}

/* === MISC UTILS === */
::-webkit-scrollbar {
  width: 8px;
  background: #eceff4;
}
::-webkit-scrollbar-thumb {
  background: #A3BE8C44;
  border-radius: 6px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 920px) {
  .feature-grid, .service-list, .blog-articles, .testimonial-grid, .card-container {
    gap: 14px;
  }
  .before-after-descriptions, .project-highlights, .result-highlights {
    padding: 16px 10px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 22px;
  }
  .section {
    margin-bottom: 34px;
    padding: 24px 7px;
  }
  .feature-grid, .service-list, .blog-articles, .testimonial-grid, .card-container {
    gap: 7px;
  }
  .feature-item, .service-item {
    min-width: 90vw;
    max-width: 100vw;
    padding: 20px 10px 18px 12px;
  }
  .card { padding: 16px 9px; }

  .footer-top {
    flex-direction: column;
    gap: 10px;
    padding-bottom: 16px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 9px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom { font-size: 0.96rem; }

  .cta-box {
    padding: 16px 10px 17px 12px;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 520px) {
  h1, .h1 { font-size: 1.4rem; }
  h2, .h2 { font-size: 1.15rem; }
  h3, .h3 { font-size: 1rem; }
  .main-nav, .cta-primary { font-size: 0.95rem; }
  .cookie-banner { flex-direction: column; gap: 17px; padding: 14px 8px; }
  .cookie-modal { padding: 23px 7vw 18px 7vw; }
}

/* === ANIMATIONS === */
.section, .feature-item, .card, .testimonial-card, .blog-summary, .service-item, .cta-box, .cookie-banner, .cookie-modal, .mobile-menu {
  will-change: transform, opacity;
  transition: box-shadow 0.15s, background 0.13s, transform 0.17s, opacity 0.19s;
}

/* === ACCESSIBILITY ENHANCEMENTS === */
:focus {
  outline: 2.5px solid #A3BE8C;
  outline-offset: 2px;
}

/* === PRINT & SELECTION === */
@media print {
  * { background: none !important; box-shadow: none !important; color: #2E3440 !important; }
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
}
::selection {
  background: #A3BE8C44;
  color: #2E3440;
}

/* END Arcadia Mod nature_organic UI – Flexbox-Only, Responsive, Consistent, Contrast-Aware */