/* 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;
}
body {
  line-height: 1.5;
  background: linear-gradient(135deg, #F7F7F2 0%, #EAF7F2 100%);
  color: #222;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: #385B3B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D9AB7C;
}

/* FONTS */
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:700,900|Lato:400,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #385B3B;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 700;
}
p, li, dl, dd {
  font-size: 1rem;
  color: #303030;
}
strong {
  color: #385B3B;
}

/* LAYOUT CONTAINERS */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  width: 100%;
  margin-bottom: 40px;
}

/* HEADER/NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 6px 32px 0 rgba(56,91,59,0.09);
  position: relative;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
.logo img {
  height: 48px;
  display: block;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-left: 32px;
}
.main-nav a {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 0;
  color: #385B3B;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  border-bottom: 2px solid #D9AB7C;
  color: #D9AB7C;
}
.cta-btn {
  background: linear-gradient(90deg, #D9AB7C 0%, #385B3B 100%);
  color: #fff !important;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 28px;
  box-shadow: 0 2px 12px 0 rgba(56,91,59,0.08);
  border: none;
  transition: background 0.25s, box-shadow 0.25s, transform 0.15s;
  cursor: pointer;
  letter-spacing: 0.6px;
  margin-left: 24px;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #385B3B 0%, #D9AB7C 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px 0 rgba(56,91,59,0.13);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #D9AB7C;
  border: none;
  color: #fff;
  font-size: 2rem;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s;
  z-index: 901;
  position: relative;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #385B3B;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(56,91,59,0.97);
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(0.76,0.09,0.37,0.98);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 26px 26px 28px;
  gap: 32px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fff;
  color: #385B3B;
  border: none;
  font-size: 2.3rem;
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #D9AB7C;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 10px 0 10px 4px;
  transition: color 0.22s, background 0.2s;
  border-radius: 6px;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #D9AB7C;
  background: rgba(255,255,255,0.05);
}

/* MAIN SECTIONS */
main {
  flex: 1 1 auto;
  min-height: 70vh;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.section:last-child {
  margin-bottom: 0;
}
.text-section {
  margin-bottom: 28px;
}

/* GRID & FLEX PATTERNS */
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.feature-grid > div, .service-list > div {
  flex: 1 1 220px;
  background: #fff;
  box-shadow: 0 2px 24px 0 rgba(56,91,59,0.07);
  border-radius: 20px;
  padding: 28px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 220px;
  max-width: 320px;
  min-height: 195px;
  margin-bottom: 20px;
  border: 1px solid #EAE7DB;
  transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
  position: relative;
}
.feature-grid > div:hover, .service-list > div:hover {
  box-shadow: 0 12px 28px 0 rgba(56,91,59,0.21);
  transform: translateY(-5px) scale(1.02);
  border: 1px solid #D9AB7C;
}
.feature-grid img, .service-list img {
  width: 46px;
  height: 46px;
  margin-bottom: 4px;
}

.service-list > div h3 span {
  color: #D9AB7C;
  font-size: 0.96rem;
  margin-left: 6px;
  font-weight: 400;
}

ul {
  margin-bottom: 16px;
  list-style: disc inside;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 14px;
}
li {
  font-size: 1rem;
  line-height: 1.7;
  padding-left: 6px;
}
dl {
  margin-bottom: 20px;
}
dt {
  font-weight: bold;
  color: #385B3B;
}
dd {
  margin-bottom: 12px;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #222;
  border-radius: 16px;
  box-shadow: 0 1px 14px 0 rgba(56,91,59,0.08);
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #E2E2E2;
  transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
  min-height: 98px;
}
.testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  color: #385B3B;
  font-size: 1.13rem;
  line-height: 1.5;
  quotes: "\201C" "\201D";
  margin: 0;
  font-style: italic;
}
.testimonial-card p {
  margin: 0;
  color: #222;
  font-size: 1rem;
}
.testimonial-card strong {
  color: #24281c;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px 0 rgba(56,91,59,0.13);
  border: 1px solid #D9AB7C;
  transform: translateY(-3px) scale(1.02);
}

/* BUTTONS */
button, .cta-btn, input[type='submit'], input[type='button'] {
  font-family: 'Lato', sans-serif !important;
  outline: none;
  border: none;
  cursor: pointer;
}

