/* 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #F3E9DC;
  color: #50423A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  color: #3a2e27;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #50423A;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
  color: #3a2e27;
}
.text-section ul, .text-section ol {
  padding-left: 1rem;
}
.text-section ul li, .text-section ol li {
  margin-bottom: 10px;
  list-style: disc inside;
}

/* LAYOUT */
.container {
  width: 100%;
  margin: auto;
  max-width: 1120px;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(80, 66, 58, 0.06);
}

/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid #eee1cd;
  box-shadow: 0 2px 16px rgba(80,66,58,0.08);
  border-radius: 16px;
  margin-bottom: 20px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.3s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(80,66,58,0.14);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee1cd;
  box-shadow: 0 2px 16px rgba(80,66,58,0.08);
  padding: 20px;
  margin-bottom: 24px;
  min-width: 220px;
  max-width: 500px;
  transition: box-shadow 0.25s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(80,66,58,0.16);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(180deg, #F3E9DC 60%, #fff 100%);
  padding: 60px 0 30px 0;
}
.hero .content-wrapper {
  max-width: 700px;
  margin: 0 auto;
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  color: #3a2e27;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(80,66,58,0.04);
  position: sticky;
  top: 0;
  z-index: 1200;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 20px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 4px 0;
  color: #50423A;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.18s, color 0.18s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  color: #b17b3b;
  border-bottom: 2px solid #b17b3b;
}
header img {
  height: 48px;
  width: auto;
}
.cta-btn {
  margin-left: 24px;
  background: #b17b3b;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  padding: 12px 30px;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(80,66,58,0.07);
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.22s, box-shadow 0.22s;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #a06c2c;
  color: #fff9f2;
  box-shadow: 0 4px 18px rgba(80,66,58,0.11);
}

button, .mobile-menu-toggle, .mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  color: #50423A;
  padding: 6px 14px;
  border-radius: 10px;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-close:hover,
.mobile-menu-toggle:focus, .mobile-menu-close:focus {
  background: #F3E9DC;
}

.mobile-menu-toggle {
  display: none;
  margin-left: 18px;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(80,66,58,0.92);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.49,.12,.3,.96);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: #fff;
  font-size: 2.2rem;
  background: rgba(0,0,0,0.2);
  margin: 28px 24px 0 0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 20px 44px 20px 44px;
  gap: 22px;
  width: 100%;
  margin-top: 50px;
}
.mobile-nav a {
  color: #F3E9DC;
  font-family: 'Merriweather', serif;
  font-weight: 600;
  font-size: 1.18rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.1s, color 0.19s;
  border-radius: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #b17b3b;
  background: rgba(255,255,255,0.03);
}

/* MAIN LAYOUTS & SECTIONS */
main .section,
.hero, .features, .about-short, .services, .testimonials, .cta,
.about, .mission, .why-us, .benefits, .steps, .faq-highlight, .faq, .privacy-policy, .rgpd, .cookie-policy, .terms, .thank-you, .showcase, .contact {
  margin-bottom: 60px;
}
main section {
  width: 100%;
}
.features .content-wrapper ul,
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 20px;
}
.features .content-wrapper ul li {
  display: flex;
  align-items: center;
  font-size: 1.08rem;
  gap: 14px;
}
.features .content-wrapper ul li img {
  width: 28px;
  height: 28px;
}
.services .content-wrapper ul,
.benefits .content-wrapper ul,
.why-us .content-wrapper ul,
.about-short .content-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: 16px;
  margin-bottom: 16px;
}
.services .content-wrapper ul li {
  background: #F3E9DC;
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 2px 8px rgba(80,66,58,0.04);
  flex: 1 1 200px;
}

