/* ============================================================
   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 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background-color: #F5F7FA;
  color: #3B3B3B;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
input, textarea, select {
  font: inherit;
  outline: none;
}

/* ============================================================
   Brand Colors & Typography
============================================================ */
:root {
  --color-primary: #275169;
  --color-secondary: #6CB495;
  --color-accent: #F5F7FA;
  --color-earth-bg: #F9F7F3;
  --color-earth-dark: #766149;
  --color-earth-mid: #AC9772;
  --color-earth-light: #EDE6DE;
  --color-success: #5EAA6F;
  --color-error: #B6695A;
  --border-radius: 18px;
  --transition-main: 0.27s cubic-bezier(.36,.66,.04,1);
  --box-shadow-soft: 0 4px 24px rgba(53,76,57,0.06);
  --green-shadow: 0 1px 10px 0 rgba(40,97,63,0.08);
}

body,
input, select, textarea, button {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #3B3B3B;
  background: var(--color-accent);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 22px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; }
h1, h2, h3, h4 { word-break: break-word; }
p, ul, ol, li, dl, dd, dt {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #493F33;
}
.subtitle {
  color: var(--color-secondary);
  font-size: 1.25rem;
  margin-bottom: 28px;
  font-weight: 400;
}
strong, b {
  font-weight: 700;
  color: var(--color-earth-dark);
}

a:hover,
a:focus {
  color: var(--color-secondary);
}

/* ============================================================
   Container Layouting (FLEXBOX ONLY)
============================================================ */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
}

/* Section Spacing Patterns */
.section,
.features,
.about-teaser,
.process-short,
.about,
.values,
.why-us,
.contact-teaser,
.services,
.service-details,
.process-teaser,
.inspiration,
.mini-guides,
.cta,
.cookies-policy,
.privacy-policy,
.gdpr,
.terms {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-earth-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-soft);
}

.card-container,
.feature-grid,
.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .highlight-box {
  background: var(--color-accent);
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-soft);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.content-grid,
.short-guides-list {
  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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px 0 rgba(87,102,74,0.07);
  margin-bottom: 20px;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-accent);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-soft);
  padding: 24px 16px;
  min-width: 220px;
  flex: 1 1 220px;
}

/* Utility flex layouts */
.values-list,
.usp-list,
.commitments,
.feature-compare-list,
ul,
ol {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
  padding-left: 26px;
}

.quick-links {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
  font-size: 1rem;
}

/*************************************************************
   Navigation & Header
*************************************************************/
header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(50,65,52,0.06);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 28px;
}
nav.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex: 1 1 auto;
}
nav.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.015em;
  padding: 5px 0;
  border-radius: 8px;
  position: relative;
}
nav.main-nav a:hover:not(.btn),
nav.main-nav a:focus:not(.btn) {
  color: var(--color-secondary);
  background: rgba(150,201,160,0.08);
  outline: none;
}
@media (max-width: 1000px) {
  nav.main-nav {
    gap: 10px;
  }
}

/* Burger Mobile Menu Button */
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: #fff;
  font-size: 1.6rem;
  border-radius: 50%;
  height: 44px;
  width: 44px;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  box-shadow: 0 1px 8px rgba(44,83,59,0.10);
  z-index: 1102;
  transition: background var(--transition-main);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-primary);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100dvh;
  background: rgba(248,250,245,0.99);
  z-index: 1101;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.36,.66,.04,1);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 40px 0 rgba(30,57,39,0.18);
}
.mobile-menu-close {
  background: var(--color-primary);
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px; height: 44px;
  margin: 24px 16px 18px 16px;
  align-self: flex-end;
  box-shadow: 0 2px 8px rgba(44,80,59,0.08);
  transition: background var(--transition-main);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-secondary);
  color: #fff;
}
nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 36px;
  margin-top: 22px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  color: var(--color-primary);
  padding: 10px 0;
  border-radius: 10px;
  line-height: 1.5;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover{
  background: var(--color-secondary);
  color: #fff;
  outline: none;
}

@media (max-width: 900px) {
  nav.main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 900px) {
  .mobile-menu {
    display: none !important;
  }
}

/*************************************************************
   Hero Section
*************************************************************/
.hero {
  background: linear-gradient(90deg, #EDE6DE 60%, #D9EBDF 100%);
  padding: 56px 20px 46px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-soft);
  margin-bottom: 60px;
  min-height: 320px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 700px;
  margin: 0 auto;
  gap: 24px;
}

/*************************************************************
   Button Styles
*************************************************************/
.btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 26px;
  transition: background var(--transition-main), color var(--transition-main), box-shadow var(--transition-main);
  display: inline-block;
  box-shadow: 0 2px 8px 0 rgba(40,97,63,0.08);
  margin: 0 2px 0 0;
  border: none;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: var(--color-secondary);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 12px 0 rgba(39,81,105,0.09);
  outline: none;
}
.btn-secondary {
  background: var(--color-primary);
  color: #fff;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 0 4px 12px 0 rgba(93,180,149,0.10);
  outline: none;
}

