/* =======================
   CSS RESET & BASE RULES
   ======================= */
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, menu, 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,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
  font: inherit;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F7F7F5;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, picture {
  max-width: 100%;
  display: block;
}
ul,ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
strong, b {
  font-weight: 600;
}

/* =============================
     LUXURY PREMIUM VARIABLES
============================= */
:root {
  --primary: #20774D;
  --primary-light: #41b87c;
  --secondary: #132B16;
  --bg-main: #F7F7F5;
  --accent: #A8E2A0;
  --gold: #D7B56D;
  --gold-dark: #B49850;
  --button-gradient: #FBE3A5;
  --white: #fff;
  --black: #191917;

  --font-display: 'Montserrat', 'Roboto', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* =============================
        TYPOGRAPHY
============================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--secondary);
  line-height: 1.13;
  margin-bottom: 20px; 
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.7rem;
  font-weight: 800;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
}
h4 {
  font-size: 1.1rem;
  font-weight: 500;
}
p, li, span, a, label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--black);
}
.section h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}
.section h2:after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 7px;
}

/* =============================
         LAYOUT CONTAINERS
============================= */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 2px 24px rgba(32,119,77,0.07), 0 0.5px 1px rgba(180,152,80,0.07);
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(32,119,77,0.09);
  padding: 32px 24px;
  position: relative;
  transition: box-shadow 0.23s;
}
.card:hover {
  box-shadow: 0 4px 32px rgba(180,152,80,0.19);
}
.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;
}

/* =============================
        HEADER & NAVIGATION
============================= */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(32, 119, 77, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 12;
  padding: 15px 0 11px 0;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.logo img {
  height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-right: 20px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: 0.02em;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.16s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}
.button-primary {
  display: inline-block;
  padding: 11px 32px;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: .01em;
  border: none;
  border-radius: 30px;
  color: var(--secondary);
  background: linear-gradient(92deg, var(--gold), var(--gold-dark) 80%);
  box-shadow: 0 2px 16px rgba(180,152,80,0.07);
  transition: background 0.23s, box-shadow 0.23s, color 0.16s;
  cursor: pointer;
  margin-left: 20px;
  text-shadow: 0 .5px 0 #fff;
  outline: none;
}
.button-primary:hover, .button-primary:focus {
  background: linear-gradient(95deg, var(--gold-dark), var(--gold) 75%);
  color: var(--primary);
  box-shadow: 0 5px 20px rgba(32,119,77,0.11);
}
.button-secondary {
  display: inline-block;
  padding: 10px 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--gold);
  color: var(--primary);
  background: #fff;
  border-radius: 22px;
  transition: background 0.17s, color .2s, border .18s;
  margin-top: 14px;
  margin-left: 0;
  margin-bottom: 0;
  text-shadow: 0 .5px 0 #fafafa;
  cursor: pointer;
}
.button-secondary:hover, .button-secondary:focus {
  background: var(--gold);
  color: var(--secondary);
  border-color: var(--gold-dark);
}

/* Hamburger Mobile Menu Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--primary);
  margin-left: 18px;
  cursor: pointer;
  z-index: 32;
  padding: 2px 7px;
  border-radius: 6px;
  transition: background .13s, color .18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--accent);
  color: var(--secondary);
}
/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255,255,255,.977);
  box-shadow: 0 4px 32px rgba(32,119,77,0.12);
  z-index: 50;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.61,.01,.47,1.01);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 28px 20px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--accent);
  border: none;
  color: var(--secondary);
  font-size: 1.8rem;
  border-radius: 30px;
  padding: 4px 14px 2px 14px;
  align-self: flex-end;
  margin-bottom: 16px;
  margin-right: 0;
  cursor: pointer;
  transition: background .18s, color .16s;
  box-shadow: 0 2px 8px rgba(32,119,77,0.08);
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--gold);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.23rem;
  font-weight: 600;
  color: var(--primary);
  padding: 14px 6px;
  border-radius: 10px;
  transition: background 0.12s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}

@media (max-width: 1150px) {
  .container {
    max-width: 98vw;
  }
}

@media (max-width: 1024px) {
  .main-nav a {
    font-size: .97rem;
    padding: 5px 7px;
  }
  header {
    padding-right: 7px;
    padding-left: 7px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
    margin-right: 8px;
  }
}

@media (max-width: 900px) {
  .button-primary {
    padding: 10px 18px;
    font-size: .96rem;
  }
}
/* Hide main nav and show burger on mobile */
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .button-primary {
    margin-left: 6px;
    padding: 10px 16px;
  }
  header {
    flex-wrap: nowrap;
    padding: 11px 0 9px 0;
  }
}
@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .logo img {
    height: 38px;
  }
}

