/* ==== RESET & NORMALIZE ==== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2A2A1A;
  background-color: #F8F8F6;
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #26855D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #2A2A6A;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}
::-webkit-input-placeholder { color: #7B745B; }
::-moz-placeholder { color: #7B745B; }
:-ms-input-placeholder { color: #7B745B; }
::placeholder { color: #7B745B; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2A2A6A;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; }
p { margin-bottom: 16px; font-size: 1rem; color: #2A2A1A; }
strong { font-weight: 700; }
em { color: #597147; }

/* ==== BRAND COLORS (earthy palette) ==== */
:root {
  --clr-primary: #2A2A6A;
  --clr-secondary: #70B4A3;
  --clr-accent: #F8F8F6;
  --clr-green: #6BA550;
  --clr-brown: #B4976A;
  --clr-sand: #F6EFDF;
  --clr-shadow: rgba(60, 72, 38, 0.05);
  --clr-text: #2A2A1A;
  --clr-headline: #2A2A6A;
  --clr-eco: #238459;
  --clr-btn-hover: #397E56;
  --box-radius: 18px;
}

/* ==== CONTAINERS & LAYOUT ==== */
.container {
  max-width: 1160px;
  width: 90%;
  margin: 0 auto;
  padding: 0 10px;
  flex: 1;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: var(--clr-accent);
  border-radius: var(--box-radius);
  box-shadow: 0 2px 12px var(--clr-shadow);
}

@media (max-width: 768px) {
  .section {
    padding: 24px 6px;
    margin-bottom: 40px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--clr-sand);
  border-radius: var(--box-radius);
  box-shadow: 0 2px 8px var(--clr-shadow);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.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,
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--box-radius);
  box-shadow: 0 5px 20px rgba(65, 90, 50, 0.09);
  margin-bottom: 20px;
  border-left: 6px solid var(--clr-green);
  color: #2A2A1A;
  min-width: 0;
}
.testimonial-card strong {
  color: #2A2A6A;
  font-size: 1rem;
}
.stars, .stars-average {
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: var(--clr-green);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.features ul, .features-included ul,
.features-service-process ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 36px;
  padding-left: 0;
  margin-bottom: 12px;
}
.features ul li,
.features-included ul li,
.features-service-process ul li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 200px;
  background: var(--clr-sand);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 2px 8px var(--clr-shadow);
}
.features ul li img {
  width: 32px;
  height: 32px;
}

@media (max-width: 900px) {
  .features ul,
  .features-included ul,
  .features-service-process ul {
    gap: 16px 0;
  }
  .features ul li,
  .features-included ul li {
    min-width: 100%;
  }
}

@media (max-width: 600px) {
  .features ul,
  .features-included ul,
  .features-service-process ul {
    gap: 10px 0;
  }
  .features ul li,
  .features-included ul li {
    padding: 10px 8px;
  }
}

/* ==== HEADERS ==== */
header {
  background: #fff;
  width: 100%;
  box-shadow: 0 2px 12px var(--clr-shadow);
  z-index: 1001;
  position: sticky;
  top: 0;
}
.main-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 0;
}
.main-navigation > a img {
  width: 130px;
  height: auto;
}
.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-navigation ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2A2A6A;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.015em;
  padding: 7px 16px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-navigation ul li a.active,
.main-navigation ul li a:hover,
.main-navigation ul li a:focus {
  background: var(--clr-secondary);
  color: #fff;
}
.main-navigation ul li .cta {
  background: var(--clr-green);
  color: #fff !important;
  border-radius: 16px;
  padding: 8px 22px;
  font-weight: 700;
  margin-left: 8px;
  transition: background 0.18s, box-shadow 0.28s;
  box-shadow: 0 2px 12px var(--clr-shadow);
}
.main-navigation ul li .cta:hover,
.main-navigation ul li .cta:focus {
  background: var(--clr-btn-hover);
  box-shadow: 0 6px 20px rgba(33, 50, 36,0.10);
}