/*************************************************************
   Cards, Feature Items, Lists
*************************************************************/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-item img {
  width: 42px; height: 42px;
  background: #EDE6DE;
  border-radius: 16px 32px 20px 28px/20px 30px 28px 12px;
  padding: 7px;
  margin-bottom: -2px;
}
.feature-item h3 {
  color: var(--color-primary);
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.feature-item p {
  color: #615843;
  font-size: 0.99rem;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.highlight-box img {
  width: 40px;
  margin-bottom: 7px;
}
.highlight-box h3 {
  color: var(--color-secondary);
  font-size: 1.12rem;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.price {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1.13rem;
  margin-left: 7px;
}

/*************************************************************
   Testimonials
*************************************************************/
.testimonials {
  margin-bottom: 60px;
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #44442B;
  margin: 0 0 4px 0;
}
.testimonial-meta {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 0.97rem;
  margin-left: 7px;
}
.ratings {
  font-size: 1rem;
  color: var(--color-primary);
  margin-top: 14px;
  font-weight: 500;
}

/*************************************************************
   Table Styles
*************************************************************/
.pricing-table, .working-hours-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-accent);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px rgba(60,75,42,0.06);
  font-size: 1rem;
}
.pricing-table th, .pricing-table td,
.working-hours-table th, .working-hours-table td {
  padding: 16px 14px;
  text-align: left;
}
.pricing-table thead th {
  background: var(--color-secondary);
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table tbody tr { background: transparent; }
.pricing-table tbody tr:nth-child(even) {
  background: #F5F7FA;
}
.pricing-table tbody td {
  color: #393D3A;
}

/*************************************************************
   Footer Style
*************************************************************/
footer {
  background: #DFE9E1;
  padding: 36px 0 0 0;
  margin-top: 70px;
  border-radius: var(--border-radius) var(--border-radius) 0 0 / 36px 36px 0 0;
  box-shadow: 0 -1px 12px rgba(70,110,70,0.07);
}
footer .container {
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
footer .content-wrapper {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
}
footer .logo {
  margin-right: 22px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-nav a {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1rem;
  border-radius: 8px;
  background: none;
  padding: 4px 8px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-secondary);
  background: #fff;
}
.footer-attribution {
  font-size: .97rem;
  color: #415445;
  margin-top: 20px;
}

/*************************************************************
   About & Values
*************************************************************/
.values-list {
  background: #EDE6DE;
  border-radius: 12px;
  padding: 16px 22px;
  color: #74694B;
}
.usp-list, .commitments {
  background: #F3F7EF;
  border-radius: 8px;
  padding: 12px 18px;
  color: #726B4B;
}
.brand-differentiators {
  background: var(--color-earth-light);
  color: var(--color-primary);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 1.04rem;
  margin-top: 14px;
}

/*************************************************************
   Process & Steps
*************************************************************/
.steps {
  display: flex;
  flex-direction: column;
  gap: 13px;
  list-style: decimal inside;
}
.step-by-step {
  display: flex;
  flex-direction: column;
  gap: 13px;
  list-style: decimal inside;
  background: #E0EFE0;
  border-radius: 12px;
  padding: 18px 16px;
}
.process-icons {
  display: flex;
  gap: 26px;
  margin: 18px 0 0 0;
}
.timeline {
  margin-top: 20px;
  color: var(--color-earth-dark);
  font-weight: 600;
}

/*************************************************************
   FAQ & List Styles
*************************************************************/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #EDE6DE;
  border-radius: 11px;
  padding: 18px 18px;
  color: #4C4634;
}
.faq-list dt {
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 3px;
}
.faq-list dd {
  margin-bottom: 8px;
  margin-left: 0;
}

/*************************************************************
   Cookie Consent Banner + Modal
*************************************************************/
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #ede6de;
  color: #413f39;
  box-shadow: 0 -2px 14px 0 rgba(81,92,60,0.11);
  padding: 24px 10vw 20px 10vw;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
  font-size: 1rem;
}
.cookie-consent-banner p {
  margin: 0;
  color: #665c47;
  flex: 2 1 220px;
}
.cookie-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn {
  min-width: 120px;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 1rem;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-main), color var(--transition-main);
  outline: none;
}
.cookie-btn.accept {
  background: var(--color-success);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #3c7c56;
  color: #fff;
}
.cookie-btn.reject {
  background: #e0dacb;
  color: #4f5545;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #b6695a;
  color: #fff;
}
.cookie-btn.settings {
  background: var(--color-secondary);
  color: #fff;
  border: 1.5px solid var(--color-primary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-primary);
  color: #fff;
}

