/* CSS RESET & BASE -------------------------------------------------- */
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #232323;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
ul,ol {list-style: none;}
a {text-decoration: none; color: inherit; transition: color 0.2s;}
button {background: none; border: none; cursor: pointer; font-family: inherit;}
input, select, textarea { font-family: inherit; font-size: 100%;}
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', Arial, Helvetica, sans-serif; }

/* ROOT COLORS & FONT -------------------------------------------------- */
:root {
  --primary: #232323;
  --secondary: #E0E5E0;
  --brand-dark: #384040;
  --brand-accent: #7CB968;
  --brand-gray: #888B8C;
  --white: #fff;
  --black: #111;
  --shadow: 0 2px 16px rgba(56,64,64,0.10), 0 1.5px 8px rgba(50,50,50,0.13);
  --radius: 14px;
}

/* TYPOGRAPHY ---------------------------------------------------------- */
body { font-size: 16px; }
h1 {
  font-size: 2.75rem; /*44px*/
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
h2 {
  font-size: 2rem; /*32px*/
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 18px;
  line-height: 1.2;
}
h3 {
  font-size: 1.25rem; /*20px*/
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 10px;
}
h4 {
  font-size: 1rem; /*16px*/
  font-weight: 400;
}
p, li, blockquote {
  font-size: 1rem;
  color: var(--brand-dark);
  line-height: 1.7;
  margin-bottom: 16px;
}
.subheadline {
  font-size: 1.25rem;
  color: var(--brand-gray);
  margin-bottom: 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
}
blockquote.brand-story {
  font-size: 1.33rem;
  font-style: italic;
  background: var(--secondary);
  border-left: 4px solid var(--brand-dark);
  padding: 22px 24px;
  border-radius: var(--radius);
  color: var(--black);
  margin: 24px 0 12px 0;
}
strong {font-weight: 600; color: var(--primary);}

/* LAYOUT & CONTAINER -------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* CARD & GRID FLEX PATTERNS ------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 32px 26px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 28px rgba(56,64,64,0.22);
  transform: translateY(-4px) scale(1.012);
  z-index: 2;
}
.content-grid, .service-grid, .feature-grid, .values-grid, .diy_ideas_grid { /* Used as grid-alternatives */
  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 {
  background: var(--secondary);
  color: var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 28px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.testimonial-list, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.service-list, .usp-list, .expertise-highlights, .project_difficulties ul, .benefits ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
  list-style: none;
}
.service-overview {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
  list-style: none;
}
.values-grid > div {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  margin-bottom: 18px;
  flex: 1 1 190px;
  min-width: 190px;
  font-size: 1rem;
}
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.diy_ideas_grid > div {
  background: var(--secondary);
  color: var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 18px;
  flex: 1 1 265px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
}
.diy_ideas_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/**** Section/Block Default Spacing ****/
section {
  margin-bottom: 60px;
  padding: 40px 0;
  width: 100%;
}
/**** Service highlights and cards ****/
.service-highlights, .team-highlights, .approach-highlights, .timeline-overview, .material-options, .sustainability-facts, .design-variations, .method-overview, .feature-descriptions, .contact-teaser, .project_difficulties, .materials_tips, .consultation_teaser, .workshop_overview, .followup-info {
  background: var(--secondary);
  border-left: 3px solid var(--brand-accent);
  border-radius: var(--radius);
  padding: 18px 24px;
  color: var(--primary);
  margin-bottom: 14px;
}
.opening-hours, .address-map, .seasonal-tips {
  background: var(--white);
  color: var(--brand-dark);
  border-radius: 8px;
  padding: 10px 18px;
  margin-bottom: 12px;
  font-size: 0.98rem;
  border-left: 2.5px solid var(--brand-gray);
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-size: 1.07rem;
  color: var(--primary);
  background: var(--secondary);
  border-radius: var(--radius);
  padding: 18px 22px;
}
.contact-info img {
  width: 22px; /*icon*/
  height: 22px;
  margin-right: 6px;
}

/**** Icon + label clusters (usp-lists etc.) ****/
.usp-list img, .feature-grid img, .values-grid img {
  width: 32px;
  height: 32px;
  margin-right: 11px;
  vertical-align: middle;
}
.usp-list li, .feature-grid li, .service-list li, .expertise-highlights li, .benefits ul li, .project_difficulties ul li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
}
.feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin-bottom: 12px;
}
.feature-icons img {width: 36px; height:36px; margin-right:6px;}
.feature-grid > li, .feature-grid > div {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 18px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

/**** Timeline/process lists ****/
.process-steps ol {
  list-style-type: decimal;
  margin-left: 28px;
  margin-bottom: 16px;
}
.process-steps li {margin-bottom: 7px;}

/**** Testimonial Section Styles ****/
.testimonial-info {
  font-size: 0.98em;
  color: var(--brand-dark);
  margin-top: 12px;
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  background: transparent;
  color: var(--primary);
  margin: 18px 0 0 0;
}
.rating-summary img { width: 26px; height: 26px; margin-right: 6px; }

/**** Links & Buttons ****/
.cta-main, .cta-nav, .mobile-nav a, .cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: background 0.21s, color 0.18s, box-shadow 0.23s;
  outline: none;
}
.cta-main {
  display: inline-block;
  margin-top: 11px;
  background: var(--brand-accent);
  color: #fff;
  border: none;
  padding: 14px 35px;
  font-size: 1.23rem;
  box-shadow: 0 2px 10px rgba(56,64,64,0.09);
  cursor: pointer;
  text-align: center;
}
.cta-main:hover, .cta-main:focus {
  background: #6ba157;
  color: #fff;
  box-shadow: 0 5px 24px rgba(44,80,44,0.25);
}
.cta-nav {
  background: transparent;
  border: 2px solid var(--brand-accent);
  color: var(--brand-accent);
  padding: 8px 18px;
  margin-left: 18px;
  font-size: 1rem;
}
.cta-nav:hover, .cta-nav:focus {
  background: var(--brand-accent);
  color: #fff;
  border-color: var(--brand-accent);
  box-shadow: 0 2px 8px rgba(44,80,44,0.13);
}
nav a {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: var(--brand-dark);
  font-size: 1.04rem;
  padding: 8px 8px;
  border-radius: 8px;
  transition: background 0.15s, color 0.20s;
}
nav a:hover, nav a:focus { color: var(--brand-accent); background: var(--secondary); }

