/* 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 {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
body {
  background: #F6F6F6;
  min-height: 100vh;
  color: #222;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #32723C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #8CC63F;
}
ul, ol {
  margin-left: 1.7em;
  margin-bottom: 1.5em;
}
li {
  margin-bottom: 0.6em;
}

/* MONTSERRAT (DISPLAY) & OPEN SANS (BODY) FONTS ------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
h1 {
  font-size: 2.2rem;
  line-height: 1.2;
}
h2 {
  font-size: 1.7rem;
  line-height: 1.23;
}
h3 {
  font-size: 1.22rem;
  line-height: 1.22;
}
@media (min-width: 520px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.4rem; }
}
strong {
  font-weight: 600;
}
em {
  font-style: italic;
  color: #7A833A;
}

/* BRAND COLORS & LUXURY TOUCHES ----------------------------------------------- */
:root {
  --primary: #32723C;
  --secondary: #8CC63F;
  --accent: #F6F6F6;
  --lux-gold: #CBA349;
  --lux-dark: #2B2C28;
  --lux-bg-alt: #FCFBF6;
  --text-dark: #222;
  --text-light: #fff;
  --shadow: 0 4px 32px rgba(50, 55, 54, 0.05), 0 1.5px 8px rgba(203, 163, 73, 0.07);
}

/* SPACING AND FLEX PATTERNS -------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.section, section:not(.hero):not(.legal):not(.thank-you):not(.contact) {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--lux-bg-alt);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
  justify-content: center;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(0,0,0,0.07);
  overflow: hidden;
  transition: transform 0.20s, box-shadow 0.22s;
}
.card:hover {
  transform: translateY(-7px) scale(1.017);
  box-shadow: 0 6px 36px 0 rgba(203,163,73,0.21);
}
.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;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 20px 0 rgba(44, 44, 34, 0.07);
  border-left: 6px solid var(--lux-gold);
  position: relative;
  max-width: 600px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(203,163,73,0.15);
  background: #FFFDF6;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 12px;
}

/* HEADER & NAV --------------------------------------------------------------- */
header {
  background: #fff;
  border-bottom: 1px solid #ECECEC;
  position: sticky;
  top: 0;
  z-index: 10;
}
header .container,
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--lux-dark);
  padding: 10px 6px;
  margin-right: 6px;
  border-radius: 9px;
  position: relative;
  transition: color 0.16s, background 0.18s;
}
header nav a:last-child { margin-right: 0; }
header nav a:hover, header nav a:focus {
  color: var(--lux-gold);
  background: rgba(50, 115, 60, 0.04);
}
header nav a img {
  vertical-align: middle;
  height: 34px;
  width: auto;
  margin-right: 6px;
}
header .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--lux-gold);
  cursor: pointer;
  padding: 7px 16px;
  z-index: 31;
  transition: color 0.18s;
}
header .mobile-menu-toggle:hover,
header .mobile-menu-toggle:focus {
  color: var(--primary);
}

