/* ================================================== 
   CSS RESET & BASELINE 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #FAFAF7;
  color: #223227;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
img {
  border-style: none;
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}
*, *::before, *::after {
  box-sizing: border-box;
}

/* ================================================== 
   NATURE_ORGANIC BRAND STYLES & CUSTOM PROPERTIES
================================================== */
:root {
  --color-primary: #1E3A56;
  --color-secondary: #F4A259;
  --color-accent: #E9ECE7;
  --color-green: #38745b;
  --color-earth: #a98361;
  --color-bg: #FAFAF7;
  --color-text: #223227;
  --color-dark: #233626;
  --color-card: #FFFFFF;
  --color-muted: #eceae2;
  --color-shadow: rgba(55, 80, 62, 0.07);
  --radius-md: 18px;
  --radius-lg: 36px;
  --shadow-md: 0 6px 20px var(--color-shadow);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ============================
   TYPOGRAPHY & HIERARCHY
============================ */
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
  background-color: var(--color-bg);
  letter-spacing: 0.01em;
  min-height: 100vh;
  scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

p, li, dd {
  font-size: 1rem;
  margin-bottom: 12px;
}

strong, b {
  color: var(--color-dark);
}
em, i {
  color: var(--color-green);
}

blockquote {
  font-family: var(--font-display);
  font-style: italic;
  background: var(--color-muted);
  border-left: 4px solid var(--color-green);
  padding: 16px 32px;
  margin: 0 0 8px 0;
  color: var(--color-dark);
  border-radius: var(--radius-md);
}

/* =========================
    LINKS & BUTTONS
========================= */
a, .cta, button {
  transition: color 0.18s, background 0.22s, border 0.18s, box-shadow 0.22s;
}

.cta, a.cta, button.cta {
  background: var(--color-green);
  color: #fff;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.1rem;
  padding: 13px 38px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px 0 rgba(56,116,91,0.18);
  border: 0;
  display: inline-block;
  margin: 12px 0 0 0;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.cta:hover, .cta:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 6px 20px 0 rgba(244,162,89,0.20);
}

nav a:not(.cta) {
  color: var(--color-primary);
  padding: 8px 11px;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: background 0.18s;
}
nav a:not(.cta):hover, nav a:not(.cta):focus {
  background: var(--color-accent);
  color: var(--color-green);
}


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

@media (min-width: 769px) {
  .content-wrapper {
    flex-direction: row;
  }
}


/* ========================
   HEADER & NAVIGATION
======================== */
header {
  background: #F6F5F0;
  box-shadow: 0 2px 8px var(--color-shadow);
  border-bottom: 1.5px solid var(--color-muted);
  position: relative;
  z-index: 40;
}
header .container {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 18px;
}
header nav {
  display: flex;
  gap: 11px;
  align-items: center;
}
header .cta {
  margin-left: 14px;
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-green);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  width: 46px;
  height: 46px;
  font-size: 2rem;
  margin-left: 16px;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(56,116,91,.05);
  transition: background 0.20s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}

@media (min-width: 1025px) {
  .mobile-menu-toggle { display: none; }
}

@media (max-width: 1024px) {
  header nav { display: none; }
}

/* ===============
   MOBILE MENU
================ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,50,39,0.90);
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.55,.19,.32,1.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1002;
  box-shadow: 0 2px 10px 0 rgba(244,162,89,0.18);
  transition: background 0.20s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-green);
  color: #fff;
}
.mobile-nav {
  margin-top: 110px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 0 40px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 15px 10px;
  border-radius: var(--radius-md);
  transition: background 0.18s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-green);
  color: #FAFAF7;
}
.mobile-nav a.cta {
  background: var(--color-secondary);
  color: var(--color-dark);
  margin-top: 8px;
  font-weight: bold;
  font-size: 1.15rem;
  text-align: center;
  padding: 15px 36px;
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/* ================
   MAIN & SECTIONS
================== */
main > section,
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: var(--radius-lg);
  box-sizing: border-box;
}
main > section:last-child {
  margin-bottom: 0;
}

.section, .about-short, .about, .values, .why-choose, .faq-short, .legal, .services, .pricing, .contact, .contact-form, .confirmation {
  background: var(--color-card);
  box-shadow: 0 4px 20px 0 var(--color-shadow);
  border-radius: var(--radius-lg);
}

