/* =======================================
   CSS RESET & FOUNDATION
======================================= */
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,main,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}body{line-height:1;background:#faf9f6;color:#233526;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}*,*:before,*:after{box-sizing:inherit}
ol,ul{list-style:none}a{text-decoration:none;color:inherit;transition:color .2s}img{max-width:100%;display:block;border:0}button,input,select,textarea{font-family:inherit;font-size:inherit;color:inherit;background:transparent;border:none;outline:none;}

/* =======================================
   FONT IMPORTS (Google Fonts)
======================================= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

:root {
  --bp-primary: #194D33;
  --bp-secondary: #307A5E;
  --bp-accent: #F7F7F2;
  --bp-gold: #C6A96B;
  --bp-bg: #F7F7F2;
  --bp-bg-dark: #233526;
  --bp-grey: #ECE8DF;
  --bp-white: #fff;
  --bp-black: #1a2313;
  --shadow-lg: 0 8px 24px rgba(25,77,51,0.10);
  --shadow-card: 0 2px 16px rgba(49,79,67,0.08);
  --radius: 12px;
  --radius-card: 18px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --fz-xs: 14px;
  --fz-s: 16px;
  --fz-m: 18px;
  --fz-l: 24px;
  --fz-xl: 32px;
  --fz-xxl: 48px;
}

/* =======================================
   BODY & TYPOGRAPHY
======================================= */
body {
  font-family: var(--font-body);
  font-size: var(--fz-s);
  background: var(--bp-bg);
  color: var(--bp-black);
  min-height: 100vh;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--bp-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}
h1 {
  font-size: var(--fz-xxl);
  margin-bottom: 16px;
}
h2 {
  font-size: var(--fz-xl);
  margin-bottom: 12px;
}
h3 {
  font-size: var(--fz-l);
  margin-bottom: 8px;
  color: var(--bp-secondary);
}
p,li {
  font-size: var(--fz-s);
  color: var(--bp-black);
  line-height: 1.7;
  margin-bottom: 12px;
}
strong { color: var(--bp-primary); font-weight: 700; }
a.cta, .cta-btn {
  font-family: var(--font-display);
  background: var(--bp-gold);
  color: #fff;
  border-radius: var(--radius);
  font-size: var(--fz-m);
  font-weight: 600;
  padding: 14px 34px;
  box-shadow: 0 2px 8px rgba(49,79,67,0.08);
  transition: background .22s, color .22s, box-shadow .22s, transform .15s;
  border: none;
  display: inline-block;
  letter-spacing: 0.04em;
  cursor:pointer;
  position:relative;
  z-index:1;
}
a.cta:hover, .cta-btn:hover, a.cta:focus, .cta-btn:focus {
  background: #b49456;
  color: var(--bp-white);
  box-shadow: 0 4px 16px rgba(49,79,67,0.14);
  transform: translateY(-2px) scale(1.037);
}

/* =======================================
   LAYOUT CONTAINERS
======================================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =======================================
   HEADER & NAVIGATION
======================================= */
header {
  background: var(--bp-white);
  box-shadow: 0 1px 12px rgba(25,77,51,0.03);
  position: sticky;
  top: 0;
  z-index: 102;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 28px;
}
.logo {
  display: flex;
  align-items: center;
  height: 52px;
}
.logo img { height: 48px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--bp-primary);
  padding: 8px 14px;
  border-radius: 7px;
  font-size: var(--fz-s);
  transition: background .16s, color .16s;
}
.main-nav a:not(.cta):hover, .main-nav a:not(.cta):focus {
  background: var(--bp-grey);
  color: var(--bp-secondary);
}
.main-nav a.cta {
  margin-left: 14px;
}

