/* ----------------------------------------
   CSS RESET & BASE STYLES
---------------------------------------- */
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,
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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #f8f7f3;
  color: #2c3228;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #276239;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #bfa04a;
  outline: none;
}
li {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}

/* ----------------------------------------
   BRAND COLOR VARIABLES
---------------------------------------- */
:root {
  --primary: #276239;
  --secondary: #607d3b;
  --accent: #e4dcc3;
  --gold: #bfa04a;
  --gold-dark: #a38429;
  --text: #2c3228;
  --bg: #f8f7f3;
  --white: #fff;
  --shadow: 0 4px 24px rgba(39,98,57,0.09);
  --radius: 18px;
  --radius-card: 14px;
  --radius-btn: 8px;
}

/* ----------------------------------------
   TYPOGRAPHY
---------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');

h1, .hero h1 {
  font-family: 'Merriweather', serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--primary);
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.18;
}

h2 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.25;
}

h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}

h4, h5, h6 {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--primary);
}

p, .subheadline, ul li, ol li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 12px;
}

.subheadline {
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 28px;
  font-weight: 400;
}
strong {
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1px;
}

small {
  font-size: 0.9rem;
  color: var(--secondary);
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  max-width: 350px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(191, 160, 74, 0.12);
  transform: translateY(-6px) scale(1.025);
}

.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;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  margin-bottom: 20px;
  min-width: 260px;
  transition: box-shadow 0.15s, border 0.1s;
  border: 1px solid transparent;
}
.feature-item:hover {
  border: 1px solid var(--gold);
  box-shadow: 0 4px 24px rgba(191,160,74,0.10);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 24px 26px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: 0 3px 18px rgba(39,98,57,0.10);
  margin-bottom: 20px;
  border-left: 4px solid var(--gold);
  min-width: 260px;
  max-width: 500px;
}
.testimonial-card p {
  color: #273123;
  font-size: 1.08rem;
}
.testimonial-card strong {
  font-weight: bold;
  color: var(--secondary);
}

/* Grid-like layout for lists using flex */
.feature-grid,
.value-list,
.inspiration-list,
.theme-highlights,
.plant-recommendations,
.article-list,
.service-list,
.service-detail-list,
.tip-list,
.faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.feature-grid li, .value-list li, .inspiration-list li, .service-list li, .service-detail-list li {
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 340px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 28px 18px 24px;
  text-align: left;
  transition: box-shadow 0.18s, border 0.18s;
  border: 1px solid transparent;
  position: relative;
  margin-bottom: 20px;
}
.feature-grid li:hover, .service-list li:hover, .service-detail-list li:hover {
  border: 1.5px solid var(--gold);
  box-shadow: 0 6px 20px rgba(191,160,74,0.14);
}
.feature-grid img, .value-list img, .service-list img, .service-detail-list img {
  max-width: 38px;
  margin-bottom: 15px;
}

.theme-highlights, .plant-recommendations, .tip-list {
  flex-direction: column;
  gap: 8px;
  background: none;
}
.theme-highlights li, .plant-recommendations li, .tip-list li {
  background: none;
  box-shadow: none;
  border: none;
  padding: 0;
  margin-bottom: 0;
}

.seasonal-highlights {
  margin-top: 28px;
}
.seasonal-highlights h3 {
  font-size: 1.18rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.benefit-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.brand-values {
  margin-top: 12px;
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.brand-values li {
  background: var(--accent);
  border-radius: 8px;
  padding: 8px 14px;
  color: var(--primary);
  font-weight: 600;
}

.step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.step-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow);
  padding: 18px 22px 16px;
  font-weight: 600;
  color: var(--primary);
  min-width: 220px;
}

.next-steps ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

/*******************************************
           HEADER & NAVIGATION
********************************************/
header {
  background: var(--white);
  box-shadow: 0 2px 14px rgba(39,98,57,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  max-height: 44px;
  width: auto;
}
.site-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.site-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.08rem;
  color: var(--primary);
  font-weight: 600;
  position: relative;
  padding: 4px 2px;
}
.site-nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.22s;
  border-radius: 1px;
  position: absolute;
  left: 0; bottom: -1px;
}
.site-nav a:hover:after, .site-nav a:focus:after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: var(--primary);
  border: none;
  padding: 6px 8px;
  border-radius: 50%;
  transition: background 0.1s, color 0.12s;
  z-index: 502;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--accent);
  color: var(--gold);
}

