/* CSS RESET & NORMALIZATION */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F8F3ED;
  color: #252525;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #395541;
  text-decoration: none;
  transition: color 0.20s;
}
a:hover, a:focus {
  color: #926E5A;
  outline: none;
}
ul, ol {
  list-style: disc outside;
  margin-left: 22px;
  margin-top: 8px;
  margin-bottom: 16px;
}
li + li {
  margin-top: 8px;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}
*:focus {
  outline: 2px dashed #926E5A;
  outline-offset: 2px;
}

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;900&family=Open+Sans:wght@400;600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #395541;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.12;
}
h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  line-height: 1.18;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #926E5A;
}
.subheadline {
  font-size: 1.25rem;
  color: #926E5A;
  margin-bottom: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
}
p, ul, ol, li, span, label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #39413b;
}
strong {
  color: #395541;
  font-weight: 700;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
  position: relative;
}

/* HEADER */
header {
  background: #fffdfa;
  box-shadow: 0 4px 24px 0 rgba(57,85,65,0.05);
  border-bottom: 4px solid #F8F3ED;
  z-index: 20;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 78px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo img {
  height: 46px;
  width: auto;
  transition: transform 0.2s;
}
.logo img:hover {
  transform: rotate(-5deg) scale(1.07);
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  color: #395541;
  position: relative;
  padding: 4px 4px;
  border-radius: 6px;
  transition: background .15s, color .20s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F8F3ED;
  color: #926E5A;
}
.cta.primary {
  background: #395541;
  color: #fff;
  border-radius: 32px;
  font-size: 1.17rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 32px;
  margin-left: 16px;
  box-shadow: 0 4px 20px 0 rgba(146,110,90,0.11);
  transition: background .20s, box-shadow .20s, transform .09s;
  position: relative;
  border: none;
}
.cta.primary:hover,
.cta.primary:focus {
  background: #926E5A;
  color: #fff;
  box-shadow: 0 8px 28px 0 rgba(146,110,90,0.13);
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
}
.cta {
  background: #fff;
  color: #395541;
  border: 2px solid #926E5A;
  border-radius: 28px;
  font-size: 1.10rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 11px 24px;
  margin-top: 16px;
  transition: background .16s, color .17s, border-color .15s, transform .07s;
  display: inline-block;
}
.cta:hover,
.cta:focus {
  background: #F8F3ED;
  color: #926E5A;
  border-color: #395541;
  transform: rotate(-1.3deg);
}

/* HAMBURGER / MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #F8F3ED;
  color: #395541;
  font-size: 2.2rem;
  padding: 8px 16px;
  border-radius: 12px;
  border: none;
  z-index: 23;
  margin-left: 10px;
  transition: background 0.16s, box-shadow .16s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #ffe5ba;
  color: #926E5A;
  box-shadow: 0 2px 8px #926E5A22;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 96vw;
  max-width: 425px;
  height: 100vh;
  background: #fffdfa;
  box-shadow: 2px 0 24px #926E5A22;
  transform: translateX(-110vw);
  transition: transform .36s cubic-bezier(.92,-0.01,.33,1.07);
  z-index: 99;
  padding: 35px 32px 28px 25px;
  gap: 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 1.8rem;
  color: #395541;
  align-self: flex-end;
  background: transparent;
  border: none;
  margin-bottom: 12px;
  margin-right: 3px;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #926E5A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #395541;
  padding: 9px 0 7px 0;
  transition: background .13s, color .15s, border-radius .1s;
  border-radius: 8px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F8F3ED;
  color: #926E5A;
}

/* Hide desktop nav on mobile & mobile menu on desktop */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu-toggle { display: none !important; }
  .main-nav { display: flex !important; }
}

