/* ===========================================================================
   CSS RESET & NORMALIZE (simple, robust, for wide compatibility)
============================================================================ */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
html, body { margin: 0; padding: 0; width: 100%; height: 100%; }
body {
  min-height: 100vh;
  background: #F6F2ED; /* brand secondary */
  color: #2E2E2E;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0 0 0 24px; }
dt, dd { margin: 0; }
h1, h2, h3, h4, h5, h6 { font-family: 'Merriweather', 'Georgia', serif; margin-top: 0; }
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; letter-spacing: 0.01em; }
h3 { font-size: 1.35rem; margin-bottom: 16px; }
h4 { font-size: 1.1rem; }
p { margin-top: 0; margin-bottom: 18px; }
a { color: #225C43; text-decoration: underline; transition: color 0.2s; }
a:hover, a:focus { color: #88683B; text-decoration: underline dotted; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border-radius: 4px;
}
button { cursor: pointer; border: none; background: none; }

/* ===========================================================================
   BRAND COLOR VARIABLES
============================================================================ */
:root {
  --primary: #225C43;
  --primary-dark: #1A4936;
  --secondary: #F6F2ED;
  --accent: #88683B;
  --accent-light: #B8A07D;
  --text-main: #2E2E2E;
  --text-light: #57524B;
  --card-bg: #fff;
  --card-border: #E6DED4;
  --shadow: 0 6px 24px rgba(34,92,67,0.04), 0 1.2px 7px rgba(136,104,59,0.025);
}

/* ===================
   LAYOUT: CONTAINER
=================== */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 0;
}
@media (min-width: 850px) {
  .content-wrapper {
    gap: 32px;
  }
}

/* ===========================
   SECTION AND FLEX PATTERNS
=========================== */
section {
  background: transparent;
  border-radius: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.18s;
}
.card:hover { box-shadow: 0 10px 32px rgba(34,92,67,0.10), 0 2px 12px #B8A07D33; }
.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;
    align-items: stretch;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px 20px 28px;
  background: #fff;
  border: 1.5px solid #E6DED4;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  max-width: 520px;
  min-width: 0;
  transition: box-shadow 0.15s;
}
.testimonial-card blockquote {
  quotes: "\201C" "\201D";
  font-family: 'Merriweather', serif;
  color: #225C43;
  font-size: 1.08rem;
  font-style: italic;
  margin: 0 0 6px 0;
  max-width: 480px;
}
.testimonial-card cite {
  color: var(--accent);
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  font-style: normal;
  letter-spacing: 0.01em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ========================
   FLEX-BASED LISTS & FAQ
======================== */
.feature-grid, .service-list, .unique-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
}
.feature-grid li, .service-list li, .unique-benefits li {
  flex: 1 1 250px;
  background: #fff;
  border: 1px solid #E6DED4;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px 18px 18px;
  min-width: 210px;
  max-width: 340px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  transition: box-shadow 0.15s, border-color 0.16s;
  margin-bottom: 0;
}
.feature-grid li img, .service-list li img {
  width: 32px;
  height: 32px;
  margin-right: 6px;
}
.service-list {
  margin-bottom: 18px;
}
.service-list li {
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  gap: 10px;
  background: #fff;
  border: 1px solid #E6DED4;
  border-radius: 13px;
  box-shadow: var(--shadow);
  padding: 26px 18px 22px 18px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.18s;
}
.service-list li h3 {margin-bottom: 8px; font-size: 1.14rem; color: #225C43;}
.service-list li span {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 2px;
}
.service-list li:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 26px rgba(34, 108, 83, 0.08);
}
.unique-benefits li {
  background: #f7f6f4;
  border-color: #efebe6;
  align-items: center;
  padding-left: 22px;
  padding-right: 22px;
  color: var(--primary);
  font-size: 1rem;
  border-radius: 9px;
}
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  flex-direction: column;
}
.faq-list > div {
  background: #FAF8F5;
  border: 1px solid #E6DED4;
  padding: 18px 24px;
  border-radius: 11px;
  min-width: 280px;
  max-width: 700px;
  box-shadow: var(--shadow);
  margin-bottom: 0;
}
.faq-list h3 {
  margin-bottom: 10px;
  font-size: 1.07rem;
  color: var(--primary);
  font-family: 'Merriweather', serif;
}
.faq-list p {margin-bottom: 0; color: var(--text-main);}