/**** Header & Navigation ****/
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1.5px 9px rgba(35,35,35,0.07);
  position: relative;
  z-index: 80;
  padding: 0 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
header > a img {
  height: 48px;
  margin: 16px 0 10px 20px;
  display: block;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin: 0 18px 0 0;
}
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 23px;
  background: transparent;
  font-size: 2rem;
  color: var(--brand-dark);
  border-radius: 7px;
  z-index: 85;
  transition: background 0.12s;
}
.mobile-menu-toggle:hover,.mobile-menu-toggle:focus { background: var(--secondary); }
.mobile-menu {
  display: none;
}

/**** MOBILE HEADER NAVIGATION ------------------------------*/
@media (max-width: 992px){
  header {
    flex-direction: row;
    align-items: center;
    padding: 0 0;
    min-height: 64px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(240,241,240,0.97);
    z-index: 120;
    transform: translateX(-100vw);
    transition: transform 0.44s cubic-bezier(0.64,0,0.36,1);
    box-shadow: 0 3px 20px rgba(44,44,44,0.18);
    will-change: transform;
    overflow-y: auto;
  }
  .mobile-menu.open {
    transform: translateX(0);
    transition: transform 0.41s cubic-bezier(0.8,0,0.36,1);
  }
  .mobile-menu-close {
    font-size: 2.3rem;
    color: var(--brand-dark);
    background: none;
    border: none;
    position: absolute;
    top:20px; right:22px; z-index:125;
    border-radius: 8px;
    padding: 2px 8px;
    background: var(--white);
    box-shadow: 0 1.5px 7px rgba(28,28,28,0.03);
    transition: background 0.14s;
  }
  .mobile-menu-close:hover,.mobile-menu-close:focus { background: var(--secondary); color: var(--brand-accent); }
  .mobile-nav {
    margin-top: 80px;
    width: 100vw;
    padding: 32px 36px 28px 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .mobile-nav a {
    font-size: 1.21rem;
    background: none;
    color: var(--brand-dark);
    border-radius: 8px;
    padding: 9px 18px;
    transition: background 0.13s, color 0.18s;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    background: var(--brand-accent);
    color: #fff;
  }
}
/* Ensure desktop navigation is visible on larger screens. */
@media (min-width: 993px){
  .mobile-menu-toggle, .mobile-menu {display: none !important;}
  header nav {display: flex !important;}
}

/**** MAIN & PAGE LAYOUT ------------------------------------*/
main {flex: 1 0 auto; width: 100%; min-height: 500px; }

/**** FOOTER ----------------------------------------------- */
footer {
  width: 100%;
  background: var(--brand-dark);
  color: #fafafa;
  padding: 38px 0 22px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.96rem;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 14px;
}
footer nav a {
  color: #fafafa;
  font-size: 1rem;
  background: none;
  border-radius: 7px;
  padding: 6px 12px;
  transition: color 0.17s;
}
footer nav a:hover,footer nav a:focus { color: var(--brand-accent); text-decoration: underline; }
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  color: #fafafa;
  font-size: 0.98rem;
  margin-top: 8px;
}

