/* RESET & NORMALIZE */
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,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  min-height: 100vh;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  background: #FAF9F7;
  color: #335327;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color .2s;
}
ul, ol {
  list-style-position: inside;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  padding: 0;
}

/* BRAND COLORS */
:root {
  --primary: #335327;
  --primary-light: #446a35;
  --secondary: #DEEAC6;
  --accent: #BFA15D;
  --accent-bright: #b5882c;
  --bg: #FAF9F7;
  --white: #fff;
  --dark: #222;
  --gray: #849674;
  --shadow: 0 5px 18px 0 rgba(52,82,41,0.06), 0 1.5px 8px 0 rgba(52,82,41,0.12);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 18px;
  line-height: 1.07;
  text-shadow: 0 2px 0 #bfa15d1a;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  margin-top: 12px;
  line-height: 1.15;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4,h5,h6 {
  font-size: 1.12rem;
  margin-bottom: 7px;
}
p, ul, ol {
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--primary);
}
strong, b {
  font-weight: 700;
  color: var(--accent-bright);
}
.subheadline {
  color: var(--gray);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: .01em;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  margin-bottom: 16px;
}
.text-section ul, .next-steps-list,
.feature-list ul, .services-list ul {
  padding-left: 1rem;
  margin-bottom: 16px;
}

/* LAYOUT STRUCTURE */
.container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg);
  border-radius: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
@media (max-width: 1050px) {
  .section { padding: 32px 10px; }
}

/* FLEX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 250px;
  transition: box-shadow 0.21s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 9px 35px 0 rgba(191,161,93,0.19), 0 2px 8px 0 rgba(52,82,41,0.10);
  transform: translateY(-2px) scale(1.024);
}
.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: 22px; }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--secondary);
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  color: #2b3e1e;
  font-size: 17px;
  position: relative;
  min-height: 100px;
}
.testimonial-card p {
  color: #2b3e1e;
  font-style: italic;
  margin-bottom: 9px;
}
.testimonial-meta {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  font-size: 15px;
  color: var(--primary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER & NAVIGATION */
header {
  background: var(--white);
  box-shadow: 0 2px 16px 0 rgba(51,83,39,0.06);
  padding: 16px 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 101;
  display: flex;
  flex-direction: column;
}
header .container, header {
  display: flex;
  gap: 20px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
header nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
header nav a {
  font-size: 1.06rem;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 8px;
  transition: background 0.25s, color 0.18s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: var(--secondary);
  color: var(--accent-bright);
}
.cta-btn, .cta-btn-secondary {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.12rem;
  border: none;
  padding: 11px 28px;
  border-radius: 12px;
  background: var(--accent-bright);
  color: var(--white);
  box-shadow: 0 2px 10px 0 rgba(191,161,93,0.09);
  letter-spacing: 0.08em;
  text-transform: none;
  transition: background 0.17s, transform 0.2s, box-shadow 0.21s;
  margin-left: 20px;
  outline: none;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary-light);
  color: var(--white);
  transform: scale(1.04);
  box-shadow: 0 4px 32px 0 rgba(68,106,53,0.18);
}
.cta-btn-secondary {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--primary-light);
  margin-left: 0;
}
.cta-btn-secondary:hover, .cta-btn-secondary:focus {
  background: var(--primary-light);
  color: var(--white);
  border-color: var(--accent-bright);
}

/* MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: var(--white);
  font-size: 2rem;
  padding: 4px 10px 2px 10px;
  border-radius: 9px;
  margin-left: 16px;
  box-shadow: 0 2px 14px 0 rgba(51,83,39,0.10);
  transition: background 0.17s;
  z-index: 150;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--accent-bright);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(222,234,198,0.985);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(.65,0,.35,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 26px 18px 32px;
  width: 100vw;
  min-height: 100vh;
  box-shadow: 0 0 55px 0 rgba(51,83,39,0.10);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 26px;
  font-size: 2.2rem;
  color: var(--primary);
  background: transparent;
  border-radius: 8px;
  padding: 4px 10px;
  z-index: 210;
  transition: background 0.14s, color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent-bright);
  color: var(--white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 38px;
  width: 90vw;
}
.mobile-nav a {
  font-size: 1.32rem;
  color: var(--primary);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  padding: 18px 10px 12px 5px;
  border-bottom: 1px solid #bfa15d22;
  border-radius: 0;
  transition: color .19s, background .15s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--accent-bright);
  background: #fffdf8;
}
@media (max-width: 950px) {
  header nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 950px) {
  .mobile-menu {
    display: none;
  }
}

/* HERO & GENERAL SPACING */
main {
  width: 100%;
  min-height: 70vh;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  section {
    padding: 26px 3px;
  }
  .container {
    padding: 0 4vw;
  }
}

/* FEATURE LISTS & CARDS */
.feature-list, .services-list, .next-steps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  margin-bottom: 24px;
}
.feature-list li, .feature-list > div, .services-list li, .services-grid > div {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 25px 21px 19px 21px;
  min-width: 225px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 240px;
  transition: box-shadow 0.21s, transform 0.18s;
  position: relative;
  margin-bottom: 20px;
}
.feature-list li:hover, .feature-list > div:hover, .services-list li:hover, .services-grid > div:hover {
  box-shadow: 0 7px 32px 0 rgba(68,106,53,0.18);
  transform: translateY(-3px) scale(1.013);
}
.feature-list img, .services-list img {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}
.services-list li .price, .services-grid .service-highlight {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--accent);
  font-size: 1.15rem;
  margin-top: 10px;
}
.services-list, .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.services-grid {
  justify-content: flex-start;
}
.next-steps-list li {
  color: var(--primary);
  background: var(--secondary);
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 0;
  font-size: 1rem;
  box-shadow: 0 2px 10px 0 rgba(68,106,53,0.04);
}

