/* === CSS RESET & BASE STYLES === */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background-color: #FAF8F5;
  color: #323232;
  min-height: 100vh;
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #B3A076;
  text-decoration: none;
  transition: color .2s;
}
a:hover,
a:focus {
  color: #958049;
}
ul, ol {
  margin-left: 1.4em;
}
ul, ol, dl {
  margin-bottom: 1.3em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #323232;
  font-weight: 700;
  margin-bottom: 0.7em;
  letter-spacing: 0.01em;
}
h1 {font-size: 2.3rem;}
h2 {font-size: 1.8rem;}
h3 {font-size: 1.3rem;}
h4 {font-size: 1.1rem;}

/* === GLOBAL LAYOUT CLASSES === */
.container {
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(179,160,118,0.08), 0 1.5px 4px rgba(50,50,50,0.05);
  padding: 32px 26px;
  margin-bottom: 20px;
  position: relative;
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(179,160,118,0.07), 0 1px 2px rgba(50,50,50,0.04);
  margin-bottom: 20px;
  transition: box-shadow .2s;
}
.testimonial-card blockquote {
  color: #323232;
  font-size: 1.1rem;
  line-height: 1.6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
  margin-bottom: 0.5em;
}
.testimonial-card cite {
  font-size: 0.95rem;
  color: #B3A076;
  font-style: normal;
  font-family: 'Open Sans', Arial, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1.5px 7px rgba(179,160,118,.06);
  padding: 22px 18px;
}

/* === HEADER/NAVIGATION === */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(179,160,118,0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  position: sticky;
  top: 0;
  z-index: 40;
}
header .logo-link {
  display: flex;
  align-items: center;
  margin-right: 24px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
header nav a {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #323232;
  padding: 6px 12px;
  border-radius: 14px;
  transition: background .15s, color .15s;
}
header nav a:hover, header nav a:focus {
  background: #F6F0E5;
  color: #B3A076;
}
.cta-primary {
  background: #B3A076;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border-radius: 20px;
  padding: 10px 30px;
  margin-left: 20px;
  display: inline-block;
  box-shadow: 0 2px 6px rgba(179,160,118,0.08);
  transition: background .18s, box-shadow .18s;
  border: none;
  cursor: pointer;
}
.cta-primary:hover, .cta-primary:focus {
  background: #958049;
  box-shadow: 0 4px 14px rgba(179,160,118,0.11);
}

.mobile-menu-toggle {
  display: none;
  background: #B3A076;
  color: #fff;
  font-size: 2rem;
  border-radius: 18px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 16px;
  border: none;
  box-shadow: 0 1.5px 5px rgba(179,160,118,.07);
  transition: background .18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #958049;
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(222,210,188, 0.98);
  box-shadow: 0 7px 20px rgba(179,160,118,0.14);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.74,0,.36,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: #B3A076;
  color: #fff;
  font-size: 2rem;
  border-radius: 14px;
  border: none;
  margin: 22px 18px 24px 18px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #958049;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding-left: 18px;
}
.mobile-nav a {
  display: block;
  color: #323232;
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  border-radius: 16px;
  padding: 13px 8px;
  background: transparent;
  transition: background .15s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F6F0E5;
  color: #B3A076;
}

/* === HERO & CTA SECTIONS === */
.hero {
  background: #FFF7EE;
  border-radius: 0 0 32px 32px;
  padding: 56px 0 64px 0;
  margin-bottom: 44px;
  box-shadow: 0 7px 36px rgba(247,230,201,0.11);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 30px;
}
.hero h1 {
  color: #323232;
  font-size: 2.5rem;
}
.hero p {
  color: #6B5B35;
  font-size: 1.18rem;
  margin-bottom: 10px;
}
.cta-section {
  background: #FBF6EF;
  border-radius: 30px;
  padding: 40px 18px;
  margin-bottom: 54px;
  box-shadow: 0 2px 12px rgba(179,160,118,.05);
}
.cta-section h2 {
  color: #B3A076;
  font-size: 2.1rem;
}
.cta-section p {
  color: #675A3C;
}

/* === FEATURES, SERVICES, PROJECTS PREVIEW === */
.features .feature-grid,
.services-preview .service-list,
.projects-preview .project-list,
.projects .project-highlights,
.strengths-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 14px;
}
.features .feature-grid li,
.services-preview .service-list li,
.projects-preview .project-list li,
.projects .project-highlights li,
.strengths-grid > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1.5px 7px rgba(179,160,118,0.06);
  padding: 24px 19px;
  flex: 1 1 280px;
  min-width: 215px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow .2s;
}
.features .feature-grid li > img,
.services-preview .service-list li > img,
.projects-preview .project-list li > img {
  width: 45px;
  height: 45px;
}
.features .feature-grid li:hover,
.services-preview .service-list li:hover,
.projects-preview .project-list li:hover,
.strengths-grid > div:hover {
  box-shadow: 0 5px 16px rgba(179,160,118,.13);
}