/**** COOKIE CONSENT BANNER ---------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 3004;
  background: #18191a;
  color: #fff;
  padding: 24px 20px 20px 20px;
  font-size: 1.07rem;
  box-shadow: 0 -7px 24px rgba(28,28,28,0.09);
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: flex-start;
  animation: bannerEnter .7s cubic-bezier(0,0.8,0.34,1) 1;
}
@keyframes bannerEnter {
  from { transform: translateY(100%); opacity: 0 }
  to { transform: translateY(0); opacity: 1 }
}
.cookie-banner p {
  font-weight: 400;
  margin-bottom: 8px;
  max-width: 680px;
}
.cookie-banner .cookie-btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 0px;
}
.cookie-btn {
  padding: 10px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.19s;
  background: var(--brand-dark);
  color: #fff;
  box-shadow: 0 2px 8px rgba(30,40,30,0.10);
}
.cookie-btn.accept { background: var(--brand-accent); color: #fff; }
.cookie-btn.accept:hover, .cookie-btn.accept:focus { background: #6ba157; }
.cookie-btn.reject {
  background: #fff;
  color: var(--brand-dark);
  border: 2px solid var(--brand-dark);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--brand-gray);
  color: #fff;
  border-color: var(--brand-gray);
}
.cookie-btn.settings {
  background: transparent;
  color: var(--brand-dark);
  border: 2px solid var(--brand-dark);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus{
  background: var(--secondary);
  border-color: var(--brand-accent);
  color: var(--brand-accent);
}

/**** COOKIE PREFERENCES MODAL --------------------------------*/
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 3201;
  background: rgba(32,32,34,0.47);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.33s cubic-bezier(0.55,0,0.55,1);
}
@keyframes modalFadeIn {
  from { opacity: 0 }
  to { opacity: 1 }
}
.cookie-modal-content {
  background: #fff;
  color: var(--brand-dark);
  border-radius: var(--radius);
  box-shadow: 0 12px 38px rgba(65,70,70,0.21);
  padding: 36px 26px;
  min-width: 90vw;
  max-width: 424px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}
