/* ===== CSS RESET & BASELINE ===== */
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 {
  line-height: 1.2;
  scroll-behavior: smooth;
}
body {
  background: #EFEFEF;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #235C3A;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #BAA57A;
  outline-offset: 2px;
}

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

h1, h2, h3, h4 {
  font-family: 'PT Sans', 'Roboto', Arial, sans-serif;
  color: #235C3A;
  font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
.subheadline { font-family: 'Roboto', Arial, sans-serif; font-size: 1.2rem; color: #927A40; margin-bottom: 20px; }
p, ul, ol {
  font-size: 1rem;
  color: #2D2D2D;
  margin-bottom: 16px;
  line-height: 1.7;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
li { margin-bottom: 8px; }

strong { color: #235C3A; font-weight: 700; }
em { font-style: italic; color: #927A40; }

/* ======= FLEXBOX CONTAINERS & SPACING ======= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(35,92,58,0.08);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/***** FLEX GRIDS *****/
.feature-grid, .service-grid, .article-grid, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid, .service-grid, .article-grid {
  justify-content: space-between;
}
.testimonial-grid {
  justify-content: flex-start;
}
.article-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(186,165,122,0.07);
}
.cta-area {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ------ CARDS & ITEMS ------ */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fbf9f7;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(146,122,64,0.06);
  padding: 28px 22px 22px 22px;
  min-width: 220px;
  flex: 1 1 220px;
  max-width: 320px;
  transition: box-shadow .2s;
}
.feature-item:hover {
  box-shadow: 0 6px 30px rgba(35,92,58,0.13);
}

.service-card {
  background: #fffdfa;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(186,165,122,0.08);
  padding: 30px 22px 22px 22px;
  margin-bottom: 20px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(35,92,58,0.13);
  transform: translateY(-2px) scale(1.015);
}
.service-price, .workshop-schedule { color: #927A40; font-weight: 500; margin-left: 8px; }

article {
  background: #FCF9F5;
  border-radius: 16px;
  box-shadow: 0 1px 10px rgba(146,122,64,0.06);
  padding: 24px 20px;
  min-width: 210px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s;
}
article:hover {
  box-shadow: 0 4px 16px rgba(35,92,58,0.11);
}
.read-more {
  font-weight: 500;
  color: #235C3A;
  margin-left: 0;
  font-size: 1rem;
  text-decoration: underline;
  transition: color 0.2s;
}
.read-more:hover,
.article-filters a:hover {
  color: #927A40;
}


.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 24px 16px 24px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(35,92,58,0.10);
  min-width: 250px;
  max-width: 370px;
  margin-bottom: 20px;
  flex: 1 1 250px;
  color: #2d2d2d;
  position: relative;
}
.testimonial-rating {
  color: #BAA57A;
  font-size: 1.2rem;
  letter-spacing: 2px;
}
.testimonial-card strong { color: #235C3A; margin-top: 10px; font-size: 1.05rem; }
.testimonial-card p {
  font-style: italic; color: #222;
}


/* ===== HEADER & NAV ====== */
header {
  background: #fff;
  padding: 0 0 0 0;
  box-shadow: 0 4px 30px rgba(35,92,58,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 74px;
  position: relative;
  z-index: 40;
}
header > a img {
  height: 48px;
  margin: 14px 28px 14px 16px;
  border-radius: 12px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
header nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #235c3a;
  padding: 8px 16px;
  border-radius: 16px;
  transition: background .2s, color .2s;
}
header nav a.cta, .cta-button {
  background: #235C3A;
  color: #fff !important;
  font-weight: 600;
  border-radius: 20px;
  padding: 8px 22px;
  margin-left: 4px;
  transition: background 0.18s, box-shadow 0.22s;
  box-shadow: 0 1px 4px rgba(146,122,64,.08);
  border: none;
}
header nav a.cta:hover, .cta-button:hover {
  background: #BAA57A;
  color: #235C3A !important;
  box-shadow: 0 4px 12px rgba(186,165,122,.18);
  text-decoration: none;
}
header nav a:hover {
  background: #EFEFEF;
  color: #927A40;
}

.cta-button {
  display: inline-block;
  cursor: pointer;
  font-size: 1.1rem;
  margin-top: 14px;
  min-width: 180px;
  text-align: center;
}

.mobile-menu-toggle {
  display: none;
  background: #235C3A;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  padding: 2px 18px;
  border-radius: 17px;
  margin: 12px 16px 12px 10px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(35,92,58,0.10);
  transition: background 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #BAA57A;
  color: #235C3A;
}

/***** MOBILE MENU OVERLAY *****/
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(35,92,58, 0.97);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.55,0,0.1,1);
  padding-top: 16px;
  padding-bottom: 24px;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  margin: 12px 28px 22px 0;
  cursor: pointer;
  padding: 4px 11px;
  border-radius: 10px;
  transition: background .2s, color .2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #BAA57A;
  color: #235C3A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-end;
  text-align: right;
  width: 100vw;
  max-width: 350px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: 1.2rem;
  background: none;
  padding: 10px 34px 10px 0;
  border-radius: 16px 0 0 16px;
  transition: background .2s, color .2s;
}
.mobile-nav a:last-child,
.mobile-nav a.cta {
  background: #BAA57A;
  color: #235C3A !important;
  font-weight: 600;
  padding: 12px 36px 12px 0;
}
.mobile-nav a:hover {
  background: #fff;
  color: #235C3A;
}

/* ====== MAIN & SECTIONS ====== */
main {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}

/***** FOOTER ******/
footer {
  background: #235C3A;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 36px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  box-shadow: 0 -4px 24px rgba(35,92,58,0.09);
  margin-top: 80px;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
.footer-brand img {
  height: 48px;
  border-radius: 12px;
}
.footer-brand span {
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #fff;
  max-width: 320px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
footer nav a {
  color: #fff;
  opacity: 0.92;
  font-size: 1rem;
  padding: 8px 13px;
  border-radius: 15px;
  font-family: 'Roboto', Arial, sans-serif;
  transition: background .17s, color .17s;
}
footer nav a:hover {
  background: #BAA57A;
  color: #235C3A;
  opacity: 1;
}
footer address {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-style: normal;
  color: #E8E8E8;
  font-size: 0.99rem;
}
footer address img {
  vertical-align: middle;
  height: 18px;
  width: 18px;
  margin-right: 8px;
  position: relative;
  top: 2px;
}
footer address div {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==== STYLING HTML ELEMENTS ==== */
address {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #444;
}
hr {
  border: none;
  border-top: 1px solid #BAA57A;
  margin: 36px 0;
}

/* ===== BUTTONS & INTERACTIONS ===== */
button, .cta-button {
  font-family: 'PT Sans', Arial, sans-serif;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.17s, box-shadow 0.17s;
}
button:focus, .cta-button:focus {
  outline: 2px solid #927A40;
  outline-offset: 1.5px;
}

/**** CARD CONTAINER FOR FLEX LAYOUTS ****/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { 
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(35,92,58,0.10);
  flex: 1 1 220px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s;
}
.card:hover { box-shadow: 0 5px 18px rgba(35,92,58,0.13); }
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  padding: 16px 18px;
}

/***** TEXT-IMAGE FLEX SECTION *****/
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/***** RESPONSIVE DESIGN *****/
@media (max-width: 1100px) {
  .feature-grid, .service-grid, .article-grid, .testimonial-grid {
    justify-content: flex-start;
  }
}
@media (max-width: 950px) {
  .feature-grid, .service-grid, .article-grid, .testimonial-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card, .feature-item, .service-card, article, .card {
    min-width: 200px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 97vw;
    padding: 0 10px;
  }
  main {
    gap: 26px;
  }
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header {
    padding-left: 0;
    padding-right: 0;
  }
  section, .section {
    padding: 24px 4px 0 4px;
  }
  .content-wrapper {
    padding: 0 2px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 24px;
  }
  .footer-brand span {
    max-width: 190px;
    font-size: 0.9rem;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1rem; }
  .footer-brand img, header > a img {
    height: 38px;  
  }
  .cta-button {
    min-width: 120px;
    padding: 8px 12px;
    font-size: 0.98rem;
  }
}

/* ===== COOKIE CONSENT BANNER & MODAL ===== */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fffdfa;
  color: #2D2D2D;
  border-radius: 16px;
  box-shadow: 0 8px 36px rgba(146,122,64,0.18);
  z-index: 99999;
  padding: 28px 28px 18px 28px;
  max-width: 365px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1rem;
  animation: fadeInBottom .66s cubic-bezier(.52,.03,.59,1) both;
}
@keyframes fadeInBottom {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner-buttons {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #235C3A;
  color: #fff;
  border-radius: 16px;
  padding: 9px 18px;
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  box-shadow: 0 2px 10px rgba(35,92,58,0.12);
  transition: background 0.18s, color .17s;
}
.cookie-btn.secondary {
  background: #BAA57A;
  color: #235C3A;
}
.cookie-btn.settings {
  background: #EFEFEF;
  color: #2d2d2d;
  border: 1.5px solid #BAA57A;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #927A40;
  color: #fff;
}
.cookie-btn.settings:hover { background: #235C3A; color: #fff; border-color: #927A40; }

.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 100000;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(35,92,58,0.87);
  visibility: hidden;
  opacity: 0;
  transition: opacity .34s cubic-bezier(.61,0,.27,1);
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0.02s;
}
.cookie-modal-content {
  background: #fffdfa;
  color: #234024;
  border-radius: 18px;
  box-shadow: 0 8px 36px rgba(146,122,64,0.18);
  padding: 34px 32px 26px 32px;
  max-width: 440px;
  min-width: 230px;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-content h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: #235C3A;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 22px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #927A40;
  cursor: pointer;
  border-radius: 9px;
  transition: background .2s;
}
.cookie-modal-close:hover {
  background: #EFEFEF;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  padding: 5px 0;
}
.cookie-category input[type='checkbox'], .cookie-category input[type='radio'] {
  accent-color: #235C3A;
  width: 18px; height: 18px;
  margin-right: 6px;
}
.cookie-category.essential input {
  accent-color: #BAA57A;
}

@media (max-width: 540px) {
  .cookie-banner { left: 4px; right: 4px; padding: 14px 6px 9px 10px;}
  .cookie-modal-content { padding: 18px 3vw 12px 4vw; }
}

/* ===== MICRO-INTERACTIONS ===== */
.cta-button, .cookie-btn {
  transition: background 0.18s, color .17s, box-shadow 0.17s, transform 0.16s;
}
.cta-button:active, .cookie-btn:active {
  transform: scale(0.97);
}
.feature-item img, .service-card img, .testimonial-card img {
  filter: drop-shadow(0 0 6px rgba(146,122,64,0.07));
}

/* ==== HELPERS ==== */
.gap-16 { gap: 16px !important; }
.text-center { text-align: center; }
.text-start { text-align: left; }
.text-end { text-align: right; }

/* ==== ACCESSIBILITY ==== */
:focus-visible {
  outline: 2px solid #BAA57A;
  outline-offset: 2px;
  border-radius: 5px;
}

/* === Misc === */
::-webkit-scrollbar {width: 8px; background: #EFEFEF;}
::-webkit-scrollbar-thumb {background: #BAA57A; border-radius: 6px;}

/* ===== CUSTOM CLASSES (based on supplied HTML) ===== */
.service-card > h2, .service-card > h3 { margin-bottom: 10px; }
.service-card > div { margin: 10px 0 0 0; }
.workshop-schedule { margin: 6px 0 16px 0; font-size: 0.97rem; color: #927A40; }

/**** Text-Image Section Padding Fix for Compatibility ****/
.text-image-section > * {
  flex: 1 1 240px;
}

/**** Custom List Icons for contact lists ****/
.text-section ul li, .text-section ol li {
  list-style: disc inside;
  color: #235C3A;
}

/**** Contact Page - Contact Icon List ****/
.text-section > ul li img {
  height: 18px; vertical-align: -3px; margin-right: 6px; }

/* === Article filters === */
.article-filters span {
  color: #235C3A;
  font-weight: 600;
  margin-right: 10px;
}
.article-filters a {
  font-size: 1rem;
  color: #235C3A;
  padding: 1px 6px 1px 6px;
  border-radius: 6px;
  background: #EFEFEF;
  transition: background 0.18s, color .12s;
}
.article-filters a.selected,
.article-filters a:hover { background: #BAA57A; color: #fff; }

/* === Thank You Page === */
.text-section a.cta-button {
  margin-top: 24px; margin-bottom: 12px;
  min-width: 180px;
}

/**** Hide mobile menu by default (except overlay), enable/disable via .open class ****/
.mobile-menu { display: flex; }
@media (min-width: 769px) {
  .mobile-menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
}
