/* ========== 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;
}
body {
  line-height: 1.5;
  background: #faf8f3;
  color: #392E1C;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.2;
  color: inherit;
}
input:focus, button:focus, select:focus, textarea:focus {
  outline: 2px solid #5B2B7B;
  outline-offset: 2px;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #392E1C;
  line-height: 1.12;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #473f29;
}
strong {
  font-weight: 700;
}
ul, ol {
  padding-left: 22px;
}
li {
  margin-bottom: 8px;
}

/* ========== BRAND COLORS & ORGANIC/NATURE-INSPIRED VARIABLES ========== */
:root {
  --vh-primary: #5B2B7B;            /* Violett/Berry, Brand Primary */
  --vh-secondary: #E6E6EA;          /* Very soft gray-lavender */
  --vh-accent: #FFD966;             /* Sunflower yellow */
  --vh-green: #5a8748;              /* Moss green */
  --vh-bark: #936642;               /* Tree bark mid-brown */
  --vh-sand: #e8e3cb;               /* Sandy, warm background */
  --vh-shadow: rgba(45, 41, 28, 0.09);
  --vh-cream: #f9f8f5;              /* Cream highlight */
  --vh-dark: #312916;               /* Deep brown */
  --vh-error: #db5443;              /* Soft error/red accent */
}

/* ========== LAYOUT CONTAINERS ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--vh-cream);
  border-radius: 32px;
  box-shadow: 0 4px 24px var(--vh-shadow);
}
@media (max-width: 900px) {
  .section {
    padding: 32px 8px;
    margin-bottom: 32px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px var(--vh-shadow);
  padding: 28px 22px;
  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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 24px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fffbe9;
  padding: 20px 24px;
  border-radius: 26px;
  box-shadow: 0 2px 8px var(--vh-shadow);
  margin-bottom: 24px;
  color: #433920 !important;
  border-left: 7px solid var(--vh-green);
  max-width: 600px;
}
.testimonial-card p {
  font-style: italic;
  color: #433920;
}
.testimonial-card strong {
  color: var(--vh-green);
  font-weight: 600;
  font-size: 1.06rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--vh-sand);
  border-radius: 18px;
  box-shadow: 0 2px 8px var(--vh-shadow);
  padding: 22px 16px;
}
.feature-item img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--vh-green);
  padding: 7px;
}

/* Card-like utility for summaries etc. */
.project-summary, .trend-item, .profile-item, .service-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px var(--vh-shadow);
  padding: 26px 20px;
  margin-bottom: 20px;
}
.project-summary h3, .trend-item h3, .profile-item h3, .service-item h3 {
  color: var(--vh-primary);
}

