/* === 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 { scroll-behavior: smooth; }
body {
  line-height: 1.5;
  background: #FCF9F4;
  color: #262A27;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
a {
  color: #174D59;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #174D59;
  text-decoration: underline;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 20px;
}
li { margin-bottom: 8px; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #174D59;
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; }
p, .subheadline {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 18px;
  color: #37443A;
}
strong { font-weight: 700; }

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ============ HEADER & NAV ============ */
header {
  background: #FEFBEA;
  border-bottom: 1px solid #EEEBE0;
  box-shadow: 0 2px 8px rgba(30, 60, 36, 0.03);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}
header a img { height: 48px; }

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-left: auto;
}
.main-nav a {
  padding: 6px 2px;
  border-radius: 3px;
  color: #174D59;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.main-nav a.cta-btn {
  background: #174D59;
  color: #fff;
  border-radius: 24px;
  padding: 8px 24px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-left: 6px;
  box-shadow: 0 2px 8px rgba(23,77,89,0.07);
  transition: background 0.2s, transform 0.20s;
}
.main-nav a.cta-btn:hover, .main-nav a.cta-btn:focus {
  background: #1F6C45;
  color: #fff;
  transform: translateY(-1.5px) scale(1.04);
}

.main-nav a:hover, .main-nav a:focus {
  background: #E3C77A;
  color: #174D59;
  text-decoration: none;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #174D59;
  cursor: pointer;
  margin-left: 16px;
  z-index: 160;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: none;
  color: #1F6C45;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(252,249,244,0.96);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.7,0.1,0.22,1);
  z-index: 200;
  box-shadow: -2px 0 16px rgba(106,77,23,0.03);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #174D59;
  align-self: flex-end;
  margin: 36px 28px 12px 0;
  cursor: pointer;
  z-index: 210;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #1F6C45;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100vw;
  padding: 36px 36px 24px 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: #174D59;
  background: none;
  border-radius: 6px;
  padding: 12px 0 12px 4px;
  width: 100%;
  transition: background 0.18s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E3C77A;
  color: #174D59;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 8px;
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ============ HERO SECTION ============ */
.hero {
  min-height: 280px;
  background: #EEF0EA;
  border-radius: 0 0 60px 60px/0 0 48px 48px;
  margin-bottom: 40px;
  box-shadow: 0 6px 40px rgba(23,77,89,0.06);
}
.hero .container {
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 240px;
}
.hero .content-wrapper {
  align-items: flex-start;
  text-align: left;
}
@media (max-width: 650px) {
  .hero {
    border-radius: 0 0 30px 30px/0 0 28px 28px;
    min-height: 160px;
    margin-bottom: 24px;
  }
  .hero h1 { font-size: 1.45rem; margin-bottom: 12px; }
}
.subheadline {
  font-size: 1.15rem;
  color: #488165;
  margin-bottom: 26px;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
}

/* ============ FLEX CONTAINER CLASSES ============ */
.features-grid, .values-grid, .offers-list, .team-member-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  margin-bottom: 20px;
}
.features-grid, .values-grid { justify-content: flex-start; }
.team-member-list { gap: 32px; justify-content: flex-start; }
.offers-list {
  gap: 32px;
  justify-content: flex-start;
}