.mobile-menu-toggle {
  display: none;
  background: var(--bp-gold);
  color: var(--bp-white);
  font-size: 30px;
  width: 46px; height: 46px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background .18s;
  z-index: 110;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus { background: #b49456; }

/* =======================================
   MOBILE MENU (Overlay)
======================================= */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  z-index: 120;
  top: 0; left: 0; right: 0;
  bottom: 0;
  background: var(--bp-primary);
  width: 100vw;
  height: 100vh;
  transform: translateX(-110%);
  transition: transform .36s cubic-bezier(.86,0,.07,1);
  box-shadow: 2px 0 16px rgba(25,77,51,0.07);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  margin: 26px 0 0 28px;
  background: none;
  color: var(--bp-gold);
  font-size: 40px;
  border: none;
  cursor: pointer;
  transition: color .16s;
  align-self: flex-start;
  z-index: 130;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: #dac185; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 48px 0 0 36px;
  width: 80vw;
}
.mobile-nav a {
  color: var(--bp-gold);
  font-family: var(--font-display);
  font-size: var(--fz-xl);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px;
  transition: color .16s, background .16s;
  border-radius: 5px;
}
.mobile-nav a:hover, .mobile-nav a:focus { color: var(--bp-white); background:rgba(198,169,107,0.09); }

/* Burger appears, nav hides on mobile */
@media (max-width: 991px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 992px) {
  .mobile-menu { display: none !important; }
}

/* =======================================
   HERO SECTION & CALL TO ACTIONS
======================================= */
.hero-section {
  background: linear-gradient(90deg, var(--bp-bg) 0 70%, #FFF8ED 100%);
  min-height: 300px;
  padding: 56px 0 42px 0;
  display: flex;
  align-items: center;
}
.hero-section h1 {
  color: var(--bp-primary);
  font-size: var(--fz-xxl);
  margin-bottom: 12px;
}
.hero-section p {
  font-size: var(--fz-m);
  color: #395944;
  margin-bottom: 28px;
  max-width: 650px;
}
.hero-section .cta-btn {
  margin-top: 8px;
}

.cta-section {
  background: var(--bp-primary);
  color: var(--bp-white);
  border-radius: var(--radius-card);
  text-align: center;
  box-shadow: var(--shadow-lg);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.cta-section h2,
.cta-section p {
  color: var(--bp-white);
}
.cta-section .cta-btn {
  background: var(--bp-gold);
  color: #fff;
  border: none;
  margin-top: 18px;
}

/* =======================================
   FEATURE GRID & CARDS
======================================= */
.feature-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin: 12px 0;
  justify-content: flex-start;
}
.feature-item {
  background: var(--bp-white);
  border-radius: 13px;
  box-shadow: var(--shadow-card);
  padding: 28px 22px;
  min-width: 200px;
  min-height: 210px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 1px solid #ede9dc;
  margin-bottom: 20px;
  position: relative;
  transition:box-shadow .22s, transform .22s, border-color .16s;
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}
.feature-item h3 {
  margin-bottom: 8px;
  color: var(--bp-primary);
  font-size: var(--fz-l);
}
.feature-item p {
  color: #394e3b;
  font-size: var(--fz-s);
}
.feature-item:hover {
  box-shadow: 0 6px 22px rgba(49,79,67,0.13);
  border-color: var(--bp-gold);
  transform: translateY(-4px) scale(1.025);
  z-index: 1;
}

/* =======================================
   TESTIMONIAL SLIDER/CARD
======================================= */
.testimonials-section {
  background: #fffef9;
  border-top: 1px solid #eee7d1;
  padding: 60px 0;
  margin-bottom: 60px;
}
.testimonial-slider {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 30px;
  justify-content: flex-start;
}
.testimonial-card {
  background: var(--bp-white);
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(25,77,51,0.07);
  border: 1.7px solid #f4e9d6;
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  color: var(--bp-black);
  margin-bottom: 20px;
  min-width: 250px;
  flex: 1 1 320px;
  transition: box-shadow .22s, border-color .16s, transform .22s;
}
.testimonial-card p {
  color: #374533;
  font-size: var(--fz-m);
  margin-bottom: 10px;
  font-style: italic;
}
.testimonial-card span {
  color: var(--bp-primary);
  font-weight: 600;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(49,79,67,0.16);
  border-color: var(--bp-gold);
  transform: translateY(-3px) scale(1.012);
}

/* =======================================
   LISTS, UL/OL
======================================= */
ul li, ol li {
  margin-bottom: 7px;
  position: relative;
  padding-left: 26px;
}
ul li:before, ol li:before {
  content: '';
  position: absolute;
  left: 9px;
  top: 12px;
  width: 7px;
  height: 7px;
  background: var(--bp-gold);
  border-radius: 50%;
  display: inline-block;
}

ul.resource-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}
ul.resource-list li {
  background: #fff;
  padding: 14px 18px;
  border-radius: 9px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: var(--fz-s);
  font-family: var(--font-body);
  color: var(--bp-primary);
  transition: box-shadow .18s, background .18s;
}
ul.resource-list li:hover { box-shadow: 0 2px 16px #dac18533; background: #faf8f0; }
ul.resource-list img { width: 28px; height: 28px; }
ul.resource-list a {
  color: var(--bp-secondary);
  font-weight: 600;
  font-family: var(--font-display);
}
ul.resource-list a:hover { color: var(--bp-gold); text-decoration: underline; }

/* =======================================
   ABOUT, TEAM, TEXT-IMAGE SECTIONS
======================================= */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
  margin-top: 6px;
}
.map {
  background: #fcfaf5;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* =======================================
   CARD CONTAINER, CARDS, CONTENT-GRID
======================================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--bp-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  padding: 28px 22px;
  position: relative;
  min-width: 240px;
  transition: box-shadow .18s, border-color .18s, transform .12s;
}
.card:hover {
  box-shadow: 0 6px 24px #b494560e;
  border-color: var(--bp-gold);
  transform: translateY(-2px);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/* =======================================
   FAQ STYLES
======================================= */
.faq-section, .faq-accordion-section {
  background: #fffef9;
  padding: 48px 0;
  border-radius: var(--radius-card);
  margin-bottom: 60px;
}
.faq-snippet, .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.faq-snippet h3, .faq-accordion h3 {
  color: var(--bp-secondary);
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 700;
}

.faq-item {
  background: var(--bp-white);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 20px 20px 16px 20px;
  margin-bottom: 20px;
  border-left: 4px solid var(--bp-gold);
  transition: box-shadow .16s;
}
.faq-item:hover {
  box-shadow: 0 2px 16px #c6a96b22;
}

/* =======================================
   TIMELINE
======================================= */
.timeline {
  border-left: 4px solid var(--bp-gold);
  padding-left: 24px;
  margin-top: 18px;
  color: var(--bp-primary);
  font-weight: 600;
  font-family: var(--font-display);
}

/* =======================================
   FOOTER
======================================= */
footer {
  background: var(--bp-primary);
  color: var(--bp-white);
  border-top: 5px solid var(--bp-gold);
  margin-top: 70px;
  font-size: var(--fz-s);
  letter-spacing: .01em;
}
footer .container {
  padding-top: 40px;
  padding-bottom: 18px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}
.footer-contact, .footer-links, .footer-social {
  min-width: 190px;
  max-width: 260px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact h3, .footer-links h3, .footer-social h3 {
  color: var(--bp-gold);
  font-size: var(--fz-m);
  margin-bottom: 4px;
}
.footer-links a {
  color: var(--bp-white);
  font-weight: 500;
  padding: 3px 0;
  transition: color .15s;
}
.footer-links a:hover { color: var(--bp-gold); }
.footer-contact p img,
.footer-contact p svg { vertical-align: middle; height:18px;width:18px;margin-right:9px; }
.footer-social {
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}
.footer-social a img {
  width: 30px;
  height: 30px;
  filter: grayscale(0.4);
  transition: filter .13s, transform .13s;
}
.footer-social a:hover img { filter: grayscale(0); transform: scale(1.07); }
.footer-bottom {
  border-top: 1px solid #274e36;
  padding-top: 10px;
  text-align:center;
  color: #eadfb6;
  font-size: calc(var(--fz-xs) * 0.99);
}

/* =======================================
   COOKIE CONSENT BANNER
======================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bp-bg-dark);
  color: var(--bp-white);
  box-shadow: 0 -2px 18px #1a23131a;
  padding: 26px 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  font-size: var(--fz-s);
  font-family: var(--font-body);
  justify-content: center;
  transition: transform 0.35s cubic-bezier(.7,0,.3,1);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}
.cookie-btn, .cookie-reject-btn, .cookie-settings-btn {
  padding: 10px 27px;
  border-radius: 8px;
  border: none;
  font-family: var(--font-display);
  font-size: var(--fz-s);
  font-weight: 500;
  background: var(--bp-gold);
  color: var(--bp-white);
  cursor: pointer;
  transition: background .14s, color .14s, box-shadow .15s, transform .13s;
  margin-left: 0;
}
.cookie-btn:focus,.cookie-btn:hover { background: #b49456; }
.cookie-reject-btn {
  background: #253d2c;
  border: 1px solid var(--bp-gold);
  color: var(--bp-gold);
}
.cookie-reject-btn:focus,.cookie-reject-btn:hover { color: var(--bp-white); background: var(--bp-secondary); }
.cookie-settings-btn {
  background: transparent;
  color: var(--bp-gold);
  border: 1px solid var(--bp-gold);
}
.cookie-settings-btn:focus,.cookie-settings-btn:hover { background: var(--bp-gold); color: var(--bp-white); }

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(25,77,51,0.81);
  z-index: 999;
  display: flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition: opacity .35s;
}
.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: var(--bp-white);
  color: var(--bp-primary);
  border-radius: 16px;
  padding: 40px 28px 24px 28px;
  max-width: 350px;
  min-width: 0;
  box-shadow: var(--shadow-lg);
  position:relative;
  font-family: var(--font-body);
  text-align:left;
  display:flex;
  flex-direction:column;
  gap:27px;
  margin:16px;
  z-index:1;
}
.cookie-modal-content h2 {
  color: var(--bp-gold);
  margin-bottom: 8px;
  font-size: 22px;
}
.cookie-modal-content ul {
  gap: 12px;
  display:flex;
  flex-direction:column;
}
.cookie-modal-content label {
  font-size: var(--fz-s);
  display:flex;
  align-items:center;
  gap:8px;
}
.cookie-toggle {
  accent-color: var(--bp-gold);
  width:18px;
  height:18px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  color: var(--bp-gold);
  font-size: 30px;
  border: none;
  cursor: pointer;
  transition: color .14s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus { color: var(--bp-secondary); }
.cookie-modal-content .cookie-btn {
  margin-top: 18px;
  width: 100%;
}

/* =======================================
   RESPONSIVE: MOBILE FIRST
======================================= */
@media (max-width: 991px) {
  .container { max-width: 98vw; padding: 0 16px; }
  .footer-main { flex-direction: column; gap: 30px; align-items: flex-start; }
}
@media (max-width: 868px) {
  .feature-grid, .testimonial-slider {
    gap: 20px;
  }
  .footer-main { gap: 18px; }
}
@media (max-width: 768px) {
  header .container { height: 60px; }
  .hero-section { padding: 34px 0 22px 0; min-height: 180px; }
  .hero-section h1 { font-size: 34px; }
  .hero-section p { font-size: var(--fz-s); }
  .cta-section { padding: 27px 10px; }
  .feature-grid { gap: 14px; }
  .testimonial-slider { gap: 12px; }
  .feature-item, .testimonial-card { min-width: 94vw; padding: 18px 10px; }
  .section { margin-bottom: 28px; padding: 24px 10px; }
  .content-grid { gap: 8px; }
  .card-container { gap: 10px; }
  .map { flex-direction: column; gap: 8px; padding: 10px; }
}
@media (max-width: 600px) {
  .feature-grid, .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .content-wrapper { gap: 16px; }
  .section { margin-bottom: 20px; padding: 18px 3px; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .cookie-banner { flex-direction: column; gap: 12px; padding: 16px 6px; }
}

/* =======================================
   TRANSITIONS & MICRO-INTERACTIONS
======================================= */
a, .cta-btn, .feature-item, .card, .testimonial-card, .cookie-btn, .cookie-settings-btn,.cookie-reject-btn {
  transition: background .18s, color .17s, box-shadow .18s, border-color .18s, transform .11s;
}

/* =======================================
   ACCESSIBILITY: FOCUS VISIBLE
======================================= */
:focus-visible {
  outline: 2.7px solid var(--bp-gold);
  outline-offset: 1.5px;
}

/* =======================================
   PRINT STYLES (minimal)
======================================= */
@media print {
  header,footer,.mobile-menu,.cookie-banner,.cookie-modal {display:none !important;}
  body {background:#fff; color:#233526;}
  a, a:visited {color:#194D33; text-decoration:underline;}
}
