/* 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;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F4F2EE;
  color: #2E2722;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { 
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font: inherit;
  outline: none;
  border: none;
  background: none;
}
ul, ol {
  list-style: none;
}
a {
  color: #185A5C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #654B37;
  text-decoration: underline;
}

/* BRAND FONTS */
h1, h2, h3, h4, .logo {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.14; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; color: #185A5C; }
h3 { font-size: 1.25rem; margin-bottom: 12px; color: #654B37; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; }
.subtitle { font-size: 1.25rem; color: #654B37; max-width: 600px; margin-bottom: 28px; font-family: 'Montserrat', Arial, sans-serif; }

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}


/*************************************
   HEADER & NAVIGATION
**************************************/
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(24,90,92, 0.08);
  z-index: 101;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 3px;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
  color: #185A5C;
  position: relative;
  z-index: 1;
}
nav a:hover, nav a:focus {
  background: #F4F2EE;
  color: #654B37;
}
.cta.primary, 
.cta {
  display: inline-flex;
  align-items: center;
  background: #185A5C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 13px 34px;
  border-radius: 32px;
  margin-left: 20px;
  box-shadow: 1px 4px 18px 0 rgba(24,90,92,0.11);
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.22s, box-shadow 0.2s, transform 0.13s;
}
.cta.primary:hover, 
.cta:hover {
  background: #654B37;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 16px 0 rgba(101,75,55,0.12);
}
.button, button, input[type=submit] {
  background: #654B37;
  color: #fff;
  border-radius: 24px;
  padding: 11px 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.1s;
}
.button:hover, button:hover, input[type=submit]:hover {
  background: #185A5C;
  color: #fff;
  transform: translateY(-1px) scale(1.02);
}

/* MOBILE MENU (burger & overlay) */
.mobile-menu-toggle {
  display: none;
  background: #185A5C;
  color: #fff;
  font-size: 2rem;
  border-radius: 7px;
  padding: 4px 18px 0 14px;
  margin-left: 10px;
  border: none;
  cursor: pointer;
  line-height: 1;
  z-index: 105;
  transition: background 0.2s, box-shadow 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #654B37;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fffcf6;
  box-shadow: 0 14px 64px 0 rgba(24,90,92,0.15);
  z-index: 130;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.25,1,.5,1);
  padding-top: 32px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #185A5C;
  color: #fff;
  font-size: 2rem;
  align-self: flex-end;
  margin: 14px 28px 0 0;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #654B37;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 27px;
  padding: 36px 32px;
  width: 100%;
  font-size: 1.25rem;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #185A5C;
  padding: 12px 0 6px 0;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.13rem;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4F2EE;
  color: #654B37;
}

/*************************************
   HERO / BANNER
**************************************/
.hero {
  width: 100%;
  min-height: 340px;
  background: linear-gradient(140deg, #F4F2EE 73%, #C5F4F0 100%);
  border-bottom: 6px solid #185A5C;
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.hero .container {
  justify-content: center;
  align-items: center;
  min-height: 270px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 700px;
  padding: 20px 0;
}

/*************************************
   SECTIONS & CARDS
**************************************/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 44px;
}
.card {
  background: #fff;
  box-shadow: 0 6px 38px 0 rgba(24,90,92,0.07);
  border-radius: 22px;
  margin-bottom: 20px;
  position: relative;
  padding: 26px 30px 26px 30px;
  display: flex;
  flex-direction: column;
  flex: 1 1 270px;
  min-width: 270px;
  max-width: 370px;
  gap: 15px;
  transition: transform 0.16s, box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-7px) scale(1.025);
  box-shadow: 0 10px 34px 0 rgba(101,75,55,0.13);
  z-index: 3;
}

