/* ==== 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 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  background: #F2F2EA;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #1D4731;
  background: #F2F2EA;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
}

/* ==== FONT FACES (GOOGLE FONTS, FALLBACKS) ==== */
@import url('https://fonts.googleapis.com/css?family=Merriweather:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', 'Georgia', serif;
  color: #1D4731;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  color: #A8763E;
  margin-bottom: 16px;
  font-size: 1.125rem;
}
strong {
  font-weight: bold;
}

/* ==== LAYOUT CONSTRAINTS ==== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.text-section {
  max-width: 800px;
}

/* ==== SECTIONS, SPACING, FLEX LAYOUTS ==== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 18px;
}
ul li,
ol li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(29, 71, 49, 0.09), 0 1.5px 8px rgba(168,118,62,0.06);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  min-width: 260px;
  flex: 1 1 300px;
  border: 2.5px solid #E7E7DB;
  transition: box-shadow 0.21s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(29, 71, 49, 0.17), 0 2px 10px rgba(168,118,62,0.13);
  transform: translateY(-4px) scale(1.02);
}

.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;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(168,118,62,0.10), 0 1.5px 8px rgba(29,71,49,0.05);
  margin-bottom: 20px;
  border-left: 7px solid #A8763E;
  color: #232313;
  font-size: 1rem;
}
.testimonial-card p {
  color: #181803;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
.testimonial-card strong {
  color: #1D4731;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== NAVIGATION (HEADER) ==== */
header {
  background: #fff;
  border-bottom: 2px solid #E7E7DB;
  position: sticky;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 0;
}
.logo {
  height: 46px;
  width: auto;
  margin-right: 24px;
  display: block;
}
nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1 1 auto;
}
nav a {
  font-family: 'Roboto',Arial,sans-serif;
  color: #1D4731;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 8px;
  border-radius: 6px;
  transition: color 0.17s, background 0.17s;
}
nav a:hover,
nav a:focus {
  background: #A8763E;
  color: #fff;
}

.cta.primary {
  background: #1D4731;
  color: #fff;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.08rem;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  padding: 12px 32px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin-left: 22px;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  box-shadow: 0 2px 12px rgba(29,71,49,0.08);
  letter-spacing: 0.02em;
}
.cta.primary:hover, .cta.primary:focus {
  background: #A8763E;
  color: #fff;
  box-shadow: 0 4px 24px rgba(168,118,62,0.10);
}
.cta {
  font-family: 'Merriweather', Georgia, serif;
  background: #A8763E;
  color: #fff;
  border-radius: 14px;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.17s, color 0.17s;
  border: none;
  text-decoration: none;
  display: inline-block;
  margin-top: 22px;
  box-shadow: 0 2px 12px rgba(168,118,62,0.08);
  letter-spacing: 0.02em;
  cursor: pointer;
}
.cta:hover, .cta:focus {
  background: #1D4731;
  color: #fff;
}

button {
  font-family: 'Roboto', Arial, sans-serif;
  border: none;
  outline: none;
  cursor: pointer;
  background: transparent;
}

/* ==== MOBILE NAVIGATION ==== */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #1D4731;
  background: none;
  border: none;
  margin-left: 18px;
  z-index: 120;
  border-radius: 8px;
  width: 48px; height: 48px;
  align-items: center;
  justify-content: center;
  transition: background 0.17s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #A8763E11;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #F2F2EA;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.5,.2,.2,1);
  z-index: 3200;
  display: flex;
  flex-direction: column;
  box-shadow: 6px 0 18px rgba(29,71,49,0.08);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  color: #1D4731;
  background: none;
  border: none;
  font-size: 2.2rem;
  margin: 24px 20px 8px 0;
  align-self: flex-end;
  cursor: pointer;
  border-radius: 12px;
  transition: background 0.14s;
}
.mobile-menu-close:active, .mobile-menu-close:focus {
  background: #A8763E18;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 40px 36px 0 36px;
}
.mobile-nav a {
  color: #1D4731;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 12px 8px;
  border-radius: 8px;
  width: 100%;
  text-align: left;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #A8763E;
  color: #fff;
}

