/* ========== CSS RESET & BASE ========== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #FCFBF7;
  color: #273047;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  letter-spacing: 0.006em;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #427755;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #507c2f;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.4em;
  margin-bottom: 1.2em;
}
li {
  margin-bottom: 0.5em;
}

/* ========== COLORS (Earthy - nature_organic) ========== */
:root {
  --primary: #273047;
  --secondary: #8FA8C8;
  --accent: #F3F4F7;
  --earth-olive: #6C7A3F;
  --earth-tan: #D1BA91;
  --earth-clay: #B0926A;
  --earth-green: #427755;
  --earth-sand: #EAE3D2;
  --white: #FCFBF7;
  --black: #171917;
  --shadow: rgba(108,122,63,0.10);
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.125rem;
}
p {
  margin-bottom: 1em;
  font-size: 1.0625rem;
}
.text-section p, .text-section li, .text-section {
  font-size: 1.0625rem;
}

b, strong {
  font-weight: 700;
}

/* ========== CONTAINER ========== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
}

/* ========== HEADER & NAVIGATION ========== */
header {
  background: var(--white);
  box-shadow: 0 2px 8px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 25;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0px 12px 0;
  height: 62px;
}
.logo img {
  height: 40px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-left: auto;
}
.main-nav a {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  color: var(--primary);
  font-weight: 500;
  font-size: 1.06rem;
  border-radius: 22px;
  padding: 7px 16px;
  position: relative;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--earth-sand);
  color: var(--earth-green);
  outline: none;
}
header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  padding: 0 28px;
  min-height: 68px;
}
@media (max-width: 1100px) {
  .main-nav {
    gap: 13px;
  }
  header {
    gap: 20px;
    padding-left: 10px; padding-right: 10px;
  }
}
@media (max-width: 880px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header {
    gap: 8px;
  }
}

/* ========== MOBILE NAVIGATION ========== */
.mobile-menu-toggle {
  display: none;
  background: var(--earth-green);
  color: var(--white);
  font-size: 2rem;
  padding: 8px 14px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  margin-left: auto;
  transition: background 0.18s, box-shadow 0.18s;
  z-index: 101;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--earth-olive);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 87vw;
  max-width: 320px;
  background: var(--earth-sand);
  box-shadow: -3px 0 23px rgba(108,122,63,0.14);
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.51,.76,.53,1.32);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 32px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: var(--earth-green);
  font-size: 2.2rem;
  cursor: pointer;
  margin-right: 12px;
  margin-bottom: 16px;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-size: 1.13rem;
  color: var(--primary);
  padding: 13px 22px;
  border-radius: 20px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--earth-green);
  color: var(--white);
  outline: none;
}
@media (max-width: 880px) {
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 340px) {
  .mobile-menu {
    width: 100vw;
  }
}

/* ========== HERO SECTIONS ========== */
.hero {
  background: linear-gradient(120deg, var(--earth-sand) 75%, var(--earth-green) 160%);
  border-radius: 0 0 44px 44px / 0 0 47px 47px;
  box-shadow: 0 4px 32px rgba(67,119,85,0.07);
  position: relative;
  overflow: hidden;
  margin-bottom: 62px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  justify-content: center;
  align-items: center;
  padding: 38px 18px 24px;
}
.hero .content-wrapper {
  width: 100%;
  max-width: 650px;
  text-align: center;
  padding: 0;
  gap: 20px;
}
.hero h1 {
  color: var(--earth-green);
  font-size: 2.3rem;
  line-height: 1.1;
  margin-bottom: 14px;
}
.hero p {
  color: var(--primary);
  font-size: 1.22rem;
  margin-bottom: 22px;
}
@media (min-width: 600px) {
  .hero .container {
    min-height: 390px;
  }
  .hero h1 {
    font-size: 2.7rem;
  }
}
@media (min-width: 880px) {
  .hero .container {
    min-height: 430px;
    padding: 46px 28px 38px;
  }
  .hero h1 {
    font-size: 3.05rem;
  }
}
@media (max-width: 500px) {
  .hero {
    border-radius: 0 0 22px 22px / 0 0 24px 24px;
  }
}

/* ========== BUTTONS ========== */
.cta, .btn, button, input[type="submit"] {
  display: inline-block;
  font-family: "Montserrat", 'Segoe UI', Arial, sans-serif;
  font-weight: 600;
  border-radius: 24px;
  padding: 12px 28px;
  font-size: 1.08rem;
  border: none;
  background: var(--earth-green);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 5px 22px rgba(108,122,63,0.10); 
  margin: 5px 0;
  transition: background 0.22s, color 0.18s, box-shadow 0.18s;
  outline: none;
}
.cta.primary, .cta {
  background: var(--earth-green);
  color: var(--white);
}
.cta.primary:focus, .cta.primary:hover, .btn:focus, .btn:hover, button:focus, button:hover {
  background: var(--earth-olive);
  color: var(--earth-sand);
  box-shadow: 0 8px 28px rgba(67,119,85,0.16);
}
.btn.secondary {
  background: var(--earth-tan);
  color: var(--primary);
}
.btn.secondary:focus, .btn.secondary:hover {
  background: var(--earth-clay);
  color: var(--white);
}
a.cta {
  text-align: center;
  text-decoration: none;
}