/* =====================
        NAV BAR
===================== */
header {
  background: #fff;
  box-shadow: 0 2px 18px -10px #C4BAAE33;
  position: sticky;
  top: 0;
  z-index: 90;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px 32px;
  justify-content: flex-start;
  padding: 16px 0;
}
.main-nav a {
  color: #225C43;
  font-family: 'Merriweather', serif;
  font-size: 1.09rem;
  font-weight: 500;
  text-decoration: none;
  margin-right: 0;
  letter-spacing: 0.005em;
  transition: color 0.18s;
  padding: 7px 4px;
  border-radius: 4px;
}
.main-nav a img {
  display: block;
  max-height: 48px;
  margin-right: 12px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #88683B;
  background: #F6F2ED;
}
.main-nav .cta-btn {
  background: var(--primary);
  color: #fff;
  padding: 10px 24px;
  border-radius: 24px;
  font-family: 'Merriweather', serif;
  font-size: 1.07rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-left: 8px;
  text-decoration: none !important;
  box-shadow: 0 2.5px 12px #225C4333;
  transition: background 0.19s, box-shadow 0.18s, color 0.18s;
}
.main-nav .cta-btn:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 7px 24px #B8A07D44;
}
/* Hide mobile hamburger on desktop */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: #fff;
  font-size: 2.1rem;
  padding: 4px 18px;
  border-radius: 7px;
  margin-left: auto;
  border: none;
  transition: background 0.22s;
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 102;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--primary);
}
/* =======
  MOBILE MAIN NAV
========== */
@media (max-width: 970px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,92,67,0.93);
  transform: translateX(-100vw);
  z-index: 9999;
  transition: transform 0.35s cubic-bezier(.66,.01,.36,.99);
  backdrop-filter: blur(1.5px);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu .mobile-menu-close {
  color: #fff;
  font-size: 1.6rem;
  background: none;
  border: none;
  margin: 24px 0 16px 24px;
  padding: 0 8px;
  border-radius: 7px;
  transition: background 0.18s;
}
.mobile-menu .mobile-menu-close:hover, .mobile-menu .mobile-menu-close:focus { background: #88683B44; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 16px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Merriweather', serif;
  font-size: 1.22rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.014em;
  padding: 12px 32px 12px 32px;
  border-radius: 0 22px 22px 0;
  transition: background 0.15s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #B8A07D99;
  color: #225C43;
}

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

/* =====================
   CALL TO ACTION BUTTONS
====================== */
.cta-btn {
  background: var(--primary);
  color: #fff !important;
  padding: 13px 28px;
  border-radius: 27px;
  font-family: 'Merriweather', serif;
  font-size: 1.10rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0 3px 11px #225C4330;
  margin-top: 8px;
  margin-bottom: 8px;
  display: inline-block;
  border: none;
  outline: none;
  transition: background 0.18s, color 0.14s, box-shadow 0.18s, transform 0.12s;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--accent);
  color: #fff !important;
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 6px 18px #88683B44;
  text-decoration: none;
}

/* ====================
   CARD AND ARTICLE STYLES
==================== */
.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1.5px solid #EFE6DC;
  margin-bottom: 20px;
  padding: 28px 22px;
  min-width: 225px;
  max-width: 360px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s, border-color 0.16s;
}
.service-card h3 {
  color: #225C43;
  font-family: 'Merriweather', serif;
  font-size: 1.19rem;
  margin-bottom: 10px;
}
.service-card strong {
  color: var(--accent);
  font-size: 1.04rem;
}
.service-card:hover {
  border-color: #B8A07D;
  box-shadow: 0 10px 30px #88683B25;
}
.article-snippet {
  background: #fff;
  border: 1px solid #E6DED4;
  border-radius: 9px;
  box-shadow: var(--shadow);
  padding: 24px 20px 22px 20px;
  margin-bottom: 18px;
  min-width: 180px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.15s, border-color 0.18s;
}
.article-snippet h3 {
  color: #226C53;
  font-family: 'Merriweather', serif;
  font-size: 1.07rem;
  margin-bottom: 7px;
}
.article-snippet a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  transition: text-decoration 0.18s, color 0.14s;
}
.article-snippet a:hover, .article-snippet a:focus {
  color: var(--accent);
  text-decoration: underline dotted;
}