/* ========== HERO SECTION ========== */
.hero-section {
  background: linear-gradient(120deg, #e8e3cb 60%, #d1e2d2 100%);
  border-radius: 0 0 42px 42px;
  padding: 64px 0 40px 0;
  margin-bottom: 56px;
}
.hero-section h1 {
  color: var(--vh-green);
  font-size: 2.3rem;
}
.hero-section .subheadline {
  font-size: 1.15rem;
  color: #55461e;
  margin-bottom: 24px;
}

@media (max-width: 700px) {
  .hero-section {
    padding: 36px 0 24px 0;
    border-radius: 0 0 18px 18px;
    margin-bottom: 24px;
  }
  .hero-section h1 {
    font-size: 1.4rem;
  }
}

/* ========== NAVIGATION ========== */
header {
  background: #fff;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 60;
  box-shadow: 0 1px 8px rgba(110,89,46,.07);
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 0 24px;
  justify-content: space-between;
}
.logo-area {
  display: flex;
  align-items: center;
  min-width: 120px;
}
.logo-area img {
  height: 44px;
  padding: 10px 0 10px 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  padding: 12px 2px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.13rem;
  color: var(--vh-green);
  position: relative;
  border-bottom: 2px solid transparent;
  transition: color .18s, border-bottom .23s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--vh-primary);
  border-bottom: 2px solid var(--vh-accent);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 28px;
  font-size: 1.11rem;
  font-family: 'Montserrat',sans-serif;
  border-radius: 32px 16px 32px 16px;
  background: var(--vh-primary);
  color: #fff;
  font-weight: 700;
  border: none;
  box-shadow: 0 2px 9px var(--vh-shadow);
  transition: background .19s, color .12s, box-shadow .27s;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--vh-green);
  color: var(--vh-accent);
  box-shadow: 0 4px 24px var(--vh-shadow);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--vh-green);
  display: none;
  cursor: pointer;
  margin-left: 18px;
  padding: 6px 8px;
  transition: color 0.22s;
}
.mobile-menu-toggle:focus {
  color: var(--vh-primary);
}
@media (max-width: 980px) {
  .main-nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(62, 49, 36, 0.93);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  align-self: flex-end;
  margin: 26px 24px 0 0;
  padding: 4px 8px;
  transition: color .17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--vh-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin: 64px 0 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  color: #fff;
  padding: 13px 0;
  border-bottom: 2px solid transparent;
  transition: border-bottom .19s,color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--vh-accent);
  border-bottom: 2px solid var(--vh-accent);
}
@media (max-width: 350px) {
  .mobile-nav {
    margin-left: 8px;
    gap: 18px;
  }
}


/* ========== USP, FEATURE, LISTS ========== */
.usp-list, .values-list, .bullet-list, .feature-list, .design-guides, .step-list {
  list-style: none;
  margin-bottom: 12px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bullet-list li:before, .design-guides li:before {
  content: '\2022';
  color: var(--vh-green);
  font-size: 1.5em;
  margin-right: 10px;
  vertical-align: middle;
}
.step-list li {
  counter-increment: steplist;
  padding-left: 0;
  margin-bottom: 15px;
  background: var(--vh-cream);
  border-radius: 10px;
  padding: 16px 18px;
  box-shadow: 0 1px 4px var(--vh-shadow);
}
.values-list li, .usp-list li {
  background: var(--vh-secondary);
  border-radius: 9px;
  padding: 12px 15px;
  color: #473f29;
  font-weight: 500;
}

@media (max-width: 640px) {
  .feature-grid,
  .service-list,
  .trend-articles,
  .consultant-profiles,
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    max-width: 100%;
  }
}

/* ========== SERVICES ========== */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.service-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 8px var(--vh-shadow);
  padding: 22px 18px 16px 18px;
  min-width: 270px;
  flex: 1 1 270px;
}
.service-item span {
  color: var(--vh-green);
  font-weight: bold;
  font-size: 1.06rem;
}

/* ========== TESTIMONIALS & HIGHLIGHTS ========== */
.before-after-description {
  background: var(--vh-cream);
  border-radius: 16px;
  box-shadow: 0 2px 7px var(--vh-shadow);
  padding: 18px 16px;
  margin-bottom: 20px;
}
.before-after-description h3 {
  margin-bottom: 4px;
  color: var(--vh-primary);
  font-size: 1.12rem;
}
@media (max-width: 560px) {
  .project-summary, .trend-item, .profile-item, .service-item, .before-after-description {
    padding: 14px 6px;
  }
}

/* ========== CONTACT & MAP SECTIONS ========== */
.contact-section {
  background: var(--vh-secondary);
  border-radius: 24px;
  margin-bottom: 44px;
}
.contact-details ul,
.contact-info ul {
  list-style: none;
  padding: 0;
}
.contact-details li,
.contact-info li {
  margin-bottom: 10px;
  color: var(--vh-dark);
  font-size: 1.02rem;
}
.contact-details a,
.contact-info a {
  color: var(--vh-primary);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.14s;
}
.contact-details a:hover,
.contact-info a:hover {
  color: var(--vh-green);
}
.map-embed {
  margin-top: 15px;
  background: #f2f4e4;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .98rem;
  color: #4e4a37;
  font-style: italic;
}

