/* =======================================
   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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {box-sizing: inherit;}
body {
  background: #F3EFEA;
  color: #372722;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #92755B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #372722;
}
ul, ol {
  margin-left: 1.5em;
}
strong { font-weight: 700; }


/* =======================================
   Typography Hierarchy (Elegant Classic)
   ======================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', 'Georgia', serif;
  color: #372722;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.2; font-weight: 900; letter-spacing: -0.01em; }
h2 { font-size: 2rem; line-height: 1.28; font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 700; }
h4 { font-size: 1.17rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }
h6 { font-size: 0.95rem; }
p, ul, ol, address {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #372722;
  margin-bottom: 20px;
}


/* =======================================
   Layout Containers & Section Spacing
   ======================================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

/* Flex utility classes */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(55, 39, 34, 0.05);
  padding: 24px 20px;
  min-width: 250px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 4px 20px 0 rgba(55, 39, 34, 0.12);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #372722;
  border-radius: 10px;
  box-shadow: 0 2px 9px 0 rgba(55,39,34,0.07);
  margin-bottom: 20px;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(146,117,91,0.13);
  transform: translateY(-2px) scale(1.02);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}


/* =======================================
   Header, Navigation & Burger Menu
   ======================================= */
header {
  background: #fff;
  box-shadow: 0 1px 8px 0 rgba(55,39,34,0.03);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 0;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: 1.05rem;
  color: #372722;
  padding: 6px 10px;
  border-radius: 5px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F3EFEA;
  color: #92755B;
}
.cta-btn {
  background: #92755B;
  color: #fff;
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: 1.08rem;
  padding: 10px 32px;
  border: none;
  border-radius: 22px;
  cursor: pointer;
  box-shadow: 0 2px 6px 0 rgba(55,39,34,0.08);
  transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
  text-decoration: none;
  letter-spacing: 0.03em;
  font-weight: 700;
  margin-left: 10px;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #372722;
  box-shadow: 0 5px 16px 0 rgba(146,117,91,0.17);
  color: #fff;
  transform: translateY(-2px) scale(1.02);
}

/* Mobile Burger */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #92755B;
  padding: 6px 12px;
  border-radius: 7px;
  cursor: pointer;
  display: none;
  transition: background 0.15s;
  z-index: 105;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #f3efea;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(55,39,34,0.96);
  z-index: 120;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding-top: 20px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1), opacity 0.2s;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 22px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #92755B;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-end;
  width: 100%;
  padding: 0 32px;
  margin-top: 30px;
}
.mobile-nav a {
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: 1.35rem;
  color: #fff;
  background: none;
  padding: 8px 6px;
  border-radius: 8px;
  transition: background 0.18s, color 0.16s;
  display: inline-block;
  min-width: 140px;
  text-align: right;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #92755B;
  color: #fff;
}


/* =======================================
   HERO Section
   ======================================= */
.hero {
  background: linear-gradient(110deg,#F3EFEA 60%, #e8e0d3 100%);
  padding: 60px 0 40px 0;
  margin-bottom: 50px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  color: #372722;
  font-size: 2.5rem;
}
.hero p {
  font-size: 1.15rem;
  color: #372722;
  margin-bottom: 0;
}
.hero .cta-btn {
  margin-top: 14px;
}

/* =======================================
   Features/Services Preview
   ======================================= */
.features {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 18px 0 rgba(146,117,91,0.10);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
  margin-bottom: 30px;
}
.feature {
  background: #F9F8F6;
  border-radius: 10px;
  box-shadow: 0 1.5px 8px 0 rgba(146,117,91,0.08);
  flex: 1 1 220px;
  min-width: 190px;
  max-width: 320px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.19s, transform 0.2s;
}
.feature:hover {
  box-shadow: 0 4px 24px 0 rgba(146,117,91,0.15);
  transform: translateY(-2px) scale(1.015);
}
.feature img {
  width: 40px;
  height: 40px;
}
.feature h3 {
  font-size: 1.18rem;
  color: #92755B;
}
.features ul {
  margin-bottom: 0;
}
.features ul li {
  margin-bottom: 8px;
  padding-left: 10px;
}

/* =======================================
   Service, Events, and Workshop Lists
   ======================================= */
.service-preview-list, .service-list, .workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.service-preview, .service-box, .workshop-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1.5px 8px 0 rgba(146,117,91,0.08);
  flex: 1 1 310px;
  min-width: 240px;
  max-width: 450px;
  padding: 22px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.15s;
  border: 1px solid #eee5de;
}
.service-box.highlight {
  border: 1.2px solid #92755B;
  box-shadow: 0 3px 13px 0 rgba(146,117,91,0.13);
}
.service-box:hover, .workshop-item:hover, .service-preview:hover {
  box-shadow: 0 5px 22px 0 rgba(146,117,91,0.17);
  transform: translateY(-2px) scale(1.01);
}
.usp-list {
  margin-top: 8px;
  margin-bottom: 32px;
}
.usp-list li {
  padding-left: 13px;
  margin-bottom: 8px;
}
.event-list, .faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.event-list li, .faq-list li {
  background: #fff;
  border-radius: 8px;
  padding: 18px 18px 14px 16px;
  box-shadow: 0 1px 5px 0 rgba(55,39,34,0.03);
  font-size: 1.03rem;
}
.event-highlights {
  margin-bottom: 24px;
  background: #F9F6F1;
  padding: 15px 18px;
  border-radius: 7px;
  color: #92755B;
  box-shadow: 0 1px 5px 0 rgba(146,117,91,0.05);
}
.schedule-info {
  margin-bottom: 16px;
  font-size: 0.97rem;
  color: #92755B;
}


