/* 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, 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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background-color: #F6F1EC;
  color: #242A24;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #205C40;
  text-decoration: none;
  transition: color .2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #B88E5A;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #205C40;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.5rem; margin-bottom: 16px; }
h4 { font-size: 1.25rem; }
p, ul, ol, li {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #242A24;
}
p { margin-bottom: 16px; }
strong, b {
  color: #205C40;
  font-weight: 700;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(36,42,36,.06);
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.1rem; }
  .container { padding-left: 8px; padding-right: 8px; }
  .section { padding: 28px 8px; }
  .content-wrapper { gap: 18px; }
}

/* LUXURY COLORS & BRAND ----------------------------------------- */
:root {
  --primary: #205C40;
  --secondary: #FFFFFF;
  --secondary-bg: #F6F1EC;
  --accent: #B88E5A;
  --accent-dark: #8B6A38;
  --border: #E8E2D8;
  --gold: #B88E5A;
}

/* HEADER & NAVIGATION ------------------------------------------- */
header {
  width: 100%;
  background: var(--secondary);
  box-shadow: 0 1px 8px rgba(36,42,36,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  height: 60px;
}
.header .logo img {
  height: 48px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: .01em;
  position: relative;
  padding: 2px 2px;
  transition: color .2s cubic-bezier(.4,0,.2,1);
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2.5px;
  width: 0;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto 0 0;
  transition: width .3s cubic-bezier(.7,0,.2,1);
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 70%;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
}
.cta.primary, .cta.secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 28px;
  padding: 12px 34px;
  border: 2px solid var(--accent);
  transition: all .2s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  text-align: center;
  margin-left: 18px;
}
.cta.primary {
  background: linear-gradient(90deg, var(--gold) 75%, var(--accent-dark) 100%);
  color: #FFF;
  border: 2px solid var(--gold);
  box-shadow: 0 2px 6px rgba(184,142,90,.08);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--accent-dark);
  color: #FFF;
  border-color: var(--accent-dark);
}
.cta.secondary {
  background: var(--secondary);
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--accent-dark);
  color: #FFF;
}
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 1024px) {
  .main-nav { gap: 16px; }
  .cta.primary, .cta.secondary { margin-left: 10px; padding: 10px 22px; }
}
@media (max-width: 900px) {
  header { padding: 0 8px; }
  .main-nav a { font-size: 0.95rem; }
}
@media (max-width: 870px) {
  .main-nav { display: none; }
  .cta.primary { display: none; }
  .mobile-menu-toggle {
    display: flex;
    background: transparent;
    border: none;
    font-size: 2.1rem;
    color: var(--primary);
    cursor: pointer;
    align-items: center;
    z-index: 201;
    margin-left: 10px;
  }
}

/* MOBILE NAV MENU ----------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(36,42,36,0.72);
  z-index: 200;
  display: flex;
  align-items: flex-start;
  /* hidden by default */
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.active {
  pointer-events: all;
  opacity: 1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--secondary);
  border-radius: 0 0 20px 0;
  width: 94vw;
  max-width: 370px;
  min-width: 240px;
  margin-top: 0;
  box-shadow: 6px 0 32px 0 rgba(32,92,64,.06), 0 8px 18px rgba(36,42,36,0.12);
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.63,0,.28,1);
  position: relative;
  padding: 44px 28px 48px 32px;
  height: 100vh;
  overflow-y: auto;
}
.mobile-menu.active .mobile-nav {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 16px;
  font-size: 2.2rem;
  background: transparent;
  border: none;
  color: var(--primary);
  cursor: pointer;
  z-index: 210;
  padding: 4px;
}
.mobile-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-nav a:last-child {
  border-bottom:none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--gold);
}
@media (min-width: 871px) {
  .mobile-menu { display: none !important; }
}

/* HERO SECTION ----------------------------------------------- */
.hero {
  background: var(--secondary-bg);
  border-radius: 24px;
  box-shadow: 0 2px 24px rgba(32,92,64,.05);
  margin: 32px 0 0 0;
  padding: 0;
}
.hero .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.4rem;
}
.hero p {
  font-size: 1.15rem;
  color: #3e4c40;
}
.hero .cta.primary {
  margin-top: 12px;
  font-size: 1.15rem;
}
@media (max-width: 600px) {
  .hero .container {
    padding-top: 24px;
    padding-bottom: 20px;
  }
  .hero h1 { font-size: 1.3rem; }
}