.button.primary, a.button.primary {
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  color: var(--primary);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: var(--radius-btn);
  border: none;
  padding: 11px 30px;
  box-shadow: 0 1px 12px rgba(191,160,74,0.05);
  transition: background 0.18s, color 0.18s, box-shadow 0.13s, transform 0.17s;
  margin-left: 18px;
  cursor: pointer;
  position: relative;
  min-width: 170px;
  display: inline-block;
  letter-spacing: 0.08em;
}
.button.primary:hover, .button.primary:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 21px rgba(39, 98, 57, 0.10);
  transform: translateY(-2px) scale(1.031);
}

.button.secondary, a.button.secondary {
  background: var(--white);
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-btn);
  padding: 10px 26px;
  margin-top: 8px;
  transition: background 0.14s, color 0.13s, box-shadow 0.13s;
  box-shadow: 0 1px 9px rgba(191,160,74,0.05);
  cursor: pointer;
  min-width: 150px;
  display: inline-block;
}
.button.secondary:hover, .button.secondary:focus {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold-dark);
}

/* -------------------------
      HERO SECTION
---------------------------*/
.hero {
  background: linear-gradient(110deg, #fff 53%, var(--accent) 100%);
  padding: 60px 0 52px;
}
.hero .container {
  align-items: flex-start;
  justify-content: center;
  min-height: 230px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 650px;
}
.hero h1 {
  color: var(--gold-dark);
  font-size: 2.8rem;
  line-height: 1.13;
}

/* -------------------------
      FOOTER
---------------------------*/
footer {
  background: var(--primary);
  padding: 36px 0 20px;
  color: #fff;
  margin-top: 80px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
  padding: 0 20px;
}
footer .logo img {
  max-height: 40px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  margin-bottom: 16px;
  align-items: center;
}
.footer-nav a {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: underline transparent 1.5px;
  transition: color 0.14s, text-decoration 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--gold);
  text-decoration: underline var(--gold) 2.5px;
}
.footer-contact {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 14px;
}
footer a {
  color: var(--gold);
}
footer small {
  color: var(--accent);
  font-size: 0.92rem;
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* -------------------------
RESPONSIVE FLEXBOX LAYOUTS
--------------------------*/
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 992px) {
  header .container, footer .container {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .hero .container {
    min-height: unset;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .content-wrapper, .feature-grid, .value-list, .service-list, .service-detail-list {
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .hero {
    padding: 38px 0 30px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .testimonial-card, .feature-grid li, .service-list li, .service-detail-list li, .card {
    max-width: 100%;
    padding: 20px 12px;
  }
  .section, section {
    padding: 22px 8px;
  }
}
@media (max-width: 540px) {
  h1, .hero h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.08rem;
  }
}

/* -------------------------
    MOBILE NAVIGATION
--------------------------*/
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 502;
}
.site-nav {
  display: flex;
}
@media (max-width: 1024px) {
  .site-nav {
    display: none;
  }
  .button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(39,98,57,0.96);
  color: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow-y: auto;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.5,1.36,.49,.98);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.2rem;
  border-radius: 50%;
  margin: 20px 20px 0 20px;
  align-self: flex-end;
  transition: background 0.14s, color 0.15s;
  z-index: 1002;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent);
  color: var(--gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 48px 0 0 38px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #fff;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 0;
  border-bottom: 1px solid rgba(228,220,195,0.20);
  transition: color 0.18s, background 0.16s;
  min-width: 140px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--gold);
  background: rgba(191,160,74,0.08);
}

/* -----------------------------
            SECTIONS
-------------------------------*/
.about-intro, .about, .team, .values, .services-overview, .services-detail, .process, .articles, .faq, .inspiration, .tip-highlights, .contact-info, .legal, .thank-you, .cta-box {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: 0 2px 11px rgba(39,98,57,0.04);
  margin-bottom: 48px;
}
.cta-box, .about-intro, .thank-you {
  border-left: 7px solid var(--gold);
}
.confirmation-message {
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 22px;
}
.founder-highlight {
  background: var(--accent);
  border-radius: var(--radius-btn);
  padding: 18px 14px;
  margin-top: 12px;
}
.founder-highlight h3 {
  font-family: 'Merriweather', serif;
  color: var(--gold);
  margin-bottom: 8px;
}

