/* CSS RESET & 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;
}
html {
  scroll-behavior: smooth;
  background: #F5F3ED;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F5F3ED;
  color: #2A3C29;
  min-height: 100vh;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  margin-bottom: 20px;
  padding-left: 24px;
}
ul li {
  margin-bottom: 8px;
}
a {
  color: #2A3C29;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
}
a:hover, a:focus {
  color: #8D6746;
  outline: none;
}
strong, b {
  font-weight: 700;
}
small {
  font-size: 14px;
  color: #777;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #2A3C29;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.75rem; margin-bottom: 32px; }
h2 { font-size: 2rem; margin-bottom: 28px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; margin-bottom: 8px; }

p, li, td, th {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #2A3C29;
  font-weight: 400;
  letter-spacing: 0.01em;
}
p {
  margin-bottom: 18px;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* SECTION SPACING */
section {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 16px 0 rgba(34,34,34,0.07);
}

main > section:not(:last-child) {
  margin-bottom: 60px;
}

/* FLEX LAYOUT RULES (NO GRID) */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F5F3ED;
  box-shadow: 0 0 0 2px #8D6746 inset;
  border-radius: 14px;
  padding: 28px 24px;
  flex: 1 1 260px;
  min-width: 230px;
  max-width: 320px;
  margin-bottom: 20px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.feature-item:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(141,103,70,0.18);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  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: flex-start;
  gap: 20px;
  padding: 32px 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(42,60,41,0.07);
  margin-bottom: 20px;
  border-left: 6px solid #8D6746;
  min-width: 260px;
  max-width: 480px;
  transition: box-shadow 0.18s, border-color 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(141,103,70,0.18);
  border-color: #2A3C29;
}
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 10px;
}

/* Extra layout helpers */
.services-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-detail-box, .project-highlight-box {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(42,60,41,0.05);
  padding: 28px 24px;
  margin-bottom: 20px;
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.project-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* Table Styling */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 12px 0 rgba(42,60,41,0.06);
  overflow: hidden;
}
.pricing-table thead {
  background: #2A3C29;
}
.pricing-table th, .pricing-table td {
  padding: 18px 16px;
  text-align: left;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.pricing-table th {
  color: #fff;
  font-size: 1rem;
}
.pricing-table td {
  color: #2A3C29;
  font-size: 1rem;
  background: #F5F3ED;
}
.pricing-table tr:nth-child(even) td {
  background: #ede7df;
}
.pricing-table tr:hover td {
  background: #f2e6da;
}

/* FOOTER */
footer {
  background: #2A3C29;
  color: #fff;
  padding: 36px 0 18px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #fff;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-nav a:hover {
  color: #8D6746;
}
footer .container {
  align-items: center;
  justify-content: center;
  gap: 4px;
}
footer span {
  font-size: 1rem;
  opacity: 0.76;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 3px 16px 0 rgba(42,60,41,0.07);
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 20px;
}
header a img {
  height: 42px;
  margin-right: 26px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #2A3C29;
  transition: color 0.2s;
  padding: 6px 0;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #8D6746;
}

/* CALL TO ACTION BUTTONS (CTA) */
.cta, .primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 16px 28px;
  border-radius: 38px;
  background: #8D6746;
  color: #fff !important;
  box-shadow: 0 2px 16px rgba(141,103,70,0.08);
  border: none;
  transition: background 0.2s, transform 0.14s, box-shadow 0.13s;
  cursor: pointer;
  margin-left: 16px;
  outline: none;
  gap: 8px;
}
.cta.primary {
  background: #2A3C29;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(42,60,41,0.08);
}
.cta:hover, .cta:focus, .primary:hover, .primary:focus {
  background: #E89859;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(141,103,70,0.16);
}
.cta:active, .primary:active {
  background: #53391f;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(90deg, #fff 70%, #F5F3ED 100%);
  border-radius: 0 0 40px 40px;
  box-shadow: 0 6px 26px 0 rgba(42,60,41,0.10);
  padding: 48px 0 66px 0;
}
.hero .container {
  align-items: flex-start;
  justify-content: flex-start;
}
.hero .content-wrapper {
  max-width: 720px;
}
.hero h1 {
  color: #2A3C29;
  font-size: 2.9rem;
  font-weight: 900;
  line-height: 1.13;
}
.hero p {
  font-size: 1.25rem;
  color: #8D6746;
  margin-bottom: 38px;
  font-weight: 500;
}
.hero .cta {
  font-size: 1.18rem;
}

