/* CSS RESET & BASE TYPOGRAPHY */
html {
  box-sizing: border-box;
  font-size: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Lora', 'Georgia', serif;
  background: #FAF9F6;
  color: #2E4E46;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  position: relative;
}

/* FONT IMPORTS - fallback if not loaded via HTML */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Lora:wght@400;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Georgia', serif;
  color: #2E4E46;
  margin-bottom: 12px;
  line-height: 1.18;
  font-weight: 700;
}
h1 {font-size: 2.625rem; margin-bottom: 16px;}
h2 {font-size: 2rem; margin-bottom: 16px;}
h3 {font-size: 1.325rem; font-weight: 600;}
h4 {font-size: 1.125rem;}
p, ul, ol, blockquote {margin-bottom: 18px;}
ul, ol {padding-left: 24px;}
li {margin-bottom: 8px;}
blockquote {
  font-family: 'Lora', serif;
  font-style: italic;
  color: #2E4E46;
  background: #F7F5EC;
  border-left: 4px solid #BCA77B;
  padding: 12px 24px 12px 20px;
  margin-bottom: 0;
}
a {
  color: #2E4E46;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #BCA77B;
  text-decoration: none;
}

/* LAYOUT STRUCTURE */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

/* SECTION SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  background: transparent;
}
@media (max-width: 768px) {
  section {
    padding: 32px 0 0 0;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 10px;
  }
}

/* BUTTONS & CTA */
.cta, button, .cookie-btn {
  font-family: 'Montserrat', serif;
  font-size: 18px;
  padding: 12px 30px;
  border-radius: 32px;
  border: none;
  outline: none;
  cursor: pointer;
  background: #BCA77B;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(188,167,123,0.13);
  transition: background 0.22s, color 0.2s, box-shadow 0.22s, transform 0.12s;
  letter-spacing: 1px;
  margin-top: 8px;
  display: inline-block;
}
.cta.primary, .cookie-btn.accept {
  background: #2E4E46;
  color: #fff;
}
.cta.primary:hover, .cookie-btn.accept:hover, .cta:hover {
  background: #BCA77B;
  color: #2E4E46;
  box-shadow: 0 4px 26px 0 rgba(188,167,123,0.19);
  transform: translateY(-2px) scale(1.03);
}
.cta.secondary, .cookie-btn.reject {
  background: #E0DED6;
  color: #2E4E46;
}
.cta.secondary:hover, .cookie-btn.reject:hover {
  background: #BCA77B;
  color: #fff;
}
.cookie-btn.settings {
  background: transparent;
  border: 1px solid #BCA77B;
  color: #2E4E46;
}
.cookie-btn.settings:hover {
  background: #F7F5EC;
}

/* MAIN NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 4px 26px 0 rgba(46,78,70,0.06);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 20px 18px 20px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
}
.main-nav ul li a {
  font-family: 'Montserrat', serif;
  font-size: 17px;
  color: #2E4E46;
  background: none;
  padding: 6px 12px;
  border-radius: 18px;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
  font-weight: 500;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: #E0DED6;
  color: #BCA77B;
}
.main-nav .cta.primary {
  margin-left: 18px;
}
.main-nav > a img {
  height: 36px; width: auto;
  vertical-align: middle;
}
/* Hide mobile nav by default on desktop */
.mobile-menu-toggle {
  border: none;
  background: none;
  color: #2E4E46;
  font-size: 2.2rem;
  display: none;
  cursor: pointer;
  margin-left: auto;
  margin-right: 6px;
  padding: 4px 10px;
  line-height: 1;
  border-radius: 8px;
  transition: background .2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #E0DED6;
}

/* MOBILE NAVIGATION */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(46,78,70,0.97);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 22px 22px 22px;
  transform: translateX(-100vw);
  transition: transform .35s cubic-bezier(.82,.03,.41,1.01);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  border: none;
  background: none;
  color: #fff;
  margin-bottom: 24px;
  cursor: pointer;
  padding: 8px 10px 8px 16px;
  border-radius: 8px;
  transition: background .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #BCA77B;
  color: #2E4E46;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', serif;
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
  width: 100%;
  border-radius: 4px;
  transition: color .19s, background .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #BCA77B;
  background: rgba(255,255,255,0.09);
}
@media (max-width: 1040px) {
  .main-nav ul {gap: 10px;}
  .main-nav .cta.primary {margin-left: 8px;}
}
@media (max-width: 900px) {
  .main-nav ul {display: none;}
  .main-nav .cta.primary {display: none;}
  .mobile-menu-toggle {display: block;}
}
@media (max-width: 600px) {
  .main-nav {padding: 14px 7px;}
}