.cta {
  background: #fff8f3;
  padding: 44px 0;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(80,66,58,0.07);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.cta .cta-btn {
  font-size: 1.15rem;
  margin-top: 18px;
}

/* TESTIMONIAL SECTION*/
.testimonials {
  background: #fffdfb;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(80,66,58,0.04);
  padding: 40px 0;
}
.testimonials .content-wrapper {
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #eee1cd;
  box-shadow: 0 2px 16px rgba(80,66,58,0.08);
  color: #3a2e27;
}
.testimonial-card p {
  color: #50423A;
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.testimonial-card strong {
  color: #b17b3b;
}
.testimonial-card div {
  font-size: 0.98rem;
  color: #7a695a;
}

/* FOOTER */
footer {
  background: #3a2e27;
  color: #f3e9dc;
  padding: 36px 0 0 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
footer img {
  height: 38px;
  width: auto;
  margin-bottom: 12px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer nav a {
  color: #f3e9dc;
  font-size: 1rem;
  margin-bottom: 2px;
  transition: color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: #b17b3b;
}
footer p, footer strong {
  color: #f3e9dc;
  font-size: 0.98rem;
  margin-bottom: 7px;
}
.sub-footer {
  background: #b17b3b;
  color: #fff;
  padding: 16px 0 16px 0;
  text-align: center;
  font-size: 0.96rem;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: #ffffffee;
  border-top: 2px solid #eee1cd;
  box-shadow: 0 -4px 24px rgba(80,66,58,0.12);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  padding: 22px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  animation: cookieFadeIn 0.67s cubic-bezier(.4,0,.2,1);
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: #3a2e27;
  margin-bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn, .cookie-settings-btn {
  background: #b17b3b;
  color: #fff;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 22px;
  border-radius: 18px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
}
.cookie-btn:hover, .cookie-settings-btn:hover, .cookie-btn:focus, .cookie-settings-btn:focus {
  background: #a06c2c;
}
.cookie-btn.reject {
  background: #ac3a2a;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus { background: #992916; }

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(80,66,58,0.74);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.31s cubic-bezier(.4,0,.2,1);
}
.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(50,36,24,.16);
  padding: 36px 34px 28px 34px;
  min-width: 320px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: cookieModalFadeIn 0.55s cubic-bezier(.4,0,.2,1);
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; transform: translateY(70px) scale(.93); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal-header {
  font-family: 'Merriweather', serif;
  font-size: 1.32rem;
  font-weight: 700;
  color: #3a2e27;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 8px 0 16px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #50423A;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category input[type="checkbox"] {
  accent-color: #b17b3b;
  width: 20px; height: 20px;
}
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 16px;
  font-size: 1.6rem;
  background: none !important;
  color: #b17b3b;
  border: none;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #9c6722;
}

/* UTILITY MARGINS */
.mb-0 { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mb-60 { margin-bottom: 60px !important; }
.mt-18 { margin-top: 18px !important; }
.pt-18 { padding-top: 18px !important; }

/* TABLET-BREAKPOINT ADJUSTMENTS */
@media (max-width: 1020px) {
  header .container {
    flex-wrap: wrap;
    gap: 13px;
  }
  footer .content-wrapper { gap: 18px; }
}

/* MOBILE-BREAKPOINT */
@media (max-width: 850px) {
  .container { max-width: 98vw; }
  .content-grid, .card-container, .features .content-wrapper ul, .services .content-wrapper ul, .footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  header nav { display: none; }
  .cta-btn { margin-left: 0; }
  .mobile-menu-toggle { display: inline-block; }
}
@media (max-width: 768px) {
  .section, .hero, .features, .about-short, .services, .testimonials, .cta, .about, .mission, .why-us, .benefits, .steps, .faq-highlight, .showcase, .contact, .privacy-policy, .rgpd, .cookie-policy, .terms, .thank-you {
    padding: 28px 7vw;
    margin-bottom: 38px;
    border-radius: 13px;
  }
  .content-wrapper, .text-section, .cta .content-wrapper {
    gap: 16px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.08rem; }
  .hero {
    padding: 32px 0 16px 0;
    border-radius: 0;
  }
  .hero .content-wrapper { gap: 15px; }
  .features .content-wrapper ul li,
  .services .content-wrapper ul li {
    font-size: 1rem;
  }
  .card, .testimonial-card {
    padding: 14px 7vw;
    min-width: unset;
    max-width: unset;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    text-align: left;
  }
  .mobile-menu-close {
    margin: 16px 12px 0 0;
    font-size: 2rem;
  }
  .mobile-nav { padding: 15px 20px 15px 20px; }
  .cta .cta-btn { width: 100%; }
}

/* SMALLEST DEVICES */
@media (max-width: 500px) {
  .section, .hero, .features, .about-short, .services, .testimonials, .cta, .about, .mission, .why-us, .benefits, .steps, .faq-highlight, .showcase, .contact, .privacy-policy, .rgpd, .cookie-policy, .terms, .thank-you {
    padding: 17px 4vw;
    margin-bottom: 22px;
    border-radius: 8px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 15px 7px;
    font-size: 0.97rem;
    text-align: left;
  }
  .cookie-banner .cookie-actions {
    width: 100%;
    justify-content: flex-end;
    gap: 5px;
  }
  .cookie-modal-content {
    padding: 22px 8vw;
    min-width: 0;
    font-size: 0.99rem;
  }
}

/* ANIMATIONS */
.cta-btn, .cookie-btn, .cookie-settings-btn, .mobile-nav a {
  transition: background 0.2s, color 0.2s, box-shadow 0.22s;
}
.card, .testimonial-card, .feature-item {
  transition: box-shadow 0.22s;
}

/* MICRO-INTERACTIONS */
.cta-btn:active { transform: translateY(2px); }
.cookie-btn:active, .cookie-settings-btn:active { transform: scale(0.97); }
.mobile-menu { will-change: transform; }

/* ACCESSIBILITY FOCUS */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus, .cookie-settings-btn:focus {
  outline: 2px solid #b17b3b;
  outline-offset: 2px;
  box-shadow: 0 0 2px 2px #eecb99;
}

/* Custom fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Montserrat:wght@400;700&display=swap');