/* -----------------------------------------------------
   CSS RESET & BOX SIZING
------------------------------------------------------*/
html {
  box-sizing: border-box;
  font-size: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #F7F3EB;
  color: #233239;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
footer p {
  color: white;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #24513E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #A6642D;
  text-decoration: underline;
}
ul, ol {
  margin: 0 0 1.2em 1.4em;
  padding: 0;
}
li {
  margin-bottom: 0.5em;
}
strong {
  font-weight: 600;
}

/* -----------------------------------------------------
   TYPOGRAPHY HIERARCHY
------------------------------------------------------*/
h1, .h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #24513E;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2, .h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #24513E;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #233239;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.25;
}
h4, .h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 10px;
}
p, .tagline {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #344045;
}
.tagline {
  font-size: 1.12rem;
  color: #24513E;
  font-weight: 500;
}

/* -----------------------------------------------------
   LAYOUT: CONTAINER, SECTIONS, FLEX SPACING
------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* -----------------------------------------------------
   HEADER & NAVIGATION
------------------------------------------------------*/
header {
  background: #FFFFFF;
  border-bottom: 1px solid #E0E6ED;
  position: sticky;
  top: 0;
  z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 76px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo-area img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: #24513E;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 0;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #A6642D;
  border-bottom: 2px solid #A6642D;
}
.btn-primary {
  display: inline-block;
  background: #24513E;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 24px;
  box-shadow: 0 2px 10px 0 rgba(36,81,62,0.07);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  text-align: center;
  border: none;
  cursor: pointer;
  margin-left: 18px;
  letter-spacing: 0.02em;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #A6642D;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 16px 0 rgba(166, 100, 45, 0.15);
}
.btn-secondary {
  display: inline-block;
  background: #FFFFFF;
  color: #24513E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 22px;
  border: 2px solid #24513E;
  border-radius: 18px;
  margin-top: 16px;
  margin-bottom: 6px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-align: center;
  cursor: pointer;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #A6642D;
  color: #fff;
  border-color: #A6642D;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #24513E;
  font-size: 2.1rem;
  margin-left: 16px;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #24513E;
}

