/* CSS Reset & Base 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F7E6DC;
  color: #3B2B22;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  height: auto;
  border: none;
}
a {
  color: #50345A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #AD5A15;
  outline: none;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #50345A;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.18;
}
h1 { font-size: 2.8rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 8px; }
h4 { font-size: 1.1rem; margin-bottom: 6px; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }
.subtitle {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1.2rem;
  color: #857153;
  margin-bottom: 30px;
  font-style: italic;
}
strong {
  color: #AD5A15;
  font-weight: 700;
}

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

/***** HEADER & NAVIGATION *****/
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(80,52,90,0.07);
  padding: 0;
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
}
header img {
  height: 44px;
  width: auto;
}
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
nav a {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 12px;
  color: #50345A;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
nav a:hover, nav a:focus {
  background: #F7E6DC;
  color: #AD5A15;
}
nav .cta-primary {
  background: #AD5A15;
  color: #fff;
  font-weight: 700;
  border-radius: 28px;
  padding: 10px 22px;
  margin-left: 10px;
  box-shadow: 0 2px 6px rgba(80,52,90,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
nav .cta-primary:hover, nav .cta-primary:focus {
  background: #D18B5B;
  color: #fff;
  box-shadow: 0 4px 16px rgba(173,90,21,0.13);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #AD5A15;
  padding: 4px 8px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.19s;
}
.mobile-menu-toggle:focus {
  background: #eee8e3;
}

/***** MOBILE MENU ******/
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #F7E6DC;
  transform: translateX(-100vw);
  z-index: 1400;
  transition: transform 0.35s cubic-bezier(.65,.05,.36,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-shadow: 2px 0 16px rgba(80,52,90,0.13);
  padding: 0 0 60px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: none;
  border: none;
  margin: 20px 20px 0 0;
  cursor: pointer;
  color: #AD5A15;
  padding: 2px 8px;
  border-radius: 5px;
  transition: background 0.16s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #e8d6c6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 30px 26px 16px 26px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1.2rem;
  padding: 12px 0 12px 0;
  color: #50345A;
  width: 100%;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 6px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #F7E6DC;
  color: #AD5A15;
}

/***** HERO SECTION *****/
.hero-section {
  background: #F5ECE0 url('../assets/hero-nature-texture.svg') repeat top left;
  padding: 60px 0 64px 0;
  border-radius: 0 0 72px 0 / 0 0 44px 0;
  box-shadow: 0 2px 10px rgba(80,52,90,0.03);
}
.hero-section .container {
  align-items: center;
  justify-content: center;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  max-width: 600px;
  padding: 0 12px;
}
.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 14px;
  color: #50345A;
}
.hero-section .subtitle {
  color: #857153;
  margin-bottom: 28px;
}
.hero-section .cta-primary {
  align-self: flex-start;
}

/***** CTA BUTTONS *****/
.cta-primary {
  display: inline-block;
  background: #AD5A15;
  color: #fff !important;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1.07rem;
  border: none;
  border-radius: 32px;
  padding: 12px 30px;
  font-weight: 800;
  box-shadow: 0 2px 10px rgba(173,90,21,0.07);
  transition: background 0.2s, box-shadow 0.17s, transform 0.16s;
  cursor: pointer;
  margin-top: 4px;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  position: relative;
}
.cta-primary:hover, .cta-primary:focus {
  background: #D18B5B;
  color: #fff;
  transform: translateY(-1px) scale(1.015);
  box-shadow: 0 4px 24px rgba(210,139,91,0.15), 0 0.5px #C8D9BD;
  outline: none;
}

/***** SECTION FEATURES, CARDS, GRIDS *****/
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.feature {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(80,52,90,0.09);
  padding: 28px 20px 22px 20px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature img {
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
  filter: drop-shadow(0 3px 10px #e8d6c6af);
}
.feature h3 {
  font-size: 1.18rem;
  color: #5e3b49;
  margin-bottom: 6px;
}
.feature p {
  color: #857153;
  font-size: 1rem;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 8px 36px 4px rgba(173,90,21,0.10), 0 2px 6px rgba(80,52,90,0.07);
  transform: translateY(-2px) scale(1.03);
}

/***** CARDS SYSTEM *****/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(80,52,90,0.09);
  padding: 24px 18px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.19s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(173,90,21,0.13);
  transform: translateY(-2px) scale(1.02);
}

/***** SERVICES LIST *******/
.services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
}
.services-list li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(80,52,90,0.09);
  padding: 22px 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.services-list h3 {
  font-size: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: #50345A;
  margin-bottom: 2px;
  margin-right: 12px;
}
.services-list .price {
  background: #E9D7BC;
  color: #AD5A15;
  border-radius: 14px;
  padding: 2px 10px;
  margin-left: 8px;
  font-size: 0.96rem;
  font-weight: 700;
}

/***** TESTIMONIALS *****/
.testimonials-section {
  background: #F5F9F4;
  border-radius: 26px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials-section .container {
  align-items: center;
}
.testimonials-section h2 {
  color: #365123;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(80,52,90,0.06);
  border-radius: 22px;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 680px;
  font-size: 1.04rem;
  color: #3B2B22;
  position: relative;
  transition: box-shadow 0.16s, transform 0.14s;
}
.testimonial-card blockquote {
  background: none;
  border-left: 4px solid #B9CBA6;
  margin: 0;
  padding-left: 16px;
  font-style: italic;
  color: #2A2B19;
  font-size: 1rem;
}
.testimonial-author {
  margin-left: 22px;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 600;
  color: #AD5A15;
  font-size: 0.95rem;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 34px rgba(98,130,85,0.12);
  transform: translateY(-2px) scale(1.02);
}

/***** CTA SECTIONS *****/
.cta-section {
  background: #B9CBA6;
  color: #253124;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 16px rgba(38,55,30,0.04);
}
.cta-section h2 {
  color: #50345A;
  margin-bottom: 18px;
}
.cta-section .cta-primary {
  margin-top: 12px;
  background: #AD5A15;
  color: #fff;
}

/***** TYPOGRAPHY SCALE *****/
.text-section {
  font-family: 'Nunito', Arial, sans-serif;
  color: #523800;
  font-size: 1.04rem;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 14px;
}
.text-section h2, .text-section h3 {
  color: #50345A;
  font-family: 'Playfair Display', serif;
  margin-bottom: 3px;
  font-weight: 700;
}
.text-section ul  {
  margin-left: 22px;
  margin-bottom: 10px;
}
.text-section li {
  margin-bottom: 6px;
}

/***** CONTACT DETAILS *****/
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 15px;
  line-height: 1.6;
  font-size: 1.08rem;
}
.contact-details img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  filter: grayscale(0.15) opacity(0.73);
  vertical-align: middle;
}
.contact-details a {
  color: #AD5A15;
}

/***** FOOTER *****/
footer {
  background: #3F3933;
  color: #fff;
  padding: 56px 0 12px 0;
  border-radius: 32px 32px 0 0 /
                  28px 28px 0 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}
.footer-brand img {
  width: 54px;
  height: 54px;
  margin-right: 6px;
  filter: drop-shadow(0 3px 6px #46321e44);
}
.footer-nav, .footer-utility {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.footer-nav a,
.footer-utility a {
  color: #F7E6DC;
  font-size: 1.02rem;
  transition: color 0.18s, text-decoration 0.14s;
  padding-bottom: 2px;
}
.footer-nav a:hover, .footer-utility a:hover {
  color: #AD5A15;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 13px;
  font-size: 0.96rem;
}
.footer-contact img {
  width: 18px;
  vertical-align: middle;
  margin-right: 7px;
  filter: grayscale(100%) brightness(2);
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 10px 0;
}
.footer-social img {
  width: 26px;
  height: 26px;
  filter: grayscale(25%) opacity(0.93);
  transition: filter 0.13s;
}
.footer-social a:hover img,
.footer-social a:focus img {
  filter: none;
}
.footer-copyright {
  width: 100%;
  text-align: center;
  font-size: 0.94rem;
  color: #d3beaa;
  margin-top: 12px;
}

/***** COOKIE CONSENT BANNER *****/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #FFF5E2;
  color: #3B2B22;
  z-index: 2500;
  box-shadow: 0 -2px 16px rgba(80,52,90,0.10);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 24px 18px 18px 18px;
  gap: 24px;
  font-size: 1rem;
  border-radius: 24px 24px 0 0;
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.36s cubic-bezier(.52,.04,.41,1), opacity 0.23s;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner .cookie-text {
  flex: 2 1 220px;
  font-size: 1.01rem;
  color: #3B2B22;
  max-width: 390px;
  margin-right: 18px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
.cookie-btn {
  border: none;
  border-radius: 22px;
  padding: 9px 22px;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 800;
  background: #AD5A15;
  color: #fff;
  box-shadow: 0 2px 8px rgba(173,90,21,0.10);
  margin-right: 6px;
  transition: background 0.19s, transform 0.16s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #D18B5B;
  transform: scale(1.05);
}
.cookie-btn.reject {
  background: #B9CBA6;
  color: #50345A;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #91ad7a;
  color: #fff;
}
.cookie-btn.settings {
  background: #F7E6DC;
  color: #AD5A15;
  box-shadow: none;
  border: 1.5px solid #AD5A15;
}
.cookie-btn.settings:hover,.cookie-btn.settings:focus {
  background: #fff;
  color: #73570E;
}

/***** COOKIE SETTINGS MODAL *****/
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left:0; top:0; width:100vw; height:100vh;
  z-index: 3000;
  background: rgba(80,52,90,0.30);
  justify-content: center;
  align-items: center;
}
.cookie-modal-overlay.visible {
  display: flex;
}
.cookie-modal {
  background: #FFF5E2;
  color: #3B2B22;
  border-radius: 18px;
  padding: 36px 32px 26px 32px;
  width: 97vw;
  max-width: 400px;
  box-shadow: 0 8px 32px rgba(80,52,90,0.18);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalOpen 0.36s cubic-bezier(.65,.04,.5,1);
}
@keyframes cookieModalOpen {
  from { transform: translateY(70px) scale(0.97); opacity: 0.2;}
  to { transform: translateY(0) scale(1); opacity: 1;}
}
.cookie-modal h2 {
  font-size: 1.18rem;
  color: #AD5A15;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.01rem;
}
.cookie-modal .cookie-switch {
  width: 38px;
  height: 20px;
  border-radius: 10px;
  background: #B9CBA6;
  position: relative;
  margin-left: 8px;
  transition: background 0.16s;
}
.cookie-modal .cookie-switch input[type="checkbox"] {
  opacity: 0;
  width: 38px; height: 20px;
  position: absolute; left: 0; top: 0;
  margin: 0; cursor: pointer;
  z-index: 1;
}
.cookie-modal .cookie-switch span {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  border-radius: 8px;
  background: #fff;
  transition: left 0.18s;
}
.cookie-modal .cookie-switch input:checked + span {
  left: 20px;
  background: #AD5A15;
}
.cookie-modal .cookie-category.essential {
  opacity: 0.8;
  font-style: italic;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal-close {
  position: absolute;
  right: 16px; top: 16px;
  background: none;
  border: none;
  color: #AD5A15;
  font-size: 1.4rem;
  cursor: pointer;
  border-radius: 5px;
  padding: 2px 10px;
  transition: background 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #ebd9cc;
}

/***** RESPONSIVE FLEX LAYOUTS ALL PAGES *****/
.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;
}

/***** ADDITIONAL FLEX PATTERNS *****/
.footer-brand, .footer-contact, .footer-social { gap: 10px; }
.footer-nav, .footer-utility { gap: 10px; }

/***** ORNAMENTS & ORGANIC SHAPES *****/
.hero-section,
footer,
.section,
.cta-section,
.testimonials-section {
  border-radius: 36px 18px 30px 18px / 30px 22px 36px 12px;
  position: relative;
}

/***** SPACING & GAPS CONSISTENCY ******/
.section, .testimonials-section, .cta-section { margin-bottom: 60px; padding: 40px 20px; }
.card-container, .features-grid, .content-grid, .services-list { gap: 24px; }
.card, .feature, .testimonial-card { margin-bottom: 20px; }
.text-image-section, .feature-item { gap: 15px; }

/***** ANIMATIONS & MICROINTERACTIONS *****/
.card,
.feature,
.testimonial-card,
.cta-primary,
.cookie-btn {
  transition: box-shadow 0.19s, transform 0.16s, background 0.2s, color 0.17s;
}
@media (hover: hover) {
  .card:hover, .feature:hover,
  .testimonial-card:hover,
  .cta-primary:hover, .cookie-btn:hover {
    filter: brightness(1.02) drop-shadow(0 3px 16px #d6b89c33);
  }
}

/***** RESPONSIVE DESIGN *****/
@media (max-width: 1024px) {
  .container {
    max-width: 90vw;
    padding: 0 12px;
  }
  footer .container { flex-direction: column; gap: 18px; align-items: flex-start;}
}
@media (max-width: 900px) {
  .features-grid,
  .content-grid {
    gap: 16px;
  }
  .feature, .card {
    min-width: 180px;
    max-width: 360px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  header .container {
    padding: 10px 10px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .hero-section {
    padding: 42px 0 32px 0;
    border-radius: 0 0 44px 0 / 0 0 22px 0;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
  .features-grid, .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .testimonials-section, .cta-section, .section {
    border-radius: 14px;
    padding: 18px 5px;
    margin-bottom: 32px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 10px;
    max-width: 100vw;
  }
  .footer-brand {
    flex-direction: row;
    gap: 8px;
  }
}
@media (max-width: 560px) {
  html {
    font-size: 15px;
  }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.12rem; }
  .hero-section { padding: 22px 0 13px 0; }
  .testimonial-card {
    padding: 8px 5px;
    margin-bottom: 14px;
  }
  .footer-copyright {
    font-size: 0.89rem;
    padding: 4px 2px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 18px 8px 18px 8px;
    gap: 14px;
  }
  .cookie-btn {
    font-size: 0.97rem;
    padding: 7px 10px;
  }
}
/***** END CSS *****/