.hero {
  background: linear-gradient(120deg, #E9ECE7 60%, #a98361 100%);
  margin-bottom: 48px;
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: 0 2px 28px 0 rgba(56,116,91,0.10);
}
.hero .content-wrapper {
  gap: 0;
  align-items: flex-start;
  justify-content: center;
  min-height: 240px;
  padding: 24px 0;
}
.hero h1 {
  color: var(--color-green);
  font-size: 2.6rem;
  line-height: 1.18;
}
.hero p {
  color: var(--color-dark);
  font-size: 1.13rem;
  margin-bottom: 18px;
}

.cta {
  display: inline-block;
}

/* ======== CARDS & FLEX CONTAINERS ======= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  box-shadow: 0 3px 14px 0 var(--color-shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.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;
  background: #F5F8F1;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  margin-bottom: 20px;
  flex: 1 1 330px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.section ul, .section ol {
  margin-bottom: 18px;
  padding-left: 20px;
}
.section ul li, .section ol li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 22px;
  font-size: 1rem;
}
.section ul li:before {
  content: '•';
  color: var(--color-green);
  position: absolute;
  left: 0;
}
.section ol li {
  list-style: decimal inside;
  padding-left: 2px;
}

/* ========== FEATURES/FLEX GRIDS ========== */
.features .feature-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.feature {
  background: var(--color-muted);
  border-radius: var(--radius-md);
  box-shadow: 0 1.5px 10px 0 var(--color-shadow);
  padding: 28px 24px 18px 24px;
  flex: 1 1 260px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.15s;
  border-left: 5px solid var(--color-green);
}
.feature img {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
}
.feature:hover {
  box-shadow: 0 6px 32px 0 rgba(56,116,91,0.16);
  transform: translateY(-3px) scale(1.025);
}

/* ========= TESTIMONIALS ======== */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}
.testimonial-card blockquote {
  background: transparent;
  border-left: none;
  color: var(--color-dark);
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0;
  padding: 0 0 0 0;
}
.testimonial-meta {
  color: var(--color-primary);
  font-size: 0.97rem;
  font-style: italic;
  margin-left: 12px;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}
.review-highlight {
  color: var(--color-green);
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-top: 16px;
  text-align: center;
}

/* ========= CAROUSELS OR MARQUEE STRIPS ======== */
.marquee {
  min-height: 46px;
  background: var(--color-accent);
  color: var(--color-green);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.06rem;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.05em;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  padding: 10px 0;
  display: flex;
}

/* ===============
   PRICING TABLE
================ */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--color-card);
  box-shadow: 0 2px 10px 0 var(--color-shadow);
}
.pricing-table thead tr {
  background: var(--color-green);
  color: #fff;
}
.pricing-table th, 
.pricing-table td {
  padding: 16px 18px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid var(--color-accent);
}
.pricing-table th {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}
.service-price {
  color: var(--color-green);
  background: var(--color-accent);
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 0.98rem;
  margin-left: 4px;
}
.included-features li {
  color: var(--color-green);
  font-weight: 500;
  margin-bottom: 8px;
}
.special-packages {
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 10px;
  padding: 10px 16px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 1rem;
}

/* ======= FAQ: DESCRIPTIONS & DEFINITIONS ======= */
.faq-list dt {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-green);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.faq-list dd {
  margin-bottom: 18px;
  margin-left: 0;
  font-size: 1rem;
  color: var(--color-dark);
}

/* =============
  FORMS, CONTACT
=============== */
address {
  font-size: 1.07rem;
  color: var(--color-primary);
  line-height: 1.8;
  margin-bottom: 8px;
}
.contact .trust-signals ul {
  margin: 10px 0;
  padding-left: 24px;
}
.contact .trust-signals li {
  color: var(--color-green);
  font-size: 1rem;
  margin-bottom: 6px;
}
.contact-form em {
  color: var(--color-earth);
  font-family: var(--font-display);
  font-size: 1.12rem;
}

/* =============
   FOOTER
============== */
footer {
  background: #f1ede8;
  border-top: 1.5px solid var(--color-earth);
  margin-top: 48px;
  padding: 36px 0 20px 0;
  box-shadow: 0 -1.5px 8px 0 var(--color-shadow);
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 8px;
}
footer nav a {
  color: var(--color-green);
  font-weight: 500;
  font-size: 1rem;
  border-radius: var(--radius-md);
  padding: 8px 14px;
}
footer nav a:hover, footer nav a:focus {
  background: var(--color-muted);
  color: var(--color-primary);
}
.footer-contact {
  color: var(--color-dark);
  font-size: 0.96rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}
.footer-brand img {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background: var(--color-muted);
}
.footer-brand span {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--color-primary);
}