.cookie-modal-content h3 {margin-bottom:10px;}
.cookie-modal-content .category-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.03rem;
  width: 100%;
  margin-bottom: 10px;
}
/* Common switch toggle design */
.toggle-switch {
  position: relative;
  width: 41px;
  height: 24px;
  display: inline-block;
  margin-right: 7px;
}
.toggle-switch input { display: none; }
.toggle-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--brand-gray);
  transition: background 0.18s;
  border-radius: 12px;
}
.toggle-switch input:checked + .slider { background: var(--brand-accent); }
.toggle-switch .slider:before {
  position: absolute;
  content: '';
  height: 19px; width: 19px;
  left: 3px;
  bottom: 2.5px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 5px rgba(70,80,80,0.16);
  transition: transform 0.19s;
}
.toggle-switch input:checked + .slider:before { transform: translateX(16px); }
.cookie-modal-close {
  position: absolute;
  right: 16px; top: 13px;
  font-size: 1.7rem;
  color: var(--brand-dark);
  background: none;
  border: none;
  border-radius: 7px;
  padding: 2px 7px;
  transition: background 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { background: var(--secondary); color: var(--brand-accent); }
.cookie-modal .cookie-btn-row {
  margin-top: 18px;
  gap: 20px;
  justify-content: flex-end;
  width: 100%;
}

/**** MONOCHROME SOPHISTICATED EFFECTS ----------------------*/
.card, .testimonial-card, .diy_ideas_grid > div, .feature-grid > *, .values-grid > div {
  border: 1.5px solid rgba(34,36,36,0.08);
  background: linear-gradient(135deg,#fff 90%, #f6f8f6 100%);
}
.card:before, .testimonial-card:before {
  display: none;
}

/**** MICRO-INTERACTION & HOVER EFFECTS ---------------------*/
.feature-grid > *, .service-grid > div, .values-grid > div, .diy_ideas_grid > div {
  transition: box-shadow 0.19s, transform 0.19s;
}
.feature-grid > *:hover, .service-grid > div:hover, .values-grid > div:hover, .diy_ideas_grid > div:hover {
  box-shadow: 0 4px 18px rgba(44,48,48,0.13);
  transform: translateY(-2px) scale(1.012);
  z-index: 2;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 4px 22px rgba(40,80,60,0.12);
  transform: translateY(-3px) scale(1.011);
}

/**** RESPONSIVE DESIGN -------------------------------------*/
@media (max-width: 992px){
  .container {
    max-width: 98vw;
    padding: 0 9px;
  }
  .content-grid, .service-grid, .feature-grid, .values-grid, .testimonial-slider, .testimonial-list, .diy_ideas_grid {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.43rem; }
  .section {
    margin-bottom: 40px; padding: 27px 9px;
  }
  .card, .testimonial-card, .feature-grid > *, .diy_ideas_grid > div, .values-grid > div {
    padding: 16px 11px;
  }
  .feature-grid, .service-grid, .values-grid, .testimonial-slider, .testimonial-list, .diy_ideas_grid .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  .opening-hours, .contact-info, .address-map, .service-highlights, .team-highlights, .approach-highlights, .timeline-overview, .material-options, .design-variations, .sustainability-facts, .method-overview, .feature-descriptions, .contact-teaser, .project_difficulties, .materials_tips, .consultation_teaser, .workshop_overview, .followup-info {
    padding: 12px 8px;
    font-size: 0.99rem;
  }
  .feature-icons {
    gap: 12px;
    justify-content: flex-start;
  }
  .footer-contact {
    flex-direction: column;
    gap: 8px;
  }
  .cookie-modal-content {
    min-width: 98vw;
    padding: 15vw 6vw;
  }
}

/**** PRINT -------------------------------------------------*/
@media print { *,*:before,*:after { background: none !important; color: #18191a !important; box-shadow: none !important; text-shadow: none !important; } }