/* ========== LEGAL & SUCCESS ========== */
.legal-section, .success-section {
  background: var(--vh-cream);
  border-radius: 22px;
  box-shadow: 0 1px 6px var(--vh-shadow);
  margin-bottom: 38px;
  padding: 40px 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.success-section h1 {
  color: var(--vh-green);
}
.next-steps-info {
  background: var(--vh-sand);
  border-radius: 15px;
  box-shadow: 0 1px 4px var(--vh-shadow);
  padding: 15px 18px;
  margin-bottom: 14px;
}

/* ========== FOOTER ========== */
footer {
  background: var(--vh-green);
  color: #fff;
  padding: 48px 0 0 0;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -2px 15px rgba(76,113,50,.08);
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 38px;
  padding: 0 18px 28px 18px;
}
.brand-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat',sans-serif;
  font-size: 1.24rem;
  font-weight: 700;
  color: #fff;
}
.brand-footer img {
  height: 38px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #fffbe3;
  font-size: 1rem;
  transition: color .17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--vh-accent);
}
.footer-contact {
  font-size: .98rem;
  color: #fffbe3;
}
.footer-contact a {
  color: #FFD966;
  text-decoration: underline;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}
.footer-social img {
  width: 31px;
  height: 31px;
  background: var(--vh-cream);
  border-radius: 50%;
  padding: 6px;
  border: 1.5px solid var(--vh-accent);
  transition: box-shadow .17s;
}
.footer-social a:hover img,
.footer-social a:focus img {
  box-shadow: 0 2px 8px #FFEDB4;
}
.newsletter-signup form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.newsletter-signup label {
  font-weight: 500;
}
.newsletter-signup input[type=email] {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1.5px solid var(--vh-accent);
  background: #fffbe6;
  font-size: 1rem;
  margin-bottom: 4px;
}
.newsletter-signup button {
  padding: 8px 18px;
  border-radius: 16px 8px 16px 8px;
  background: var(--vh-accent);
  color: var(--vh-dark);
  font-family: 'Montserrat',sans-serif;
  font-weight: bold;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: background .16s,color .15s;
}
.newsletter-signup button:hover,
.newsletter-signup button:focus {
  background: var(--vh-primary);
  color: #fff;
}
.copyright {
  text-align: center;
  color: #dfefd0;
  margin-top: 10px;
  font-size: .97rem;
  padding-bottom: 16px;
}
@media(max-width: 960px) {
  .footer-main {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  footer {
    border-radius: 16px 16px 0 0;
    padding-top: 28px;
  }
}

/* ========== BUTTONS & MICRO-INTERACTIONS ========== */
button,
input[type=submit],
.cta-btn {
  cursor: pointer;
  transition: background .18s, color .17s, box-shadow .17s, border .18s;
}
button:active,
input[type=submit]:active,
.cta-btn:active {
  box-shadow: 0 2px 8px var(--vh-primary);
  outline: none;
}

/* ========== ORGANIC SHAPES & DECORATIVE DETAILS ========== */
.section, .hero-section, .footer-main, .newsletter-signup button, .cta-btn, .service-item, .feature-item,
.testimonial-card, .project-summary, .trend-item, .profile-item, .before-after-description, .success-section, .legal-section {
  border-radius: 32px 32px 18px 42px/38px 22px 34px 32px; /* organic style */
}

/* Subtle organic shadow effect for card-like blocks */
.card, .service-item, .feature-item, .testimonial-card, .project-summary, .trend-item, .profile-item {
  box-shadow: 0 3px 18px var(--vh-shadow);
}

/* ========== FORM ELEMENTS ========== */
input, textarea {
  border: 1.5px solid var(--vh-secondary);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 1rem;
}
input:focus, textarea:focus {
  border-color: var(--vh-accent);
  background: #fffbec;
}
label {
  font-family: 'Open Sans', sans-serif;
  font-size: .99rem;
  color: var(--vh-dark);
  margin-bottom: 4px;
}

/* ========== ANIMATIONS & TRANSITIONS ========== */
.section,
.card, .feature-item, .service-item, .testimonial-card, .project-summary, .trend-item, .profile-item {
  transition: box-shadow .28s cubic-bezier(.35,0,.15,1), transform .18s cubic-bezier(.35,0,.15,1);
}
.card:hover,
.service-item:hover,
.feature-item:hover,
.project-summary:hover,
.trend-item:hover,
.profile-item:hover {
  box-shadow: 0 6px 24px var(--vh-shadow);
  transform: translateY(-4px) scale(1.015);
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 10px;
  background: var(--vh-sand);
}
::-webkit-scrollbar-thumb {
  background: var(--vh-secondary);
  border-radius: 8px;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 10000;
  background: var(--vh-cream);
  padding: 24px 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -2px 16px var(--vh-shadow);
  gap: 22px;
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity 0.22s;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-consent-banner button {
  padding: 8px 16px;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border: none;
  font-size: 1rem;
  background: var(--vh-accent);
  color: #473f29;
}
.cookie-consent-banner .settings-btn {
  background: var(--vh-primary);
  color: #fff;
  border-radius: 12px;
  margin-left: 4px;
}
.cookie-consent-banner button:hover,
.cookie-consent-banner button:focus {
  background: var(--vh-green);
  color: var(--vh-accent);
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 17px 4px;
  }
  .cookie-consent-banner .cookie-buttons {
    gap: 10px;
  }
}

/* ========== COOKIE MODAL ========== */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(67, 58, 36, 0.62);
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.27s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fffbe6;
  border-radius: 22px 38px 20px 26px;
  padding: 32px 18px 22px 22px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 4px 48px rgba(128,110,41,.32);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.2rem;
  color: var(--vh-primary);
  margin-bottom: 6px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.cookie-modal .cookie-switch {
  appearance: none;
  width: 36px;
  height: 20px;
  border-radius: 10px;
  background: #e1dfbe;
  position: relative;
  outline: none;
  transition: background .15s;
  cursor: pointer;
}
.cookie-modal .cookie-switch:checked {
  background: var(--vh-green);
}
.cookie-modal .cookie-switch:disabled {
  background: #dfdfdf;
  cursor: not-allowed;
}
.cookie-modal .cookie-switch:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 2px;
  box-shadow: 0 1px 4px #bbb;
  transition: left .15s;
}
.cookie-modal .cookie-switch:checked:before {
  left: 18px;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 20px;
}
.cookie-modal .cookie-actions button {
  padding: 8px 20px;
  border-radius: 11px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border: none;
  font-size: 1rem;
  background: var(--vh-accent);
  color: #473f29;
  transition: background .18s,color .16s;
}
.cookie-modal .cookie-actions button:hover,
.cookie-modal .cookie-actions button:focus {
  background: var(--vh-primary);
  color: #fff;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--vh-bark);
  cursor: pointer;
}
.cookie-modal .cookie-close:hover,
.cookie-modal .cookie-close:focus {
  color: var(--vh-error);
}
@media (max-width: 520px) {
  .cookie-modal {
    min-width: 0;
    width: 90vw;
    padding: 18px 6px 15px 10px;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1120px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
    padding-left: 6px;
    padding-right: 6px;
  }
}
@media (max-width: 520px) {
  .container {
    padding-left: 3px;
    padding-right: 3px;
  }
  .section, .legal-section, .success-section {
    padding: 18px 3px;
    border-radius: 10px 10px 16px 12px;
  }
}

/* ========== UTILS & ACCESSIBILITY ========== */
.visually-hidden,
.sr-only {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

/* ========== END CSS ========== */