/* ================
   COOKIE BANNER
================ */
.cookie-banner {
  position: fixed;
  left: 13px; right: 13px;
  bottom: 13px;
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(55,80,62,.25);
  border-radius: var(--radius-md);
  z-index: 9999;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 22px 30px 22px 26px;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 1;
  animation: cookie-in .4s cubic-bezier(.55,.19,.32,1.05);
}
@keyframes cookie-in {
  from { transform: translateY(120px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 1 1 250px;
  color: var(--color-dark);
  margin-bottom: 0;
  font-size: 1.01rem;
}
.cookie-banner .cookie-btn, 
.cookie-banner .cookie-set {
  font-family: var(--font-display);
  font-weight: bold;
  border-radius: var(--radius-md);
  padding: 8px 18px;
  margin-left: 7px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.16s, color 0.14s, box-shadow 0.18s;
}
.cookie-btn-accept {
  background: var(--color-green);
  color: #fff;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-btn-reject {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: var(--color-green);
  color: #fff;
}
.cookie-set {
  background: var(--color-accent);
  color: var(--color-green);
  border: 1.5px solid var(--color-green);
}
.cookie-set:hover, .cookie-set:focus {
  background: var(--color-green);
  color: #fff;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(30,58,86,0.64);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fade-in .36s ease;
}
.cookie-modal.open {
  display: flex;
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px 0 rgba(30,58,86,0.22);
  min-width: 340px;
  max-width: 470px;
  padding: 40px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-title {
  font-family: var(--font-display);
  color: var(--color-green);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 10px 0;
  font-size: 1rem;
}
.cookie-toggle {
  width: 40px; height: 24px;
  border-radius: 20px;
  background: var(--color-muted);
  position: relative;
  transition: background 0.22s;
  vertical-align: middle;
  border: none;
  margin-right: 0;
}
.cookie-toggle[aria-checked='true'] {
  background: var(--color-secondary);
}
.cookie-toggle::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--color-green);
  position: absolute;
  top: 3px;
  left: 4px;
  transition: left 0.2s, background 0.18s;
}
.cookie-toggle[aria-checked='true']::before {
  left: 18px;
  background: var(--color-primary);
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 15px;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: var(--color-secondary);
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--color-green);
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .cta {
  padding: 10px 32px;
  font-size: 1rem;
}

/* ===============
 RESPONSIVE DESIGN
================ */
@media (max-width: 1024px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .feature-grid, .testimonials .content-wrapper, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature, .testimonial-card {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.73rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.06rem; }
  .hero h1 { font-size: 2.1rem; }
  .container {
    padding: 0 8px;
  }
  .text-image-section, .content-wrapper {
    flex-direction: column !important;
    gap: 18px;
  }
  .section, main > section {
    padding: 20px 7px;
    margin-bottom: 40px;
    border-radius: var(--radius-md);
  }
  header .container {
    height: 62px;
    gap: 6px;
    padding: 0 10px;
  }
  header img {
    height: 34px;
    margin-right: 6px;
  }
  .cookie-banner {
    padding: 12px 8px 12px 10px;
    font-size: .92rem;
  }
  .cookie-modal-dialog {
    padding: 16px 7px 14px 12px;
    min-width: 0;
    width: 94vw;
  }
}
@media (max-width: 500px) {
  .footer-brand img {
    height: 25px;
    width: 25px;
  }
  .footer-brand span {
    font-size: 0.9rem;
  }
  .cookie-banner {
    max-width: 99vw;
    border-radius: 12px;
    padding: 8px 2vw 8px 5vw;
    font-size: .87rem;
  }
}

/* ========================
 SMALL TRANSITIONS/ANIMATION
========================= */
.card, .testimonial-card, .feature {
  transition: box-shadow .16s, transform .16s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 9px 32px 0 rgba(56,116,91,0.13);
  z-index: 2;
  transform: translateY(-2px) scale(1.01);
}

a, a:focus {
  outline: none;
}
a:focus-visible {
  outline: 2px dashed var(--color-green);
  outline-offset: 2px;
}
.button:focus-visible, button:focus-visible {
  outline: 2px solid var(--color-green);
}

/* ======================
  TABLES GENERAL
====================== */
table {
  border-spacing: 0;
  border-collapse: collapse;
}
th, td {
  padding: 10px 12px;
}
th {
  background: var(--color-accent);
}

/* ===============
   MISCELLANEOUS
================ */
.text-section {
  margin-bottom: 14px;
}
.team-profiles ul {
  margin: 12px 0;
  padding-left: 20px;
}
.team-profiles li {
  margin-bottom: 8px;
  font-family: var(--font-body);
  color: var(--color-dark);
  font-size: 1rem;
}

ol {
  list-style-type: decimal;
  margin-left: 28px;
}

/* Always spacing between cards, sections (by gap/margins!) */
.card + .card, .testimonial-card + .testimonial-card, .feature + .feature {
  margin-top: 20px;
}
.section + .section, main > section + section {
  margin-top: 24px;
}

/****** Remove unwanted layout issues on all screen sizes ******/
.card, .testimonial-card, .feature, .section, .content-wrapper, .card-container, .content-grid, .text-image-section {
  min-width: 0;
}

/***** Accessibility and helper classes *****/
.sr-only {
  position:absolute;
  width: 1px;
  height: 1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  border:0;
}

/****** Utility ******/
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }

/****** Remove horizontal scrollbars ******/
html { overflow-x: hidden; }

/**** Print styles: hide nav/cookie etc. ****/
@media print {
  header, footer, .cookie-banner, .cookie-modal { display: none !important; }
}