/* FOOTER */
footer {
  background: #385B3B;
  color: #fff;
  padding: 48px 0 32px 0;
  margin-top: 40px;
  font-size: 1rem;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.logo-footer img {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  display: block;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.footer-nav a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #D9AB7C;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
}
footer .copyright {
  color: #F7F7F2;
  font-size: 0.93rem;
  margin-top: 22px;
  width: 100%;
  opacity: 0.82;
}

/* CARD/CONTENT PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 24px 0 rgba(56,91,59,0.10);
  border: 1px solid #EAE7DB;
  padding: 28px 22px;
  min-width: 210px;
  max-width: 360px;
  transition: box-shadow 0.18s, border 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 12px 28px 0 rgba(56, 91, 59, 0.14);
  border: 1px solid #D9AB7C;
  transform: translateY(-4px) scale(1.015);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin: 28px 0 0 0;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: linear-gradient(101deg, #fff 60%, #EAF7F2 100%);
  color: #222;
  box-shadow: 0 -2px 16px 0 rgba(56,91,59,0.10);
  border-top: 1.5px solid #D9AB7C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 2000;
  padding: 16px 18px;
  gap: 22px;
  transition: transform 0.32s cubic-bezier(0.53,0.21,0.04,0.94), opacity 0.32s cubic-bezier(0.53,0.21,0.04,0.94);
}
.cookie-banner.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-left: 18px;
}
.cookie-banner button {
  background: #385B3B;
  color: #fff;
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 700;
  padding: 9px 20px;
  border: none;
  transition: background 0.17s, color 0.2s, box-shadow 0.13s;
  margin-left: 3px;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #D9AB7C;
  color: #222;
  box-shadow: 0 4px 16px 0 rgba(56,91,59,0.06);
}
.cookie-banner .cookie-settings-btn {
  background: transparent;
  color: #385B3B;
  border: 1.5px solid #385B3B;
  padding: 8px 16px;
  transition: background 0.13s, color 0.18s, border 0.15s;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #385B3B;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(56,91,59,0.55);
  z-index: 2002;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 420px;
  width: 95vw;
  padding: 34px 32px 28px 32px;
  box-shadow: 0 12px 48px 0 rgba(56,91,59,0.21);
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 2004;
  position: relative;
}
.cookie-modal h3 {
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category label {
  font-weight: 500;
  color: #222;
}
.cookie-category input[type='checkbox'] {
  width: 20px;
  height: 20px;
  accent-color: #D9AB7C;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 16px;
  right: 18px;
  background: transparent;
  color: #385B3B;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal .close-cookie-modal:hover, .cookie-modal .close-cookie-modal:focus {
  background: #D9AB7C;
  color: #fff;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.cookie-modal .cookie-modal-actions button {
  font-size: 1rem;
  border-radius: 20px;
  padding: 9px 18px;
  font-weight: 700;
  border: none;
  background: #385B3B;
  color: #fff;
  margin-left: 0;
  transition: background 0.18s, box-shadow 0.13s;
}
.cookie-modal .cookie-modal-actions button.secondary {
  background: #D9AB7C;
  color: #222;
}
.cookie-modal .cookie-modal-actions button:hover, .cookie-modal .cookie-modal-actions button:focus {
  background: #303f3d;
  color: #fff;
  box-shadow: 0 4px 12px 0 rgba(56,91,59,0.11);
}
.cookie-modal .cookie-modal-actions button.secondary:hover, .cookie-modal .cookie-modal-actions button.secondary:focus {
  background: #e5c69b;
  color: #385B3B;
}
.cookie-category .essential {
  font-weight: 700;
  color: #385B3B;
}

/* RESPONSIVE: MOBILE FIRST */
@media (max-width: 1149px) {
  .container {
    max-width: 98vw;
    padding: 0 16px;
  }
}
@media (max-width: 900px) {
  .feature-grid > div, .service-list > div {
    min-width: 180px;
    flex: 1 1 48%;
    padding: 20px 10px 16px 10px;
    max-width: 99%;
  }
}
@media (max-width: 800px) {
  .main-nav {
    gap: 14px;
    margin-left: 12px;
  }
  .footer-nav {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .content-wrapper {
    margin-bottom: 24px;
  }
  footer .container {
    gap: 22px;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 6px;
    height: 62px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
  }
  .feature-grid, .service-list {
    gap: 14px;
  }
  .feature-grid > div, .service-list > div {
    min-width: 90vw;
    max-width: 98vw;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    min-height: 80px;
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 580px) {
  h1 {
    font-size: 1.38rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  h3 {
    font-size: 1.05rem;
  }
  section {
    padding: 22px 7px;
    margin-bottom: 34px;
  }
  .container {
    padding: 0 6px;
  }
  .card {
    padding: 14px 6px;
    min-width: 94vw;
    max-width: 99vw;
  }
}

/* ANIMATIONS & TRANSITIONS */
.section, .card, .testimonial-card, .feature-grid > div, .service-list > div, .cookie-banner {
  transition: box-shadow 0.2s, transform 0.17s, border 0.18s, background 0.22s;
}

/* MICRO-INTERACTIONS */
input, textarea, select {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 5px;
  padding: 9px 13px;
  border: 1.3px solid #E8E8E8;
  margin-bottom: 12px;
  background: #fff;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border: 1.3px solid #D9AB7C;
  outline: none;
}

/* SPECIAL: HIDE Utility */
.hide { display: none !important; }

/* HELPERS FOR ACCESSIBILITY */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* FORMS */
form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* CONTACT GUIDANCE block */
.contact-guidance p {
  background: #f7f7f2;
  border-left: 4px solid #D9AB7C;
  border-radius: 10px;
  padding: 14px 14px 13px 26px;
  margin-bottom: 16px;
  font-style: italic;
}

/* DL (Definition List) */
dt {
  margin-bottom: 2px;
}
dd {
  margin-left: 8px;
}

/* Utilities: Margins between sections */
.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;
}