/* SECTION, FLEX CONTAINERS, CARDS, FEATURES */
.features-grid, .competences-grid, .category-list, .author-intros {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
}
.features-grid > div, .competences-grid > div, .category-list > li, .author-intros > div {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(188,167,123,0.06);
  padding: 28px 24px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.16s;
  gap: 13px;
}
.features-grid > div img,
.competences-grid > div img,
.category-list > li > img
{
  height: 42px; width: 42px;
  margin-bottom: 7px;
  opacity: 0.85;
}
.features-grid > div:hover, .competences-grid > div:hover {
  box-shadow: 0 8px 24px 0 rgba(188,167,123,0.13);
}
@media (max-width: 900px) {
  .features-grid, .competences-grid, .category-list, .author-intros {
    flex-wrap: wrap;
    gap: 16px;
  }
  .features-grid > div, .competences-grid > div, .category-list > li, .author-intros > div {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    padding: 22px 12px;
  }
}

/* SERVICE, VALUE, STEPS LISTS */
.service-list, .values-list, .steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.service-list li, .values-list li, .steps-list li {
  background: #fff;
  box-shadow: 0 2px 12px rgba(188,167,123,0.07);
  border-radius: 18px;
  padding: 22px 20px;
  margin-bottom: 0;
  font-size: 1.09rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.service-list li strong {
  color: #9C7A2E;
  font-size: 1.04rem;
  margin-top: 2px;
}
.service-list span {
  color: #BCA77B;
  font-size: 1rem;
  font-weight: normal;
}
.steps-list li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
}
.steps-list img {
  height: 36px; width: 36px;
  margin-bottom: 5px;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px 16px 28px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(46,78,70,0.06);
  flex-direction: column;
  position: relative;
  font-size: 1.06rem;
}
.testimonial-card p {
  margin-bottom: 0;
  color: #BCA77B;
  align-self: flex-end;
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .testimonial-card {
    padding: 18px 8px 12px 12px;
  }
}

/* SPECIAL FLEX PATTERNS */
.section {
  margin-bottom: 60px; padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(188,167,123,0.08);
  padding: 24px 20px;
  min-width: 210px;
  flex: 1 1 230px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .section { padding: 28px 8px; margin-bottom: 32px;}
  .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}

/* FORMS AND INPUTS */
input, textarea, select {
  font-family: 'Lora', serif;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid #BCA77B;
  background: #FAF9F6;
  transition: border-color 0.16s;
  margin-bottom: 14px;
  outline: none;
  resize: vertical;
}
input:focus, textarea:focus, select:focus {
  border-color: #2E4E46;
}
label {
  font-size: 1.02rem;
  color: #2E4E46;
  margin-bottom: 7px;
  display: block;
  font-family: 'Montserrat', serif;
}

/* MAP EMBED, CONTACT DETAILS */
.map-embed img {
  width: 100%;
  max-width: 440px;
  display: block;
  border-radius: 14px;
  box-shadow: 0 2px 18px rgba(46,78,70,0.06);
}
.contact-details {
  margin-bottom: 12px;
  font-size: 1.07rem;
}