/* =============================
         HERO & GENERAL SECTION
============================= */
main section {
  margin-bottom: 60px;
  padding: 40px 0 30px 0;
}
main section:first-child {
  margin-top: 28px;
}
main section:last-child {
  margin-bottom: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section, main section {
    padding: 25px 5px 20px 5px;
    margin-bottom: 38px;
  }
  .content-wrapper, .card-container, .content-grid, .text-image-section {
    gap: 17px;
  }
}
@media (max-width: 470px) {
  .section, main section {
    padding: 13px 2px;
  }
}

/* Content layouts */
.card-container, .content-grid, .text-image-section {
  margin-top: 0;
  margin-bottom: 0;
}

.content-wrapper ul, .content-wrapper ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin: 0 0 0 1px;
}
.content-wrapper ul li, .content-wrapper ol li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  color: var(--secondary);
}
.content-wrapper ul li img, .content-wrapper ol li img {
  height: 27px;
  margin-right: 8px;
}

/* Project highlights */
.project-highlight {
  background: #fff;
  border-left: 4px solid var(--gold);
  border-radius: 12px 18px 18px 12px;
  box-shadow: 0 1px 12px rgba(180,152,80,0.05), 0 2px 8px rgba(32,119,77,0.04);
  padding: 22px 25px;
  margin-bottom: 20px;
  margin-right: 0;
  margin-left: 0;
}
.project-highlight h3 {
  margin-bottom: 11px;
  color: var(--primary);
}
/* ================
   LISTS & LINKS
==================*/
.section ul, .section ol {
  margin-top: 0;
}
.section ul li, .section ol li {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 4px;
  align-items: center;
}
.section ul li strong, .section ol li strong {
  color: var(--secondary);
}
.section ul b, .section ul strong, .section ol b, .section ol strong {
  color: var(--gold-dark);
  font-weight: 700;
}
.section ul li:last-child, .section ol li:last-child { margin-bottom: 0; }

/* ==================
   TESTIMONIAL CARDS
================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #F8F6EF;
  color: #222;
  padding: 20px;
  border-radius: 18px;
  margin-bottom: 22px;
  border: 1px solid var(--gold);
  box-shadow: 0 1px 10px rgba(32,119,77,.07);
  max-width: 650px;
}
.testimonial-card p {
  font-family: var(--font-body);
  font-weight: 500;
  color: #191917;
  font-size: 1.07rem;
  margin-bottom: 7px;
}
.testimonial-card span {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--primary);
  font-weight: 600;
}
.testimonial-card img {
  height: 22px;
  margin-right: 2px;
  display: inline-block;
}

/* Testimonials responsive */
@media (max-width: 600px) {
  .testimonial-card {
    padding: 13px 7px;
    max-width: 100%;
  }
}

