/* CSS RESET & BASELINE NORMALIZATION */
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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F7F6F2;
  color: #2A2B26;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
img, svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
a {
  color: #00497A;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1b764d;
  text-decoration: none;
}

/* --- BRANDING TOKENS --- */
:root {
  --primary: #00497A;
  --secondary: #DBA32A;
  --accent: #F7F6F2;
  --green: #4C7444;
  --forest: #2F4F2B;
  --earth: #C2A178;
  --clay: #E3D5B3;
  --contrast-text: #222;
  --card-bg: #fff;
  --border: #E0DCC4;
  --shadow: 0 2px 10px 0 rgba(44,60,22,0.10);
  --radius: 18px;
}

/* --- TYPOGRAPHY --- */
h1, .h1 {
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-size: 2.7rem;
  line-height: 1.13;
  color: var(--primary);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
  font-weight: 600;
}
h2, .h2 {
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.18;
  color: var(--forest);
  margin-bottom: 16px;
  font-weight: 500;
}
h3, .h3 {
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-size: 1.28rem;
  line-height: 1.23;
  color: var(--green);
  margin-bottom: 11px;
  font-weight: 500;
}
h4, .h4 {
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: 400;
}
p, li {
  font-size: 1rem;
  color: var(--contrast-text);
  margin-bottom: 12px;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
}
.subheadline {
  font-size: 1.18rem;
  color: var(--forest);
  margin-bottom: 22px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}
.price {
  display: inline-block;
  background: var(--clay);
  color: var(--primary);
  font-weight: bold;
  padding: 3px 13px;
  border-radius: 20px;
  font-size: 1.02rem;
  margin: 12px 0 0 0;
  letter-spacing: 0.02em;
}

/* --- GLOBAL CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: var(--radius);
}

/* --- HEADER --- */
header {
  background: var(--accent);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 50;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0 14px 0;
  max-width: 1140px;
  margin: 0 auto;
}
.navbar img {
  height: 46px;
  margin-right: 20px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  color: var(--primary);
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  text-decoration: none;
  padding: 8px 6px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: #fff;
}
.cta-btn {
  margin-left: 12px;
  background: var(--green);
  color: #fff;
  border: none;
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 11px 28px;
  border-radius: 20px;
  font-size: 1.12rem;
  box-shadow: 0 2px 10px 0 rgba(44,60,22,0.10);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.18s, transform 0.13s;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--forest);
  box-shadow: 0 6px 18px 0 rgba(44,60,22,0.14);
  transform: translateY(-1px) scale(1.025);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 14px;
  z-index: 120;
  background: var(--green);
  color: #fff;
  font-size: 2rem;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(44,60,22, 0.11);
  transition: background 0.2s;
  align-items: center;
  justify-content: center;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--forest);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(119,115,98,0.94);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100vw);
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(0.65, 0, 0.35, 1);
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 18px 28px 16px 0;
  background: var(--secondary);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 14px 0 rgba(44,60,22,0.14);
  transition: background 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--green);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 90vw;
  margin: 0 auto;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  background: #fff;
  color: var(--primary);
  font-size: 1.16rem;
  padding: 16px 20px;
  margin-bottom: 7px;
  border-radius: 17px;
  text-decoration: none;
  width: 100%;
  box-shadow: 0 1.5px 10px 0 rgba(44,60,22,0.12);
  transition: background 0.12s, color 0.12s, box-shadow 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 6px 18px 0 rgba(44,60,22,0.16);
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(110deg, #F7F6F2 75%, #E3D5B3 100%);
  border-radius: 0 0 var(--radius) var(--radius);
  margin-bottom: 33px;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 1.5px 14px 0 rgba(44,60,22,0.06);
  padding-bottom: 28px;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 180px;
  gap: 18px;
}

