/* CSS 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 { scroll-behavior: smooth; }
body { line-height: 1.5; background: #F6F2EA; color: #183153; font-family: 'Open Sans', Arial, sans-serif; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none; padding-left: 0; margin-left: 0;
}
a { text-decoration: none; color: inherit; transition: color 0.2s; }

img { border-style: none; max-width:100%; display:block; }

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

/* VARIABLES */
:root {
  --color-primary: #183153;
  --color-secondary: #74A045;
  --color-accent: #F6F2EA;
  --color-bg-card: #fff;
  --color-bg-section: #f6f2ea;
  --color-earth-1: #d2b48c;
  --color-earth-2: #b09f82;
  --color-earth-3: #968c68;
  --color-earth-4: #e8e0d2;
  --color-dark: #183153;
  --color-success: #74A045;
  --color-error: #b04d45;
  --shadow-card: 0 4px 18px rgba(51, 67, 53, 0.07);
  --radius-outer: 28px;
  --radius-inner: 12px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --transition: all 0.2s cubic-bezier(0.6,0.2,0.4,1);
}
/* Spacing scale: 8,16,24,32,40,60px etc. */

/************************************/
  LAYOUT BASICS & CONTAINERS
/************************************/
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-section);
  border-radius: var(--radius-outer);
}
main > section.hero {
  background: var(--color-secondary);
  background-image: url('../assets/bg-organic-top.svg'); /* Example decorative asset */
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  border-radius: 0 0 var(--radius-outer) var(--radius-outer);
  margin-bottom: 50px;
  position: relative;
  min-height: 280px;
}
.hero .container {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 12px 0;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.features-section, .membership-section, .services-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.pricing {
  background: var(--color-earth-4);
  border-radius: var(--radius-inner);
  padding: 12px 24px;
  font-weight: 600;
}

/* FLEX LAYOUTS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  flex: 1 1 220px;
  background: #fff;
  padding: 24px 20px 20px 20px;
  border-radius: var(--radius-inner) 60px var(--radius-inner) 60px;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 2px solid transparent;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 28px rgba(116, 160, 69, 0.14);
  border-color: var(--color-secondary);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--radius-inner);
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
}
.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #183153;
  border-radius: 32px 12px 32px 12px;
  box-shadow: 0 2px 14px rgba(116,160,69,0.08);
  margin-bottom: 20px;
  font-size: 1.08em;
  border-left: 5px solid var(--color-secondary);
  min-width: 230px;
  max-width: 420px;
}
.testimonial-card strong {
  font-family: var(--font-display);
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1em;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.rating-summary {
  margin-top: 20px;
  color: #3e4926;
  font-size: 1em;
  font-weight: 600;
  background: var(--color-earth-4);
  border-radius: 10px;
  padding: 12px 24px;
  display: inline-block;
}
.services-list > ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.services-list ul li {
  background: #fff;
  padding: 20px 18px 18px 18px;
  border-radius: 16px 50px 16px 50px;
  box-shadow: 0 2px 14px rgba(183,160,100,0.07);
  border-left: 5px solid var(--color-secondary);
  font-size: 1.06em;
}
.services-list ul li strong { color: var(--color-primary); font-family: var(--font-display); font-weight: 700; }
.services-list ul li span:last-child { color: var(--color-secondary); font-weight: 700; margin-left: 10px; font-size: 1.03em; }

.features-section h2, .membership-section h2, .services-list h2,
.team-section h2, .text-section h2, .text-section h1,
.card h2, .cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
}
.team-section .content-wrapper { display: flex; flex-direction: column; gap: 24px; }
.team-section .text-section { flex: 2 1 350px; }

/************************************/
  HEADER & NAVIGATION
/************************************/
header {
  background: var(--color-accent);
  box-shadow: 0 1px 8px rgba(51,67,53,0.06);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
header nav a {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 1em;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 18px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: var(--color-earth-4);
  color: var(--color-secondary);
  outline: none;
}

header img {
  height: 38px;
  width: auto;
  margin-right: 10px;
  border-radius: 12px;
}
.btn-primary {
  background: var(--color-secondary);
  color: #fff;
  border: none;
  border-radius: 25px 10px 25px 10px;
  padding: 13px 30px;
  font-family: var(--font-display);
  font-size: 1.09em;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 16px rgba(61, 91, 34, 0.13);
  cursor: pointer;
  margin-left: 12px;
  transition: var(--transition);
  outline: none;
  position: relative;
  z-index: 2;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #567c29;
  color: #fff;
  box-shadow: 0 4px 18px rgba(61, 91, 34, 0.22);
  transform: translateY(-2px) scale(1.04);
}

/****** Mobile Burger Menu ******/
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 10px;
  padding: 7px 16px 6px 16px;
  margin-left: 10px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(116,160,69, 0.11);
  transition: background 0.2s, box-shadow 0.2s;
  z-index: 52;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #567c29;
  box-shadow: 0 6px 24px rgba(93,140,51,0.13);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,49,83,0.93);
  width: 100vw;
  height: 100vh;
  z-index: 1011;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  padding-top: 32px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.5rem;
  border: none;
  margin-left: 24px;
  margin-bottom: 18px;
  cursor: pointer;
  z-index: 1111;
  transition: color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #b0e182;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-left: 40px;
  margin-top: 24px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.28em;
  font-weight: 700;
  padding: 14px 0;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
}
@media (max-width: 992px) {
  header nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu { display: none !important; }
}