/* ==== HERO SECTION ==== */
.hero {
  background: linear-gradient(135deg, #F6EFDF 70%, #D4E7C5 100%);
  margin-bottom: 60px;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 300px;
}
.hero .content-wrapper {
  max-width: 670px;
  padding: 36px 0;
  gap: 22px;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.5rem;
  color: #2A2A6A;
}
.hero p {
  color: #556143;
  font-size: 1.18rem;
}

@media (max-width: 768px) {
  .main-navigation ul { gap: 7px; }
  .main-navigation > a img { width: 100px; }

  .hero h1 { font-size: 1.5rem; }
  .hero .container { min-height: 150px; }
  .hero .content-wrapper { padding: 22px 0; }
}

/* ==== CTA BUTTONS ==== */
.cta, a.cta, button.cta {
  display: inline-block;
  background: var(--clr-green);
  border-radius: 18px;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 13px 32px;
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 12px var(--clr-shadow);
  border: none;
  cursor: pointer;
  transition: background 0.19s, transform 0.18s, box-shadow 0.21s;
  margin-top: 10px;
}
.cta.primary,
.cta.primary:visited {
  background: var(--clr-primary);
  color: #fff;
}
.cta:hover, .cta:focus {
  background: var(--clr-btn-hover);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 18px rgba(38, 61, 30,0.10);
}
.cta:active {
  background: #497819;
  transform: scale(0.98);
}

/* ==== SERVICES LIST ITEMS ==== */
.services ul, .services-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  margin-bottom: 20px;
  margin-top: 10px;
}
.services ul li, .services-list ul li {
  flex: 1 1 212px;
  min-width: 240px;
  background: var(--clr-sand);
  border-radius: var(--box-radius);
  box-shadow: 0 2px 8px var(--clr-shadow);
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.services ul li .price,
.services-list ul li .price {
  font-family: 'Montserrat', sans-serif;
  color: var(--clr-eco);
  font-weight: 700;
  font-size: 1.13rem;
  margin-top: 7px;
}

@media (max-width: 950px) {
  .services ul,
  .services-list ul {
    gap: 13px 0;
  }
  .services ul li, .services-list ul li {
    min-width: 97%;
  }
}

/* ==== LEGAL & TEXT SECTIONS ==== */
.legal, .faq, .about, .contact {
  margin-bottom: 40px;
  padding: 40px 18px;
}
.legal h1, .faq h1, .about h1, .contact h1 {
  font-size: 2.15rem;
  color: #2A2A6A;
}
.legal .text-section,
.faq .text-section,
.about .text-section,
.contact .text-section {
  background: #f8f8f6;
  border-radius: 14px;
  padding: 22px 16px;
  box-shadow: 0 1px 6px var(--clr-shadow);
  margin-top: 10px;
}

@media (max-width: 600px) {
  .legal,
  .faq,
  .about,
  .contact {
    padding: 12px 3px 24px 3px;
  }
  .legal .text-section,
  .faq .text-section,
  .about .text-section,
  .contact .text-section {
    padding: 10px 5px;
  }
}

/* ==== FOOTER ==== */
footer {
  background: #F6EFDF;
  color: #2A2A1A;
  padding: 44px 0 0 0;
  font-size: 0.95rem;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  padding: 12px 0 0 0;
  align-items: flex-start;
}
footer nav ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
footer nav ul li a {
  color: #2A2A6A;
  opacity: 0.89;
  font-weight: 500;
  font-size: 0.99rem;
  transition: color 0.16s;
  border-radius: 7px;
  padding: 2px 9px;
}
footer nav ul li a:hover,
footer nav ul li a:focus {
  color: #238459;
  background: #e0ecd7;
}
footer .brand-tagline {
  display: block;
  padding-top: 7px;
  color: #597147;
  font-size: 0.97rem;
  letter-spacing: 0.013em;
}
footer address {
  font-style: normal;
  color: #746854;
  margin-bottom: 6px;
}
footer .contact-short span {
  color: #746854;
  display: inline-block;
  margin-bottom: 2px;
}

@media (max-width: 1000px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* ==== TABLES (Pricing) ==== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 26px 0;
  font-size: 1rem;
  background: #f8f8f6;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  box-shadow: 0 1px 6px var(--clr-shadow);
}
thead tr {
  background: var(--clr-secondary);
  color: #fff;
}
th, td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #ecedd7;
}
tbody tr:last-child td {
  border-bottom: none;
}
tr:nth-child(even) td {
  background: #F6EFDF;
}

