/* RESET & BASE TYPOGRAPHY */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.6;
  min-height: 100vh;
  font-size: 1rem;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  text-decoration: none;
  color: #2D6A4F;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #402218;
}
ul, ol {
  list-style: none;
}

/* BRAND TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #2D6A4F;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; font-weight: 600; }
h4, h5, h6 { font-size: 1rem; }
p, li, span {
  font-size: 1rem;
  color: #222;
}

strong { color: #402218; font-weight: 700; }

/* CONTAINER & SPACING */
.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (max-width: 768px) {
  section, .section {
    padding: 32px 0 0 0;
    margin-bottom: 40px;
  }
  .container {
    padding: 0 12px;
  }
}

/* FLEX CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(46, 52, 68, 0.06);
  padding: 32px 28px;
  transition: box-shadow 0.22s;
  position: relative;
}
.card:hover,
.card:focus {
  box-shadow: 0 4px 20px rgba(46, 52, 68, 0.16);
}
.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:18px; }
  .content-grid { flex-direction: column; gap: 18px; }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  background: #FFF3E2;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 2px 17px rgba(46, 52, 68, 0.08);
  padding: 48px 0 36px 0;
  margin-bottom: 60px;
}
.hero h1,
.hero h2 {
  color: #2D6A4F;
}
.hero p {
  color: #402218;
  max-width: 600px;
}
.hero .cta {
  margin-top: 24px;
}

/* HIGHLIGHTS GRID */
section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
section ul li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(46, 52, 68, 0.05);
  padding: 24px 20px;
  min-width: 220px;
  flex: 1 1 230px;
  transition: box-shadow 0.22s, transform 0.18s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
section ul li img {
  width: 36px;
  height: 36px;
}
section ul li h3 { font-size: 1.1rem; }
section ul li span {
  display: inline-block;
  color: #2D6A4F;
  font-weight: bold;
  margin-top: 4px;
}
section ul li:hover,
section ul li:focus {
  box-shadow: 0 6px 20px rgba(46, 52, 68, 0.13);
  transform: translateY(-3px) scale(1.02);
}
@media (max-width: 900px) {
  section ul { gap: 14px; }
  section ul li { min-width: 180px; padding: 20px 14px; }
}
@media (max-width: 650px) {
  section ul, .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  section ul li { width: 100%; min-width: 0; }
}

/* TESTIMONIAL CARDS */
.testimonials .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 12px;
  padding: 20px 32px;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px rgba(46,52,68,0.10);
  border: 1px solid #F5F5F5;
  max-width: 520px;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.testimonial-card:hover,
.testimonial-card:focus {
  box-shadow: 0 6px 24px rgba(46,52,68,0.16);
  border-color: #FFF3E2;
}
.testimonial-card p {
  color: #2D6A4F;
  font-size: 1.05rem;
}
.testimonial-card span {
  color: #402218;
  font-size: 0.98rem;
}
.testimonial-card div {
  color: #FFA900;
  font-size: 1.12rem;
  letter-spacing: 2px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

/* CONTACT MAP */
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0 2px 0;
}
.map-placeholder img {
  width: 42px;
  height: 42px;
}
@media (max-width:600px) {
  .map-placeholder { flex-direction: column; align-items: flex-start; gap:8px; }
}