/* ==== SECTION CONTENTS ==== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin: 32px 0 10px 0;
  list-style: none;
}
.feature-grid li {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px rgba(168,118,62,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 20px 24px 28px;
  min-width: 250px;
  transition: box-shadow 0.14s, transform 0.14s;
  border: 2px solid #E7E7DB;
  margin-bottom: 20px;
}
.feature-grid li:hover {
  box-shadow: 0 7px 26px rgba(29,71,49,0.13);
  transform: translateY(-3px) scale(1.01);
}
.feature-grid img {
  height: 54px;
  width: 54px;
  margin-bottom: 13px;
  border-radius: 7px;
  background: #F2F2EA;
  box-shadow: 0 1px 4px rgba(168,118,62,0.08);
}

.service-list,
.course-list,
.workshop-list,
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
  margin-left: 0;
  list-style: none;
}
.service-list li,
.course-list li,
.workshop-list li,
.contact-info li {
  background: #fff;
  border-left: 5px solid #A8763E;
  padding: 12px 18px 12px 18px;
  border-radius: 0 11px 11px 0;
  color: #232313;
  margin-bottom: 8px;
  font-size: 1rem;
  transition: background 0.18s;
}
.service-list li:hover,
.course-list li:hover,
.workshop-list li:hover {
  background: #F2F2EA;
}

.pricing-overview p {
  font-size: 1.125rem;
  color: #1D4731;
  margin-top: 18px;
}

.map-placeholder {
  padding: 24px 14px;
  border: 1.6px dashed #A8763E;
  border-radius: 12px;
  background: #FBFBF7;
  color: #A8763E;
  margin-top: 16px;
  font-size: 1rem;
}

/* ==== FOOTER ==== */
footer {
  background: #fff;
  border-top: 3px solid #E7E7DB;
  margin-top: 50px;
  padding-top: 22px;
  padding-bottom: 34px;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-nav {
  font-size: 0.95rem;
  margin-bottom: 8px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
  color: #A8763E;
}
footer .footer-nav a {
  color: #A8763E;
  text-decoration: underline;
  font-weight: 400;
  margin: 0 2px;
  transition: color 0.13s;
}
footer .footer-nav a:hover, .footer-nav a:focus {
  color: #1D4731;
  text-decoration: underline;
}
.address { color: #232313; font-size: 0.98rem; }
.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-social img {
  width: 30px;
  height: 30px;
  filter: grayscale(0.3) contrast(1.2);
  transition: filter 0.15s, transform 0.13s;
}
.footer-social img:hover {
  filter: grayscale(0) contrast(1.4) drop-shadow(0 2px 7px #A8763E44);
  transform: scale(1.09) rotate(-6deg);
}
.legal-links {
  color: #A8763E;
  font-size: 0.9rem;
}

/* ==== GEOMETRIC ANGULAR EFFECTS ==== */
h1, h2, h3 {
  text-transform: none;
  letter-spacing: .015em;
  /* Subtle angular styling - geometric visual effect */
  position: relative;
}
h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  margin: 12px 0 0 0;
  background: #A8763E;
  border-radius: 2px;
}
h3 {
  position: relative;
}

/* ==== BUTTONS ==== */
button, .cta, .cta.primary {
  font-family: 'Merriweather', Georgia, serif;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.16s, color 0.13s, box-shadow 0.19s;
  position: relative;
}
button:focus-visible,
.cta:focus-visible,
.cta.primary:focus-visible {
  outline: 2.5px solid #A8763E;
  outline-offset: 2px;
}

/* ==== FORMS AND INPUTS ==== */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border: 1.6px solid #A8763E;
  border-radius: 9px;
  padding: 10px 12px;
  font-size: 1rem;
  background: #fff;
  margin-bottom: 14px;
  transition: border 0.14s, box-shadow 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: #1D4731;
  box-shadow: 0 0 5px #A8763E44;
}

/* ==== LINKS ==== */
a {
  color: #A8763E;
  text-decoration: underline;
  transition: color 0.17s;
}
a:hover, a:focus {
  color: #1D4731;
  text-decoration: underline;
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 1024px) {
  .container {
    max-width: 97vw;
  }
  .feature-grid {
    gap: 22px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
    gap: 22px;
  }
  nav {
    gap: 13px;
  }
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .container {
    padding: 0 8px;
    max-width: 100vw;
  }
  header .container {
    flex-direction: row;
    align-items: flex-start;
    min-height: 56px;
    gap: 8px;
  }
  nav {
    display: none;
  }
  .cta.primary {
    font-size: 0.98rem;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 23px;
  }
  .logo {
    height: 38px;
    margin-right: 6px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  section {
    margin-bottom: 36px;
    padding: 24px 6px;
  }
  .text-image-section, .course-list, .service-list, .workshop-list, .contact-info {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .testimonial-card {
    font-size: 0.99rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 12px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-social {
    gap: 9px;
  }
  .content-wrapper.text-section {
    max-width: 97vw;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.27rem; }
  h2 { font-size: 1rem; }
  .feature-grid li, .card {
    min-width: 150px;
    padding: 14px 10px 14px 15px;
  }
  .service-list li, .course-list li, .workshop-list li, .contact-info li {
    padding: 10px 8px 10px 10px;
  }
  section {
    padding: 12px 3px;
  }
  .footer-nav { flex-direction: column; gap: 2px; }
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 3px solid #A8763E;
  box-shadow: 0 -3px 12px rgba(29,71,49,0.07);
  z-index: 3500;
  padding: 26px 28px 22px 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  font-size: 1.01rem;
  animation: cookie-banner-in 0.71s cubic-bezier(.4,.01,.54,1);
}
.cookie-banner__text {
  flex: 1 1 320px;
  color: #1D4731;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
}
.cookie-btn {
  font-family: 'Roboto', Arial, sans-serif;
  background: #1D4731;
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  padding: 8px 20px;
  border: none;
  transition: background 0.16s, color 0.13s;
  font-size: 1rem;
}
.cookie-btn.settings {
  background: #A8763E;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #A8763E;
  border: 2px solid #A8763E;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #A8763E;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #A8763E11;
  color: #A8763E;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 3vw 16px 3vw;
    gap: 14px;
    font-size: .97rem;
  }
  .cookie-banner__actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}
@keyframes cookie-banner-in {
  0% { transform: translateY(100%); opacity: 0; }
  72% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ==== COOKIE PREFERENCES MODAL ==== */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(29, 71, 49, 0.23);
  z-index: 4200;
}
.cookie-modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 32px rgba(168,118,62,0.11);
  max-width: 410px;
  width: 92vw;
  padding: 40px 28px 28px 28px;
  outline: 2.5px solid #A8763E55;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transform: translateY(24px) scale(0.94);
  opacity: 0;
  transition: transform 0.36s, opacity 0.34s;
  position: relative;
}
.cookie-modal.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  transition-delay: 0.15s;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #1D4731;
  margin-bottom: 4px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category label {
  font-weight: bold;
  font-size: 1rem;
  color: #A8763E;
  margin-bottom: 0;
}
.cookie-modal .cookie-toggle {
  accent-color: #1D4731;
  transform: scale(1.18);
  margin-top: 4px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 13px;
}
.cookie-modal-close {
  position: absolute;
  right: 20px; top: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #A8763E;
  cursor: pointer;
  border-radius: 7px;
  transition: background 0.13s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  background: #A8763E16;
}

/* ==== GEOMETRIC/STRUCTURED ELEMENTS (BORDERS, ANGLES) ==== */
section, .card, .testimonial-card, .feature-grid li, .cookie-modal {
  /* slightly more angular corners */
  border-radius: 18px;
}

/* ==== MICRO-INTERACTIONS/ANIMATION ==== */
.card, .feature-grid li, .cta, .cta.primary, .testimonial-card {
  transition: box-shadow 0.17s, transform 0.14s;
}
.cta:active, .cta.primary:active {
  transform: scale(0.97) translateY(1.5px);
}

img, svg {
  max-width: 100%;
  display: block;
  height: auto;
}

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

/* ==== SCROLLBAR (FOR DESKTOP) ==== */
@media (pointer: fine) {
  ::-webkit-scrollbar {
    width: 11px;
    background: #F2F2EA;
  }
  ::-webkit-scrollbar-thumb {
    background: #E7E7DB;
    border-radius: 11px;
    border: 2.5px solid #F2F2EA;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #A8763E52;
  }
}

/* ==== MISC: A11Y & SELECTION ==== */
*:focus-visible {
  outline: 2.5px solid #A8763E;
  outline-offset: 2px;
}
::selection {
  background: #A8763E44;
}

/* ==== NO ABSOLUTE for CONTENT (Except Cookie Modal/Overlay) ==== */
/* === END === */