@media (max-width: 600px) {
  th, td {
    padding: 8px 5px;
    font-size: 0.97rem;
  }
}

/* ==== MAP PLACEHOLDER ==== */
.map-placeholder {
  background: #f0f4e4;
  color: #78724d;
  border-radius: 10px;
  margin: 18px 0;
  padding: 12px 12px;
  font-size: 0.99rem;
  text-align: center;
}

/* ==== STARS & TESTIMONIAL AVERAGE ==== */
.stars-average {
  background: var(--clr-sand);
  border-radius: 9px;
  display: inline-block;
  padding: 8px 15px;
  margin-top: 16px;
  font-weight: 600;
  color: #2A2A6A;
  font-size: 1.09rem;
  box-shadow: 0 1px 8px var(--clr-shadow);
}

/* ===== MOBILE NAV MENU BURGER ===== */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.0rem;
  color: var(--clr-green);
  cursor: pointer;
  margin-left: 16px;
  display: none;
}
@media (max-width: 950px) {
  .main-navigation ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(248, 248, 246, 0.97);
  box-shadow: -6px 0 40px rgba(33,33,33,0.15);
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(.79,.01,.29,1.03);
  z-index: 1400;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 18px 0 0;
  font-size: 2.1rem;
  color: var(--clr-green);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--clr-eco);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 32px 0 0 32px;
}
.mobile-nav a {
  color: #2A2A6A;
  font-size: 1.3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 11px 2px;
  border-radius: 14px;
  transition: background 0.19s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #e0ecd7;
  color: #26855D;
}

@media (min-width: 951px) {
  .mobile-menu { display: none !important; }
}

/* Hide scroll when menu open */
body.mobile-menu-open {
  overflow: hidden !important;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff8f1;
  color: #483A19;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 17px 12px 17px 12px;
  box-shadow: 0 -2px 20px rgba(66,71,44,0.13);
  z-index: 1800;
  font-size: 1rem;
  border-top: 1px solid #f3ecd9;
  animation: cookieSlideUp 0.45s ease both;
}
@keyframes cookieSlideUp {
  from { transform: translateY(120%); opacity: 0; }
  to {   transform: translateY(0);   opacity: 1; }
}
.cookie-banner__message {
  flex: 2;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex: 1;
  justify-content: flex-end;
}
.cookie-btn {
  background: var(--clr-green);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.16s, transform 0.13s, box-shadow 0.20s;
  box-shadow: 0 1px 5px var(--clr-shadow);
}
.cookie-btn:focus,
.cookie-btn:hover {
  background: var(--clr-btn-hover);
  transform: translateY(-2px);
}
.cookie-btn-secondary {
  background: #e4e1c5;
  color: var(--clr-primary);
}
.cookie-btn-secondary:hover {
  background: #d5d1b7;
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(65, 85, 41, 0.33);
  z-index: 2400;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn 0.25s ease both;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #F6EFDF;
  color: #2B2A1A;
  border-radius: 22px;
  box-shadow: 0 2px 32px rgba(62,90,48,0.13);
  max-width: 95vw;
  min-width: 330px;
  width: 410px;
  padding: 40px 30px 30px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookieModalRise 0.38s cubic-bezier(.59,1.77,.14,.92) both;
}
@keyframes cookieModalRise {
  from { transform: translateY(55px) scale(0.96); opacity: 0.5; }
  to   { transform: translateY(0) scale(1);    opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 20px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--clr-eco);
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: var(--clr-btn-hover);
}
.cookie-modal h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 1rem;
}
.cookie-toggle {
  width: 46px;
  height: 24px;
  background: #e0ecd7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin-left: 7px;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  left: 2px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #aab88d;
  transition: left 0.19s, background 0.18s;
}
.cookie-toggle input:checked + .cookie-slider {
  left: 25px;
  background: var(--clr-green);
}
.cookie-category-label {
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}
.cookie-category-essential {
  font-weight: 600;
  color: var(--clr-primary);
}