/* SECTIONS: FLEXBOX -------------------------------------------- */
.features, .services, .team, .about, .privacy-policy, .cookie-policy, .gdpr, .terms, .thank-you, .contact, .cta {
  width: 100%;
  background: var(--secondary);
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 18px rgba(32,92,64,.07);
}
.features ul,
.services ul,
.team ul,
.about ul,
.privacy-policy ul,
.gdpr ul,
.terms ul,
.cookie-policy ul {
  margin: 0;
  padding: 0 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features li, .services li, .about li, .team li, .cookie-policy li, .privacy-policy li, .gdpr li, .terms li {
  font-size: 1.07rem;
  padding-left: 0px;
  line-height: 1.6;
  position: relative;
  color: #314230;
}
.features li img, .services li img, .contact-info li img {
  height: 27px;
  width: 27px;
  margin-bottom: .5rem;
  margin-right: 6px;
  vertical-align: middle;
  display: inline-block;
}
.features li strong,
.services li strong,
.about li strong,
.team li strong {
  color: var(--accent-dark);
}
@media (max-width: 650px) {
  .features, .services, .team, .about, .privacy-policy, .cookie-policy, .gdpr, .terms, .thank-you, .contact, .cta {
    padding: 18px 4px;
    margin-bottom: 40px;
    border-radius: 10px;
  }
  .features ul, .services ul, .about ul, .team ul, .privacy-policy ul, .gdpr ul, .terms ul, .cookie-policy ul {
    gap: 13px;
  }
}

/* CARDS & CARD-LIST ------------------------------------------ */
.card-container, .card-grid, .service-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card, .service-teasers > div {
  background: var(--secondary-bg);
  border-radius: 17px;
  box-shadow: 0 2.5px 16px rgba(32,92,64,.05);
  padding: 28px 20px;
  margin-bottom: 20px;
  position: relative;
  min-width: 230px;
  flex: 1 1 260px;
  transition: box-shadow .2s, transform .15s;
  border: 1.5px solid var(--border);
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.card:hover, .service-teasers > div:hover {
  box-shadow: 0 4px 38px rgba(184,142,90,0.12);
  border-color: var(--gold);
  transform: translateY(-4px) scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 900px) {
  .card-container, .card-grid, .service-teasers { gap: 12px; }
  .card, .service-teasers > div { padding: 20px 10px; min-width: 180px; }
}
@media (max-width: 700px) {
  .card-container, .card-grid, .service-teasers {
    flex-direction: column;
    gap: 18px;
  }
  .card, .service-teasers > div { min-width: 0; width: 100%; }
}

/* FLEXBOX & RESPONSIVE LAYOUTS ------------------------------- */
.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;
}
@media (max-width: 768px) {
  .content-grid, .card-container, .card-grid, .service-teasers, .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}

/* TESTIMONIALS ----------------------------------------------- */
.testimonials, .testimonial-slider {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  background: #FFF;
  border-radius: 13px;
  box-shadow: 0 2.5px 22px rgba(32,92,64,.13);
  border-left: 4.5px solid var(--gold);
  margin-bottom: 20px;
  flex: 1;
  position: relative;
  min-width: 220px;
}
.testimonial-card p {
  color: #1d1e18;
  font-size: 1.07rem;
}
.customer {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
  opacity: .9;
  font-size: 1rem;
  margin-left: auto;
  font-style: italic;
}
.star-rating {
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1.5px;
  font-size: 1.5rem;
  margin-right: 6px;
  text-shadow: 0 1px 6px #E8E2D8;
}
@media (max-width: 650px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 11px 10px;
    gap: 8px;
  }
  .testimonial-card .star-rating { font-size: 1.12rem; }
  .customer { font-size: 0.95rem; margin-left: 0; }
}

/* CONTACT & FOOTER -------------------------------------------- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 18px 0;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.07rem;
}
footer {
  background: var(--secondary);
  border-top: 2.5px solid var(--gold);
  box-shadow: 0 3px 32px -14px #B88E5A10;
  padding: 0;
  margin-top: 40px;
}
footer section { padding: 0; margin: 0; }
footer .container {
  padding: 26px 16px 0 16px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  transition: color .2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--gold);
}
.footer-contact {
  font-size: .92rem;
  color: #384438;
}
.footer-contact img {
  height: 19px;
  width: 19px;
  margin-bottom: -.2em;
  margin-right: 2.5px;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 14px;
}
.footer-social a {
  display: flex;
  align-items: center;
}
.footer-social img {
  width: 32px;
  height: 32px;
  transition: filter .2s, transform .2s;
  border-radius: 50%;
  box-shadow: 0 1px 6px rgba(32,92,64,.08);
}
.footer-social img:hover {
  filter: brightness(1.18) drop-shadow(0px 2px 12px #B88E5A33);
  transform: scale(1.08);
}
@media (max-width: 900px) {
  footer .content-wrapper {
    gap: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-social { margin-top: 6px; }
}

/* LUXURY ACCENTS --------------------------------------------- */
hr {
  border: none;
  border-bottom: 2px solid var(--gold);
  margin: 28px 0;
}
.section h2::after {
  content: '';
  display: block;
  width: 54px;
  height: 3.5px;
  background: var(--gold);
  border-radius: 30px;
  margin-top: 11px;
}