/************************************/
  FOOTER
/************************************/
footer {
  background: var(--color-earth-1);
  color: var(--color-dark);
  padding: 40px 0 28px 0;
  border-radius: var(--radius-outer) var(--radius-outer) 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 0;
  justify-content: center;
  align-items: center;
}
footer nav a {
  color: var(--color-primary);
  background: var(--color-earth-4);
  border-radius: 18px;
  padding: 8px 18px;
  font-size: 1em;
  font-weight: 600;
  font-family: var(--font-body);
}
footer nav a:hover,
footer nav a:focus {
  background: var(--color-secondary);
  color: #fff;
}
footer address {
  font-style: normal;
  text-align: center;
  color: #3e4926;
  font-size: 1.05em;
  margin-top: 0;
}
footer address a {
  color: var(--color-secondary);
  text-decoration: underline;
}
footer img {
  height: 39px;
  margin-bottom: 10px;
}
footer address img {
  height: 19px;
  width: 19px;
  margin-right: 3px;
  vertical-align: middle;
}

/************************************/
  TYPOGRAPHY & TEXT ELEMENTS
/************************************/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.4rem;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  font-family: var(--font-display);
}
.hero h1,
.hero h2,
.hero p {
  color: #fff;
}
h2 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  color: var(--color-secondary);
  margin-bottom: 8px;
  font-weight: 700;
}
h4, h5, h6 { color: var(--color-earth-3); }
p, ul, li, address {
  font-family: var(--font-body);
  font-size: 1.08em;
  color: #2d3126;
}
p { margin-bottom: 1em; }
li { margin-bottom: 0.4em; }
strong {
  font-weight: 700;
  color: var(--color-primary);
}
em { color: var(--color-secondary); }
a {
  color: var(--color-secondary);
  cursor: pointer;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #264f19;
  outline: none;
}

/************************************/
  ORGANIC SHAPES & EFFECTS
/************************************/
.section,
.card, .services-list ul li, .feature-grid > div, .testimonial-card {
  border-radius: 30px 8px 30px 8px;
  background: #fff;
  box-shadow: var(--shadow-card);
}
.cta {
  background: var(--color-secondary);
  color: #fff;
  border-radius: var(--radius-outer);
}
.cta .content-wrapper h2 {
  color: #fff;
}

.feature-grid > div, .services-list ul li, .testimonial-card {
  border-radius: 22px 66px 18px 50px;
}

/************************************/
  FORMS, CONTACTS, MISC
/************************************/
.contact-info, .contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info img { height: 20px; margin-right: 4px; vertical-align: middle; }
.contact-info a { color: var(--color-secondary); text-decoration: underline; }