/*************************************
   FLEX GROUPS & LAYOUTS
**************************************/
.content-grid, .feature-grid, .category-grid, .value-list, .benefit-list, .service-list, .testimonial-grid, .inspiration-articles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > li,
.value-list > li,
.benefit-list > li,
.service-list > li,
.category-grid > div,
.testimonial-grid > div,
.inspiration-articles > article {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 1px 16px 0 rgba(101,75,55, 0.07);
  padding: 27px 28px 21px 28px;
  margin-bottom: 21px;
  flex: 1 1 250px;
  min-width: 240px;
  max-width: 340px;
  transition: box-shadow 0.12s, transform 0.14s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature-grid > li:hover,
.value-list > li:hover,
.benefit-list > li:hover,
.service-list > li:hover,
.category-grid > div:hover,
.inspiration-articles > article:hover {
  box-shadow: 0 7px 27px 0 rgba(24,90,92,0.10);
  transform: translateY(-4px) scale(1.018);
}
.feature-grid img, .value-list img, .benefit-list img, .service-list img, .category-grid img {
  margin-bottom: 16px;
  width: 36px; height: 36px;
}

/*************************************
   TESTIMONIALS
**************************************/
.testimonials {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 27px 0 rgba(24,90,92,0.08);
  min-width: 260px;
  max-width: 350px;
  margin-bottom: 20px;
  color: #2E2722;
  font-size: 1rem;
  font-style: italic;
  position: relative;
}
.testimonial-card strong {
  font-size: 0.95rem;
  font-style: normal;
  color: #185A5C;
}

/*************************************
   FEATURES, SERVICES, VALUES, BENEFITS
**************************************/
.features, .services, .about, .contact, .legal {
  margin-bottom: 60px;
  padding: 40px 0;
}
.features .content-wrapper, .services .content-wrapper, .about .content-wrapper, .legal .content-wrapper, .contact .content-wrapper {
  gap: 32px;
}
ul.feature-grid, ul.value-list, ul.benefit-list, ul.service-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
ul.service-list > li, ul.value-list > li, ul.feature-grid > li, ul.benefit-list > li {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.category-grid {
  gap: 25px;
}
.category-filters {
  margin-top: 30px;
  font-size: 1.09rem;
  color: #654B37;
}
.category-filters ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
}
.category-filters li {
  background: #185A5C;
  color: #fff;
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 0.98em;
  font-family: 'Montserrat', Arial, sans-serif;
}
.service-price {
  color: #185A5C;
  font-weight: 700;
  font-size: 1rem;
  background: #E9F8F7;
  border-radius: 11px;
  padding: 5px 14px;
  margin-top: 7px;
}
.tip-highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 1.06rem;
  margin-top: 23px;
}
.tip-highlights li {
  background: #fff;
  color: #185A5C;
  padding: 12px 17px;
  border-radius: 13px;
  box-shadow: 0 3px 12px 0 rgba(24,90,92,0.05);
}

/*************************************
   FOOTER
**************************************/
footer {
  width: 100%;
  background: #185A5C;
  color: #fff;
  margin-top: 40px;
  padding: 36px 0 16px 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 34px;
}
footer .contact-info {
  font-size: 1.01rem;
  flex: 1 1 220px;
}
footer .contact-info a { color: #fff; text-decoration: underline; }
footer .footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.92em;
  margin-top: 7px;
}
footer .footer-menu a {
  color: #fff;
  transition: color 0.18s;
}
footer .footer-menu a:hover, footer .footer-menu a:focus {
  color: #FAC660;
}

/*************************************
     COOKIE CONSENT BANNER & MODAL
**************************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fffcf6;
  color: #2E2722;
  box-shadow: 0 -2px 24px 0 rgba(101,75,55, 0.11);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 10px;
  gap: 30px;
  font-size: 1rem;
  transition: transform 0.33s, opacity 0.22s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
}
.cookie-banner button {
  border-radius: 26px;
  font-size: 1rem;
  padding: 9px 22px;
  margin: 0;
  transition: background 0.17s, color 0.17s, box-shadow 0.16s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.cookie-banner .cookie-accept {
  background: #185A5C;
  color: #fff;
  border: none;
}
.cookie-banner .cookie-accept:hover {
  background: #654B37;
}
.cookie-banner .cookie-reject {
  background: #fff;
  border: 2px solid #185A5C;
  color: #185A5C;
}
.cookie-banner .cookie-reject:hover {
  background: #185A5C;
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: #654B37;
  color: #fff;
  border: none;
}
.cookie-banner .cookie-settings:hover {
  background: #185A5C;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%) scale(1);
  min-width: 335px;
  max-width: 96vw;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 48px 0 rgba(24,90,92,0.18);
  z-index: 1101;
  padding: 32px 36px 30px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 1;
  transition: opacity 0.19s, transform 0.26s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -48%) scale(0.95);
}
.cookie-modal h2 {
  margin-bottom: 10px;
  font-size: 1.38rem;
  color: #185A5C;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 13px;
  font-size: 1.08rem;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 38px;
  height: 21px;
  border-radius: 13px;
  background: #F4F2EE;
  position: relative;
  outline: none;
  box-shadow: 0 1px 8px #E9F8F7;
  transition: background 0.2s;
  cursor: pointer;
}
.cookie-modal .cookie-toggle:checked {
  background: #185A5C;
}
.cookie-modal .cookie-toggle:after {
  content: '';
  display: block;
  position: absolute;
  left: 4px;
  top: 4px;
  width: 13px;
  height: 13px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.19s;
  box-shadow: 0 0 2px #c5f4f0;
}
.cookie-modal .cookie-toggle:checked:after {
  left: 21px;
}
.cookie-modal .essential {
  opacity: 0.6;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 13px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal .button {
  min-width: 120px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1.6rem;
  color: #185A5C;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 6;
}
.cookie-modal .modal-close:hover {
  color: #654B37;
}

/*************************************
   MISC COMPONENTS
**************************************/
.mission-statement, .team-intro {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 11px 0 rgba(101,75,55,0.07);
  padding: 22px 23px 13px 23px;
}