/* -----------------------------------------------------
   MOBILE MENU
------------------------------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 88vw;
  max-width: 380px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 30px 0 rgba(36,81,62,0.16);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.41,1.01,.63,1.07);
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
  transition: transform 0.4s cubic-bezier(.41,1.01,.63,1.07);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #24513E;
  align-self: flex-end;
  font-size: 2.2rem;
  cursor: pointer;
  margin: 20px 22px 0 0;
  transition: color 0.2s;
  z-index: 3;
}
.mobile-menu-close:focus {
  outline: 2px solid #24513E;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 40px;
  padding: 0 34px;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: #24513E;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 10px 0;
  border-bottom: 1px solid #E0E6ED;
  transition: color 0.2s, background 0.2s;
  border-radius: 8px;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #24513E11;
  color: #A6642D;
  outline: none;
}

/* -----------------------------------------------------
   HERO SECTION
------------------------------------------------------*/
.hero {
  background: linear-gradient(46deg, #f5f6fa 80%, #e9ecf1 100%);
  padding: 54px 0 44px;
  border-bottom: 1px solid #E0E6ED;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 680px;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.15rem;
}

/* -----------------------------------------------------
   FEATURES & CARDS
------------------------------------------------------*/
.features, .benefits {
  background: #F7F3EB;
}
.features h2, .benefits h2 {
  text-align: left;
  margin-bottom: 18px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.feature-item {
  background: #fff;
  border: 1px solid #E0E6ED;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(36,81,62,0.07);
  padding: 32px 20px 24px 20px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.feature-item img {
  height: 44px;
  margin-bottom: 4px;
}
.feature-item:hover {
  box-shadow: 0 8px 32px 0 rgba(36,81,62,0.18);
  transform: translateY(-4px) scale(1.025);
}

/* -----------------------------------------------------
   SERVICES & SERVICE LISTS
------------------------------------------------------*/
.services,
.services-full {
  background: #fff;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.service-item {
  background: #F7F3EB;
  border-radius: 16px;
  border: 1px solid #E0E6ED;
  box-shadow: 0 2px 8px 0 rgba(36,81,62,0.05);
  padding: 32px 22px 18px 22px;
  flex: 1 1 272px;
  min-width: 230px;
  max-width: 420px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: box-shadow 0.19s, transform 0.15s;
}
.service-item h3, .service-item h2 {
  margin-bottom: 7px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #24513E;
}
.service-item span {
  color: #A6642D;
  font-size: 0.98rem;
  font-weight: 500;
  margin-left: 8px;
}
.service-item p {
  color: #344045;
}
.service-item a.btn-secondary {
  margin-top: 10px;
}
.service-item:hover {
  box-shadow: 0 8px 24px 0 rgba(166,100,45,0.10);
  transform: translateY(-2px) scale(1.01);
}

/* -----------------------------------------------------
   TESTIMONIALS
------------------------------------------------------*/
.testimonials {
  background: #f5f8fa;
}
.testimonials h2, .testimonials h1 {
  color: #24513E;
  text-align: left;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.testimonial-card {
  background: #fff;
  color: #233239;
  border-radius: 16px;
  border: 1px solid #E0E6ED;
  min-width: 260px;
  flex: 1 1 270px;
  max-width: 380px;
  margin-bottom: 20px;
  padding: 28px 28px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 6px 22px 0 rgba(36,81,62,0.08);
  transition: box-shadow 0.17s, transform 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 16px 38px 0 rgba(36,81,62,0.13);
  transform: scale(1.025);
}
.testimonial-rating {
  color: #A6642D;
  font-size: 1.34rem;
  font-weight: 700;
}
.testimonial-card p {
  color: #233239;
  font-size: 1.08rem;
}
.testimonial-author {
  font-size: 0.96rem;
  font-weight: 600;
  color: #24513E;
  opacity: 0.92;
}

/* -----------------------------------------------------
   CONTACT & CTA
------------------------------------------------------*/
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.cta-area, .cta-contact-info {
  margin: 14px 0 0 0;
}
.cta-contact-info {
  font-size: 1rem;
  color: #344045;
  margin-top: 8px;
}
.contact-main, .contact {
  background: #F7F3EB;
}
.contact-map-embed p {
  opacity: 0.92;
  font-size: 0.98rem;
}

/* -----------------------------------------------------
   FOOTER
------------------------------------------------------*/
footer {
  background: #233239;
  color: #fff;
  font-size: 1rem;
  padding: 40px 0 12px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 38px 20px;
}
.footer-main-nav, .footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-main-nav a, .footer-links a {
  color: #fff;
  opacity: 0.94;
  font-size: 1rem;
  transition: color 0.2s, opacity 0.2s;
}
.footer-main-nav a:hover, .footer-links a:hover {
  color: #A6642D;
  opacity: 1;
}
.footer-social {
  align-items: center;
}
.footer-social img {
  height: 54px;
  margin-bottom: 8px;
}
.business-info {
  font-size: 0.97rem;
  color: #FFFFFFCC;
  max-width: 320px;
  margin-top: 10px;
}
.business-info a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.2s;
}
.business-info a:hover {
  color: #A6642D;
}

/* -----------------------------------------------------
   ADDITIONAL LAYOUT UTILITIES
------------------------------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(36,81,62,0.06);
  border: 1px solid #E0E6ED;
}
.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;
}
.team-bio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.team-member {
  background: #F7F3EB;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(36,81,62,0.06);
  border: 1px solid #E0E6ED;
  flex: 1 1 240px;
  min-width: 200px;
  max-width: 300px;
  padding: 20px 16px 12px 16px;
}

/* -----------------------------------------------------
   COOKIE BANNER & COOKIE SETTINGS
------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2500;
  background: #fff;
  color: #233239;
  border-top: 1px solid #E0E6ED;
  box-shadow: 0 -2px 24px 0 rgba(36,81,62,0.11);
  padding: 22px 14px 22px 20px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  animation: cookie-banner-in 0.48s cubic-bezier(.4,1.07,.57,1.01);
}
@keyframes cookie-banner-in {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #233239;
  font-size: 0.98rem;
  margin: 0 10px 0 0;
  flex: 1 0 220px;
  max-width: 399px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  padding: 10px 22px;
  border-radius: 18px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cookie-btn.accept {
  background: #24513E;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #A6642D;
}
.cookie-btn.reject {
  background: #BECEDA;
  color: #233239;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #E0E6ED;
}
.cookie-btn.settings {
  background: #fff;
  color: #24513E;
  border: 1px solid #E0E6ED;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #F7F3EB;
  color: #A6642D;
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 2600;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36, 81, 62, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 48px 0 rgba(36,81,62,0.21);
  width: 96vw;
  max-width: 400px;
  padding: 34px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  animation: cookie-modal-in 0.33s cubic-bezier(.41,1.01,.63,1.07);
}
@keyframes cookie-modal-in {
  from { transform: translateY(70px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Playfair Display', serif;
  color: #24513E;
  font-size: 1.40rem;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #E0E6ED;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-size: 1.02rem;
  color: #233239;
  font-weight: 500;
}
.cookie-toggle {
  appearance: none;
  border-radius: 17px;
  width: 36px;
  height: 21px;
  background: #E0E6ED;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.21s;
}
.cookie-toggle:checked {
  background: #24513E;
}
.cookie-toggle:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 17px;
  height: 17px;
  background: #FFF;
  border-radius: 50%;
  transition: transform 0.21s;
}
.cookie-toggle:checked:before {
  transform: translateX(15px);
}
.cookie-toggle[disabled], .cookie-toggle[aria-disabled="true"] {
  background: #CBD7D4;
  opacity: 0.7;
  cursor: not-allowed;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 8px;
  margin-top: 22px;
  justify-content: flex-end;
}
.cookie-modal .close-modal-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  color: #24513E;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  z-index: 10;
}

/* -----------------------------------------------------
   RESPONSIVE DESIGN: MOBILE FIRST
------------------------------------------------------*/
@media (max-width: 1020px) {
  .footer-main-nav, .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-social {
    order: -1;
    margin-bottom: 20px;
  }
  footer .container {
    gap: 22px 10px;
  }
}

@media (max-width: 850px) {
  .container {
    max-width: 97vw;
    padding: 0 10px;
  }
  .main-nav {
    gap: 16px;
  }
  .feature-grid, .testimonial-list, .service-list, .card-container, .team-bio-grid {
    gap: 15px;
  }
  .footer-main-nav, .footer-links {
    gap: 9px;
  }
}

@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.5rem; }
  header .container {
    flex-direction: row;
    gap: 0 10px;
  }
  .main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section, section {
    margin-bottom: 44px;
    padding: 28px 7px;
  }
  .hero {
    padding: 34px 0 28px;
    border-bottom: 1px solid #E0E6ED;
  }
  .feature-grid, .testimonial-list, .service-list, .team-bio-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .contact-details {
    gap: 7px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-main-nav, .footer-links {
    flex-direction: column;
    gap: 6px;
  }
  .footer-social img {
    height: 42px;
    margin-bottom: 4px;
  }
  .testimonial-card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  h1, .h1 { font-size: 1.36rem; }
  h2, .h2 { font-size: 1.11rem; }
  .feature-item, .service-item {
    padding: 18px 8px 14px 8px;
    min-width: 0;
    max-width: 100%;
  }
  .testimonial-card {
    padding: 16px 7px 13px 6px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px 7px;
  }
  .cookie-banner p {
    max-width: 100%;
  }
  .cookie-modal {
    padding: 15px 6px 14px 6px;
    max-width: 95vw;
  }
}

/* -----------------------------------------------------
   VISUAL ENHANCEMENTS: SHADOWS, TRANSITIONS ETC.
------------------------------------------------------*/
.card, .service-item, .feature-item, .testimonial-card, .team-member {
  transition: box-shadow 0.18s, transform 0.16s;
  box-shadow: 0 2px 10px 0 rgba(36,81,62,0.07);
}
.card:hover, .service-item:hover, .feature-item:hover, .testimonial-card:hover, .team-member:hover {
  box-shadow: 0 10px 24px 0 rgba(166,100,45,0.11), 0 2px 18px 0 rgba(36,81,62,0.09);
  transform: translateY(-3px) scale(1.01);
  z-index: 2;
}

/* -----------------------------------------------------
   UTILITY CLASSES
------------------------------------------------------*/
.text-center {
  text-align: center !important;
}
.hide {
  display: none !important;
}

/* -----------------------------------------------------
   MODAL BACKDROP - BASIC
------------------------------------------------------*/
.modal-backdrop {
  position: fixed;
  z-index: 999;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(36,81,62,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -----------------------------------------------------
   HTML ELEMENTS BASE SPACING
------------------------------------------------------*/
section ul,
section ol {
  margin-left: 1.4em;
  margin-bottom: 16px;
  color: #344045;
}
section li {
  margin-bottom: 8px;
}

/* -----------------------------------------------------
   FORMS & FIELDS (future use)
------------------------------------------------------*/
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 14px;
  border: 1px solid #BECEDA;
  border-radius: 7px;
  margin-bottom: 18px;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #24513E;
  box-shadow: 0 0 0 2px #A6642D22;
}

/* -----------------------------------------------------
   ACCESSIBILITY FOCUSED OUTLINES
------------------------------------------------------*/
a:focus, button:focus, input:focus, .btn-primary:focus, .cookie-btn:focus {
  outline: 2px solid #A6642D;
  outline-offset: 2px;
}

/* END */