/* SERVICES & LISTS */
.services-list, .usp-list, .included-services, .additional-services-list, .thankyou-next-steps, .contact-short-info, .contact-details, .contact-info {
  list-style: none;
  margin-bottom: 14px;
  padding-left: 0;
}
.services-list li, .usp-list li, .included-services li, .additional-services-list li, .thankyou-next-steps li, .contact-short-info li, .contact-details li, .contact-info li {
  background: #F5F3ED;
  margin-bottom: 13px;
  padding: 12px 18px 12px 36px;
  border-radius: 10px;
  box-shadow: 0 0.5px 3px rgba(42,60,41,0.03);
  position: relative;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.services-list li h3 {
  margin-bottom: 6px;
  color: #2A3C29;
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.services-list li p {
  margin-bottom: 0;
}
.contact-short-info img, .contact-details img, .additional-services-list img {
  position: absolute;
  left: 10px;
  top: 16px;
  width: 19px;
  height: 19px;
}

.map-placeholder {
  background: #ede7df;
  border-radius: 10px;
  padding: 18px;
  margin-top: 12px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.thankyou-next-steps li a { color: #8D6746; font-weight: 700; }

/* FORM ELEMENTS (for future) */
input, select, textarea, button {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #2A3C29;
  background: #fff;
  border-radius: 10px;
  border: 2px solid #ede7df;
  padding: 11px 14px;
  outline: none;
  margin-bottom: 18px;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #8D6746;
}

/* Hamburger Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: #8D6746;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  border: none;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 105;
  transition: background 0.18s, color 0.13s;
  cursor: pointer;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #2A3C29;
  color: #E89859;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.7,.4,.12,1.03);
  z-index: 110;
  display: flex;
  flex-direction: column;
  padding: 44px 24px 24px 24px;
  gap: 32px;
  box-shadow: 0 6px 40px 2px rgba(42,60,41,0.14);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: #2A3C29;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 1.45rem;
  border-radius: 50%;
  transition: background 0.13s, color 0.12s;
  cursor: pointer;
  z-index: 111;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #8D6746;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 26px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.22rem;
  font-weight: 800;
  color: #2A3C29;
  padding: 14px 0;
  letter-spacing: 0.08em;
  border-bottom: 2px solid transparent;
  transition: color 0.13s, border-color 0.15s;
  text-transform: uppercase;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #8D6746;
  border-bottom: 2px solid #8D6746;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #2A3C29;
  color: #fff;
  z-index: 200;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 28px 40px 28px 24px;
  box-shadow: 0 -4px 32px 0 rgba(42,60,41,0.12);
  gap: 28px;
  width: 100%;
  font-size: 1rem;
  transform: translateY(130%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s, opacity 0.26s;
}
.cookie-consent-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-consent-text {
  flex: 2 1 320px;
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #fff;
  margin-right: 18px;
}
.cookie-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.cookie-btn {
  border: none;
  padding: 12px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.15s, color 0.12s, box-shadow 0.09s;
  margin-left: 0;
}
.cookie-btn.accept {
  background: #8D6746;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #2A3C29;
  color: #fff;
}
.cookie-btn.reject {
  background: #ede7df;
  color: #2A3C29;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #8D6746;
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: #2A3C29;
  box-shadow: 0 2px 6px #ede7df;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #E89859;
  color: #fff;
}

/* Cookie Consent Modal */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 201;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(42,60,41,0.63);
  align-items: center;
  justify-content: center;
}
.cookie-modal.active {
  display: flex;
  animation: fadeInModal 0.25s ease forwards;
}
@keyframes fadeInModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #2A3C29;
  border-radius: 18px;
  box-shadow: 0 8px 58px 0 rgba(42,60,41,0.20);
  padding: 36px 30px 30px 30px;
  max-width: 420px;
  width: 95%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: scaleInModal 0.23s cubic-bezier(.51,.9,.17,1.01) forwards;
}
@keyframes scaleInModal {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  right: 17px; top: 15px;
  background: #8D6746;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.13s, color 0.10s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #2A3C29;
  color: #fff;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 8px;
}
.cookie-category-label {
  font-weight: 700;
  color: #2A3C29;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
.cookie-category-toggle {
  width: 42px;
  height: 24px;
  background: #ede7df;
  position: relative;
  border-radius: 12px;
  transition: background 0.13s;
  cursor: pointer;
  border: none;
}
.cookie-category-toggle[aria-checked="true"] {
  background: #2A3C29;
}
.cookie-category-toggle .cookie-toggle-slider {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #8D6746;
  border-radius: 50%;
  transition: left 0.18s, background 0.13s;
}
.cookie-category-toggle[aria-checked="true"] .cookie-toggle-slider {
  background: #F5F3ED;
  left: 21px;
}

/* --- GENERAL RESPONSIVE (Mobile First) --- */
@media (max-width: 1024px) {
  .container { max-width: 98vw; }
  .main-nav { gap: 9px; }
}
@media (max-width: 900px) {
  .container { padding: 0 10px; }
  .footer-nav { gap: 14px; font-size: 0.91rem; }
  .content-wrapper { padding: 0; }
}
@media (max-width: 840px) {
  .features-grid, .project-highlights, .testimonials-list, .services-categories {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 0;
    padding: 12px 9px 10px 9px;
    min-height: 64px;
  }
  .main-nav, .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    right: 22px;
    top: 18px;
  }
  .hero .content-wrapper { max-width: 100%; }
  .features-grid, .project-highlights, .testimonials-list, .services-categories {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature-item, .service-detail-box, .project-highlight-box, .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .hero { padding: 32px 0 40px 0; }
  .footer-nav { flex-direction: column; gap: 12px; margin-bottom: 18px; }
  section, .section {
    margin-bottom: 32px;
    padding: 22px 6px;
    border-radius: 12px;
  }
  .pricing-table th, .pricing-table td { padding: 11px 6px; font-size: 0.94rem; }
  .map-placeholder { padding: 12px; }
}
@media (max-width:540px) {
  .hero h1 {
    font-size: 1.9rem;
    margin-bottom: 16px;
  }
  .hero p { font-size: 1.02rem; }
  h2 { font-size: 1.32rem; }
  h1, h2, h3, h4, h5 { margin-bottom: 10px; }
  section, .section { padding: 12px 2px; }
  .cookie-consent-banner, .cookie-consent-banner.active {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 14px;
    font-size: 0.95rem;
  }
  .cookie-btns { gap: 8px; flex-wrap: wrap; }
}
@media (max-width:440px) {
  .container, header .container, .content-wrapper { padding: 0 2px; border-radius: 0px; }
}

/* VISUAL EFFECTS & SHADOWS */
.section, .service-detail-box, .project-highlight-box, .feature-item, .testimonial-card, .content-wrapper, .pricing-table {
  box-shadow: 0 3px 16px 0 rgba(42,60,41,0.07);
}

/* MICRO-INTERACTIONS */
.cta, .primary {
  transition: background 0.17s, color 0.12s, transform 0.14s, box-shadow 0.09s;
}
.card, .feature-item, .service-detail-box, .testimonial-card {
  transition: box-shadow 0.15s, transform 0.13s;
}
.card:hover, .feature-item:hover, .service-detail-box:hover, .testimonial-card:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 8px 28px rgba(141,103,70,0.16);
}

/* GEOMETRIC & MODERN BOLD SHAPES */
.section, .feature-item, .service-detail-box, .testimonial-card, .pricing-table, .map-placeholder {
  border-radius: 18px;
}

/* Z-INDEX SAFETY */
header {
  z-index: 99 !important;
}
.mobile-menu {
  z-index: 110 !important;
}
.cookie-consent-banner {
  z-index: 200 !important;
}
.cookie-modal {
  z-index: 201 !important;
}

/* CUSTOM SCROLLBAR (only on desktop) */
@media (min-width: 901px) {
  ::-webkit-scrollbar { width: 11px; background: #F5F3ED; }
  ::-webkit-scrollbar-thumb { background: #ede7df; border-radius: 7px; }
  ::-webkit-scrollbar-thumb:hover { background: #8D6746; }
}

/* Print Styles - Minimal */
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu { display: none !important; }
  body { color: #111; background: #fff; }
  .container { max-width: 100%; }
  .section, main, section { box-shadow: none !important; padding: 0; }
}