/* ====================
    CHECKLIST & BLOCKS
==================== */
.category-filter {
  font-family: 'Open Sans', sans-serif;
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.category-filter span {
  font-weight: 600;
  padding: 0 2.5px;
  color: var(--accent);
  cursor: pointer;
  transition: color 0.13s;
}
.category-filter span:hover {
  color: var(--primary);
  text-decoration: underline;
}
.checklist-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 16px;
}
.checklist-blocks h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.checklist-blocks ul {
  margin-bottom: 14px;
  padding-left: 22px;
}

/* ===================
    PRICING TABLES
=================== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: #fff;
  box-shadow: 0 4px 18px #225C4320;
  border-radius: 10px;
  overflow: hidden;
  font-family: 'Open Sans', sans-serif;
}
.pricing-table th, .pricing-table td {
  border: 1px solid #EFE6DC;
  padding: 14px 16px;
  text-align: left;
}
.pricing-table th {
  background: #F6F2ED;
  color: #225C43;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 1.02rem;
}
.pricing-table td {
  color: #2E2E2E;
  font-size: 1rem;
}
.pricing-table tr:nth-child(even) td { background: #FAF8F5; }

/* =====================
        FOOTER
===================== */
footer {
  background: #22462E;
  color: #fff;
  padding: 32px 0 20px 0;
  margin-top: 48px;
  position: relative;
  z-index: 21;
  box-shadow: 0 -4px 29px #11261412;
}
.footer-nav {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  margin-bottom: 16px;
  text-align: center;
}
.footer-nav a {
  color: var(--accent-light);
  margin: 0 6px;
  text-decoration: underline dotted;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
footer .text-section {
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: .98rem;
}
footer .text-section p {
  color: #efede7;
  margin: 0;
}

/* ===========================
 CONTACT & INFO BLOCKS
=========================== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding-left: 0;
}
.contact-info li {
  font-size: 1.02rem;
  color: var(--primary);
}
.contact-info a {
  color: #225C43;
  text-decoration: underline dotted;
  transition: color 0.14s;
}
.contact-info a:hover { color: var(--accent); }
.text-section {
  font-family: 'Open Sans', sans-serif;
}
.text-section em { color: #B8A07D; font-size: 1rem; }

/* ====================
   COOKIE BANNER & MODALS
==================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff7eb;
  box-shadow: 0 -2.5px 24px #88683B12;
  border-top: 2.5px solid #B8A07D;
  z-index: 12001;
  padding: 20px 26px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  animation: cookiebanner-slide-up 0.65s cubic-bezier(.65,.05,.36,.95);
}
@keyframes cookiebanner-slide-up {
  0% { transform: translateY(60px); opacity: 0; }
  78% { transform: translateY(-10px); }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #2E2E2E;
  margin: 0 0 2px 0;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Merriweather', serif;
  font-size: 1.04rem;
  padding: 9px 20px;
  border-radius: 22px;
  border: none;
  margin: 0;
  cursor: pointer;
  background: #B8A07D;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 10px #88683B25;
  transition: background 0.16s, color 0.14s, box-shadow 0.16s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #225C43;
  color: #fff;
  box-shadow: 0 5px 18px #225C4324;
}
.cookie-banner .cookie-btn-reject {
  background: #fff;
  border: 1.4px solid #88683B;
  color: #88683B;
}
.cookie-banner .cookie-btn-reject:hover, .cookie-banner .cookie-btn-reject:focus {
  background: #ffeedd;
  color: #88683B;
}
.cookie-banner .cookie-btn-settings {
  background: #F6F2ED;
  color: #88683B;
  border: 1.6px solid #B8A07D;
}
.cookie-banner .cookie-btn-settings:hover, .cookie-banner .cookie-btn-settings:focus {
  background: #fff;
  color: #225C43;
}
/* cookie preferences modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(34,92,67,0.35);
  z-index: 14001;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cookiefadein 0.3s;
}
@keyframes cookiefadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff7eb;
  border-radius: 16px;
  padding: 38px 30px 28px 30px;
  box-shadow: 0 5px 32px #B8A07D29;
  max-width: 380px;
  width: 92vw;
  z-index: 14010;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  font-family: 'Open Sans', sans-serif;
}
.cookie-modal h2 {
  font-size: 1.19rem;
  margin-bottom: 12px;
  font-family: 'Merriweather', serif;
  color: #225C43;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #2E2E2E;
  gap: 14px;
  margin-bottom: 12px;
  padding: 6px 0 6px 0;
}
.cookie-modal input[type='checkbox'] {
  accent-color: #88683B;
  width: 18px;
  height: 18px;
}
.cookie-modal .cookie-pref-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-modal .cookie-pref-row .cookie-essential {
  color: #225C43;
  font-size: 0.98rem;
  margin-left: 6px;
}
.cookie-modal .cookie-pref-row input[disabled] {opacity: 0.76;}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 18px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 17px; right: 16px;
  color: #88683B;
  background: none;
  font-size: 1.25rem;
  padding: 5px 12px;
  border-radius: 24px;
  border: none;
  transition: background 0.13s, color 0.17s;
  z-index: 3;
}
.cookie-modal .cookie-modal-close:hover {
  background: #f2e5d1;
  color: #225C43;
}

/* ================
   TYPOGRAPHY
================ */
@media (max-width: 600px) {
  h1 { font-size: 1.59rem; }
  h2 { font-size: 1.17rem; }
  h3 { font-size: 1.05rem; }
  .container { padding: 0 8px; }
  .content-wrapper { gap: 18px; }
  .testimonial-card { padding: 16px 12px 16px 12px; }
}

h1, h2, h3, h4 {
  color: #225C43;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  line-height: 1.21;
  letter-spacing: 0;
}
strong, b {
  color: #88683B;
  font-weight: 700;
}
blockquote {
  border-left: 3px solid #B8A07D;
  padding-left: 16px;
  color: #225C43;
  background: #fafdff;
  font-style: italic;
  font-family: 'Merriweather', serif;
}

/* ===================
  RESPONSIVE DESIGN
=================== */
@media (max-width: 970px) {
  .feature-grid, .service-list {
    gap: 15px;
  }
  .service-list li, .feature-grid li, .unique-benefits li {
    min-width: unset;
    max-width: 100%;
    width: 100%;
    padding: 15px 9px;
  }
}
@media (max-width: 680px) {
  .content-grid, .card-container {
    flex-direction: column;
    gap: 17px;
  }
  .checklist-blocks {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 600px) {
  section, .section {
    padding: 24px 4px;
  }
}
@media (max-width: 540px) {
  footer {
    padding: 17px 0 12px 0;
  }
}

/* ===================
  MISC AND UTILITIES
=================== */
::-webkit-scrollbar { width: 0.76em; background: #F6F2ED; }
::-webkit-scrollbar-thumb { background: #E6DED4; border-radius: 7px; }

input, select, textarea {
  font-size: 1rem;
  border: 1.2px solid #D7CAA8;
  padding: 10px 15px;
  border-radius: 6px;
  background: #fff;
  margin-bottom: 14px;
  outline: none;
  transition: border-color 0.14s, box-shadow 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #88683B;
  box-shadow: 0 2px 9px #B8A07D22;
}

/* ===============
   MICRO-ANIMATION
================ */
.card, .testimonial-card, .service-card, .feature-grid li, .service-list li, .faq-list > div, .article-snippet {
  transition: box-shadow 0.20s, border-color 0.16s, transform 0.12s;
}
.card:active, .testimonial-card:active, .service-card:active, .feature-grid li:active, .faq-list > div:active, .article-snippet:active {
  transform: scale(0.985);
  box-shadow: 0 1px 4px #225C4333;
}
.cta-btn:active { transform: scale(0.98); }

/* =======================
    MINOR ADJUSTMENTS
====================== */
@media (max-width: 380px) {
  .cta-btn { font-size: 0.92rem; padding: 10px 14px; }
  .cookie-banner, .cookie-modal { padding: 9vw 5vw 9vw 5vw; }
}

/* =============
   Z-INDEX LAYERING
=============== */
header { z-index: 102; }
.footer-nav { z-index: 3; }
.mobile-menu { z-index: 9999; }
.cookie-banner { z-index: 12001; }
.cookie-modal-overlay { z-index: 14001; }

/* ====================
    PRINT FRIENDLY
==================== */
@media print {
  header, nav, footer, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  section, .container, .content-wrapper { box-shadow: none !important; background: #fff !important; color: #222 !important; }
}

/* END OF CSS */