/* ========== FEATURES / CARDS / ORGANIC SHAPES ========== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 28px;
  justify-content: center;
}
.feature-box {
  background: var(--white);
  border-radius: 24px 44px 34px 16px / 27px 32px 27px 19px;
  box-shadow: 0 3px 22px rgba(67,119,85,0.08), 0 0 0 2px var(--earth-sand);
  flex: 0 1 270px;
  min-width: 210px;
  max-width: 320px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.22s, box-shadow 0.24s;
  cursor: pointer;
  margin-bottom: 20px;
}
.feature-box img {
  height: 40px;
  width: 40px;
  margin-bottom: 8px;
}
.feature-box h3 {
  color: var(--earth-green);
  margin-bottom: 5px;
}
.feature-box p {
  color: var(--primary);
  text-align: center;
  font-size: 1.02rem;
}
.feature-box:hover, .feature-box:focus {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 36px 0 rgba(67,119,85,0.14), 0 0 0 2.5px var(--earth-olive);
}

/* CARDS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 22px 38px 22px 12px / 24px 19px 24px 22px;
  box-shadow: 0 2px 18px rgba(108,122,63,0.11);
  padding: 28px 23px;
  flex: 1 1 260px;
  min-width: 180px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
}
.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) {
  .content-grid, .feature-grid, .card-container,
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* ========== SERVICE LISTS ETC ========== */
.service-list {
  margin-top: 6px;
  margin-bottom: 22px;
  background: var(--earth-sand);
  border-radius: 24px;
  padding: 24px 14px 14px 22px;
  box-shadow: 0 4px 20px rgba(108,122,63,0.10);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.08rem;
}
.service-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dadbca;
  padding-bottom: 10px;
  margin-bottom: 8px;
  font-size: 1.02rem;
}
.service-list li:last-child {
  border-bottom: none;
}
.service-list span {
  color: var(--earth-green);
  font-weight: 600;
  margin-left: 18px;
  white-space: nowrap;
}
.service-highlights ul, .trust-signals ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-left: 0;
  list-style: none;
  margin-top: 6px;
}
.service-highlights li, .trust-signals li {
  background: var(--earth-green);
  color: var(--white);
  border-radius: 16px 32px 12px 22px / 19px 15px 24px 18px;
  padding: 9px 20px 9px 13px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 1.5px 10px rgba(67,119,85,0.08);
}
.trust-signals img {
  height: 25px;
  width: 25px;
  margin-right: 7px;
}

/* ========== TESTIMONIALS ========== */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
  margin-top: 10px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 26px 20px 24px;
  border-radius: 36px 18px 30px 24px / 20px 27px 15px 18px;
  background: var(--accent);
  box-shadow: 0 2px 13px #6C7A3F14;
  min-width: 210px;
  max-width: 340px;
  flex: 1 1 220px;
  margin-bottom: 18px;
  transition: box-shadow 0.22s, transform 0.16s;
  color: var(--primary);
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.08rem;
}
.testimonial-card span {
  color: var(--earth-green);
  font-size: 0.98rem;
  font-weight: 600;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 32px #6C7A3F19;
  transform: translateY(-3.5px) scale(1.02);
}
@media (max-width: 800px) {
  .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
}

/* ========== FAQ & TEAM SECTIONS ========== */
.faq-teaser {
  margin-top: 17px;
  background: var(--earth-sand);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 0 1.5px 9px var(--shadow);
  font-size: 1.04rem;
}
.faq-teaser h3 {
  color: var(--earth-green);
  margin-bottom: 10px;
}
.faq-teaser ul {
  list-style: disc inside;
  margin-bottom: 10px;
}
.team-intro {
  background: var(--accent);
  border-radius: 22px 15px 34px 23px / 19px 14px 22px 15px;
  padding: 18px 22px;
  box-shadow: 0 2px 9px rgba(67,119,85,0.06);
  margin-top: 12px;
}

