/* ---------------------- CSS Reset & Normalize ---------------------- */
html,
body,
h1, h2, h3, h4, h5, h6,
ul, ol, li,
p, blockquote,
figure, figcaption,
a, img,
button, input, textarea, select,
footer, header, nav, main, section, article, aside, div {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px; /* Base for px sizes */
  scroll-behavior: smooth;
  --primary: #274B37;
  --secondary: #D3B37A;
  --accent: #FFFFFF;
  --shadow: 0 2px 16px rgba(39,75,55,0.07), 0 1.5px 8px rgba(0,0,0,0.05);
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
button, input, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}
/* ---------------------- Typography ---------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -0.03em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }
.section h1,
.section h2,
.section h3 { margin-top: 0; }
p, li, blockquote {
  font-size: 1rem;
  color: #222;
  margin-bottom: 1em;
}
strong {
  font-weight: 700;
  color: var(--primary);
}
em { color: var(--secondary); font-style: normal; }
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  color: #274B37;
  margin-bottom: 8px;
  line-height: 1.6;
}
/* Responsive Typography */
@media (max-width: 600px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
}
/* ---------------------- Layout Containers ---------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  min-width: 250px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 4px 32px rgba(39,75,55,0.14), 0 3px 18px rgba(0,0,0,0.08);
}
.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) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 20px; }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 14px;
  background: #f8f8f5;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  min-width: 250px;
  flex-direction: column;
  width: 100%;
  max-width: 520px;
}
.testimonial-card blockquote {
  color: #204026;
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.testimonial-card footer {
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fafafa;
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 20px;
}
.info-note { background: #F8F8F5; color: #274B37; border-radius: 8px; padding: 14px 18px; margin-top: 12px; box-shadow: var(--shadow); font-size: 0.97rem; }

/* ---------------------- Lists & Icons ---------------------- */
ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
ul li:last-child { margin-bottom: 0; }
ul li img { width: 26px; height: 26px; flex-shrink: 0; margin-right: 8px; filter: grayscale(0.2) brightness(0.56); }
.text-section ul { gap: 0; margin-bottom: 0; }

/* ---------------------- Buttons ---------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  border-radius: 24px;
  padding: 13px 34px;
  margin-top: 8px;
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
  transition: background 0.16s, transform 0.18s, box-shadow 0.16s;
  outline: none;
  gap: 6px;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: #2E5E42;
  transform: translateY(-2px) scale(1.022);
  box-shadow: 0 4px 32px rgba(39,75,55,0.16);
}
.btn-secondary {
  display: inline-flex;
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  border-radius: 24px;
  padding: 13px 30px;
  margin-top: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.14s, color 0.12s;
  outline: none;
  gap: 6px;
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #CAAA70;
  color: #fff;
}
.btn-tertiary {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 24px;
  padding: 11px 22px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-tertiary:hover,
.btn-tertiary:focus-visible {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ---------------------- Header & Navigation ---------------------- */
header {
  background: #fff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 1px 6px rgba(39,75,55,0.06);
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding-top: 8px;
  padding-bottom: 8px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  margin-left: 36px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--primary);
  font-size: 1rem;
  letter-spacing: -0.01em;
  transition: color 0.14s, text-decoration 0.1s;
  position: relative;
  padding: 6px 0;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--secondary);
  transition: width 0.18s cubic-bezier(.77,0,.18,1);
  margin-top: 2px;
  border-radius: 1px;
}
.main-nav a:hover:after, .main-nav a:focus:after { width: 100%; }
.main-nav a:hover { color: #2E5E42; }

/* Mobile Nav Burger */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: #fff;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  margin-left: 24px;
  transition: background 0.13s, box-shadow 0.18s;
  z-index: 1202;
}
.mobile-menu-toggle:hover {
  background: #2E5E42;
}
@media (max-width: 980px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}

/* ---------------------- Mobile Menu ---------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(39,75,55,0.96);
  color: #fff;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0;
  width: 100vw;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.44s cubic-bezier(.71,.01,0,1.02), opacity 0.31s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  color: #fff;
  background: none;
  font-size: 2.2rem;
  position: absolute;
  top: 22px; right: 18px;
  z-index: 2010;
  padding: 4px 10px;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  line-height: 1;
}
.mobile-menu-close:hover { background: rgba(211,179,122,0.18); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  padding: 110px 32px 32px;
  width: 100vw;
  max-width: 100vw;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 9px 0;
  min-width: 180px;
  border-radius: 8px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(211,179,122,0.16);
  color: var(--secondary);
}

@media (min-width: 981px) {
  .mobile-menu { display: none !important; }
}

/* ---------------------- Main/Section ---------------------- */
main {
  width: 100%;
  margin: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
@media (max-width: 600px) {
  section { padding: 24px 6px; margin-bottom: 32px; }
}

/* ---------------------- Footer ---------------------- */
footer {
  background: #fff;
  border-top: 1px solid #eee;
  box-shadow: 0 -2px 16px rgba(39,75,55,0.04);
  margin-top: 32px;
  font-size: 0.98rem;
}
footer .container {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 28px 12px 6px 12px;
}
.footer-logo img { width: 62px; height: auto; margin-bottom: 10px; }
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  margin-top: 4px;
}
.footer-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.14s;
}
.footer-nav a:hover { color: var(--secondary); }
.footer-contact {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 10px;
  color: #666;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.97rem;
  min-width: 160px;
}
.footer-contact img {
  height: 17px;
  width: 17px;
  margin-right: 4px;
  display: inline-block;
}
.footer-copy {
  text-align: center;
  color: #b0b0b0;
  font-size: 0.86rem;
  margin-bottom: 4px;
}

