/* RESET & BASELINE ------------------------------- */
/* https://github.com/h5bp/html5-boilerplate/blob/main/dist/css/normalize.css MIT LICENSED */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: #f3efe7;
  color: #24475b;
  font-weight: 400;
  min-height: 100vh;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #24475b;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #be9957;
}
ul, ol {
  padding-left: 1.4em;
  margin: 1.2em 0;
}
ul {
  list-style-type: disc;
}
ol {
  list-style-type: decimal;
}
li {
  margin-bottom: 0.45em;
}
hr {
  border: none;
  border-top: 1px solid #e4e0d2;
  margin: 32px 0;
}

/* TYPOGRAPHY -------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Serif', Georgia, serif;
  color: #24475b;
  font-weight: 700;
  line-height: 1.22;
  margin-top: 0;
  margin-bottom: 16px;
}
h1 { font-size: 2.2rem; margin-bottom: 18px; }
h2 { font-size: 1.65rem; margin-bottom: 15px; }
h3 { font-size: 1.2rem; margin-bottom: 12px; }
h4 { font-size: 1.04rem; margin-bottom: 10px; }
@media (min-width:768px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.22rem; }
}
p { margin-top: 0; margin-bottom: 18px; }
blockquote {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 1.1em;
  color: #24475b;
  background: #ede4d4;
  border-left: 4px solid #be9957;
  padding: 16px 24px;
  margin: 0 0 12px 0;
  border-radius: 8px;
}
strong, b { font-weight: 700; }
small { font-size: 87%; }

/* CONTAINER & LAYOUTS ----------------------------- */
.container {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 8px 0 rgba(36, 71, 91, 0.04);
  /* Light, airy card feel */
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 768px) {
  .section { padding: 30px 6px; }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
}
.card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1.5px 8px 0 rgba(36, 71, 91, 0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 260px;
  flex: 1 1 270px;
}

.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;
    gap: 18px;
    align-items: stretch;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 2px 12px 0 rgba(36, 71, 91, 0.07);
  margin-bottom: 22px;
  min-width: 250px;
  flex: 1 1 320px;
}
.testimonial-info {
  font-size: 0.98em;
  color: #24475b;
  font-style: italic;
  margin-top: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

/* HEADER & NAVIGATION ----------------------------- */
header {
  background: #ffffff;
  box-shadow: 0 1px 8px 0 rgba(36, 71, 91, 0.06);
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 62px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
}
header nav.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav.main-nav a {
  color: #24475b;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
header nav.main-nav a:hover, header nav.main-nav a:focus {
  background: #f3efe7;
  color: #be9957;
}
header a.cta-btn {
  margin-left: 18px;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #24475b;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 7px;
  padding: 3px 10px 3px 10px;
  display: none;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #ede4d4;
  color: #a06e17;
  outline: none;
}
@media (max-width:900px) {
  header nav.main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  header .cta-btn { display: none; }
}

/* MOBILE MENU ------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #24475b;
  transform: translateX(-100vw);
  transition: transform 0.39s cubic-bezier(.28,.98,.4,.98);
  z-index: 1200;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  opacity: 0.98;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 21px;
  right: 30px;
  color: #fff;
  background: none;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 2;
  border-radius: 7px;
  padding: 3px 11px;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #be9957;
  color: #24475b;
  outline: none;
}
.mobile-nav {
  width: 100%;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.15rem;
  text-decoration: none;
  padding: 11px 0;
  transition: color .17s;
  display: block;
  border-radius: 5px;
  min-width: 120px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #be9957;
  background: rgba(190,153,87,0.11);
  outline: none;
}
@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}

/* HERO ------------------------------------------- */
.hero {
  margin-bottom: 60px;
  padding: 0;
  background: #ede4d4;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 2px 18px 0 rgba(36, 71, 91, 0.05);
}
.hero .container {
  align-items: flex-start;
  padding-top: 38px;
  padding-bottom: 38px;
}
.hero h1 {
  color: #24475b;
  margin-bottom: 12px;
}
.hero .cta-btn {
  margin-top: 18px;
}
@media (max-width:600px) {
  .hero .container { padding-top: 19px; padding-bottom: 19px; }
}

/* BUTTONS & CTA ---------------------------------- */
.cta-btn {
  background: #be9957;
  color: #fff;
  display: inline-block;
  padding: 13px 30px;
  border-radius: 24px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 16px;
  text-decoration: none;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(190,153,87,0.06);
  transition: background 0.2s, color 0.2s, box-shadow 0.15s, transform 0.17s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #a06e17;
  color: #fff;
  box-shadow: 0 6px 18px 0 rgba(190,153,87,0.14);
  transform: translateY(-2px) scale(1.015);
  outline: none;
}
button.cta-btn {
  font-size: 15px;
  padding: 12px 28px;
}
@media (max-width:600px) {
  .cta-btn { width: 100%; text-align: center; }
}

/* FEATURES / ICON GRID --------------------------- */
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 8px 0 rgba(36, 71, 91, 0.04);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-grid, .feature-checklist, .material-info, .project-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 0 22px 0;
  list-style: none;
  padding: 0;
}
.feature-grid li, .feature-checklist li, .material-info li, .project-examples li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.05em;
  background: #ede4d4;
  border-radius: 10px;
  padding: 13px 22px;
  color: #24475b;
  font-weight: 500;
  box-shadow: 0 0.5px 3px rgba(36, 71, 91,0.04);
  flex: 1 1 180px;
  min-width: 170px;
}
@media (max-width: 850px) {
  .feature-grid, .feature-checklist, .material-info, .project-examples {
    flex-direction: column;
    gap: 11px;
  }
}
.feature-descriptions {
  margin-top: 6px;
}

