/* =========================
   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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F6F4EF;
  color: #1C3557;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-smooth: always;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
a {
  color: #305C2C;
  text-decoration: none;
  transition: color 0.20s;
}
a:hover,
a:focus {
  color: #1C3557;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}

/* =========================
   CORE BRAND COLORS
========================= */
:root {
  --color-primary: #1C3557;
  --color-secondary: #FFD600;
  --color-accent: #305C2C; /* Deep green for nature/organic accents */
  --color-bg: #F6F4EF;
  --color-card-bg: #FFFFFF;
  --color-olive: #859466;
  --color-moss: #ACBE91;
  --color-wood: #B99568;
  --color-brown: #7b5e3e;
}

/* =========================
   TYPOGRAPHY
========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-accent);
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, .subheadline {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #1C3557;
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.6;
}
.subheadline {
  color: var(--color-moss);
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.price {
  font-size: 1rem;
  font-weight: bold;
  color: var(--color-accent);
  margin-top: 12px;
}
.star-rating {
  color: var(--color-secondary);
  letter-spacing: 2px;
  font-size: 1.25rem;
  margin-top: 6px;
}

/* =========================
   STRUCTURE & CONTAINERS
========================= */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none; /* Remove any default bg */
  border-radius: 36px 44px 23px 42px / 38px 40px 27px 41px; /* Organic rounded corners */
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

.card-container,
.card-grid,
.content-grid,
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card, .package, .service, .event {
  background: var(--color-card-bg);
  border-radius: 22px 16px 32px 20px / 20px 22px 32px 22px;
  box-shadow: 0 4px 16px rgba(28,53,87,0.09), 0 1.5px 7px rgba(172,190,145,0.08);
  padding: 26px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.17s;
}
.card:hover, .package:hover, .service:hover {
  box-shadow: 0 8px 28px rgba(172,190,145,0.12), 0 3px 16px rgba(28,53,87,0.10);
  transform: translateY(-5px) scale(1.015);
}

/* =========================
   NAVIGATION HEADER
========================= */
header {
  background-color: #fff;
  box-shadow: 0 3px 24px rgba(44,52,42,0.09), 0 0.5px 4px rgba(145,158,101,0.07);
  position: sticky;
  top: 0;
  z-index: 99;
  width: 100%;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
  padding: 14px 0 14px 0;
}
header img {
  width: 135px;
  height: auto;
  margin-right: 12px;
}
header nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
  border-radius: 18px;
  padding: 8px 18px;
  transition: background-color 0.19s, color 0.2s;
}
header nav a:hover,
header nav a:focus {
  background: var(--color-accent);
  color: #fff;
}
header nav a.cta-primary {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 700;
  box-shadow: 0 2px 7px rgba(172,190,145,0.12);
  border-radius: 30px;
  padding: 10px 24px;
  transition: background 0.2s, color 0.2s, box-shadow 0.23s;
}
header nav a.cta-primary:hover,
header nav a.cta-primary:focus {
  background: var(--color-accent);
  color: #FFF;
  box-shadow: 0 7.5px 32px rgba(136,160,91,0.18);
}

/* Burger Menu Icon Styles */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  transition: background 0.18s, box-shadow 0.21s;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 102;
  cursor: pointer;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--color-secondary);
  color: var(--color-accent);
  outline: none;
}

@media (max-width: 990px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(244,244,239,0.98);
  box-shadow: 0 4px 28px rgba(44,52,42,0.13);
  z-index: 300;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.77,0,0.18,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 36px;
  width: 100vw;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-card-bg);
  color: var(--color-accent);
  border: none;
  font-size: 2rem;
  padding: 6px 16px;
  border-radius: 22px;
  box-shadow: 0 2px 7px rgba(172,190,145,0.14);
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 320;
  cursor: pointer;
  transition: background 0.18s, color 0.2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:active {
  background: var(--color-accent);
  color: #fff;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 30px;
  gap: 18px;
  padding-left: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  padding: 13px 0;
  color: var(--color-accent);
  border-radius: 14px;
  font-weight: 600;
  background: none;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #fff;
  background: var(--color-accent);
}

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