/* MOBILE NAVIGATION ---------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(43,44,40, 0.96);
  color: #fff;
  z-index: 1001;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.47,1.64,.41,.8);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 30px;
}
.mobile-menu.opened {
  transform: translateX(0);
  box-shadow: 0 0 50px rgba(43,44,40, 0.22);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--lux-gold);
  font-size: 2.2rem;
  margin: 6px 28px 14px 0;
  cursor: pointer;
  transition: color 0.22s;
  z-index: 1020;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0 0 32px;
  width: 80vw;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #fff;
  padding: 13px 0 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.18s, background 0.21s;
  border-radius: 5px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--lux-gold);
  background: rgba(203,163,73, 0.06);
}
@media (max-width: 1110px) {
  header .container, footer .container { flex-direction: column; align-items: stretch; gap: 12px; }
}
@media (max-width: 992px) {
  header nav { gap: 14px; }
  header nav a { font-size: 0.96rem; }
}
@media (max-width: 900px) {
  header nav { display: none; }
  header .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu.opened {
    display: none !important;
  }
}

/* HERO SECTION --------------------------------------------------------------- */
.hero {
  background: linear-gradient(110deg, #fff 60%, #F8F6ED 99%);
  padding: 60px 0 60px 0;
  box-shadow: 0 10px 24px 0 rgba(50,114,60,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 660px;
}
.hero h1 {
  color: var(--lux-dark);
  margin-bottom: 12px;
  font-size: 2.1rem;
  text-align: center;
}
.hero p {
  font-size: 1.27rem;
  color: #7c815d;
  text-align: center;
}
@media (min-width: 640px) {
  .hero h1 { font-size: 2.7rem; }
  .hero p { font-size: 1.33rem; }
}

/* BUTTONS -------------------------------------------------------------------- */
.cta-button {
  display: inline-block;
  background: var(--lux-gold);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 13px 35px;
  border: none;
  border-radius: 34px;
  box-shadow: 0 2px 16px 0 rgba(203,163,73,0.08);
  text-decoration: none;
  transition: background 0.22s, color 0.13s, box-shadow 0.21s, transform .13s;
  letter-spacing: 0.02em;
  margin-top: 16px;
  cursor: pointer;
  position: relative;
}
.cta-button:after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 96%;
  width: 80%;
  height: 5px;
  background: linear-gradient(90deg,rgba(203,163,73,.19) 0%,rgba(50,114,60,.22) 100%);
  border-radius: 9px;
  transform: translateX(-50%);
  opacity: 0.55;
  pointer-events: none;
}
.cta-button:hover, .cta-button:focus {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 8px 28px 0 rgba(203,163,73, 0.16);
}

/* FEATURES ------------------------------------------------------------------- */
.features {
  background: var(--lux-bg-alt);
}
.features .content-wrapper ul,
.services .content-wrapper ul,
.values .content-wrapper ul,
.features-offer .content-wrapper ul,
.tips .content-wrapper ul,
.inspirations .content-wrapper ul {
  font-size: 1.13rem;
  list-style: none;
  margin: 30px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.features .content-wrapper ul li {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: 9px;
  padding: 14px 22px;
  box-shadow: 0 1.5px 8px rgba(203, 163, 73, 0.08);
  font-weight: 500;
  color: var(--primary);
  border-left: 5px solid var(--lux-gold);
  transition: box-shadow 0.12s;
}
.features .content-wrapper ul li img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.features .content-wrapper ul li:hover {
  box-shadow: 0 7px 23px 0 rgba(203,163,73,.12);
}

/* SERVICES / OFFER ---------------------------------------------------------- */
.services .content-wrapper ul li,
.features-offer .content-wrapper ul li {
  background: #fff;
  border-radius: 14px;
  padding: 16px 22px;
  color: var(--lux-dark);
  border-left: 5px solid var(--primary);
  box-shadow: 0 1.5px 9px rgba(203, 163, 73, 0.07);
  margin-bottom: 14px;
  font-size: 1.10rem;
  transition: box-shadow 0.16s;
}
.services .content-wrapper ul li strong,
.features-offer .content-wrapper ul li strong {
  color: var(--primary);
  font-weight: 700;
}
.services .content-wrapper ul li em,
.features-offer .content-wrapper ul li em {
  color: var(--lux-gold);
  font-weight: 500;
}
.services .content-wrapper ul li:hover,
.features-offer .content-wrapper ul li:hover {
  box-shadow: 0 5px 18px 0 rgba(203,163,73,.13);
}

/* LEGAL / POLICY SECTIONS --------------------------------------------------- */
.legal {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.legal .text-section {
  padding-top: 10px;
  color: #333;
}

/* THANK YOU PAGE / CTA FINAL ------------------------------------------------ */
.cta-final, .cta-offer, .thank-you {
  text-align: center;
  background: var(--lux-bg-alt);
  margin-bottom: 60px;
  padding: 48px 20px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.cta-final h2,
.cta-offer h2,
.thank-you h1 {
  color: var(--primary);
  margin-bottom: 18px;
  font-size: 2rem;
}

/* TESTIMONIALS -------------------------------------------------------------- */
.testimonials {
  margin-bottom: 60px;
  padding: 50px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.testimonials h2 {
  color: var(--lux-dark);
}
.testimonial-card p {
  color: #222;
  font-size: 1.1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 8px;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--lux-gold);
  font-size: 1.02rem;
}

/* CATEGORY TAGS (INSPIRATIONS/TIPS) ----------------------------------------- */
.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
  margin-bottom: 12px;
}
.category-tags span {
  background: var(--lux-gold);
  color: #fff;
  font-size: 0.96rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 28px;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.category-tags span:hover {
  background: var(--primary);
}

/* TEXT SECTIONS ------------------------------------------------------------- */
.text-section {
  margin: 24px 0;
  color: #4B4B39;
  font-size: 1rem;
}
.text-section p {
  margin-bottom: 18px;
}
.text-section ul {
  margin-bottom: 18px;
  margin-left: 1.2em;
}
.text-section li {
  margin-bottom: 9px;
}

/* FOOTER -------------------------------------------------------------------- */
footer {
  background: #222;
  color: #A09C8B;
  font-size: 0.99rem;
  margin-top: 40px;
  border-top: 2px solid #CBA34918;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
footer a {
  color: var(--lux-gold);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  font-size: 0.99rem;
  margin-right: 18px;
  transition: color 0.14s;
}
footer a:last-child { margin-right: 0; }
footer a:hover, footer a:focus {
  color: #fff;
}
footer nav {
  display: flex;
  gap: 14px;
}
footer img {
  height: 32px;
  width: auto;
}
footer .text-section {
  color: #CDBD99;
  font-size: 0.93rem;
}

/* COOKIE CONSENT BANNER ----------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 3000;
  width: 100vw;
  background: #fffbe8;
  color: #4B4B39;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -3px 26px 0 rgba(203,163,73, 0.19);
  padding: 28px 20px;
  gap: 22px;
  font-size: 1rem;
  animation: bannerAppear 0.7s cubic-bezier(.31,.97,.8,.97);
}
@keyframes bannerAppear {
  0% { transform: translateY(110%); opacity: 0; }
  90% { transform: translateY(-10%);}
  100% { transform: translateY(0); opacity: 1;}
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 15px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 22px;
  border-radius: 23px;
  border: none;
  margin-left: 0px;
  transition: background 0.15s, color 0.12s;
  cursor: pointer;
}
.cookie-banner .accept {
  background: var(--lux-gold);
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--primary);
}
.cookie-banner .reject {
  background: #ECE5D1;
  color: var(--primary);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #fff;
  color: var(--lux-gold);
}
.cookie-banner .settings {
  background: none;
  color: var(--lux-gold);
  border: 1.5px solid var(--lux-gold);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--lux-gold);
  color: #fff;
}

/* COOKIE MODAL -------------------------------------------------------------- */
.cookie-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 4000;
  display: none;
  background: rgba(43, 44, 40, 0.75);
  align-items: center;
  justify-content: center;
  animation: modalIn 0.23s;
}
.cookie-modal.open {
  display: flex;
}
@keyframes modalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  color: #412d14;
  border-radius: 24px;
  box-shadow: 0 16px 66px 0 rgba(203,163,73, 0.25);
  padding: 36px 20px 24px 20px;
  max-width: 430px;
  width: 95%;
  position: relative;
  animation: slideUpAppear 0.3s cubic-bezier(.31,.97,.8,.97);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@keyframes slideUpAppear {
  from { transform: translateY(100px); opacity: 0.2; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--lux-gold);
  cursor: pointer;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: var(--primary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 18px 0 8px 0;
}
.cookie-category {
  background: #fffbe8;
  border-radius: 13px;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.03rem;
  color: #544;
  border-left: 4px solid var(--lux-gold);
}
.cookie-category label {
  margin-right: 14px;
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
}
.cookie-category .always-on {
  font-size: 0.97rem;
  color: #888956;
  margin-left: 15px;
}
.cookie-modal .cookie-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 20px;
}
.cookie-modal .cookie-modal-footer button {
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  padding: 8px 23px;
  border: none;
  background: var(--lux-gold);
  color: #fff;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-modal .cookie-modal-footer button:last-child {
  background: #ECE5D1;
  color: var(--primary);
}
.cookie-modal .cookie-modal-footer button:last-child:hover {
  background: #fff;
  color: var(--lux-gold);
}
.cookie-modal .cookie-modal-footer button:hover,
.cookie-modal .cookie-modal-footer button:focus {
  background: var(--primary);
  color: #fff;
}

/* RESPONSIVE DESIGN --------------------------------------------------------- */
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .section, section:not(.hero):not(.legal):not(.thank-you):not(.contact), .legal, .cta-final, .cta-offer, .thank-you, .testimonials {
    margin-bottom: 38px;
    padding: 24px 7px;
    border-radius: 13px;
  }
  .features .content-wrapper ul,
  .services .content-wrapper ul,
  .values .content-wrapper ul,
  .features-offer .content-wrapper ul,
  .tips .content-wrapper ul,
  .inspirations .content-wrapper ul {
    gap: 12px;
    font-size: 1rem;
  }
  .testimonial-card, .testimonials, .cta-final, .cta-offer, .thank-you, .legal {
    box-shadow: 0 0 0 0;
    border-radius: 7px;
  }
  .content-grid, .text-image-section {
    flex-direction: column !important;
    gap: 16px;
    justify-content: flex-start;
    align-items: stretch !important;
  }
  .testimonial-card {
    padding: 13px;
    gap: 10px;
    font-size: 1rem;
    max-width: 98vw;
  }
  .category-tags { gap: 7px; }
  .cookie-modal .cookie-modal-content {
    padding: 22px 7px 18px 7px;
    max-width: 99vw;
    min-width: 0;
  }
  footer .container {
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
  }
}

/* FLEXBOX RULES: prevent content overlap, use gaps everywhere ----------------- */
section, .section, .content-wrapper, .text-section, .category-tags, .card-container, .content-grid, .features, .values, .features-offer {
  box-sizing: border-box;
}
.section > *, section > *, .content-wrapper > *, .text-section > *, .category-tags > *, .card-container > *, .content-grid > * {
  margin-bottom: 0 !important;
}

/* MICRO-INTERACTIONS & UX FLAIR ---------------------------------------------- */
.cta-button, .cookie-banner button, .mobile-menu-toggle, .mobile-menu-close, .category-tags span {
  outline: none;
}
.cta-button:focus, .cookie-banner button:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus, .category-tags span:focus {
  box-shadow: 0 0 0 3px #cba3497d;
  outline: none;
}
.card, .testimonial-card {
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:active, .testimonial-card:active {
  transform: scale(0.99);
}

/* SCROLLBAR STYLING --------------------------------------------------------- */
::-webkit-scrollbar { width: 11px; background: #F5F0E6; }
::-webkit-scrollbar-thumb { background: #CBA349; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #887532; }

/* END OF CSS */