.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FCF9F4;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(52,74,61, 0.07);
  padding: 28px 32px 20px 32px;
  margin-bottom: 20px;
  border: 1.5px solid #E3C77A;
  max-width: 580px;
  position: relative;
  min-width: 0;
}
.testimonial-card .testimonial-quote {
  font-size: 1.08rem;
  color: #224532;
  font-weight: 500;
  margin-bottom: 12px;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card .testimonial-meta {
  font-size: 0.92rem;
  color: #5F745A;
  font-style: italic;
}
.feature-item, .feature-block, .value-item, .offer-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F8F6F1;
  border-radius: 24px 44px 30px 24px/32px 34px 18px 32px;
  box-shadow: 0 2px 16px rgba(52,74,61,0.09);
  padding: 28px 28px 24px 28px;
  margin-bottom: 20px;
  border: 1px solid #E8E1BD;
  min-width: 220px;
  max-width: 340px;
}
.feature-block img, .value-item img {
  width: 40px; height: 40px;
  margin-bottom: 2px;
}
.offer-block {
  min-width: 220px;
  max-width: 320px;
  transition: box-shadow 0.20s, transform 0.15s;
}
.offer-block:hover, .feature-block:hover, .value-item:hover {
  box-shadow: 0 8px 32px rgba(23, 77, 89, 0.14);
  transform: translateY(-2px) scale(1.015);
}
.offer-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}
.offer-tags span {
  background: #D2EDC4;
  color: #224532;
  font-size: 0.95rem;
  border-radius: 12px;
  padding: 2px 12px;
}
.team-member {
  background: #FCF9F4;
  border-radius: 22px 36px 16px 32px/29px 41px 13px 39px;
  box-shadow: 0 2px 12px rgba(52,74,61,0.04);
  padding: 26px 20px 18px 20px;
  min-width: 200px; max-width: 305px;
  margin-bottom: 20px;
  border: 1px solid #E3C77A;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #F8F6F1;
  border-radius: 14px 26px 20px 14px/20px 21px 14px 19px;
  padding: 20px 24px;
  border: 1px solid #E3C77A;
  box-shadow: 0 1px 6px rgba(30, 60, 36, 0.03);
}

/* ============ CONTACT DETAILS ============ */
.contact-details-box, .footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 18px 0;
}
.contact-details-box div, .footer-contact-details div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.01rem;
}
.contact-details-box a {
  color: #1F6C45;
  font-weight: 500;
}
.open-hours, .phone-teaser {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
  margin: 5px 0 12px 0;
  color: #476A4F;
}
.phone-teaser a { color: #174D59; font-weight: 600; }

/* ============ BUTTONS & CTA ============ */
.cta-btn {
  background: #174D59;
  color: #fff;
  border: none;
  border-radius: 28px 46px 24px 24px/28px 26px 18px 28px;
  padding: 13px 36px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 10px rgba(23,77,89,0.08);
  cursor: pointer;
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s, transform 0.18s, box-shadow 0.17s;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #1F6C45;
  color: #fff;
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 6px 36px rgba(30,60,36,0.13);
}

/* ============ FOOTER ============ */
footer {
  background: #EEF0EA;
  border-top: 1px solid #E3C77A;
  box-shadow: 0 -1px 8px rgba(106,77,23,0.03);
  margin-top: 50px;
  font-size: 1rem;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  padding: 34px 20px 20px 20px;
}
.footer-navigation {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.footer-navigation a {
  color: #174D59;
  text-decoration: underline;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  color: #498142;
}
.footer-contact-details {
  gap: 8px;
  color: #37443A;
}
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  opacity: 0.9;
  transition: opacity 0.16s;
}
.footer-social a:hover img, .footer-social a:focus img {
  opacity: 1;
}
@media (max-width: 950px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 28px 12px 18px 12px;
  }
}