@media (max-width: 700px) {
  .footer-contact {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}

/* ---------------------- Cookie Consent Banner ---------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: #fff;
  color: #222;
  box-shadow: 0 -2px 22px rgba(39,75,55,0.13);
  padding: 22px 16px 18px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100px);
  transition: opacity 0.35s, transform 0.41s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0px);
}
.cookie-banner .cookies-text {
  font-size: 1rem;
  color: #222;
  flex: 2 1 320px;
  padding-right: 12px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.cookie-banner .btn-primary,
.cookie-banner .btn-secondary,
.cookie-banner .btn-tertiary {
  min-width: 120px;
  min-height: 38px;
  font-size: 1rem;
  box-shadow: none;
  margin: 0;
}

/* Cookie modal (settings) */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(67, 78, 77, 0.28);
  z-index: 3050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal-backdrop.visible {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%) scale(0.96);
  background: #fff;
  border-radius: 14px;
  max-width: 440px;
  width: 92vw;
  z-index: 3060;
  box-shadow: 0 4px 44px rgba(39,75,55,0.19), 0 2px 12px rgba(0,0,0,0.09);
  padding: 36px 28px 22px;
  transition: transform 0.25s, opacity 0.28s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.visible {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 {
  margin-bottom: 14px;
  font-size: 1.22rem;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  background: #f5f5ee;
  border-radius: 8px;
  padding: 10px 14px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  font-weight: 500;
  color: #274B37;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #d1dac3;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background 0.18s;
}
.cookie-modal .cookie-toggle:checked {
  background: var(--secondary);
}
.cookie-modal .cookie-toggle:after {
  content: '';
  position: absolute;
  left: 3px; top: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.09);
  transition: left 0.19s;
}
.cookie-modal .cookie-toggle:checked:after {
  left: 17px;
  background: #F7F5F2;
}
.cookie-modal .cookie-category .essential {
  font-size: 0.99rem;
  color: #919191;
  margin-left: 6px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .btn-primary, .cookie-modal .btn-tertiary {
  min-width: 96px;
  min-height: 36px;
}

/* ---------------------- Utilities ---------------------- */
.mt-2 { margin-top: 2px; }
.mt-8 { margin-top: 8px; }
.mt-20 { margin-top: 20px; }
.mb-2 { margin-bottom: 2px; }
.mb-12 { margin-bottom: 12px; }
.mb-32 { margin-bottom: 32px; }
.w100 { width: 100%; }
.text-center { text-align: center; }
.nowrap { white-space: nowrap; }

/* ---------------------- Responsive ---------------------- */
@media (max-width: 1100px) {
  .container { max-width: 96vw; }
  .main-nav { gap: 18px; margin-left: 0; }
}
@media (max-width: 850px) {
  .container { max-width: 99vw; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding-left: 6px; padding-right: 6px; }
  .footer-contact { flex-direction: column; gap: 8px; }
  section, .section { padding: 18px 4px; margin-bottom: 28px; }
  .testimonial-card { max-width: 100vw; }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  .btn-primary, .btn-secondary, .btn-tertiary { font-size: 0.97rem; padding: 10px 10vw; }
  .cookie-modal { padding: 18px 2vw 10px; }
}

/* ---------------------- Accessibility & Focus ---------------------- */
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus, .btn-tertiary:focus {
  outline: 2px dashed var(--secondary);
  outline-offset: 2px;
  background: rgba(211,179,122,0.08);
}

/* ---------------------- Microinteractions ---------------------- */
.btn-primary, .btn-secondary, .btn-tertiary {
  transition: background 0.14s, color 0.14s, transform 0.14s;
}

/* ---------------------- Card overrides for minimal spacing ---------------------- */
.card + .card { margin-left: 0; }

/* ---------------------- Custom Scrollbar for Stylish Touch ---------------------- */
::-webkit-scrollbar {
  width: 8px;
  background: #eaeaea;
  border-radius: 9px;
}
::-webkit-scrollbar-thumb {
  background: #d4dfdd;
  border-radius: 8px;
}

/* ---------------------- End of CSS ---------------------- */