/* FAQ Accordion (for static content: visual only) */
.faq-accordion {
  flex-direction: column;
  gap: 16px;
}
.faq-accordion li {
  background: var(--white);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow);
  padding: 15px 22px 10px;
  border-left: 4px solid var(--secondary);
  margin-bottom: 8px;
}
.faq-accordion strong {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.06rem;
  display: inline-block;
  margin-bottom: 6px;
}

/* Topic/category lists */
.topic-categories {
  margin-top: 10px;
  font-size: 1rem;
  color: var(--secondary);
}
.topic-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 5px;
}
.topic-categories li {
  background: var(--accent);
  border-radius: 7px;
  padding: 6px 12px;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
}

/* ----------------------------------------
          Cookie Consent Banner
-----------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: var(--white);
  box-shadow: 0 -2px 20px rgba(39,98,57,0.07), 0 1px 0 #ededed;
  z-index: 1100;
  padding: 18px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transition: transform 0.38s cubic-bezier(.6,1.4,.48,.91), opacity 0.15s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 2 1 240px;
  color: var(--primary);
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-btn {
  background: var(--gold);
  color: var(--primary);
  font-weight: 700;
  padding: 7.5px 23px;
  border-radius: var(--radius-btn);
  border: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  box-shadow: 0 1px 6px rgba(191,160,74,0.09);
  margin: 0 3px;
  transition: background 0.15s, color 0.12s;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: var(--primary);
  color: #fff;
}
.cookie-btn.secondary {
  background: var(--white);
  border: 1.2px solid var(--gold);
  color: var(--gold-dark);
}
.cookie-btn.secondary:focus, .cookie-btn.secondary:hover {
  background: var(--gold-dark);
  color: #fff;
}

/*
  Cookie Settings Modal
*/
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(39,98,57,0.80);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.27s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 70px rgba(39,98,57,0.13);
  min-width: 330px;
  max-width: 96vw;
  padding: 34px 28px 24px 28px;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  position: relative;
}
.cookie-modal h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.45rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 6px;
}
.cookie-toggle {
  appearance: none;
  width: 36px; height: 19px;
  background: var(--accent);
  border-radius: 20px;
  border: 1px solid var(--secondary);
  position: relative;
  outline: none;
  transition: background 0.17s;
}
.cookie-toggle:checked {
  background: var(--secondary);
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 15px;
  height: 15px;
  background: var(--white);
  border-radius: 50%;
  transition: left 0.17s;
  box-shadow: 0 1px 4px rgba(39,98,57,0.12);
}
.cookie-toggle:checked::before {
  left: 18px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
  margin-top: 16px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  color: var(--gold-dark);
  font-size: 1.4rem;
  border-radius: 50%;
  padding: 1px 8px;
  transition: background 0.13s, color 0.11s;
}
.cookie-modal .close-cookie-modal:hover, .cookie-modal .close-cookie-modal:focus {
  background: var(--accent);
  color: var(--primary);
}
.cookie-modal .modal-desc {
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  margin-bottom: 11px;
  color: var(--secondary);
}
.cookie-modal .cookie-category.essential {
  font-weight: 700;
  color: var(--primary);
}

/*
-------------------------
 Accessibility
-------------------------
*/
:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 3px;
}

/*
-------------------------
 Animations
-------------------------
*/
@media (prefers-reduced-motion: no-preference) {
  .card, .feature-item, .testimonial-card, .faq-accordion li,
  .feature-grid li, .service-list li, .service-detail-list li {
    transition: box-shadow 0.18s, transform 0.18s, border 0.18s, background 0.15s, color 0.12s;
  }
  .button, a.button {
    transition: background 0.18s, color 0.18s, box-shadow 0.13s, transform 0.15s;
  }
}

/*
-----------------------------
 Utility classes
-----------------------------
*/
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.margin-bottom-60 { margin-bottom: 60px; }

@media (max-width: 540px) {
  .cookie-modal {
    min-width: unset;
    padding: 18px 8px 14px 8px;
  }
}

/* Hide cookie modal/class until activated via JS */
.cookie-modal-overlay, .cookie-banner {
  display: flex;
}

/********* END OF CSS *********/