/* ============ RESPONSIVE FLEX CONTAINERS ============ */
@media (max-width: 900px) {
  .features-grid, .offers-list, .values-grid, .team-member-list {
    gap: 18px;
  }
  .feature-block, .value-item, .offer-block, .team-member {
    min-width: 180px;
    max-width: 99vw;
    padding: 20px 14px 15px 16px;
  }
}
@media (max-width: 730px) {
  .features-grid, .offers-list, .values-grid, .team-member-list {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 600px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .section {
    margin-bottom: 42px;
    padding: 22px 6px;
  }
  .content-wrapper {
    padding: 0 2px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ============ TABLES ============ */
table { width: 100%; border-collapse: collapse; margin: 20px 0; }
th, td {
  border: 1px solid #E3C77A;
  padding: 12px 6px;
  text-align: left;
}
th {
  background: #F8F6F1;
  color: #174D59;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}

/* ============ MICRO-INTERACTIONS ============ */
.card, .card-content, .feature-block, .value-item, .offer-block {
  transition: box-shadow 0.19s, transform 0.17s;
}
.card:hover, .feature-block:hover, .offer-block:hover, .value-item:hover {
  box-shadow: 0 8px 28px rgba(38, 42, 39, 0.09);
  transform: scale(1.018) translateY(-3px);
}

/* ============ ORGANIC/NATURAL ELEMENTS ============ */
.feature-block, .value-item, .offer-block, .team-member, .testimonial-card {
  background: #FCF9F4;
  border: 1px solid #E8E1BD;
  border-radius: 24px 44px 30px 24px/32px 34px 18px 32px;
  box-shadow: 0 2px 16px rgba(52,74,61,0.08);
}

/* ============ COOKIES BANNER ============ */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2400;
  background: #E3C77A;
  color: #174D59;
  box-shadow: 0 -2px 18px rgba(106,77,23,0.07);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  padding: 24px 18px;
  font-size: 1rem;
  transition: transform 0.33s cubic-bezier(.77,0,.18,1);
}
.cookie-banner.hide { transform: translateY(120%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner-message {
  max-width: 590px;
  font-size: 0.99rem;
  margin-bottom: 6px;
  color: #174D59;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  margin-top: 3px;
}
.cookie-btn {
  background: #174D59;
  color: #fff;
  border: none;
  border-radius: 22px 34px 15px 21px/16px 13px 15px 27px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 24px;
  margin: 0;
  cursor: pointer;
  transition: background 0.18s, color 0.17s, transform 0.13s;
}
.cookie-btn.secondary {
  background: #fff;
  color: #174D59;
  border: 1.5px solid #174D59;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #1F6C45;
  color: #fff;
  transform: translateY(-1px) scale(1.03);
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #E3C77A;
  color: #174D59;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 20px 4px 20px 4px;
  }
  .cookie-banner-actions { gap: 9px; }
}

/* Cookie Modal Popup (Settings) */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top:0; width: 100vw; height: 100vh;
  background: rgba(53, 77, 54, 0.28);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open { display: flex; }
.cookie-modal {
  background: #FEFBEA;
  border-radius: 32px;
  box-shadow: 0 10px 64px rgba(52,74,61,0.21);
  padding: 38px 28px 32px 28px;
  min-width: 290px;
  max-width: 98vw;
  min-height: 225px;
  color: #174D59;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  animation: popfade 0.27s cubic-bezier(.46,1.26,.5,1.15);
}
@keyframes popfade {
  0%{ opacity: 0; transform: scale(0.94) translateY(20px); }
  100%{ opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.22rem;
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  background: #FAF9EE;
  padding: 18px 12px;
  border-radius: 17px 34px 18px 24px/22px 17px 18px 13px;
  border: 1px solid #E3C77A;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #174D59;
}
.cookie-toggle {
  margin: 0 5px 0 3px;
  accent-color: #174D59;
  width: 24px; height: 24px;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  font-size: 1.8rem;
  border: none;
  background: none;
  color: #174D59;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #1F6C45;
}

/* ============ UTILITY ============ */
.m-auto { margin: 0 auto; }
.text-center { text-align: center; }
.hide { display: none !important; }

/* ============ MEDIA QUERIES: TYPOGRAPHY AND LAYOUT ============ */
@media (max-width: 600px) {
  body { font-size: 15px; }
  h1 { font-size: 1.33rem; margin-bottom: 12px; }
  h2 { font-size: 1.1rem; margin-bottom: 9px; }
  h3 { font-size: 1rem; }
  .footer-navigation, .footer-social { gap: 10px; }
}

/* ============ END OF CSS ============ */