/* MAIN LAYOUT: FLEX AND SPACING */
main {
  min-height: 60vh;
  padding-bottom: 44px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 32px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fffdfa;
  border: 2px solid #F8F3ED;
  border-radius: 22px;
  box-shadow: 0 3px 18px 0 #926E5A0d;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .16s, transform .18s;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  min-width: 0;
}
.card:hover {
  box-shadow: 0 8px 32px 0 #39554122;
  transform: translateY(-2px) scale(1.015) rotate(-1.5deg);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* FEATURES, TESTIMONIALS, ETC */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fffdfa;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 #3955410a;
  border: 1.5px solid #F8F3ED;
  padding: 22px 17px 17px 17px;
  min-width: 200px;
  flex: 1 1 220px;
  max-width: 100%;
  transition: box-shadow .15s, transform .14s;
}
.feature-item img {
  height: 46px;
  width: auto;
  margin-bottom: 12px;
  filter: drop-shadow(2px 2px 0 #FFE5BA);
  animation: swingicon 1.6s ease-in-out infinite alternate;
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 7px 28px #926E5A18;
  transform: scale(1.03) rotate(-2deg);
}
@keyframes swingicon {
  0% { transform: rotate(-8deg) scale(1); }
  50% { transform: rotate(11deg) scale(1.07); }
  100% { transform: rotate(-8deg) scale(1); }
}

/* Testimonial Card - readable dark text on near-white */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fffdfa;
  padding: 20px;
  border-radius: 18px;
  border: 1.5px solid #F8F3ED;
  box-shadow: 0 1.5px 10px #39554112;
  margin-bottom: 20px;
  flex-wrap: wrap;
  min-width: 250px;
  transition: box-shadow .13s, transform .14s;
}
.testimonial-card p {
  font-size: 1.15rem;
  color: #252525;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-right: 10px;
}
.testimonial-author {
  font-size: .97rem;
  color: #395541;
  font-weight: 700;
  margin-left: 12px;
  font-style: italic;
}
.testimonial-rating {
  color: #ffe067;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 2px;
  margin-left: 14px;
  filter: drop-shadow(0 1.5px 0 #926E5A18);
}
.testimonial-card:hover {
  box-shadow: 0 7px 28px #926E5A14;
  transform: scale(1.02) rotate(-1deg);
}

/* FOOTER */
footer {
  background: #fffdfa;
  border-top: 3px solid #926E5A22;
  padding-top: 29px;
  padding-bottom: 23px;
  box-shadow: 0 -2px 14px #3955410a;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.logo-footer img {
  height: 38px;
  margin-bottom: 10px;
}
.footer-menu {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 7px;
}
.footer-menu a {
  color: #926E5A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  padding: 3px 7px;
  border-radius: 6px;
  transition: background .13s, color .15s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  background: #F8F3ED;
  color: #395541;
}
.footer-contact {
  font-size: 0.98rem;
  color: #395541;
  margin-top: 2px;
  margin-bottom: 10px;
}
.footer-contact span {
  display: block;
  margin-bottom: 3px;
}
.footer-copy {
  font-size: 0.93rem;
  color: #926E5A;
  margin-bottom: 0;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  background: #fffdfa;
  width: 100vw;
  box-shadow: 0 -5px 25px #926E5A1a;
  border-top: 3px solid #926E5A33;
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 12px 17px 12px;
  flex-direction: column;
  gap: 16px;
  font-size: 1.1rem;
  animation: cookieIn .7s cubic-bezier(.48,.47,.36,1.09) 1;
}
@keyframes cookieIn {
  from { transform: translateY(200px); opacity: 0; }
  to { transform: translateY(0px); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border-radius: 22px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  padding: 8px 22px;
  margin-top: 0;
  margin-bottom: 0;
  background: #F8F3ED;
  color: #395541;
  transition: background .16s, color .16s, transform .10s;
  outline: none;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #926E5A;
  color: #fff;
  transform: scale(1.06) rotate(-2deg);
}
.cookie-banner .accept {
  background: #395541;
  color: #fff;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #926E5A;
  color: #fff;
}
.cookie-banner .reject {
  background: #fff;
  color: #395541;
  border: 1.5px solid #395541;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #ffe5ba;
  color: #926E5A;
}
.cookie-banner .settings {
  background: #fff;
  color: #926E5A;
  border: 1.5px solid #926E5A;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: #ffe5ba;
  color: #395541;
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(39,43,36,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1004;
  transition: opacity .25s;
  pointer-events: all;
  opacity: 1;
}
.cookie-modal.hidden { opacity: 0; pointer-events: none; }
.cookie-modal .modal-content {
  width: 90vw;
  max-width: 420px;
  background: #fffdfa;
  border-radius: 30px;
  box-shadow: 0 8px 48px #39554136;
  padding: 36px 24px 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  animation: popIn .33s cubic-bezier(.44,1.5,.47,.98) 1;
}
@keyframes popIn {
  from { transform: scale(0.7) rotate(-10deg) translateY(75px); opacity: 0; }
  to { transform: scale(1) rotate(0deg) translateY(0px); opacity: 1; }
}
.cookie-modal .close-modal {
  position: absolute;
  right: 19px;
  top: 17px;
  color: #926E5A;
  font-size: 1.6rem;
  background: none;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus { color: #395541; }
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-categories label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.09rem;
  user-select: none;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #395541;
}
.cookie-categories input[type='checkbox'] {
  accent-color: #926E5A;
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
.essential {
  color: #395541;
  font-weight: 700;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.cookie-modal .modal-actions button {
  font-size: 1.09rem;
  border-radius: 18px;
  padding: 8px 20px;
  background: #395541;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: background .16s, color .16s;
}
.cookie-modal .modal-actions button:hover,
.cookie-modal .modal-actions button:focus {
  background: #926E5A;
  color: #fff;
}

/* SURFACE CARDS, CTA ANIMATIONS */
@media (hover: hover) {
  .cta:not(.primary):hover {
    animation: bouncebutton .32s cubic-bezier(.43,1.4,.55,.93) 1;
  }
}
@keyframes bouncebutton {
  0% { transform: scale(1) rotate(0); }
  26% { transform: scale(1.09) rotate(-2deg); }
  65% { transform: scale(1) rotate(1deg); }
  100% { transform: scale(1.018) rotate(0); }
}

/* RESPONSIVE DESIGN - Mobile First */
@media (max-width: 768px) {
  header .container {
    gap: 10px;
    min-height: 62px;
    flex-direction: row;
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    margin-bottom: 38px;
    padding: 22px 6px;
    border-radius: 18px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.39rem; }
  h3 { font-size: 1.1rem; }
  .content-wrapper {
    gap: 14px;
  }
  .feature-grid {
    gap: 12px;
  }
  .feature-item {
    min-width: 0;
    flex: 1 1 95%;
    max-width: 100%;
    padding: 14px 10px 11px 10px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    font-size: 0.95rem;
  }
  .footer-menu {
    gap: 8px;
  }
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}

/* TABLET */
@media (max-width: 1024px) {
  .feature-grid { flex-wrap: wrap; }
  .feature-item { flex: 1 1 48%; }
}
@media (max-width: 600px) {
  .feature-item { flex: 1 1 100%; }
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    animation: none !important;
    transition: none !important;
  }
}

/* PLAYFUL EXTRA ELEMENTS */
.feature-item {
  position: relative;
}
.feature-item:after {
  content: '';
  display: block;
  position: absolute;
  right: 18px; top: 15px;
  width: 16px; height: 16px;
  background: #FFE5BA;
  border-radius: 50%;
  opacity: 0.22;
  z-index: 0;
}
@media (max-width: 1024px) {
  .feature-item:after { display: none; }
}

/* VISUAL HIERARCHY/TRIMMING EXTRAS */
ul > li {
  margin-bottom: 4px;
  font-size: 1.08rem;
}
.text-section > ul, .content-wrapper > ul {
  margin-bottom: 10px;
}

/* Card and Section Gaps - Consistency */
.card + .card,
.feature-item + .feature-item,
.testimonial-card + .testimonial-card,
.section + .section {
  margin-top: 20px;
}

/* SPECIAL - Highlight CTA in hero */
.content-wrapper > .cta.primary, .content-wrapper > .cta {
  margin-top: 14px;
}

/* Color accent backgrounds for some playful jumps */
.section:nth-child(odd) {
  background: #fffdfa;
  box-shadow: 0 3px 18px #926E5A0f;
}
.section:nth-child(even) {
  background: #F8F3ED;
  box-shadow: 0 1.5px 8px #3955410a;
}

/* Decorative confetti bubbles for playful touch (optional, not content!) */
body:after {
  content: '';
  pointer-events: none;
  position: fixed;
  bottom: -70px;
  right: 10vw;
  width: 140px;
  height: 130px;
  background: radial-gradient(circle at 51px 39px, #ffe5ba 0 50px, transparent 55px), radial-gradient(circle at 109px 104px, #395541 0 18px, transparent 19px);
  opacity: 0.10;
  z-index: 0;
}

/* END OF CSS */