/* SERVICES & BENEFITS ---------------------------- */
.services {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 8px 0 rgba(36, 71, 91, 0.04);
}
.service-list, .service-detailed-list, .benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}
.service-list li, .service-detailed-list li, .benefits-list li {
  background: #ede4d4;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 9px;
  color: #24475b;
  box-shadow: 0 0.5px 3px rgba(36, 71, 91,0.04);
  font-size: 1.06em;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.service-list li span, .service-detailed-list li span {
  color: #be9957;
  font-weight: 500;
  margin-left: 6px;
}

/* ABOUT / VALUES --------------------------------- */
.about {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 8px 0 rgba(36, 71, 91, 0.04);
}
.values-list, .contact-methods ul, .contact-info {
  list-style: none;
  padding: 0;
  margin: 6px 0 18px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.values-list li, .contact-info li, .contact-methods ul li {
  background: #ede4d4;
  border-radius: 10px;
  padding: 12px 20px 12px 16px;
  color: #24475b;
  font-size: 0.98em;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 170px;
  box-shadow: 0 0.5px 3px rgba(36, 71, 91,0.04);
}

/* PROCESS STEPS ---------------------------------- */
.process-steps {
  list-style: decimal inside;
  margin: 12px 0 18px 0;
  padding: 0 0 0 7px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quality-guarantee {
  margin-top: 17px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 500;
  color: #24475b;
}
.quality-guarantee img {
  width: 27px;
  height: 27px;
}

/* CONTACT ---------------------------------------- */
.contact-methods, .quick-contact {
  margin: 0 0 14px 0;
}
.contact-methods ul, .quick-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.contact-methods ul li, .quick-contact {
  background: #ede4d4;
  border-radius: 8px;
  padding: 11px 18px;
  color: #24475b;
  font-size: 0.99em;
  box-shadow: 0 0.5px 3px rgba(36, 71, 91,0.04);
  min-width: 170px;
  display: flex;
  align-items: center;
  gap: 11px;
}
.location-map, .hours {
  margin-bottom: 14px;
  background: #f7f2ec;
  border-radius: 10px;
  padding: 14px 18px;
  color: #24475b;
  box-shadow: 0 0.5px 3px rgba(36, 71, 91,0.02);
}

/* TESTIMONIALS ----------------------------------- */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #f9f7f2;
  border-radius: 16px;
}
.testimonials h2 {
  margin-bottom: 28px;
}
.testimonial-card {
  background: #fff;
  color: #24475b;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px 0 rgba(36, 71, 91, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 29px 20px 22px;
  min-width: 220px;
  font-size: 1.07em;
}
.testimonial-card:last-child {
  margin-bottom: 0;
}
.testimonial-card blockquote {
  color: #24475b;
  background: none;
  border-left: 4px solid #be9957;
  padding: 0 0 2px 17px;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 1.06em;
}
.testimonial-info {
  color: #24475b;
  font-size: 0.98em;
  font-style: italic;
}

/* CTA BLOCKS ------------------------------------- */
.cta {
  margin-bottom: 62px;
  padding: 36px 20px;
  background: #ede4d4;
  border-radius: 12px;
  box-shadow: 0 1.5px 8px 0 rgba(36, 71, 91, 0.04);
  text-align: center;
}
.cta .cta-btn {
  margin-top: 18px;
}

/* LEGAL & POLICY --------------------------------- */
.legal {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 8px 0 rgba(36, 71, 91, 0.04);
}
.legal h1, .legal h2 {
  color: #24475b;
}
.legal ul {
  list-style: disc inside;
}

/* FOOTER ----------------------------------------- */
footer {
  background: #ede4d4;
  border-radius: 16px 16px 0 0;
  margin-top: 80px;
  padding: 28px 0 21px 0;
  box-shadow: 0 -2px 12px 0 rgba(36, 71, 91, 0.04);
  min-height: 65px;
}
footer .container {
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
.footer-links {
  font-size: 1rem;
  color: #24475b;
  margin-bottom: 7px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-links a {
  color: #24475b;
  text-decoration: underline;
  padding: 2px 4px;
  border-radius: 4px;
  transition: background 0.16s, color 0.14s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #be9957;
  background: #f7f2ec;
}
.brand-info {
  color: #24475b;
  font-size: 0.96em;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 3px;
  align-items: center;
}
.quick-contact {
  color: #24475b;
  font-size: 0.97em;
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  align-items: center;
  margin-bottom: 5px;
}
.quick-contact img {
  margin-right: 7px;
}

/* RESPONSIVE DESIGN ------------------------------ */
@media (max-width: 1024px) {
  .container { max-width: 94vw; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.52rem; }
  h2 { font-size: 1.17rem; }
  .about, .features, .services, .testimonials, .legal, .cta, .section {
    padding: 22px 6px;
    border-radius: 10px;
    margin-bottom: 38px;
  }
  .card-container, .content-grid {
    gap: 11px;
  }
  .feature-grid, .feature-checklist, .values-list, .material-info, .project-examples {
    flex-direction: column;
    gap: 10px;
  }
  .testimonial-card { padding: 15px 13px 15px 14px; }
}
@media (max-width: 540px) {
  .container { padding: 0 3vw; }
  header .container { padding: 0 1vw; }
  .about, .features, .services, .testimonials, .legal, .cta, .section {
    padding: 13px 2vw;
  }
  .feature-grid li, .feature-checklist li, .material-info li, .project-examples li {
    min-width: 120px;
    padding: 9px 8px;
    font-size: 0.97em;
  }
}

/* BUTTONS - Cookie, Accept/Reject etc. ------------ */
.btn, .cookie-banner button, .cookie-modal button {
  display: inline-block;
  background: #be9957;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 20px;
  font-size: 1em;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  margin-right: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: background 0.19s, color 0.19s, box-shadow 0.14s;
}
.btn:last-child, .cookie-banner button:last-child, .cookie-modal button:last-child {
  margin-right: 0;
}
.btn:hover, .btn:focus,
.cookie-banner button:hover, .cookie-banner button:focus,
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #a06e17;
  color: #fff;
  box-shadow: 0 0.5px 5px rgba(190,153,87,0.18);
  outline: none;
}
.cookie-banner .settings-btn {
  background: #ede4d4;
  color: #24475b;
  border: 2px solid #be9957;
  font-weight: 700;
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: #be9957;
  color: #fff;
  border-color: #a06e17;
}

/* COOKIE CONSENT BANNER --------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1900;
  background: #f3efe7ea;
  box-shadow: 0 -2px 16px 0 rgba(36, 71, 91, 0.09);
  border-radius: 14px 14px 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 24px 30px;
  min-height: 57px;
  font-size: 1.04em;
  color: #24475b;
  transition: transform 0.37s cubic-bezier(.28,.98,.4,.98), opacity 0.23s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(150%);
  pointer-events: none;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    padding: 15px 9px;
    font-size: 0.97em;
    align-items: flex-start;
  }
}

/* COOKIE MODAL ------------------------------------- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2100;
  background: rgba(36, 71, 91, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.29s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 14px;
  padding: 40px 32px 32px 32px;
  box-shadow: 0 2px 26px 0 rgba(36, 71, 91, 0.18);
  max-width: 400px;
  width: 90vw;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 11px;
  position: relative;
}
.cookie-modal-content h3 {
  font-size: 1.25em;
  margin-bottom: 4px;
}
.cookie-modal-content p {
  font-size: 1em;
  margin: 4px 0 10px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 13px;
}
.cookie-category label {
  font-size: 1em;
  font-weight: 500;
  color: #24475b;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  border-radius: 12px;
  background: #e0d5bd;
  position: relative;
  outline: none;
  cursor: pointer;
  margin-right: 6px;
  transition: background 0.17s;
}
.cookie-toggle:checked {
  background: #be9957;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.19s, background 0.19s;
}
.cookie-toggle:checked::before {
  transform: translateX(14px);
  background: #f3efe7;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  color: #24475b;
  font-size: 1.7rem;
  cursor: pointer;
  border-radius: 7px;
  padding: 2px 7px;
  transition: background 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #ede4d4;
  color: #a06e17;
  outline: none;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
  margin-top: 17px;
  align-items: center;
  justify-content: flex-end;
}

/* UTILITIES -------------------------------------- */
.hide { display: none !important; }

/* SCROLLBAR FOR WEBKIT --------------------------- */
::-webkit-scrollbar {
  width: 12px;
  background: #f3efe7;
}
::-webkit-scrollbar-thumb {
  background: #e0d5bd;
  border-radius: 5px;
}

/* MICRO-INTERACTIONS ----------------------------- */
.card, .testimonial-card, .service-list li, .service-detailed-list li, .about, .features, .services, .cta {
  transition: box-shadow 0.20s, transform 0.17s;
}
.card:hover, .testimonial-card:hover, .service-list li:hover, .service-detailed-list li:hover, .about:hover, .features:hover, .services:hover, .cta:hover {
  box-shadow: 0 6px 24px 0 rgba(36, 71, 91, 0.16);
  transform: translateY(-3px) scale(1.012);
}

/* MISC ------------------------------------------- */
main {
  margin-top: 31px;
  margin-bottom: 26px;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width:600px){
  main { gap: 16px; margin-top: 13px; margin-bottom: 10px; }
}

/* Print-friendly adjustments (optional) ----------- */
@media print {
  header, footer, .cookie-banner, .mobile-menu, .mobile-menu-toggle { display: none !important; }
  .section, .features, .about, .services, .cta, .contact, .testimonials,.legal { box-shadow: none !important; }
  body { background: #fff; }
}