/* FEATURE ITEMS ---------------------------------------------- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

/* SPACING ENFORCEMENT ---------------------------------------- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }


/* BUTTONS & INTERACTIVES -------------------------------------- */
button, .cta.primary, .cta.secondary {
  outline: none;
  transition: background .2s, color .2s, border .22s, box-shadow .15s;
}
button:focus, .cta.primary:focus, .cta.secondary:focus {
  box-shadow: 0 0 0 3px #B88E5A40;
}

/* MODAL, BANNER, COOKIES --------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--secondary);
  color: #272a23;
  border-top: 2.5px solid var(--gold);
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 38px 19px 38px;
  box-shadow: 0 -2px 24px rgba(32,92,64,.08);
  font-size: 1.03rem;
  animation: cookieslidein .42s cubic-bezier(.57,.37,.21,1);
}
@keyframes cookieslidein {
  from { transform: translateY(105%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner__text {
  flex: 1 1 320px;
  max-width: 500px;
  margin-right: 16px;
  color: #2e3030;
}
.cookie-consent-banner__actions {
  display: flex;
  gap: 13px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-consent-btn, .cookie-consent-btn-settings {
  border: 2px solid var(--gold);
  background: var(--secondary);
  color: var(--accent-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  border-radius: 30px;
  padding: 9px 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all .22s cubic-bezier(.6,0,.2,1);
}
.cookie-consent-btn.accept {
  background: linear-gradient(90deg, var(--gold) 75%, var(--accent-dark) 100%);
  color: #fff;
  border-color: var(--gold);
}
.cookie-consent-btn.accept:hover, .cookie-consent-btn.accept:focus {
  background: var(--accent-dark);
}
.cookie-consent-btn.reject {
  background: #fff8ea;
  color: var(--accent-dark);
}
.cookie-consent-btn.reject:hover, .cookie-consent-btn.reject:focus {
  background: #ffe8b6;
  border-color: var(--accent-dark);
}
.cookie-consent-btn-settings {
  background: var(--secondary);
  color: var(--gold);
  border-color: var(--gold);
}
.cookie-consent-btn-settings:hover, .cookie-consent-btn-settings:focus {
  background: #fff8ea;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 10px 14px 10px;
    font-size: .97rem;
  }
  .cookie-consent-banner__text { margin-right: 0; }
}

.cookie-modal {
  display: none;
  position: fixed;
  z-index: 3200;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(36,42,36,.74);
  align-items: center;
  justify-content: center;
  animation: fadein .3s cubic-bezier(.51,.09,.36,1);
}
.cookie-modal.open {
  display: flex;
}
@keyframes fadein {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal-content {
  background: var(--secondary);
  border-radius: 23px;
  min-width: 280px;
  max-width: 420px;
  box-shadow: 0 8px 48px rgba(32,92,64,.23);
  padding: 32px 28px 26px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal-content h2 {
  margin-bottom: 11px;
  color: var(--primary);
}
.cookie-categories-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 22px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category-locked {
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 1.05rem;
}
.cookie-category label {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
}
.cookie-toggle {
  margin-left: auto;
  min-width: 44px;
}
.cookie-toggle input[type="checkbox"] {
  display: none;
}
.cookie-toggle span {
  display: inline-block;
  width: 38px;
  height: 24px;
  background: #eae8e2;
  border-radius: 18px;
  position: relative;
  transition: background .18s;
  vertical-align: middle;
}
.cookie-toggle span:before {
  content: '';
  position: absolute;
  left: 2.5px;
  top: 2.5px;
  width: 19px;
  height: 19px;
  background: var(--accent-dark);
  border-radius: 50%;
  transition: left .18s, background .18s;
}
.cookie-toggle input[type="checkbox"]:checked + span {
  background: var(--gold);
}
.cookie-toggle input[type="checkbox"]:checked + span:before {
  left: 16px;
  background: var(--gold);
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1.45rem;
  color: var(--accent-dark);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--gold);
}
@media (max-width: 520px) {
  .cookie-modal-content {
    max-width: 99vw;
    min-width: 0;
    padding: 18px 8px 10px 10px;
    border-radius: 12px;
  }
  .cookie-modal-close { top: 7px; right: 7px; }
}

/* MICRO-ANIMATIONS ------------------------------------------ */
.card, .service-teasers > div, .testimonial-card, .cta.primary, .cta.secondary, .cookie-consent-btn, .cookie-consent-btn-settings {
  transition: box-shadow .19s cubic-bezier(.51,.09,.56,1), border .16s, background .18s, color .14s, transform .16s;
}

/* UTILITY & OVERRIDE --------------------------------------- */
[class*="section"] {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  [class*="section"] {
    margin-bottom: 38px;
    padding: 20px 6px;
  }
}

/* Hide elements for print */
@media print {
  header, .mobile-menu, .cookie-consent-banner, .cookie-modal, footer { display: none !important; }
}

/* FOCUS RING ----------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 1.5px;
}

/* Scrollbar Styling (modern) -------------------------------- */
::-webkit-scrollbar { width: 10px; background: #ece7e0; }
::-webkit-scrollbar-thumb { background: var(--accent-dark); border-radius: 4px; }


/* END CSS */