/* === INDIVIDUAL SERVICES === */
.individual-services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 24px 0 0 0;
}
.individual-services ul li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 7px rgba(179,160,118,0.06);
  padding: 28px 18px;
  flex: 1 1 230px;
  min-width: 185px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .2s;
}
.individual-services ul li:hover {
  box-shadow: 0 5px 16px rgba(179,160,118,.15);
}
.individual-services ul li img {
  width: 40px;
  height: 40px;
}

/* === FAQ === */
.faq dl dt {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #B3A076;
  font-weight: 700;
  margin-top: 19px;
  font-size: 1.08rem;
}
.faq dl dd {
  margin-bottom: 16px;
  margin-left: 10px;
}

/* === TAG CLOUD === */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.tag-cloud span {
  background: #FFF7EE;
  color: #B3A076;
  font-size: 0.99rem;
  border-radius: 12px;
  padding: 5px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}

/* === BLOG === */
.blog-list .blog-search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.blog-search-bar input[type='search'] {
  border-radius: 16px;
  border: 1px solid #B3A076;
  padding: 10px 14px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fff;
  color: #323232;
  outline: none;
  width: 220px;
  transition: box-shadow .15s;
}
.blog-search-bar input[type='search']:focus {
  box-shadow: 0 0 5px 1px #B3A07630;
}
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 19px;
}
.blog-categories a {
  background: #F7ECD6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #B3A076;
  border-radius: 12px;
  padding: 7px 16px;
  transition: background .17s, color .17s;
  font-size: 1rem;
}
.blog-categories a:hover, .blog-categories a:focus {
  background: #B3A076;
  color: #fff;
}
.blog-post-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.blog-post-previews article {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 7px rgba(179,160,118,.05);
  padding: 26px 18px;
  flex: 1 1 230px;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
  transition: box-shadow .17s;
}
.blog-post-previews article h2 {
  font-size: 1.18rem;
  color: #B3A076;
}
.blog-post-previews article a {
  align-self: flex-end;
  color: #B3A076;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.blog-post-previews article:hover {
  box-shadow: 0 5px 16px rgba(179,160,118,.10);
}

/* === NEWSLETTER === */
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.newsletter-form input[type='email'] {
  border-radius: 14px;
  border: 1.3px solid #B3A076;
  padding: 10px 13px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fff;
  color: #323232;
  outline: none;
  width: 230px;
  transition: box-shadow .13s;
}
.newsletter-form input[type='email']:focus {
  box-shadow: 0 0 5px 1px #B3A07630;
}
.newsletter-form button[type='submit'] {
  background: #B3A076;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 16px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  box-shadow: 0 1.5px 5px rgba(179,160,118,0.08);
  transition: background .16s;
}
.newsletter-form button[type='submit']:hover,
.newsletter-form button[type='submit']:focus {
  background: #958049;
}

/* === CONTACT INFO === */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}
.address-map {
  background: #F6F0E5;
  border-radius: 16px;
  padding: 18px 14px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 11px;
}
.address-map img {
  width: 27px;
  height: 27px;
  margin-right: 8px;
}

.business-hours ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  list-style-type: none;
}
.business-hours ul li img {
  width: 17px;
  height: 17px;
  vertical-align: middle;
  margin-right: 7px;
}

/* === PROJECTS PAGE === */
.projects .project-highlights {
  margin-bottom: 40px;
}
.projects .project-highlights li {
  border-top: 4px solid #B3A07622;
}

/* === STRENGTHS GRID & REVIEW STATS === */
.strengths-grid {
  flex-wrap: wrap;
  gap: 14px;
}
.strengths-grid > div {
  flex: 1 1 110px;
  text-align: center;
  color: #B3A076;
  background: #FFF7EE;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
.customer-experience-stats {
  margin-top: 12px;
}

/* === FOOTER === */
footer {
  background: #F6F0E5;
  border-radius: 32px 32px 0 0;
  margin-top: 50px;
  padding: 38px 0 16px 0;
  box-shadow: 0 -2px 10px rgba(179,160,118,.10);
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 16px;
  align-items: flex-start;
  justify-content: space-between;
}
footer .logo-link {
  margin-right: 28px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer nav a {
  color: #323232;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 0.97rem;
  color: #6C5633;
  margin-bottom: 5px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact-item img {
  width: 19px;
  height: 19px;
  margin-right: 7px;
}
.legal-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.9rem;
  margin-top: 8px;
}
.legal-links a {
  color: #87703C;
}

/* === POLICY PAGES === */
.privacy-policy,
.gdpr-section,
.cookie-policy,
.terms-of-use {
  background: #FFF7EE;
  border-radius: 24px;
  padding: 38px 24px;
  box-shadow: 0 1.5px 7px rgba(179,160,118,0.06);
  margin-bottom: 40px;
}
.privacy-policy h1,
.gdpr-section h1,
.cookie-policy h1,
.terms-of-use h1 {
  font-size: 2rem;
  color: #B3A076;
}

/* === THANK YOU === */
.thank-you {
  background: #FBF6EF;
  border-radius: 28px;
  padding: 52px 16px;
  margin-bottom: 50px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(179,160,118,.04);
}
.thank-you h1 {
  color: #B3A076;
  font-size: 2.2rem;
}
.thank-you ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  margin-left: 0;
}

/* === COOKIE CONSENT BANNER === */
#cookie-banner {
  position: fixed;
  z-index: 120;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff7ee;
  color: #323232;
  border-top: 2.5px solid #B3A07629;
  box-shadow: 0 -5px 20px rgba(179,160,118,0.10);
  padding: 26px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 1.01rem;
  animation: cookie-slide-in 0.47s cubic-bezier(.67,.21,.46,.84);
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
#cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-left: auto;
}
#cookie-banner button {
  background: #B3A076;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 16px;
  padding: 10px 19px;
  border: none;
  cursor: pointer;
  transition: background .18s;
  margin-right: 0;
}
#cookie-banner button.secondary {
  background: #fff;
  color: #B3A076;
  border: 1.5px solid #B3A076;
}
#cookie-banner button.secondary:hover, #cookie-banner button.secondary:focus {
  background: #F6F0E5;
}
#cookie-banner button:hover, #cookie-banner button:focus {
  background: #958049;
}