/* ===============
   CARDS MODIFIER
================== */
.featured-article {
  background: #EFE6CF;
  border-left: 5px solid var(--gold-dark);
  border-radius: 10px 18px 18px 10px;
  padding: 19px 22px;
  margin-bottom: 16px;
  font-size: 1.09rem;
}
.featured-article h3 {
  margin-bottom: 10px;
  color: var(--primary);
}
.newsletter-note {
  background: var(--accent);
  color: var(--secondary);
  border-radius: 8px;
  padding: 10px 16px;
  margin-top: 21px;
  font-weight: 500;
}
.contact-form-note {
  background: #F6F7F5;
  color: var(--primary);
  padding: 13px 17px;
  border-radius: 10px;
  font-size: .99rem;
  font-weight: 500;
}
.map-placeholder {
  background: var(--accent);
  color: var(--secondary);
  padding: 2em;
  border-radius: 8px;
  text-align: center;
  margin-top: 0;
}

/* ===============
 FOOTER STYLES
================== */
footer {
  width: 100%;
  background: var(--secondary);
  color: var(--gold);
  padding: 46px 0 18px 0;
}
footer .container {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold);
  font-size: 1.1rem;
}
.footer-brand img {
  height: 44px;
  margin-right: 2px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.98rem;
  color: var(--gold-dark);
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-contact img {
  height: 20px;
  opacity: 0.93;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 6px;
}
.footer-nav a {
  font-family: var(--font-display);
  font-size: .96rem;
  letter-spacing: .01em;
  color: var(--gold);
  padding: 5px 11px;
  border-radius: 7px;
  transition: background 0.17s, color 0.17s;
  font-weight: 500;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--gold);
  color: var(--secondary);
}
.legal {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  font-size: 0.93rem;
  color: #CCA855;
  margin-top: 11px;
  flex-wrap: wrap;
}
.legal a {
  color: #B49850;
  text-decoration: underline;
  font-size: 0.96rem;
  margin-left: 10px;
  transition: color .13s;
}
.legal a:hover { color: var(--gold); }

@media (max-width: 950px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 6px;
  }
}
@media (max-width: 600px) {
  footer .container { gap: 13px; }
  .footer-brand img {
    height: 34px;
  }
}