/* HIGHLIGHTED INFO BOX */
.highlighted-value {
  background: linear-gradient(90deg, #deeac6 83%, #bfa15d13 100%);
  padding: 18px 23px;
  margin: 24px 0 0 0;
  border-radius: 14px;
  box-shadow: 0 2px 19px 0 rgba(68,106,53,0.07);
  font-size: 1.08rem;
}

/* MAP EMBED */
.map-embed {
  background: #fffbe6;
  border-radius: 13px;
  padding: 18px 18px;
  box-shadow: 0 0 13px 0 rgba(191,161,93,0.07);
  margin: 14px 0 0 0;
}
.map-embed p { margin-bottom: 0; }

/* FOOTER */
footer {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  padding: 40px 0 16px 0;
  border-radius: 38px 38px 0 0;
  box-shadow: 0 -3px 21px 0 rgba(68,106,53,0.11);
  margin-top: 80px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px 32px;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 300px;
}
.footer-brand img {
  width: 55px;
  height: 55px;
  margin-bottom: 7px;
}
.footer-brand p, .footer-brand a {
  color: #eef6db;
  font-size: 16px;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: var(--secondary);
  font-size: 1rem;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  text-decoration: underline;
  margin-bottom: 6px;
  transition: color 0.14s;
}
.footer-nav a:hover {
  color: var(--accent);
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 14px;
}
.footer-social a img {
  width: 31px;
  height: 31px;
  opacity: 0.92;
  transition: opacity 0.17s;
}
.footer-social a:hover img {
  opacity: 1;
  filter: drop-shadow(0 2px 8px #bfa15d50);
}
.footer-legal {
  flex-basis: 100%;
  margin-top: 26px;
  color: #e5e5c7;
  font-size: 0.93rem;
  text-align: right;
}
@media (max-width: 1050px) {
  footer .container {
    gap: 28px 6vw;
  }
}
@media (max-width: 730px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-legal {
    text-align: left;
    margin-top: 16px;
  }
}

/* COOKIE BANNER & MODAL */
.cookie-banner {
  position: fixed;
  z-index: 999;
  bottom: 0; left: 0; right: 0;
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 -3px 25px 0 rgba(68,106,53,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  padding: 24px 8vw 19px 9vw;
  font-size: 1rem;
  border-radius: 16px 16px 0 0;
  transition: bottom 0.26s;
}
.cookie-banner p {
  margin-bottom: 0;
  font-size: 1.08rem;
  flex: 1 1 260px;
}
.cookie-banner .cookie-controls {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.btn-cookie {
  font-size: 1rem;
  border-radius: 9px;
  border: 2px solid var(--accent-bright);
  padding: 8px 19px 7px 19px;
  background: var(--accent-bright);
  color: var(--white);
  font-weight: 700;
  font-family: 'Playfair Display', Georgia, serif;
  margin-right: 4px;
  box-shadow: 0 2px 10px 0 rgba(191,161,93,0.10);
  transition: background 0.14s, color 0.16s, border 0.12s;
}
.btn-cookie:hover, .btn-cookie:focus {
  background: var(--primary-light);
  color: var(--white);
  border-color: var(--primary-light);
}
.btn-cookie-secondary {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--accent-bright);
}
.btn-cookie-secondary:hover, .btn-cookie-secondary:focus {
  background: var(--accent-bright);
  color: var(--white);
}
.btn-cookie-settings {
  background: var(--white);
  color: var(--primary);
  border: 2px dashed var(--accent);
}
.btn-cookie-settings:hover, .btn-cookie-settings:focus {
  background: var(--accent-bright);
  color: var(--white);
  border-style: solid;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 1000;
  left: 50%;
  top: 50%;
  transform: translate(-50%,120%);
  min-width: 320px;
  max-width: 95vw;
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 5px 36px 0 rgba(51,83,39,0.26);
  border-radius: 19px;
  padding: 40px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.36s cubic-bezier(.5,1,.4,1), opacity 0.20s;
}
.cookie-modal.open {
  transform: translate(-50%,-50%);
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal h2 {
  font-size: 1.5rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-category label {
  font-size: 1.12rem;
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  width: 21px;
  height: 21px;
  accent-color: var(--accent-bright);
  margin-right: 7px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary);
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--accent-bright);
  color: var(--white);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 3vw 16px 3vw;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-controls{
    gap: 10px;
  }
  .cookie-modal {
    padding: 19px 7vw 18px 7vw;
    min-width: 200px;
  }
}

/* ANIMATIONS */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
.section, .card, .feature-list li, .feature-list > div, .testimonial-card, .cta-btn, .cta-btn-secondary, .highlighted-value, .services-grid > div {
  animation: fadeInUp 0.4s cubic-bezier(.6,0,.3,1);
}

/* TEXT-IMAGE SECTION */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 0 0 2px;
}
.text-section ul {
  margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .feature-list, .services-list, .services-grid, .card-container, .content-grid {
    gap: 16px;
  }
  .feature-list li, .feature-list > div, .services-list li, .services-grid > div {
    min-width: 180px;
    max-width: 100%;
    padding: 19px 13px 14px 13px;
  }
  header .container {
    gap: 7px;
    padding: 0 9px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.36rem; }
  h3 { font-size: 1.07rem; }
  .cta-btn, .cta-btn-secondary { font-size: 1rem; padding: 9px 14px; }
}

/* MICRO-INTERACTIONS */
a, .cta-btn, .cta-btn-secondary, .btn-cookie, .btn-cookie-secondary, .btn-cookie-settings,
.mobile-menu-toggle, .mobile-menu-close, .footer-social a img, .footer-nav a, .feature-list li, .feature-list > div, .services-list li, .services-grid > div {
  transition: background 0.18s, color 0.15s, box-shadow 0.18s, transform 0.18s, border-color 0.14s;
}