/* ========== FOOTER ========== */
footer {
  background: var(--earth-green);
  color: var(--white);
  padding-top: 44px;
  border-radius: 54px 54px 0 0 / 40px 40px 0 0;
  box-shadow: 0 -2px 22px rgba(67,119,85,0.09);
  margin-top: 64px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.footer-main a {
  color: var(--earth-sand);
  font-weight: 600;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-size: 1.01rem;
  border-radius: 18px;
  transition: background 0.15s, color 0.15s;
  padding: 4px 10px 4px 0;
}
.footer-main a:hover {
  color: var(--white);
  background: var(--earth-tan);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.99rem;
}
.footer-contact img {
  vertical-align: middle;
  height: 18px;
  width: 18px;
  margin-right: 7px;
}
.footer-bottom {
  padding: 14px 0 25px;
  font-size: 0.97rem;
  text-align: center;
  color: var(--earth-sand);
} 
footer .logo, .footer-main > a {
  padding: 0;
}
@media (max-width:900px) {
  .footer-main {
    gap: 22px;
    flex-direction: column;
  }
  .footer-nav{
    flex-direction: row;
    flex-wrap: wrap;
    gap: 13px;
  }
}
@media (max-width:500px) {
  footer {
    border-radius: 22px 22px 0 0 / 18px 18px 0 0;
    padding-top: 18px;
  }
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5010;
  background: var(--earth-clay);
  color: var(--white);
  padding: 24px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: 0 -2px 32px #6C7A3F2A;
  border-radius: 28px 28px 0 0 / 14px 14px 0 0;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.44s cubic-bezier(.56,1.18,.37,0.9), opacity 0.21s;
  transform: translateY(100%);
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
.cookie-banner button {
  padding: 9px 20px;
  border-radius: 21px;
  font-size: 0.99rem;
  border: none;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  background: var(--earth-green);
  color: var(--white);
  box-shadow: 0px 1.5px 10px #27304733;
  transition: background 0.18s, color 0.18s;
}
.cookie-banner button:focus, .cookie-banner button:hover {
  background: var(--earth-tan);
  color: var(--earth-green);
}
.cookie-banner .cookie-btns .cookie-settings {
  background: var(--earth-tan);
  color: var(--primary);
}
.cookie-banner .cookie-btns .cookie-settings:focus, .cookie-banner .cookie-btns .cookie-settings:hover {
  background: var(--earth-green);
  color: var(--white);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(67,119,85,0.18);
  z-index: 5020;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: var(--white);
  border-radius: 34px 20px 38px 24px / 19px 22px 27px 28px;
  box-shadow: 0 7px 42px rgba(94,117,70,0.13);
  padding: 34px 26px 30px;
  max-width: 410px;
  min-width: 258px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal h3 {
  color: var(--earth-green);
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.01rem;
  margin: 10px 0 14px;
}
.cookie-modal input[type='checkbox'] {
  accent-color: var(--earth-green);
  width: 22px; height: 22px;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 10px; right: 15px;
  background: transparent;
  border: none;
  font-size: 1.7rem;
  color: var(--earth-green);
  cursor: pointer;
  transition: color 0.19s;
}
.cookie-modal .cookie-modal-close:focus, .cookie-modal .cookie-modal-close:hover {
  color: var(--primary);
}

@media (max-width: 560px) {
  .cookie-modal {
    padding: 18px 7px 18px 8px;
    min-width: unset;
    width: 97vw;
  }
}

/* ========== OTHER GENERAL STYLES ========== */
.text-section {
  margin-bottom: 26px;
  font-size: 1.05rem;
}
.text-section ul {
  margin-left: 1em;
}
.text-section h2, .text-section h3 {
  margin-top: 18px;
}
ol {
  padding-left: 28px;
}

.price-overview ul, .service-steps ol {
  margin: 0 0 14px 1.5em;
  font-size: 1.06rem;
  list-style: decimal inside;
  background: var(--accent);
  border-radius: 14px;
  padding: 15px 20px;
}
.price-overview li {
  border-bottom: 1px solid #dadbca;
  padding-bottom: 8px; 
  margin-bottom: 8px;
}
.price-overview li:last-child, .service-steps li:last-child {
  border-bottom: none;
}

/* ========== FORM ELEMENTS (if present, for future) ========== */
input, textarea, select {
  font-size: 1.02rem;
  border-radius: 16px;
  border: 2px solid var(--earth-sand);
  padding: 10px 13px;
  margin-bottom: 16px;
  width: 100%;
  background: var(--white);
  transition: border-color .20s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--earth-green);
  outline: none;
}

/* ========== MICRO-ANIMATIONS & HOVER EFFECTS ========== */
section, .card, .feature-box, .testimonial-card, .cookie-banner {
  will-change: transform, box-shadow;
  transition: box-shadow 0.21s, transform 0.16s;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 10px;
  background: #ecebdc;
}
::-webkit-scrollbar-thumb {
  background: var(--earth-tan);
  border-radius: 12px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--earth-clay);
}

/* ========== PRINT ========== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff; color: #222; }
}