.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 9px;
}

/* ===== THANK YOU SECTION ===== */
.thank-you-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e0ecd7 70%, #F6EFDF 100%);
  padding: 60px 0;
  min-height: 350px;
  margin-bottom: 60px;
}
.thank-you-hero .container { min-width: 0; }
.thank-you-hero .content-wrapper {
  align-items: flex-start;
  max-width: 550px;
  background: white;
  padding: 36px 30px;
  border-radius: 18px;
  box-shadow: 0 7px 24px rgba(62,90,48,0.082);
}

/* ==== MISCELLANEOUS (SPACING) ==== */
.card:not(:last-child),
.feature-item:not(:last-child),
.testimonial-card:not(:last-child) {
  margin-bottom: 20px !important;
}
.section:not(:last-child) {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .section:not(:last-child) { margin-bottom: 32px; }
}

/* ==== MICRO-INTERACTIONS ==== */
.card, .testimonial-card, .feature-item, .services ul li, .services-list ul li {
  transition: box-shadow 0.17s, transform 0.12s;
}
.card:hover, .testimonial-card:hover, .services ul li:hover, .services-list ul li:hover {
  box-shadow: 0 6px 24px 0px rgba(86,118,83,0.13);
  transform: translateY(-2px) scale(1.01);
}

/* ==== SCROLLBAR NATURAL ==== */
::-webkit-scrollbar {
  width: 11px;
  background: #ece7d3;
}
::-webkit-scrollbar-thumb {
  background: #cfc1a7;
  border-radius: 10px;
}

/* === ACCESSIBILITY: FOCUS STATE === */
a:focus, button:focus, .cta:focus, .cookie-btn:focus {
  outline: 2px solid var(--clr-eco) !important;
  outline-offset: 3px;
}

/* ==== TYPOGRAPHY SCALE ====*/
.text-section h2, .content-wrapper h2, .feature-item h3 {
  font-size: 1.23rem;
}

@media (max-width: 600px) {
  .content-wrapper { gap: 16px; }
  .thank-you-hero { padding: 25px 0; min-height: 160px; }
  .thank-you-hero .content-wrapper { padding: 14px 9px; }
}

/* ==== SPACING FOR .contact-short SECTION ==== */
.contact-short {
  margin: 18px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: #f8f8f6;
  border-radius: 12px;
  padding: 17px 19px;
  font-size: 1rem;
  box-shadow: 0 1px 9px var(--clr-shadow);
}
@media (max-width: 768px) {
  .contact-short { padding: 8px 4px; }
}

/***********************************
 * ORGANIC DECORATIVE SHAPE EXAMPLES
 ***********************************/
.section {
  position: relative;
  overflow: hidden;
}
.section::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  left: -50px;
  top: 40px;
  width: 120px;
  height: 120px;
  background: rgba(112,180,163,0.08);
  border-radius: 50% 35% 60% 45%/60% 50% 45% 55%;
  pointer-events: none;
}
.section::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  right: -66px;
  bottom: 0;
  width: 110px;
  height: 70px;
  background: rgba(182,162,102,0.09);
  border-radius: 48% 42% 55% 67%/50% 65% 40% 41%;
  pointer-events: none;
}

@media (max-width: 600px) {
  .section::before, .section::after {
    width: 60px;
    height: 50px;
    left: -25px;
    right: -26px;
  }
}