/*************************************
   ANIMATIONS 
**************************************/
@media (prefers-reduced-motion: no-preference) {
  :root {
    --_trans-quick: 0.17s cubic-bezier(.6,.36,.49,.94);
  }
  .card, .feature-grid > li, .service-list > li, .testimonial-card {
    transition: box-shadow 0.18s var(--_trans-quick), transform 0.2s var(--_trans-quick);
  }
  .cta, .button, nav a, .mobile-menu, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner, .cookie-banner button, .cookie-modal {
    transition: background 0.18s var(--_trans-quick), color 0.18s var(--_trans-quick), transform 0.2s var(--_trans-quick), box-shadow 0.18s var(--_trans-quick), opacity 0.18s linear;
  }
}

/*************************************
   RESPONSIVE DESIGN (MOBILE-FIRST)
**************************************/
@media (max-width: 1020px) {
  .container {
    max-width: 96vw;
    padding-left: 7vw;
    padding-right: 7vw;
  }
  .card, .feature-grid > li, .service-list > li, .value-list > li, .benefit-list > li {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  nav {
    gap: 8px;
    flex-wrap: wrap;
  }
  .feature-grid, .service-list, .value-list, .benefit-list, .testimonial-grid, .category-grid, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .category-filters ul, .tip-highlights ul {
    flex-direction: column;
    gap: 10px;
  }
  .footer-menu {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 200px;
    padding-bottom: 30px;
  }
  .container {
    padding-left: 13px; 
    padding-right: 13px;
  }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  .subtitle { font-size: 1rem; }
  .content-wrapper {
    padding-left: 0;  /* Remove excessive gaps on mobile */
    padding-right: 0;
    gap: 18px;
  }
  nav, header .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-menu {
    flex-direction: column;
    gap: 7px;
    margin-top: 18px;
  }
  .testimonial-card { min-width: 180px; max-width: 100vw; }
  .tip-highlights ul, .category-filters ul {
    gap: 8px;
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  .hero .content-wrapper { padding: 0; }
  .container { padding: 0 6px; }
  .card, .feature-grid > li, .service-list > li, .value-list > li, .benefit-list > li, .testimonial-card {
    padding: 16px 7px 14px 10px;
    min-width: 93vw;
    max-width: 98vw;
  }
  .cookie-modal { padding: 19px 9px 19px 17px; min-width: 95vw; }
}

/*************************************
   TEXT-IMAGE SECTIONS (if any)
**************************************/
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

/*************************************
   ACCESSIBILITY & USABILITY
**************************************/
:focus {
  outline: 2px solid #185A5C;
  outline-offset: 1px;
}

/*************************************
   CREATIVE ARTISTIC ASSETS – COLORS
**************************************/
body, .section, .about, .features, .services, .contact, .legal {
  background: #F4F2EE;
}
.card, .feature-grid > li, .service-list > li, .value-list > li, .benefit-list > li, .testimonial-card, .inspiration-articles > article {
  position: relative;
  border: 2.4px solid #E9F8F7;
  /* Add artistic vibrant dot with ::after (decorative spiral/dot) */
}
.card::after, .feature-grid > li::after, .service-list > li::after, .testimonial-card::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 16px;
  right: 20px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fac660;
  opacity: 0.75;
  z-index: 1;
  pointer-events: none;
}

/*************************************
   MISC UTILITIES, ELEMENTS
**************************************/
strong {
  font-weight: 700;
}

/*************************************
   PRINT
**************************************/
@media print {
  header, footer, .cookie-banner, .cookie-modal { display: none !important; }
  body { background: #fff !important; }
}