.cookie-modal {
  position: fixed;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-60%) scale(0.94);
  margin: 0 auto;
  width: 94vw; max-width: 400px;
  background: #f3efe5;
  color: #403f39;
  border-radius: 18px;
  box-shadow: 0 12px 36px 0 rgba(58,80,53,0.16);
  z-index: 1550;
  padding: 34px 26px 28px 26px;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
  transition: all 0.31s cubic-bezier(.36,.66,.04,1);
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}
.cookie-modal h3 {
  color: var(--color-primary);
}
.cookie-cats {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #EDE6DE;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 1rem;
}
.cookie-cat label {
  flex: 1 1 auto;
  color: #635838;
}
.cookie-toggle {
  accent-color: var(--color-secondary);
}
.cookie-cat.essential label {
  font-weight: bold;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

/*************************************************************
   Contact & Map
*************************************************************/
.brand-contact-info {
  background: #EDE6DE;
  color: #514836;
  border-radius: 9px;
  padding: 18px 20px;
  margin-bottom: 14px;
  font-size: 1.03rem;
}
.map-embed {
  background: #e3efd8;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 2px 7px 0 rgba(68,108,70,0.08);
  width: 100%;
  max-width: 420px;
}

/*************************************************************
   Thank You / Confirmation / CTA
*************************************************************/
.thank-you .confirmation-message {
  font-size: 1.2rem;
  color: var(--color-secondary);
  font-weight: 500;
  margin-bottom: 18px;
  background: #e3efd8;
  border-radius: 14px;
  padding: 12px 18px;
}
.next-steps-info {
  color: #594d34;
  font-size: 1rem;
  margin-bottom: 18px;
}
.contact-link a {
  color: var(--color-secondary);
  text-decoration: underline;
}

/*************************************************************
   Miscellaneous
*************************************************************/
dl, dt, dd {
  margin: 0;
}
article {
  background: #EDE6DE;
  border-radius: 12px;
  padding: 20px 18px;
  margin-bottom: 20px;
  box-shadow: 0 1px 6px rgba(70,110,70,0.03);
}
.short-guides-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
  color: var(--color-primary);
}
.short-guides-list li span {
  font-size: 0.97rem;
  color: #72693a;
}
 
/*************************************************************
   Responsive Styles (Mobile First)
*************************************************************/
@media (max-width: 900px) {
  .footer .container, .footer .content-wrapper, footer .container, footer .content-wrapper {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px;
  }
  .footer-nav {
    gap: 14px;
  }
  header .container {
    flex-direction: row;
    padding: 10px 10px;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 96vw;
    padding: 0 2.5vw;
  }
  .section,
  .features,
  .about-teaser,
  .process-short,
  .about,
  .values,
  .why-us,
  .contact-teaser,
  .services,
  .service-details,
  .process-teaser,
  .inspiration,
  .mini-guides,
  .cta,
  .contact,
  .hours,
  .privacy-policy,
  .cookies-policy,
  .gdpr,
  .terms {
    margin-bottom: 40px;
    padding: 24px 5vw;
  }
  .hero {
    padding: 26px 5vw 26px 5vw;
    min-height: 190px;
  }
  .feature-grid,
  .service-highlights,
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 16px;
  }
  .feature-item {
    min-width: unset;
    width: 100%;
    padding: 16px 10px;
  }
  .content-wrapper {
    gap: 14px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.23rem; }
  .btn {
    font-size: 1rem;
    padding: 10px 18px;
  }
  .cookie-consent-banner {
    padding: 16px 2vw 16px 2vw;
    font-size: 0.98rem;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .hero {
    min-height: 120px;
    border-radius: 23px;
  }
  .cookie-modal {
    width: 98vw;
    min-width: unset;
    padding: 18px 6vw;
  }
}

/*************************************************************
   Animations & Microinteractions
*************************************************************/
.btn, .mobile-menu-toggle, .mobile-menu-close, .cookie-btn {
  transition: background var(--transition-main), color var(--transition-main), box-shadow var(--transition-main), transform .24s cubic-bezier(.33,.66,.44,1.14);
}
.btn:active { transform: scale(0.97); }

a, .main-nav a, .footer-nav a {
  transition: color var(--transition-main), background var(--transition-main);
}
.feature-item, .testimonial-card, .about-teaser, .values-list, .usp-list, .commitments {
  transition: box-shadow var(--transition-main), background var(--transition-main), transform .18s cubic-bezier(.43,.67,.36,1.12);
}
.feature-item:hover, .testimonial-card:hover, .highlight-box:hover {
  box-shadow: 0 4px 18px 0 rgba(56,110,80,0.11);
  transform: translateY(-3px) scale(1.025);
  background: #F3F3EB;
}

/*************************************************************
   Accessibility
*************************************************************/
:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}
a:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
}

/*************************************************************
   Z-Index Management
*************************************************************/
header { z-index: 1050; }
.mobile-menu, .mobile-menu-toggle, .mobile-menu-close { z-index: 1101; }
.cookie-consent-banner { z-index: 1500; }
.cookie-modal { z-index: 1550; }

/*************************************************************
   Hide content visually, keep for screen readers
*************************************************************/
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