/* =============================
     COOKIE CONSENT STYLES
============================= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1098;
  width: 100vw;
  background: #fff6e2;
  color: var(--secondary);
  box-shadow: 0 -4px 18px rgba(32,119,77,0.08);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  padding: 20px 28px 18px 28px;
  font-size: 1rem;
  transition: transform 0.34s;
}
.cookie-banner.hide {
  transform: translateY(150%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  max-width: 500px;
  margin-right: 15px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 22px;
  padding: 8px 22px;
  cursor: pointer;
  transition: background .17s, color .16s, box-shadow .19s;
}
.cookie-banner .cookie-accept {
  background: linear-gradient(90deg, var(--gold), var(--gold-dark) 75%);
  color: var(--secondary);
}
.cookie-banner .cookie-reject {
  background: #e8e8e8;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.cookie-banner .cookie-settings {
  background: var(--white);
  color: var(--primary);
  border: 1.5px solid var(--gold);
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  box-shadow: 0 1px 9px rgba(32,119,77,0.13);
  background: var(--accent);
  color: var(--secondary);
}
@media (max-width: 620px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    padding: 16px 7px 12px 7px;
    font-size: 0.96rem;
  }
  .cookie-banner .cookie-text { margin-right: 0; }
  .cookie-banner .cookie-actions {
    width: 100%;
    gap: 8px;
  }
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1199;
  width: 100vw;
  height: 100vh;
  background: rgba(32,119,77,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .cookie-modal-dialog {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 22px rgba(32,119,77,0.17);
  min-width: 340px;
  max-width: 90vw;
  padding: 38px 35px 35px 35px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
  position: relative;
  animation: modal-pop 0.34s cubic-bezier(.72,.01,.44,1.16);
}
@keyframes modal-pop {
  0% { transform: scale(0.9) translateY(40px); opacity: 0.3; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.6rem;
  cursor: pointer;
  border-radius: 10px;
  padding: 2px 9px;
  transition: background .12s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  background: var(--accent);
  color: var(--secondary);
}
.cookie-modal h3 {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.13rem;
  font-weight: 700;
}
.cookie-settings-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
  width: 100%;
  margin-bottom: 9px;
}
.cookie-settings-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  justify-content: flex-start;
}
.cookie-settings-category label {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
}
.cookie-settings-switch {
  display: flex;
  align-items: center;
  margin-left: 6px;
}
.cookie-settings-switch input[type='checkbox'] {
  width: 34px;
  height: 19px;
  accent-color: var(--gold);
  margin-right: 9px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 14px;
}
.cookie-modal-actions .button-primary { margin-left: 0; }

@media (max-width: 480px) {
  .cookie-modal .cookie-modal-dialog {
    padding: 16px 7px 12px 7px;
    min-width: 100%;
  }
}

/* =============================
    TABLES, FAQ LISTS, ETC.
============================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #FFFCEE;
  border-radius: 14px;
  padding: 22px 20px;
  margin-bottom: 28px;
  color: #191917;
  box-shadow: 0 2px 8px rgba(180,152,80,0.05);
  border-left: 3px solid var(--gold);
}
.faq-list h3 {
  color: var(--primary);
  font-size: 1.12rem;
  margin-bottom: 5px;
}
.faq-list p { margin-bottom: 7px; }

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 7px rgba(32,119,77,0.07);
  padding: 16px 15px 11px 15px;
}

/* =============================
    VISUAL ELEMENT ANIMATION
============================= */
.button-primary, .button-secondary, .footer-nav a, .main-nav a, .mobile-menu-toggle, .mobile-menu-close, .mobile-nav a, .cookie-banner button {
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s, border 0.18s;
}
.button-primary:active, .button-secondary:active {
  transform: scale(0.96);
}
.card, .testimonial-card, .project-highlight, .featured-article, .faq-list, .feature-item {
  transition: box-shadow 0.18s, border-color 0.16s, background 0.2s, transform .16s;
}
.card:hover, .project-highlight:hover, .featured-article:hover {
  box-shadow: 0 8px 32px rgba(215,181,109,.18), 0 2px 10px rgba(32,119,77,0.14);
  transform: translateY(-3px) scale(1.013);
  border-left-color: var(--gold-dark);
}

/* ================
   RESPONSIVE LAYOUTS
================== */
@media (max-width: 768px) {
  .content-wrapper, .card-container, .content-grid, .text-image-section {
    flex-direction: column !important;
    gap: 17px !important;
    align-items: flex-start !important;
  }
  .card {
    width: 100%;
    padding: 23px 12px;
  }
  .main-nav, .footer-nav {
    gap: 7px !important;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.43rem; }
  h3 { font-size: 1.02rem; }
}

/* ===============
   MISC HELPERS
================== */
::-webkit-scrollbar {
  width: 8px;
  background: #faf5e4;
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 8px;
}

hr {
  border: 0;
  border-top: 1.8px solid var(--accent);
  margin: 22px 0;
}

/* Highlighted text */
mark, .highlight {
  background: var(--gold);
  color: var(--secondary);
  padding: 2px 6px;
  border-radius: 5px;
  font-weight: 600;
}

/* ===============
   Z-INDEX HELPERS
================== */
header { z-index: 20; }
.mobile-menu { z-index: 50; }
.cookie-banner { z-index: 1098; }
.cookie-modal { z-index: 1199; }

/* ===============
  DISABLED/UTILITY
================== */
[disabled], .is-disabled {
  opacity: .64;
  pointer-events: none;
  filter: grayscale(10%);
}

/* ===============
    A11Y UTILS
================== */
a:focus {
  outline: 2px solid var(--gold-dark);
  outline-offset: 2px;
}
.button-primary:focus, .button-secondary:focus {
  outline: 2px solid var(--primary-light);
}
.mobile-menu a:focus, .mobile-menu-close:focus, .main-nav a:focus {
  outline: 2px solid var(--gold-dark);
}

/* Hide visually but keep accessible */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* =============================
    END LUXURY PREMIUM CSS
============================= */