/* =========================
   SECTIONS, GRIDS & FLEX
========================= */
.feature-grid, .service-list, .event-list, .package-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  justify-content: flex-start;
  padding: 0;
}
.feature-grid li, .service-list li, .event-list li, .package-list .package {
  flex: 1 1 260px;
  background: var(--color-card-bg);
  border-radius: 25px 18px 30px 25px;
  box-shadow: 0 2.5px 14px rgba(134,160,91,0.08);
  padding: 22px 16px 16px 16px;
  min-width: 210px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.15s, background 0.17s,transform 0.15s;
}
.feature-grid li:hover, .service-list li:hover, .event-list li:hover, .package-list .package:hover {
  background: #E9EEF2;
  box-shadow: 0 6px 24px rgba(184,149,104,0.123);
  transform: translateY(-5px) scale(1.012);
}
.feature-grid img,
.service-list img,
.event-list img,
.package-list img {
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
  filter: drop-shadow(0 3px 7px rgba(172,190,145,0.08));
}

.package-list {
  margin-bottom: 24px;
}
.package {
  min-width: 220px;
  max-width: 330px;
}

/* ORGANIC SHAPES - background for main hero sections */
.section:nth-child(odd) {
  background: linear-gradient(120deg, #E9EEF2 85%, #B99568 100%);
}
.section:nth-child(even) {
  background: linear-gradient(105deg, #F6F4EF 85%, #ACBE91 100%);
}

/* =========================
   BUTTONS & CALL TO ACTIONS
========================= */
.cta-primary, button, .mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
  border: none;
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 35px;
  padding: 12px 28px;
  box-shadow: 0 3px 16px rgba(172,190,145,0.14);
  cursor: pointer;
  outline: none;
  transition: background 0.17s, color 0.17s, transform 0.15s, box-shadow 0.14s;
  display: inline-block;
}
.cta-primary:hover,
.cta-primary:focus {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 7px 32px rgba(136,160,91,0.19);
}
button:active {
  background: var(--color-accent);
  color: #fff;
}

/* =========================
   TESTIMONIALS & GUARANTEES
========================= */
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  background: #fff;
  border-radius: 32px 22px 38px 30px;
  box-shadow: 0 2px 18px rgba(44,92,25,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 26px 26px 16px 26px;
  min-width: 265px;
  max-width: 490px;
  color: #1C3557;
  margin-bottom: 18px;
  transition: box-shadow 0.17s, transform 0.15s;
}
.testimonial-card strong {
  color: var(--color-accent);
  font-size: 1.08rem;
  margin-top: 8px;
}
.testimonial-card p {
  color: #27421A;
  font-size: 1.09rem;
  font-style: italic;
  margin-bottom: 2px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(172,190,145,0.15), 0 0.5px 6px rgba(120,92,60,0.09);
  transform: scale(1.017);
}
.guarantee {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
  background: #E9EEF2;
  border-radius: 22px 16px 18px 21px;
  padding: 12px 24px;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 1.1rem;
}
.guarantee img {
  width: 36px;
  height: 36px;
  display: block;
}

/* =========================
   LISTS & TEAMS & ULs
========================= */
.team-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.team-list li {
  background: #E9EEF2;
  border-radius: 28px 16px 25px 19px / 16px 19px 32px 21px;
  padding: 22px 18px;
  font-size: 1rem;
  font-weight: 500;
}
.team-list strong {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.04rem;
}
.team-list span {
  color: #536843;
  font-size: 0.98rem;
  display: block;
  line-height: 1.5;
  margin-top: 2px;
}

/* Highlights, topics */
.package-highlights,
.coaching-topics,
.workshop-themes,
.event-highlights {
  list-style: disc inside;
  margin-left: 18px;
  margin-bottom: 16px;
  color: var(--color-olive);
  font-size: 1rem;
}

/* =========================
   FOOTER & UTILITY NAV
========================= */
footer {
  background: #234A27;
  color: #E9EEF2;
  padding: 30px 0;
  margin-top: 54px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
footer nav a {
  color: #E9EEF2;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 8px 0;
  border-radius: 16px;
  transition: color 0.13s;
}
footer nav a:hover,
footer nav a:focus {
  color: var(--color-secondary);
  background: none;
}

/* =========================
   RESPONSIVE LAYOUT ADJUSTMENTS
========================= */
@media (max-width: 1200px) {
  .container {
    max-width: 990px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
  .feature-grid,
  .service-list,
  .event-list,
  .package-list,
  .testimonials-slider {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1       { font-size: 2rem; }
  h2       { font-size: 1.45rem; }
  h3       { font-size: 1.13rem; }
  .section,
  .section:nth-child(even),
  .section:nth-child(odd) { padding: 28px 8px; margin-bottom: 36px; border-radius: 18px 22px 13px 17px; }
  .testimonials-slider { flex-direction: column; gap: 18px; }
  .feature-grid, .service-list, .event-list, .package-list { flex-direction: column; gap: 14px; }
  .card, .package, .service { padding: 19px 10px; }
  .guarantee { font-size: 0.96rem; padding: 7px 10px; gap: 9px; }
  footer nav { gap: 15px; }
  .team-list li { font-size: 0.96rem; padding: 16px 7px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.33rem; }
  h2 { font-size: 1rem; }
  h3 { font-size: 0.97rem; }
  nav a, .mobile-nav a { font-size: 0.97rem; }
  .section { padding: 17px 2px; margin-bottom: 18px; }
  .container { padding: 0 3vw; }
  .card, .package, .service { padding: 11px 4px; }
}

/* =========================
   MICRO-INTERACTIONS & TRANSITIONS
========================= */
.card, .package, .service, .testimonial-card, .team-list li {
  transition: box-shadow 0.18s, transform 0.17s, background 0.13s;
}
.testimonial-card:hover,
.team-list li:hover {
  background: #F6F4EF;
  box-shadow: 0 12px 30px rgba(136,160,91,0.13);
  transform: scale(1.012);
}
a, .cta-primary, button {
  transition: background 0.16s, color 0.16s, box-shadow 0.17s, transform 0.13s;
}

/* =========================
   COOKIE CONSENT BANNER
========================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f9faf7;
  border-top: 2.5px solid var(--color-accent);
  box-shadow: 0 -4px 34px rgba(184,149,104,0.14);
  padding: 26px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 9999;
  font-size: 1rem;
  transition: transform 0.3s cubic-bezier(0.79,0.16,0.05,0.87);
}
.cookie-banner[aria-hidden='true'] {
  transform: translateY(150%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner-content {
  max-width: 650px;
  color: var(--color-primary);
  font-size: 1rem;
  text-align: center;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 7px;
  justify-content: center;
}
.cookie-banner .cb-btn {
  outline: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 11px 22px;
  border-radius: 26px;
  font-size: 0.99rem;
  font-weight: 600;
  border: none;
  margin-top: 2px;
  box-shadow: 0 1px 5px rgba(44,92,25,0.09);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.cookie-banner .cb-btn.accept {
  background: var(--color-accent);
  color: #FFF;
}
.cookie-banner .cb-btn.accept:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-banner .cb-btn.decline {
  background: #fff;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.cookie-banner .cb-btn.decline:hover {
  background: var(--color-brown);
  color: #fff;
}
.cookie-banner .cb-btn.settings {
  background: var(--color-secondary);
  color: var(--color-accent);
}
.cookie-banner .cb-btn.settings:hover {
  background: var(--color-olive);
  color: #fff;
}

/* =========================
   COOKIE MODAL
========================= */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; bottom: 0; top: 0;
  background: rgba(95,137,78,0.07);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
  pointer-events: all;
}
.cookie-modal[aria-hidden='true'] {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 34px 16px 23px 28px;
  padding: 34px 26px 24px 26px;
  min-width: 330px;
  max-width: 90vw;
  box-shadow: 0 4px 40px rgba(184,149,104,0.16), 0 0.5px 6px rgba(120,92,60,0.11);
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}
.cookie-modal-dialog h3 {
  margin-bottom: 8px;
  color: var(--color-accent);
  font-size: 1.25rem;
}
.cookie-modal-close {
  position: absolute;
  top: 17px; right: 22px;
  background: none;
  border: none;
  color: var(--color-olive);
  font-size: 2rem;
  border-radius: 35px;
  cursor: pointer;
  transition: background 0.14s;
  padding: 2px 8px;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #E9EEF2;
  color: var(--color-accent);
}
.cookie-categories {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #E9EEF2;
  border-radius: 18px 12px 16px 16px;
  padding: 9px 14px;
  width: 100%;
  font-size: 1rem;
}
.cookie-category .switch {
  margin-left: auto;
}
.cookie-category.essential .switch {
  opacity: 0.5;
  pointer-events: none;
}
.switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 2px; left: 0; right: 0; bottom: 0;
  background-color: #B99568;
  border-radius: 24px;
  transition: background 0.22s;
}
.switch input:checked + .slider {
  background-color: var(--color-accent);
}
.slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 2px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.22s;
  box-shadow: 0 0.5px 4px rgba(44,52,42,0.09);
}
.switch input:checked + .slider:before {
  transform: translateX(18px);
}
.cookie-modal-actions {
  margin-top: 16px;
  display: flex;
  gap: 14px;
  width: 100%;
  justify-content: flex-end;
}
.cookie-modal-actions .cb-btn {
  min-width: 112px;
}

@media (max-width: 500px) {
  .cookie-modal-dialog {
    min-width: 0;
    max-width: 97vw;
    padding: 18px 6px;
  }
  .cookie-modal-actions {
    flex-direction: column;
    gap: 7px;
    width: 100%;
    align-items: stretch;
  }
}

/* =========================
   NATURE-ORGANIC DESIGN EFFECTS
========================= */
/* Subtle background texture using SVG (encoded inline) */
body:before {
  content: '';
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background-image: url('data:image/svg+xml;utf8,<svg width="90" height="90" viewBox="0 0 90 90" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="45" cy="45" r="44" stroke="%23acbe91" stroke-width="1" fill="none"/><ellipse cx="20" cy="75" rx="7" ry="2.5" fill="%23e9eef2"/><ellipse cx="80" cy="16" rx="3.5" ry="3.5" fill="%23b99568"/></svg>');
  background-repeat: repeat;
  background-size: 140px 140px;
  opacity: 0.13;
  z-index: 0;
  pointer-events: none;
}

/* Earthy dividers */
hr {
  border: none;
  height: 2px;
  width: 60%;
  margin: 36px auto;
  background: linear-gradient(90deg, #B99568 0%, #ACBE91 60%, #E9EEF2 100%);
  border-radius: 5px;
}

/* Organic shadow/soft border for cards */
.card, .testimonial-card, .feature-grid li,
.package, .service-list li, .event-list li {
  box-shadow: 0 2px 18px rgba(44,92,25,0.086), 0 1.5px 5px rgba(201,174,122,0.09);
}

/* Organic shapes for CTA and secondary background, as seen in main sections already */

/* =========================
   ACCESSIBILITY (CONTRAST FOR TESTIMONIALS/REVIEW)
========================= */
.testimonial-card, .testimonials-slider { 
  color: #1C3557; /* dark text on light bg always */
  background: #fff; 
}

/* =========================
   PRINT-FRIENDLY
========================= */
@media print {
  body *, body:before, .section {
    background: none !important;
    color: #191919 !important;
    box-shadow: none !important;
  }
  .cookie-banner, .cookie-modal {
    display: none !important;
  }
  header, nav, footer {
    box-shadow: none !important;
  }
}
