/* ---- CSS RESET & BASE ---- */
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;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Lato', Arial, sans-serif;
  color: #193C32;
  background: #F9FAFB;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
a {
  color: #1d523e;
  text-decoration: none;
  transition: color 0.18s;
}
a:focus {
  outline: 2px solid #193C32;
  outline-offset: 2px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #142a24;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {font-size: 2.5rem; line-height: 1.12; margin-bottom: 24px;}
h2 {font-size: 1.8rem; line-height: 1.2; margin-bottom: 20px;}
h3 {font-size: 1.3rem; margin-bottom: 12px;}
h4, h5, h6 {font-size: 1.08rem; margin-bottom: 8px;}
p {
  font-size: 1.09rem;
  margin-bottom: 16px;
}
strong {font-weight: 700; color: #193C32;}
ul {
  margin-bottom: 16px;
  padding-left: 22px;
}
ul li {
  font-size: 1.06rem;
  padding-left: 0;
  margin-bottom: 10px;
  list-style: disc inside;
}
input[type="email"] {
  font-family: inherit;
  font-size: 1rem;
  border: 1.5px solid #C3AF87;
  border-radius: 22px;
  padding: 10px 18px;
  margin-bottom: 10px;
  outline: none;
  width: 100%;
  max-width: 310px;
  background: #fff;
  transition: border 0.18s;
}
input[type="email"]:focus {
  border-color: #193C32;
}

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 36px;
  box-shadow: 0 3px 16px rgba(60, 86, 81, 0.09);
  position: relative;
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #F9FAFB;
  margin-bottom: 20px;
  position: relative;
  border-radius: 22px;
  box-shadow: 0 2px 12px rgba(60, 86, 81, 0.08);
  padding: 26px 18px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 20px;
  background: #F5F4EF;
  padding: 20px;
  border-radius: 18px 28px 21px 24px;
  box-shadow: 0 2px 10px rgba(60, 86, 81, 0.08);
  border-left: 6px solid #C3AF87;
  color: #17382C;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #193C32;
  font-weight: 600;
  margin-left: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ---- HEADER & NAVIGATION ---- */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(60, 86, 81, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 12px 0;
  position: relative;
  z-index: 50;
}
header > a img {
  height: 47px;
  width: auto;
  margin-right: 18px;
  border-radius: 8px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  color: #193C32;
  padding: 8px 0;
  border-radius: 2px;
  transition: color 0.17s, background 0.18s;
}
header nav a:hover,
header nav a:focus {
  color: #996f0e;
  background: #EBE7D7;
}
.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.10rem;
  background: #193C32;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 12px 34px;
  margin-left: 24px;
  box-shadow: 0 2px 10px rgba(25,60,50,0.09);
  transition: background 0.19s, color 0.16s, transform 0.17s;
  cursor: pointer;
  letter-spacing: 0.01em;
  outline: none;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #23372B;
  color: #D2C292;
  transform: translateY(-2px) scale(1.03);
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #193C32;
  padding: 7px 17px;
  border-radius: 13px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #D2C292;
  color: #fff;
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25,60,50, 0.98);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.66,0,0.34,1);
  z-index: 200;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  margin: 24px 28px 8px 0;
  cursor: pointer;
  border-radius: 14px;
  padding: 4px 14px;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #D2C292;
  color: #193C32;
}
.mobile-nav {
  margin: 36px 0 0 0;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 0 32px 0 32px;
}
.mobile-nav a {
  color: #F9FAFB;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.21rem;
  font-weight: 700;
  padding: 13px 0 13px 5px;
  border-radius: 8px;
  width: 100%;
  transition: background 0.18s, color 0.17s;
  display: block;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #D2C292;
  color: #17382C;
}

/* ---- FOOTER ---- */
footer {
  background: #183427;
  color: #E9E5D0;
  padding: 38px 0 28px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
footer a {
  color: #E9E5D0;
  font-weight: 500;
  margin-right: 15px;
  font-size: 1rem;
  text-decoration: underline dotted rgba(210, 194, 146, 0.31);
  transition: color 0.18s, text-decoration 0.18s;
}
footer a:hover, footer a:focus {
  color: #D2C292;
  text-decoration: underline solid #D2C292;
}
footer img {
  height: 43px;
  width: auto;
  margin-bottom: 14px;
}
footer nav {
  display: flex;
  gap: 22px;
}
footer .text-section {
  color: #E4DECA;
  font-size: 0.98rem;
}

/* ---- SPACING & ORGANIC SHAPES ---- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F8F7F1;
  border-radius: 30px 60px 40px 24px;
  box-shadow: 0 8px 28px -7px rgba(60, 86, 81, 0.06);
  position: relative;
  min-width: 0;
}
@media (max-width:768px) {
  section {
    border-radius: 18px 26px 22px 14px;
    padding: 28px 8px;
    margin-bottom: 32px;
  }
}

/* ---- BUTTONS ---- */
button, .btn-primary {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.17s;
}
button:active, .btn-primary:active {
  transform: scale(0.97);
}

/* ---- MICRO-INTERACTIONS ---- */
.btn-primary, button, .mobile-menu-toggle {
  transition: background 0.17s, color 0.17s, box-shadow 0.18s, transform 0.15s;
}
.testimonial-card:hover, .card:hover {
  box-shadow: 0 8px 22px rgba(25,60,50,0.12), 0 1.5px 5px rgba(60, 86, 81, 0.10);
  transform: translateY(-4px) scale(1.024);
  transition: box-shadow 0.19s, transform 0.18s;
}

/* ---- ORGANIC DECORATIVE TEXTURES ---- */
section:before {
  content: "";
  display: block;
  position: absolute;
  top: -26px; right: -34px;
  width: 110px; height: 66px;
  background: rgba(210, 194, 146, 0.19);
  border-radius: 82% 23% 77% 15%/31% 51% 74% 44%;
  z-index: 0;
  pointer-events: none;
}
section:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -21px; left: -33px;
  width: 64px; height: 54px;
  background: rgba(25,60,50,0.08);
  border-radius: 74% 25% 76% 22%/59% 82% 35% 64%;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  section:before, section:after {
    display: none;
  }
}

