/* CSS RESET & NORMALIZATION */
html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
}
body {
  background: #fff;
  color: #374151;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  vertical-align: middle;
  border: 0;
}
a {
  color: #374151;
  text-decoration: none;
  transition: color .2s;
}
a:hover,
a:focus {
  color: #AF7F2F;
}
ul, ol {
  list-style: none;
}
button {
  background: none;
  cursor: pointer;
  border: none;
  padding: 0;
  font: inherit;
}
blockquote {
  border-left: 3px solid #AF7F2F;
  margin: 24px 0 24px 0;
  padding-left: 16px;
  color: #696969;
  font-style: italic;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #374151;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #374151;
}
strong {
  font-weight: 700;
  color: #AF7F2F;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 4px 12px rgba(33,23,13,.04);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}
header img {
  height: 42px;
  margin-right: 14px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 3px 0;
  color: #374151;
  position: relative;
  transition: color .2s;
}
.main-nav a:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #AF7F2F;
  transition: width .25s;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.main-nav a:hover:after,
.main-nav a:focus:after {
  width: 100%;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #AF7F2F;
  color: #fff;
  font-weight: 600;
  border-radius: 32px;
  padding: 11px 32px;
  font-size: 1rem;
  margin-left: 22px;
  box-shadow: 0 2px 7px rgba(175,127,47,0.08);
  transition: background .2s, box-shadow .3s, transform .2s;
  border: none;
  outline: none;
  letter-spacing: 0.01em;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #917024;
  box-shadow: 0 6px 24px rgba(175,127,47,0.14);
  transform: translateY(-2px) scale(1.03);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: #374151;
  background: #fff;
  border-radius: 3px;
  z-index: 60;
  padding: 0 10px;
  transition: background .2s, color .2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #AF7F2F;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 350px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 24px rgba(33,23,13,.16);
  z-index: 80;
  display: flex;
  flex-direction: column;
  padding: 28px 20px 20px 32px;
  transform: translateX(120%);
  transition: transform 0.38s cubic-bezier(.5,1.25,.3,1); 
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  color: #AF7F2F;
  background: transparent;
  transition: color .2s;
  border-radius: 2px;
}
.mobile-menu-close:focus {
  outline: 2px solid #AF7F2F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 36px;
  gap: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.17rem;
  font-weight: 600;
  color: #374151;
  border-radius: 6px;
  padding: 12px 10px 12px 0;
  transition: background .2s, color .2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F6F1EB;
  color: #AF7F2F;
}

@media (max-width: 1100px) {
  .container {
    padding: 0 12px;
  }
}

@media (max-width: 900px) {
  header .container {
    gap: 9px;
  }
  .main-nav {
    gap: 16px;
  }
  .cta-btn {
    padding: 10px 18px;
    margin-left: 8px;
    font-size: .97rem;
  }
}
@media (max-width: 768px) {
  .main-nav, .cta-btn {
    display: none;
  }
  header .container {
    justify-content: flex-start;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* HERO SECTION */
.hero {
  background: #F6F1EB;
  border-bottom: 1px solid #f0e7db;
  padding: 42px 0 0 0;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 260px;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 16px;
}
.hero h1 {
  color: #374151;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
}
.hero p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 0;
}
.hero .cta-btn {
  margin-top: 14px;
}

@media (max-width: 600px) {
  .hero {
    padding: 30px 0 0 0;
    margin-bottom: 32px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero .content-wrapper {
    gap: 16px;
  }
}

/* FLEX SPACING AND PATTERNS (MANDATORY) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.5px 6px 0 rgba(55,65,81,0.04);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1.5px 6px 0 rgba(55,65,81,0.07);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .22s, transform .22s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(55,65,81,0.14);
  transform: translateY(-2px) scale(1.013);
  z-index: 10;
}
.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: 16px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FAFAFA;
  border-radius: 11px;
  box-shadow: 0 1.5px 10px 0 rgba(55,65,81,0.09);
  margin-bottom: 20px;
  min-height: 80px;
  flex: 1 1 280px;
  max-width: 600px;
  color: #222;
  transition: box-shadow .23s;
}
.testimonial-card p {
  color: #222;
  font-size: 1.1rem;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #AF7F2F;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .97rem;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(55,65,81,0.17);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Features as simple list vertical for mobile */
.features .content-wrapper ul {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.features .content-wrapper li {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.6;
  position: relative;
  padding-left: 0;
}

/* GENERIC UTILITIES */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mt-4 { margin-top: 32px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }

/* CARD WRAPPER LAYOUTS */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 22px 8px;
  }
  .content-wrapper {
    gap: 20px;
  }
}

/* ABOUT SECTIONS */
.about.section, .about {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.5px 6px 0 rgba(55,65,81,0.045);
  margin-bottom: 60px;
}

/* SERVICES SECTIONS */
.services.section, .services {
  background: #F6F1EB;
  border-radius: 14px;
  box-shadow: 0 1.5px 10px 0 rgba(175,127,47,0.06);
}
.services .cta-btn {
  margin-top: 16px;
}

/* CONTACT (standalone map placeholder) */
.map-placeholder {
  margin: 22px 0 0 0;
  background: #F6F1EB;
  padding: 18px 12px;
  border-radius: 9px;
  color: #374151;
  font-size: 1.07rem;
  box-shadow: 0 1px 6px rgba(55,65,81,0.03);
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 1px solid #eeeae4;
  padding: 44px 0 22px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact {
  font-size: 0.97rem;
  color: #374151;
}
.footer-contact strong {
  color: #AF7F2F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
}
footer a {
  color: #374151;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 3px;
  transition: color .2s;
}
footer a:hover, footer a:focus {
  color: #AF7F2F;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 36px;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 24px 0 12px;
  }
}

/* RESPONSIVE CONTENT STYLES */
@media (max-width: 768px) {
  h2 {
    font-size: 1.35rem;
  }
  h1 {
    font-size: 1.8rem;
  }
  p, ul, ol, .footer-contact {
    font-size: .96rem;
  }
}

/* BUTTONS, FORMS & INTERACTIONS */
button, .cta-btn {
  transition: background .2s, color .2s, box-shadow .2s, transform .12s;
}
button:focus-visible {
  outline: 2px solid #AF7F2F;
}
.cta-btn:active {
  transform: scale(0.96);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #F6F1EB;
  border-top: 1.5px solid #AF7F2F;
  box-shadow: 0 -2px 12px rgba(55,65,81,0.08);
  z-index: 999;
  padding: 24px 12px 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: fadeInBanner 0.5s;
}
@keyframes fadeInBanner {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner-text {
  color: #374151;
  font-size: 1.01rem;
  text-align: center;
}
.cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: center;
}
.cookie-btn {
  background: #AF7F2F;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .97rem;
  border-radius: 5px;
  padding: 10px 24px;
  font-weight: 600;
  border: none;
  margin: 0 2px;
  transition: background .15s;
}
.cookie-btn.settings {
  background: #E6DFD5;
  color: #AF7F2F;
}
.cookie-btn.reject {
  background: #374151;
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  filter: brightness(0.93);
  box-shadow: 0 2px 12px rgba(175,127,47,.12);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1010;
  width: 100vw;
  height: 100vh;
  background: rgba(55,65,81,0.34);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .33s;
}
@keyframes fadeInModal {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px 0 rgba(175,127,47,0.11);
  padding: 36px 20px 32px 20px;
  max-width: 430px;
  width: 95%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}
.cookie-modal-content h2 {
  color: #374151;
  font-size: 1.45rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  background: #F6F1EB;
  padding: 12px 8px;
  border-radius: 7px;
}
.cookie-category span {
  color: #374151;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: #AF7F2F;
  width: 18px;
  height: 18px;
}
.cookie-category.essential input[type="checkbox"] {
  accent-color: #374151;
}
.cookie-modal-close-btn {
  align-self: flex-end;
  font-size: 1.8rem;
  background: transparent;
  color: #AF7F2F;
  margin-top: -18px;
  margin-bottom: 8px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 16px;
}
.cookie-modal-actions button {
  min-width: 110px;
}

/* ------ RESPONSIVE ADJUSTMENTS ------ */
@media (max-width: 650px) {
  .footer-legal, .footer-contact, .footer-nav {
    font-size: .92rem;
  }
  .hero .container, .about .container, .services .container, .features .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .cookie-modal-content {
    padding: 22px 6px 22px 6px;
    gap: 9px;
  }
}
@media (max-width: 480px) {
  .cookie-banner {
    padding: 17px 2vw 14px 2vw;
    gap: 11px;
    font-size: .93rem;
  }
  .cookie-btn {
    padding: 8px 11px;
    font-size: .95rem;
  }
}

/* ACCESSIBILITY */
:focus-visible {
  outline: 2px solid #AF7F2F;
  outline-offset: 2px;
}

/* MICRO-INTERACTIONS & TRANSITIONS */
.card,
.cta-btn,
.mobile-menu,
.testimonial-card,
.cookie-btn,
.cookie-modal-content {
  transition: box-shadow .23s, transform .18s;
}
.cta-btn, button, .cookie-btn {
  transition: background .2s, color .2s, box-shadow .2s, transform .13s;
}
.mobile-menu,
.cookie-banner,
.cookie-modal {
  transition: transform .35s cubic-bezier(.63,1.46,.35,1), opacity .23s;
}

/* COLOR UTILITIES for contrast and error states */
.text-primary { color: #374151; }
.text-secondary { color: #AF7F2F; }
.bg-accent { background: #F6F1EB; }
.bg-primary { background: #374151; color: #fff; }
.bg-secondary { background: #AF7F2F; color: #fff; }

/* HIDE FOR SCREEN READERS/ACCESSIBILITY */
.sr-only { 
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0; 
}

section{
  padding: 20px 0;
}

/* ------------------------ END ------------------------ */