/* FOOTER */
footer {
  background: #F7F5EC;
  border-top: 1px solid #E0DED6;
  padding: 36px 0 20px 0;
  font-size: 1.04rem;
  color: #2E4E46;
  letter-spacing: .04em;
}
.footer-logo-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 14px;
}
.footer-logo-nav img {
  height: 32px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #2E4E46;
  text-decoration: none;
  font-weight: 500;
  background: none;
  border-radius: 8px;
  padding: 4px 8px;
  font-family: 'Montserrat', serif;
  transition: background .14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #E0DED6;
  color: #BCA77B;
}
.contact-summary p {
  font-size: .99rem;
  margin-bottom: 7px;
  color: #585555;
  font-family: 'Lora', serif;
}
@media (max-width: 768px) {
  .footer-logo-nav, .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .footer-logo-nav {
    margin-bottom: 6px;
  }
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 10px; right: 10px; bottom: 20px;
  background: #fff;
  color: #2E4E46;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(46,78,70,0.11);
  padding: 20px 32px;
  z-index: 5000;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
  transition: opacity 0.3s, transform 0.4s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100px);
}
.cookie-banner p {
  flex: 1 1 220px;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-modal-overlay {
  position: fixed;
  left:0; top:0; width:100vw; height:100vh;
  z-index: 5200;
  background: rgba(46,78,70,0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 420px;
  width: 96vw;
  box-shadow: 0 4px 32px 0 rgba(46,78,70,0.13);
  padding: 28px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  animation: cookie-modal-in 0.34s cubic-bezier(.82,.03,.41,1.01);
}
@keyframes cookie-modal-in {
  0% { opacity: 0; transform: scale(0.7) translateY(100px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h3 {
  font-size: 1.39rem;
}
.cookie-modal .modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #9C7A2E;
  cursor: pointer;
  opacity: 0.95;
  transition: background .13s;
  border-radius: 6px;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #E0DED6;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px; 
}
.cookie-modal .category-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-modal .category-row label {
  font-size: 1.07rem;
}
.cookie-modal .toggle {
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: #E0DED6;
  position: relative;
  border: 1px solid #BCA77B;
  transition: background 0.16s;
}
.cookie-modal .toggle input {
  display: none;
}
.cookie-modal .toggle-slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #BCA77B;
  transition: transform .2s cubic-bezier(.44,.13,.47,1.11);
}
.cookie-modal .toggle input:checked + .toggle-slider {
  background: #2E4E46;
  transform: translateX(20px);
}
.cookie-modal .toggle[aria-disabled="true"] {
  background: #c3c3be;
  border: 1px solid #eae9e2;
}
.cookie-modal .toggle[aria-disabled="true"] .toggle-slider {
  background: #ccc8b3;
}
.cookie-modal .category-row label[for^="cookie-essential"] {
  color: #999781;
  font-style: italic;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 11px;
  justify-content: flex-end;
  margin-top:14px;
}

/* MISC */
.text-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(46,78,70,0.06);
  padding: 22px 16px 22px 24px;
}
.author-intros {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.author-intros > div {
  border-left: 4px solid #BCA77B;
  background: #fff;
  border-radius: 14px;
  padding: 20px 20px 12px 20px;
  box-shadow: 0 2px 14px 0 rgba(46,78,70,0.06);
  font-size: 1.06rem;
  min-width: 210px;
  flex: 1 1 220px;
}

/* UTILITIES */
.bg-accent { background: #E0DED6; }
.bg-white { background: #fff; }
.text-accent { color: #BCA77B; }
.text-secondary { color: #585555; }
.rounded-full { border-radius: 9999px; }
.hide { display: none !important; }

/* RESPONSIVE ADAPTATIONS */
@media (max-width: 575px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
  .main-nav {
    padding: 8px 2px;
  }
  .cookie-banner { flex-direction: column; gap: 10px; padding: 16px 10px; left: 0; right: 0; }
}

/* MICROINTERACTIONS, HOVER SHADOWS, ETC. */
.card, .testimonial-card, .features-grid > div, .competences-grid > div, .service-list li {
  transition: box-shadow 0.15s, transform 0.13s;
}
.card:hover, .testimonial-card:hover, .features-grid > div:hover, .competences-grid > div:hover, .service-list li:hover {
  box-shadow: 0 6px 32px 0 rgba(46,78,70,0.11);
  transform: translateY(-3px) scale(1.018);
}
.cta:active, button:active, .cookie-btn:active {
  filter: brightness(98%);
  transform: scale(0.99);
}
img { max-width: 100%; display: block; }

/* ACCESSIBILITY & FOCUS */
a:focus, button:focus, .cta:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus, .cookie-btn:focus, .footer-nav a:focus {
  outline: 2px solid #BCA77B;
  outline-offset: 2px;
}

/* NO GRID OR COLUMNS! */
/* Only Flexbox used everywhere for all layouts! */

/* END OF CSS */