/* ---- RESPONSIVE FLEXBOX RULES ---- */
@media (max-width: 1080px) {
  .container {
    max-width: 100vw;
    padding: 0 6vw;
  }
}
@media (max-width: 1024px) {
  .container {
    max-width: 100vw;
    padding: 0 4vw;
  }
  .content-wrapper {
    gap: 8px;
  }
}
@media (max-width: 900px) {
  header nav {
    gap: 18px;
  }
  .btn-primary {
    padding: 11px 20px;
    font-size: 1rem;
    margin-left: 8px;
  }
  section {
    padding: 30px 6px;
  }
}
@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
    padding: 8px 0 8px 0;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .btn-primary {
    margin-left: 6px;
    padding: 11px 18px;
    font-size: 1rem;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 9px;
    font-size: 1rem;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

@media (max-width: 530px) {
  h1 { font-size: 1.43rem;}
  h2 { font-size: 1.21rem; }
  .btn-primary { font-size: 0.98rem; }
  section { padding: 19px 3px; }
}

/* ---- NATURE ORGANIC COLORS ---- */
body {
  background: linear-gradient(96deg,#F9FAFB 70%,#F8F7F1 100%);
}
.section {
  background: #F8F7F1;
}
.card, .card-content {
  background: #F9FAFB;
}

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #183427;
  color: #fffbe8;
  padding: 24px 22px 18px 22px;
  font-size: 1rem;
  z-index: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  box-shadow: 0 -2px 20px rgba(25, 60, 50, .11);
  border-radius: 26px 26px 0 0;
  transition: transform 0.32s cubic-bezier(.79,0,.33,1);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.03rem;
  margin-right: 10px;
  padding: 9px 24px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  transition: background 0.19s, color 0.19s;
}
.cookie-banner .accept-all {
  background: #193C32;
  color: #fffbe8;
}
.cookie-banner .accept-all:hover, .cookie-banner .accept-all:focus {
  background: #D2C292;
  color: #183427;
}
.cookie-banner .reject-all {
  background: #fffbe8;
  color: #193C32;
  border: 1.5px solid #D2C292;
}
.cookie-banner .reject-all:hover, .cookie-banner .reject-all:focus {
  background: #D2C292;
  color: #193C32;
}
.cookie-banner .cookie-settings {
  background: none;
  color: #D2C292;
  border: 1.5px solid #D2C292;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #D2C292;
  color: #183427;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 7px;
    font-size: 0.97rem;
    border-radius: 12px 12px 0 0;
  }
}

/* ---- COOKIE MODAL ---- */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 999;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(25,60,50, 0.50);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  opacity: 1;
}
.cookie-modal-backdrop.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #F8F7F2;
  color: #183427;
  padding: 31px 29px 22px 29px;
  border-radius: 15px 38px 19px 29px;
  min-width: 300px;
  min-height: 180px;
  width: 95vw;
  max-width: 430px;
  box-shadow: 0 8px 32px -5px rgba(25,60,50,0.09);
  z-index: 1000;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 13px;
  animation: organicModalShow 0.4s cubic-bezier(.28,.63,.52,1.23) both;
}
@keyframes organicModalShow {
  0% {transform: scale(0.82) translateY(92px) rotate(-2deg); opacity: 0;}
  100% {transform: none; opacity: 1;}
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.17rem;
  font-weight: 700;
  color: #183427;
  margin-bottom: 11px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 8px;
  font-size: 1.04rem;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #193C32;
  width: 19px;
  height: 19px;
  border-radius: 6px;
  margin-right: 4px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.01rem;
  border-radius: 14px;
  padding: 8px 20px;
  border: none;
  background: #193C32;
  color: #fff;
  margin-top: 7px;
  cursor: pointer;
  transition: background 0.17s, color 0.15s;
}
.cookie-modal .cookie-btn.secondary {
  background: #fffbe8;
  color: #193C32;
  border: 1.2px solid #D2C292;
}
.cookie-modal .cookie-btn.secondary:hover, .cookie-modal .cookie-btn.secondary:focus {
  background: #D2C292;
  color: #183427;
}
.cookie-modal .cookie-btn:hover, .cookie-modal .cookie-btn:focus {
  background: #D2C292;
  color: #183427;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 19px; top: 13px;
  background: none;
  border: none;
  color: #183427;
  font-size: 1.6rem;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: #D2C292;
  color: #103224;
}

@media (max-width: 393px) {
  .cookie-modal {
    padding: 13px 5px 11px 5px;
    border-radius: 11px 17px 15px 10px;
  }
}

/* ---- SCROLLBAR & SELECTION ---- */
::-webkit-scrollbar {
  width: 10px;
  background: #F8F7F1;
}
::-webkit-scrollbar-thumb {
  background: #C3AF87;
  border-radius: 9px;
}
::selection {
  background: #D2C292;
  color: #183427;
}

/* FOCUS STYLES */
:focus-visible {
  outline: 2px solid #D2C292;
  outline-offset: 1.5px;
}

/* ---- ORGANIC SHAPE UTILITIES ---- */
.organic-bg {
  background: #F8F7F1;
  border-radius: 34px 70px 61px 35px;
}

/* ---- END ---- */