/* =======================================
   Testimonials
   ======================================= */
.testimonials {
  background: #FCFBFA;
  border-radius: 14px;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 48px;
  box-shadow: 0 2px 16px 0 rgba(146,117,91,0.06);
}
.testimonials .testimonial-card {
  background: #fff;
  color: #372722;
  margin-bottom: 20px;
  border-left: 6px solid #92755B;
  font-size: 1.08rem;
}
.testimonial-card strong {
  display: block;
  margin-top: 9px;
  font-size: 1rem;
  color: #92755B;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}


/* =======================================
   Legal Sections
   ======================================= */
.legal-section {
  background: #fff;
  border-radius: 10px;
  padding: 40px 20px;
  box-shadow: 0 2px 10px 0 rgba(146,117,91,0.07);
  margin-bottom: 48px;
}

/* =======================================
   Contact Section
   ======================================= */
.contact-section address {
  font-style: normal;
  color: #372722;
  margin-bottom: 18px;
  line-height: 1.45;
  font-size: 1.06rem;
}
.map-placeholder {
  background: #F6F2ED;
  border-radius: 10px;
  box-shadow: 0 1px 7px 0 rgba(146,117,91,0.10);
  padding: 17px 14px 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  width: 100%;
  max-width: 380px;
}
.map-placeholder img {
  border-radius: 7px;
  margin-bottom: 7px;
}


/* =======================================
   FAQ Section
   ======================================= */
.faq-section {
  background: #fff;
  border-radius: 12px;
  padding: 40px 20px;
  margin-bottom: 48px;
  box-shadow: 0 2px 10px 0 rgba(146,117,91,0.07);
}

.faq-list li strong {
  display: block;
  font-size: 1.09rem;
  color: #92755B;
  margin-bottom: 8px;
}


/* =======================================
   Thank You Section
   ======================================= */
.thankyou-section {
  background: #FCF8F4;
  border-radius: 12px;
  padding: 44px 0 60px 0;
  box-shadow: 0 1.5px 9px 0 rgba(146,117,91,0.06);
  text-align: center;
}
.thankyou-section h1 {
  font-size: 2rem;
  color: #372722;
}
.thankyou-section p {
  font-size: 1.1rem;
}
.thankyou-section .cta-btn {
  margin-top: 18px;
}


/* =======================================
   Footer
   ======================================= */
footer {
  background: #372722;
  color: #F3EFEA;
  padding: 40px 0 0 0;
  margin-top: 90px;
}
.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 24px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  color: #F3EFEA;
  font-family: 'Merriweather', serif;
  font-size: 1.02rem;
  opacity: 0.89;
  margin-bottom: 2px;
  transition: opacity 0.15s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  opacity: 1;
  color: #92755B;
}
.footer-contact {
  background-color: #F3EFEA;
  opacity: 0.95;
  font-size: 0.96rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
footer img {
  min-width: 54px;
  width: 54px;
  margin-bottom: 12px;
}



/* =======================================
   Cookie Consent Banner & Modal
   ======================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  color: #372722;
  border-top: 2px solid #92755B;
  box-shadow: 0 -2px 14px 0 rgba(55,39,34,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 12px 16px 12px;
  gap: 18px;
  z-index: 900;
  font-size: 1rem;
  animation: cookie-banner-fadein 0.5s;
}
@keyframes cookie-banner-fadein {from{opacity:0;bottom:-60px;} to{opacity:1;bottom:0;}}

.cookie-banner p {
  margin-bottom: 0;
  max-width: 540px;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-btn {
  background: #92755B;
  color: #fff;
  border: none;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  padding: 9px 22px;
  border-radius: 22px;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.18s, color 0.16s, transform 0.13s;
}
.cookie-btn.cookie-reject {
  background: #fff;
  color: #92755B;
  border: 1.1px solid #92755B;
}
.cookie-btn.cookie-settings {
  background: #372722;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #372722;
  color: #fff;
  transform: scale(1.04);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(55,39,34,0.74);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #372722;
  border-radius: 14px;
  box-shadow: 0 5px 32px 0 rgba(55,39,34,0.16);
  padding: 48px 26px 26px 26px;
  width: 94vw;
  max-width: 430px;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 18px;
  position:relative;
  animation: cookie-modal-in 0.3s;
}
@keyframes cookie-modal-in {from{transform:translateY(40px); opacity:0;} to{transform:translateY(0); opacity:1;}}
.cookie-modal h2 {
  color: #92755B;
  font-size: 1.18rem;
  margin-bottom: 6px;
  text-align: center;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F3EFEA;
  padding: 11px 12px;
  border-radius: 8px;
}
.cookie-category label {
  font-family: 'Merriweather',serif;
  font-size: 1rem;
  cursor: pointer;
  flex: 1 1 auto;
}
.cookie-category input[type="checkbox"] {
  accent-color: #92755B;
  width: 19px;
  height: 19px;
  border-radius: 6px;
  margin: 2px 7px 0 0;
}
.cookie-toggle-disabled {
  opacity: 0.65;
  pointer-events: none;
}
.cookie-modal .modal-btns {
  margin-top: 12px;
  display: flex;
  gap: 14px;
  width: 100%;
  justify-content: center;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 19px;
  font-size: 1.8rem;
  background: none; border: none;
  color: #92755B;
  cursor: pointer;
  padding: 2px 7px;
  border-radius: 5px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F3EFEA; color: #372722;
}

/* Hide for accessibility until loaded/enabled */
.cookie-banner[aria-hidden="true"], .cookie-modal-overlay[aria-hidden="true"] {
  display: none;
}

/* =======================================
   Utility & Minor
   ======================================= */
::-webkit-scrollbar { width: 10px; background: #F3EFEA; }
::-webkit-scrollbar-thumb { background: #cfbeac; border-radius: 7px;}

/* Minor Elements */
section, .section {margin-bottom: 60px;}
li {margin-bottom: 7px;}

hr {
  border: none;
  border-top: 1.5px solid #eee5de;
  margin: 32px 0;
}

/* Selection */
::selection { background: #92755B; color: #fff; }


/* =======================================
   Responsive & Mobile Flexbox Adjustments
   ======================================= */
@media (max-width: 990px) {
  .footer-flex, .header-flex {
    flex-wrap: wrap;
    gap: 24px;
  }
  .main-nav {
    gap: 12px;
  }
  .container {
    max-width: 97vw;
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (max-width: 768px) {
  .header-flex {
    padding: 13px 0;
    gap: 12px;
  }
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }
  .hero {
    padding-top: 36px;
    padding-bottom: 30px;
  }
  .hero h1 {
    font-size: 1.65rem;
  }
  .section, section, .legal-section, .faq-section, .testimonials {
    padding: 27px 7px;
    border-radius: 9px;
    margin-bottom: 34px;
  }
  .features, .testimonials, .legal-section, .faq-section {
    border-radius: 8px;
    padding-left: 7px; padding-right: 7px;
  }
  .feature-grid, .service-list, .service-preview-list, .workshop-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
  .footer-contact, footer img {
    margin-bottom: 7px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .thankyou-section {padding: 23px 0;}
  .testimonial-card { font-size: 1rem; }
}
@media (max-width: 520px) {
  h1 {font-size: 1.55rem; }
  h2 {font-size: 1.18rem;}
  .card, .service-box, .workshop-item {
    padding: 16px 8px;
    min-width: unset;
    max-width: 98vw;
  }
  .map-placeholder {
    max-width: 98vw;
    padding: 8px 5px;
  }
  .cookie-modal {
    padding: 25px 4vw 18px 4vw;
    max-width: 99vw;
  }
}

/* =======================================
   Accessibility & Focus Styles
   ======================================= */
a, .cta-btn, .cookie-btn, .mobile-nav a, .mobile-menu-close, .cookie-modal-close {
  outline: none;
}
a:focus-visible, .cta-btn:focus-visible, .cookie-btn:focus-visible, .mobile-nav a:focus-visible, .mobile-menu-close:focus-visible, .cookie-modal-close:focus-visible {
  box-shadow: 0 0 0 3px #92755B66;
  outline: none;
}

/* For skip links if needed */
.skip-link {
  position: absolute;
  top: -40px; left: 0;
  background: #92755B; color: #fff;
  padding: 8px 18px;
  z-index: 2000;
  transition: top 0.25s;
}
.skip-link:focus { top: 0; }