/* === COOKIE SETTINGS MODAL === */
#cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(50,50,50,0.21);
  z-index: 145;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-in .4s cubic-bezier(.6,.1,.4,.9);
}
@keyframes modal-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
#cookie-modal .modal-content {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 7px 29px rgba(179,160,118,.19);
  max-width: 400px;
  width: 95%;
  padding: 42px 22px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modal-content-in .4s cubic-bezier(.7,.12,.3,1.1);
}
@keyframes modal-content-in {
  from { transform: scale(.88); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
#cookie-modal .modal-header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #B3A076;
  margin-bottom: 10px;
}
#cookie-modal .close-modal {
  position: absolute;
  top: 13px; right: 18px;
  background: none;
  border: none;
  font-size: 1.65rem;
  color: #B3A076;
  cursor: pointer;
  transition: color .15s;
}
#cookie-modal .close-modal:hover, #cookie-modal .close-modal:focus {
  color: #958049;
}
#cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 0;
}
#cookie-modal .category-label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #323232;
  font-weight: 600;
}
#cookie-modal .category-desc {
  font-size: 0.96rem;
  color: #6C5633;
  margin-bottom: 4px;
}
#cookie-modal input[type='checkbox'] {
  accent-color: #B3A076;
  width: 19px;
  height: 19px;
  border-radius: 7px;
  vertical-align: middle;
}
#cookie-modal .category-toggle[disabled] {
  opacity: 0.6;
}
#cookie-modal .modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 7px;
  justify-content: flex-end;
}
#cookie-modal button {
  background: #B3A076;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 14px;
  padding: 9px 19px;
  border: none;
  cursor: pointer;
  transition: background .16s;
}
#cookie-modal button.secondary {
  background: #fff;
  color: #B3A076;
  border: 1.4px solid #B3A076;
}
#cookie-modal button.secondary:hover, #cookie-modal button.secondary:focus {
  background: #F6F0E5;
}
#cookie-modal button:hover, #cookie-modal button:focus {
  background: #958049;
}

/* === RESPONSIVE === */
@media (max-width: 1110px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .footer-contact {
    flex-direction: column;
    gap: 6px;
  }
  .content-grid, .feature-grid, .services-preview .service-list, .projects-preview .project-list, .projects .project-highlights, .blog-post-previews, .newsletter-form, .strengths-grid {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  header nav, .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .container {
    padding: 0 8px;
  }
  .hero, .cta-section, .section {
    padding: 30px 5px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 7px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .footer-contact-item {
    font-size: 0.92rem;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .card-container, .content-grid, .newsletter-form, .feature-grid, .service-list, .project-list, .project-highlights, .blog-post-previews {
    flex-direction: column !important;
    gap: 13px !important;
  }
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  .hero h1 { font-size: 1.33rem; }
  .cta-section h2 { font-size: 1.08rem; }
  .cta-section { padding: 25px 4px; }
  .thank-you { padding: 19px 3px; }
}

/* === MICROINTERACTIONS & TRANSITIONS === */
.card, .testimonial-card,
.features .feature-grid li, .services-preview .service-list li,
.projects-preview .project-list li, .blog-post-previews article, .newsletter-form input[type='email'], .newsletter-form button[type='submit'] {
  transition: box-shadow .18s, transform .16s;
}
.card:hover, .testimonial-card:hover,
.features .feature-grid li:hover, .services-preview .service-list li:hover, .projects-preview .project-list li:hover, .blog-post-previews article:hover {
  box-shadow: 0 8px 24px rgba(179,160,118,.14), 0 1.5px 7px rgba(179,160,118,0.10);
  transform: translateY(-4px) scale(1.012);
}

button:focus, a:focus, input:focus {
  outline: 2px solid #B3A07655;
  outline-offset: 2px;
}