/* BUTTON & CTA */
.cta {
  display: inline-block;
  padding: 12px 30px;
  background: #2D6A4F;
  color: #fff;
  border: none;
  border-radius: 24px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(46,52,68,.08);
  transition: background 0.18s, box-shadow 0.18s, transform 0.14s;
}
.cta:hover,
.cta:focus {
  background: #402218;
  color: #FFF3E2;
  box-shadow: 0 2px 10px rgba(46,52,68,.12);
  transform: translateY(-2px) scale(1.03);
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 1px 18px rgba(46,52,68,0.09);
  position: sticky;
  top: 0;
  z-index: 100;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 70px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
header nav a img {
  height: 42px;
}
header nav ul {
  display: flex;
  gap: 28px;
}
header nav ul li a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #402218;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.15s, color 0.17s;
}
header nav ul li a:hover,
header nav ul li a:focus {
  background: #FFF3E2;
  color: #2D6A4F;
}
header nav .cta {
  margin-left: 16px;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: #FFF3E2;
  border: none;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  color: #2D6A4F;
  cursor: pointer;
  margin-left: 8px;
  z-index: 202;
  box-shadow: 0 2px 12px rgba(46,52,68,0.07);
  transition: background 0.13s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #2D6A4F;
  color: #FFF3E2;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,243,226,0.98);
  z-index: 250;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fff;
  border: none;
  font-size: 2.2rem;
  margin: 18px 28px 0 0;
  color: #2D6A4F;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  box-shadow: 0 1px 8px rgba(46,52,68,0.11);
  cursor: pointer;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #2D6A4F;
  color: #fff;
}
.mobile-nav {
  margin: 56px 0 0 0;
  width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 28px;
}
.mobile-nav a {
  font-size: 1.3rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  color: #2D6A4F;
  padding: 12px 18px;
  border-radius: 14px;
  width: 100%;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #402218;
  color: #FFF3E2;
}
@media (max-width: 1024px) {
  header nav ul,
  header nav .cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* FOOTER */
footer {
  background: #FFF3E2;
  border-top: 1px solid #F3E7DE;
  padding: 30px 0 10px 0;
  box-shadow: 0 -2px 7px rgba(46,52,68,0.05);
}
footer .container {
  max-width: 1040px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
footer nav a {
  color: #402218;
  font-size: 1rem;
  padding: 7px 8px;
  border-radius: 7px;
  transition: background 0.13s, color 0.13s;
}
footer nav a:focus,
footer nav a:hover {
  background: #2D6A4F;
  color: #FFF3E2;
}
footer .social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}
footer .social-links a img {
  width: 28px;
  height: 28px;
  opacity: 0.82;
  transition: opacity 0.18s;
}
footer .social-links a:hover img,
footer .social-links a:focus img {
  opacity: 1;
}
footer span {
  font-size: 0.98rem;
  color: #888;
}
@media (max-width: 800px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  footer nav { gap: 10px; }
}

/* FORMS & SEARCH */
input[type="search"],
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  max-width: 320px;
  padding: 11px 16px;
  border: 1px solid #E0DFDB;
  border-radius: 9px;
  background: #FFF;
  font-size: 1rem;
  margin-top: 8px;
  margin-bottom: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #2D6A4F;
  transition: border 0.17s, box-shadow 0.14s;
  box-shadow: 0 1px 3px rgba(46,52,68,0.03);
}
input[type="search"]:focus,
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #2D6A4F;
  outline: none;
  box-shadow: 0 2px 8px rgba(46,52,68,0.07);
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -3px 24px rgba(46,52,68,0.12), 0 -1px 0 #FFF3E2;
  border-top: 2px solid #FFF3E2;
  z-index: 5000;
  padding: 20px 14px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  justify-content: space-between;
  transition: transform 0.32s cubic-bezier(.7,0,.18,1), opacity 0.19s;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner p {
  max-width: 450px;
  color: #222;
  font-size: 1rem;
  margin-bottom: 8px;
}
.cookie-consent-banner .cookie-btn-group {
  display: flex;
  gap: 14px;
}
.cookie-consent-banner button {
  border: none;
  border-radius: 9px;
  padding: 10px 19px;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-consent-banner .accept {
  background: #2D6A4F;
  color: #fff;
  font-weight: 600;
}
.cookie-consent-banner .accept:hover,
.cookie-consent-banner .accept:focus {
  background: #402218;
  color: #FFF3E2;
}
.cookie-consent-banner .reject {
  background: #FFF3E2;
  color: #2D6A4F;
  font-weight: 500;
}
.cookie-consent-banner .reject:hover,
.cookie-consent-banner .reject:focus {
  background: #FFD6AE;
  color: #2D6A4F;
}
.cookie-consent-banner .settings {
  background: #fff;
  border: 1px solid #2D6A4F;
  color: #2D6A4F;
}
.cookie-consent-banner .settings:focus,
.cookie-consent-banner .settings:hover {
  background: #2D6A4F;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(42, 48, 61, 0.32);
  z-index: 5100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.25s ease;
}
.cookie-modal-overlay.hide { opacity: 0; pointer-events: none; }
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(46,52,68,0.18);
  min-width: 320px; max-width: 96vw;
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal h2 { font-size:1.4rem; color: #2D6A4F; margin-bottom: 4px; }
.cookie-modal label { font-size: 1rem; color: #222; margin-bottom: 2px; }
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 36px; height: 22px;
  background: #EEE;
  border-radius: 22px;
  position: relative;
  outline: none;
  transition: background 0.16s;
  vertical-align: middle;
}
.cookie-modal .cookie-toggle:checked {
  background: #2D6A4F;
}
.cookie-modal .cookie-toggle::after {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(46,52,68,0.10);
  transition: left 0.16s;
}
.cookie-modal .cookie-toggle:checked::after {
  left: 17px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.cookie-modal button {
  border: none;
  border-radius: 8px;
  padding: 9px 20px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: #2D6A4F;
  color: #fff;
  transition: background 0.13s;
}
.cookie-modal button:hover,
.cookie-modal button:focus {
  background: #402218;
  color: #FFF3E2;
}
.cookie-modal .cookie-modal-close {
  position:absolute; top:14px; right:18px; font-size:1.7rem; background:transparent; color:#2D6A4F; border:none; cursor:pointer; }
.cookie-modal .cookie-modal-close:hover{ color: #402218; background:#FFF3E2; border-radius:50%; }

@media (max-width:480px) {
  .cookie-modal { padding: 16px 6vw; }
}

/* MICRO-INTERACTIONS & SHADOWS */
button,
.cta,
input[type="submit"] {
  outline: none;
}
button:active,
.cta:active {
  transform: scale(0.97);
}

/* TEXT SECTION */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section ul {
  gap: 10px;
  margin-top: 6px;
}
.text-section li {
  background: none;
  border: none;
  padding: 0;
  color: #402218;
  font-size: 1rem;
  line-height: 1.55;
}
.text-section h2, .text-section h3 {
  color: #2D6A4F;
  margin-top: 10px;
  margin-bottom: 8px;
}

/* SPECIAL: PRICES IN SERVICES */
section ul li span {
  color: #2D6A4F;
  font-weight: 700;
  font-size: 1.04rem;
  display: inline-block;
}

/* UTILITIES */
.mt-2 { margin-top: 12px; }
.mb-2 { margin-bottom: 12px; }
.mb-3 { margin-bottom: 20px; }
.flex {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.flex-column {
  flex-direction: column;
}
.flex-center { align-items: center; justify-content: center; }
.gap-20 { gap: 20px; }

/* RESPONSIVE TYPOGRAPHY */
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1rem; }
}

/* FOCUS VISIBLE */
:focus-visible {
  outline: 2px solid #2D6A4F;
  outline-offset: 2px;
}

/* DISABLED STATES */
button[disabled], .cta[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* PREVENTING OVERLAP */
section, .section, .card, .testimonial-card, .content-wrapper, .card-container, .content-grid {
  box-sizing: border-box;
}

/* Hide visually but keep accessible for screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