/**** Micro Interactions ****/
.btn-primary,
header nav a,
footer nav a,
.feature-grid > div,
.services-list ul li,
.testimonial-card {
  transition: box-shadow 0.22s, background 0.19s, border 0.19s, color 0.18s, transform 0.13s;
}
.feature-grid > div:active { transform: scale(0.97); }
.btn-primary:active { transform: scale(0.97); }

/************************************/
  RESPONSIVE DESIGN (Mobile-first)
/************************************/
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section { padding: 28px 0; margin-bottom: 38px; }
  .feature-grid, .testimonial-slider, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature-grid > div,
  .services-list ul li,
  .testimonial-card,
  .card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .text-image-section,
  .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .btn-primary { width: 100%; text-align: center; margin-left: 0; }
  header .container {
    flex-direction: row;
    gap: 14px;
    min-height: 62px;
  }
  h1 {
    font-size: 1.6em;
  }
  h2 {
    font-size: 1.22em;
  }
  .hero .container { min-height: 120px; }
}

@media (max-width: 425px) {
  .section { padding: 14px 0; }
  .feature-grid > div, .services-list ul li { padding: 14px 8px; }
  .testimonial-card { padding: 14px 9px; }
  .btn-primary { padding: 10px 0; font-size: 1em; }
  h1 { font-size: 1.17em; }
  h2 { font-size: 1em; }
}

/************************************/
  COOKIE CONSENT BANNER & MODAL
/************************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  color: #183153;
  box-shadow: 0 -4px 20px rgba(24,49,83,0.16);
  border-radius: 20px 20px 0 0;
  padding: 24px 10px 19px 10px;
  z-index: 10111;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  transition: transform 0.35s, opacity 0.23s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 200px;
  color: #2d3126;
  font-size: 1em;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  border-radius: 18px 6px 18px 6px;
  border: none;
  padding: 11px 22px;
  font-size: 1em;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  transition: background 0.2s, color 0.22s, box-shadow 0.2s;
  margin-right: 2px;
}
.cookie-btn.accept {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #467022;
}
.cookie-btn.reject {
  background: #b04d45;
  color: #fff;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #7d322b;
}
.cookie-btn.settings {
  background: #ece5d4;
  color: var(--color-primary);
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #fff;
  border: 1px solid var(--color-secondary);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(24,49,83,0.72);
  z-index: 10112;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.24s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 36px rgba(24,49,83, 0.14);
  min-width: 280px; max-width: 91vw;
  padding: 36px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 10113;
  color: var(--color-primary);
}
.cookie-modal h3, .cookie-modal h2 {
  color: var(--color-secondary);
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 19px;
  right: 19px;
  background: none;
  border: none;
  font-size: 1.8em;
  color: #536e33;
  cursor: pointer;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid #e8e0d2;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal label {
  font-family: var(--font-body);
  color: #3e4926;
  font-weight: 600;
  font-size: 1.05em;
}
.cookie-switch {
  display: inline-flex;
  align-items: center;
  width: 54px;
  height: 28px;
  background: #d2b48c;
  border-radius: 18px;
  cursor: pointer;
  position: relative;
}
.cookie-switch input[type=checkbox] {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-switch .slider {
  position: absolute;
  top: 2px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-secondary);
  transition: all 0.22s;
}
.cookie-switch input[type=checkbox]:checked + .slider {
  left: 26px;
  background: #183153;
}

.cookie-modal .cookie-category[data-essential="true"] .cookie-switch {
  opacity: 0.5;
  pointer-events: none;
}

/************************************/
  SHADOWS, SEPARATORS, EXTRAS
/************************************/
hr {
  border: none;
  border-bottom: 1.5px solid var(--color-earth-3);
  margin: 32px 0;
}

/************************************/
  CUSTOM SCROLLBAR (WEBKIT)
/************************************/
::-webkit-scrollbar {
  width: 10px;
  background: #e8e0d2;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #cdb96b;
  border-radius: 8px;
}
/* End of CSS */