/* --- FLEX CONTAINER PATTERNS --- */
.feature-grid,
.service-grid,
.course-overview-grid,
.workshop-schedule {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

.feature,
.service-teaser,
.course-item,
.workshop-item {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px 20px 22px 20px;
  box-shadow: var(--shadow);
  min-width: 248px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.feature:hover, .service-teaser:hover, .course-item:hover, .workshop-item:hover {
  box-shadow: 0 6px 18px 0 rgba(44,60,22,0.16);
  transform: scale(1.025);
}

.features-list,
.coaching-programs,
.coaching-benefits,
.course-benefits,
.workshop-topics,
.group-options,
.schedule-overview,
.community-highlight {
  background: var(--clay);
  border-radius: var(--radius);
  padding: 24px 20px;
  margin-bottom: 24px;
  box-shadow: 0 1px 6px rgba(44,60,22,0.08);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 22px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonials {
  background: var(--clay);
  border-radius: var(--radius);
  padding: 32px 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 245px;
  flex: 1 1 320px;
  margin-bottom: 20px;
  color: #2A2B26;
  transition: box-shadow 0.16s, transform 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 9px 24px 0 rgba(44,60,22,0.17);
  transform: scale(1.025);
}
.testimonial-card p {
  font-size: 1.06rem;
  line-height: 1.5;
  color: #2a2b26;
}
.reviewer {
  color: var(--green);
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1em;
  letter-spacing: 0.02em;
}

.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
}
.faq-item {
  flex: 1 1 330px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 18px 16px 18px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.13s, transform 0.13s;
}
.faq-item:hover {
  box-shadow: 0 7px 18px 0 rgba(44,60,22,0.13);
  transform: translateY(-2px) scale(1.022);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-size: 1.01rem;
}
.info-box {
  background: var(--clay);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 12px;
  box-shadow: 0 1px 6px rgba(44,60,22,0.09);
}

.cta-next-steps {
  background: var(--clay);
  border-radius: var(--radius);
  margin-bottom: 44px;
}
.cta-next-steps .content-wrapper {
  gap: 16px;
}

/* --- FOOTER --- */
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  background: var(--primary);
  color: #fff;
  padding: 46px 20px 36px 20px;
  margin-top: 50px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.footer-content img {
  height: 54px;
  margin-bottom: 16px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  text-decoration: none;
  padding: 4px 2px;
  border-radius: 4px;
  transition: background 0.11s, color 0.11s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--secondary);
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.99rem;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f3f3ee;
}

/* --- BUTTONS & INTERACTIVES --- */
button, .cta-btn, input[type=submit], input[type=button] {
  appearance: none;
  border: none;
  cursor: pointer;
}

button:focus-visible, .cta-btn:focus-visible {
  outline: 2.5px solid var(--secondary);
  outline-offset: 2px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #f5eedc;
  color: #282a21;
  box-shadow: 0 -3px 14px rgba(44,60,22,0.16);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 3000;
  padding: 21px 28px 20px 18px;
  gap: 17px;
  border-radius: var(--radius) var(--radius) 0 0;
  font-size: 1rem;
  animation: banner-slide-up 0.6s cubic-bezier(.4,1.2,.5, 1) 1;
}
@keyframes banner-slide-up {
  from { transform: translateY(105%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 13px;
}
.cookie-banner button, .cookie-banner .cookie-btn {
  background: var(--green);
  color: #fff;
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 20px;
  padding: 8px 19px;
  margin: 0;
  outline: none;
  border: none;
  margin-right: 6px;
  transition: background 0.16s, box-shadow 0.17s, transform 0.12s;
  box-shadow: 0 1px 8px rgba(44,60,22,0.07);
}
.cookie-banner .cookie-btns button:last-child {
  margin-right: 0;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--forest);
  transform: scale(1.03);
}
.cookie-banner .cookie-btn.settings {
  background: var(--secondary);
  color: #1b1b1b;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: var(--green);
  color: #fff;
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3700;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(60,45,15,0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.22s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fffaf2;
  min-width: 330px;
  border-radius: var(--radius);
  box-shadow: 0 12px 55px 0 rgba(44,60,22,0.19);
  padding: 32px 30px 24px 30px;
  position: relative;
  animation: modal-drop 0.5s;
  max-width: 90vw;
}
@keyframes modal-drop {
  from { transform: translateY(-40px); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  color: var(--primary);
  margin-bottom: 13px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 12px;
  right: 10px;
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  border: none;
  font-size: 1.28rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: var(--green);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 15px;
}
.cookie-category {
  background: var(--clay);
  padding: 14px 14px 14px 14px;
  border-radius: 13px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 11px;
}
.cookie-category strong {
  color: var(--primary);
  margin-right: 6px;
}
.cookie-category input[type=checkbox] {
  appearance: none;
  background: var(--accent);
  border-radius: 8px;
  border: 1.5px solid var(--green);
  width: 23px;
  height: 23px;
  margin: 2px 10px 0 0;
  cursor: pointer;
  transition: border-color 0.14s, background 0.13s;
  outline: none;
  vertical-align: middle;
}
.cookie-category input[type=checkbox]:checked {
  background: var(--green);
  border-color: var(--forest);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 10px;
}
.cookie-modal .modal-actions button {
  background: var(--green);
  color: #fff;
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 19px;
  border: none;
  margin-right: 4px;
  transition: background 0.16s, box-shadow 0.17s, transform 0.12s;
  box-shadow: 0 1px 9px rgba(44,60,22,0.09);
}
.cookie-modal .modal-actions button:last-child {
  margin-right: 0;
}
.cookie-modal .modal-actions button:hover {
  background: var(--forest);
  transform: scale(1.03);
}

/* --- ORGANIC/NATURE VISUALS --- */
.feature, .service-teaser, .course-item, .workshop-item, .testimonial-card, .faq-item {
  border: 2.8px solid transparent;
  background: var(--card-bg);
  box-shadow: var(--shadow);
  border-radius: 30px 14px 24px 20px/24px 32px 18px 30px;
  /* organic non-uniform border radius */
}

/* For decorative backgrounds: Add subtle speckles or subtle organic shapes as SVG overlays if needed, not in CSS here. */

/* --- RESPONSIVE - MOBILE FIRST! --- */
@media (max-width: 1160px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .main-nav {
    gap: 17px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 10px;
  }
  .navbar,
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav {
    display: none !important;
  }
  .cta-btn {
    margin-top: 12px;
    margin-left: 0;
    align-self: flex-start;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .content-wrapper {
    gap: 14px;
  }
  .feature-grid, .service-grid, .course-overview-grid, .workshop-schedule, .testimonial-slider, .faq-list {
    flex-direction: column;
    gap: 20px;
  }
  .card-container, .card-grid {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid, .footer-nav {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .testimonial-card, .faq-item{
    min-width: 0;
  }
  .footer-content {
    padding: 35px 10px 22px 10px;
    border-radius: 28px 28px 0 0;
  }
}

@media (max-width: 520px) {
  .hero,
  .section {
    padding: 25px 5vw;
  }
  h1, .h1 {
    font-size: 1.82rem;
  }
  h2, .h2 {
    font-size: 1.33rem;
  }
  h3, .h3 {
    font-size: 1.07rem;
  }
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.cta-btn, .card, .service-teaser, .feature, .testimonial-card, .faq-item, .mobile-nav a, .cookie-modal, .cookie-banner, .mobile-menu {
  transition:
    background 0.18s,
    box-shadow 0.18s,
    color 0.16s,
    transform 0.16s;
}

/* --- SCROLLBAR --- */
body {
  scrollbar-color: #C2A178 var(--clay);
  scrollbar-width: thin;
}
body::-webkit-scrollbar {
  width: 9px;
  background: var(--clay);
}
body::-webkit-scrollbar-thumb {
  background: #C2A178;
  border-radius: 6px;
}

/* --- CUSTOM FOCUS & A11Y --- */
:focus-visible {
  outline: 2.5px solid var(--secondary);
  outline-offset: 3px;
}

/* --- UTILITIES --- */
.hide-visually {
  position: absolute;
  left: -99999px;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* --- MISC --- */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
}

input[type=text],
input[type=email],
textarea, select {
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: 11px;
  font-size: 1.04rem;
  margin-bottom: 14px;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--secondary);
}

::-webkit-input-placeholder { color: #b5ab8b; }
::-moz-placeholder { color: #b5ab8b; }
:-ms-input-placeholder { color: #b5ab8b; }
::placeholder { color: #b5ab8b; }

/* --- NATURE/ORGANIC SHAPE DECOR --- */
/* (For SVG/waves, use additional SVG overlays in HTML as needed. Here only base cards/section rounding and color palette is included.) */

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