/* 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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  background: #F6F7EB;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #B26B37;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #25613E;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
strong, b {
  font-weight: bold;
  color: #25613E;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #25613E;
  margin-bottom: 16px;
  font-weight: 700;
  word-break: break-word;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p {
  margin-bottom: 16px;
}
blockquote {
  background: #e3f7de;
  color: #25613E;
  padding: 16px 28px;
  border-left: 6px solid #25613E;
  margin-bottom: 24px;
  border-radius: 8px;
  font-style: italic;
}

/* GLOBAL THEME VARIABLES */
:root {
  --primary: #25613E;       /* Brand Primary Green */
  --secondary: #FFFFFF;     /* Brand White for contrast */
  --bg-accent: #F6F7EB;    /* Light earthy background */
  --accent: #B26B37;       /* Vibrant Orange-Brown Accent */
  --accent2: #e34d04;      /* Extra energetic accent */
  --surf: #31A354;         /* Electric green highlight */
  --danger: #e1372d;       /* Error/red accent */
  --shadow: 0 4px 16px 0 rgba(50,60,35,0.10);
  --radius: 22px;
  --section-gap: 60px;
  --section-pad-v: 40px;
  --section-pad-h: 20px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* BODY BASE STYLES */
body {
  background: var(--bg-accent);
  color: #212820;
  font-family: var(--font-body);
}

main {
  flex: 1 1 auto;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
}

.section {
  margin-bottom: var(--section-gap);
  padding: var(--section-pad-v) var(--section-pad-h);
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* HEADER LAYOUT & NAVIGATION */
header {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: var(--secondary);
  box-shadow: 0 2px 16px 0 rgba(37,97,62,0.10);
  padding: 16px 0 8px 0;
  position: relative;
  z-index: 40;
}
header img[alt="Vigilant Shadow Gartenwelt"] {
  height: 48px;
  margin: 0 18px 0 2px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-left: 16px;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 6px;
  transition: background .18s, color .18s;
}
header nav a:hover {
  background: var(--accent);
  color: var(--secondary);
}
header .cta-primary {
  margin-left: auto;
  margin-right: 16px;
}

.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--secondary);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  margin-left: 12px;
  box-shadow: var(--shadow);
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--secondary);
}

/* MOBILE MENU */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(37, 97, 62, 0.97);
  box-shadow: var(--shadow);
  z-index: 99;
  transform: translateX(-100vw);
  transition: transform 0.3s cubic-bezier(.51,.15,.24,1.09);
  padding: 0 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--secondary);
  font-size: 2.2rem;
  border: none;
  position: absolute;
  right: 28px;
  top: 22px;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: var(--accent);
}
.mobile-nav {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  align-items: flex-start;
  padding-left: 44px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--secondary);
  text-shadow: 0 2px 6px #2228;
  padding: 10px 0;
  border-radius: 8px;
  min-width: 66vw;
  display: inline-block;
  font-weight: 600;
}
.mobile-nav a:hover {
  background: var(--accent);
  color: var(--primary);
}

@media (max-width: 1100px) {
  .container {
    max-width: 980px;
  }
  header nav {
    gap: 7px;
  }
}

@media (max-width: 900px) {
  header nav {
    display: none;
  }
  header .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 620px) {
  header img[alt="Vigilant Shadow Gartenwelt"] {
    height: 38px;
    margin-right: 9px;
  }
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(90deg, #31A354 8%, #F6F7EB 95%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: var(--section-gap);
  padding: 44px 0 44px 0;
  position: relative;
}
.hero .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.hero .content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.6rem;
  font-family: var(--font-display);
  color: #25613E;
  text-shadow: 0 2px 14px #eee8;
  letter-spacing: -0.5px;
}
.hero p {
  color: #2f142a;
  font-size: 1.15rem;
  margin-bottom: 32px;
}

/* BUTTONS & CTA */
.cta-primary {
  display: inline-block;
  background: linear-gradient(90deg, #B26B37 32%, #e34d04 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-size: 1.24rem;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 15px 0 rgba(213,74,59,0.13);
  transition: background .2s, box-shadow .2s, transform .1s;
  cursor: pointer;
  outline: none;
  margin-top: 16px;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg,#e34d04 32%,#B26B37 100%);
  box-shadow: 0 7px 25px 0 rgba(213,74,59,0.21);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

/* LAYOUT COMPONENTS */
.section {
  margin-bottom: var(--section-gap);
  padding: var(--section-pad-v) var(--section-pad-h);
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform .12s;
  position: relative;
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 30px 0 rgba(50,70,60,0.17);
  transform: translateY(-3px) scale(1.011);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffde0;
  color: #222;
  border-radius: 14px;
  box-shadow: 0 3px 16px 0 rgba(37,97,62,0.08);
  margin-bottom: 20px;
  font-size: 1.02rem;
  position: relative;
  border-left: 8px solid var(--accent);
  min-width: 0;
}
.testimonial-card p {
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 0.96rem;
  color: #558243;
  font-weight: 600;
  margin-left: 14px;
}
.mini-rating {
  font-size: 1.2rem;
  color: #eeb900;
  font-family: var(--font-display);
  margin: 18px 0 0 0;
  letter-spacing: 0.06em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/**** SPECIAL COMPONENT STYLES ****/
/* FAQ & ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-accordion h3 {
  font-size: 1.15rem;
  color: #25613E;
  cursor: pointer;
}
.faq-accordion p {
  color: #3d523e;
  margin-left: 10px;
  margin-top: 2px;
  background: #f6ffe8;
  padding: 9px 15px;
  border-radius: 8px;
  font-size: 1rem;
}

/* Case Study Briefs (Gallery Page) */
.case-study-briefs {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.case-study-briefs > div {
  background: #eafaf4;
  border-radius: 18px;
  box-shadow: 0 3px 14px 0 rgba(69, 183, 91, 0.11);
  padding: 20px 24px;
  flex: 1 1 350px;
  min-width: 260px;
  max-width: 520px;
  margin-bottom: 0;
}
.case-study-briefs h2 {
  font-size: 1.26rem;
  color: var(--primary);
  margin-bottom: 13px;
}

/**** CONTACT SNIPPET ****/
.contact-snippet {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
  padding-left: 5px;
}
.contact-snippet img {
  height: 16px;
  margin-right: 10px;
  margin-bottom: -3px;
  vertical-align: middle;
}
.quick-faq {
  background: #f9eed4;
  padding: 18px 22px 8px 22px;
  border-radius: 13px;
  box-shadow: 0 2px 8px 0 #d8b37f33;
  margin-top: 12px;
  margin-bottom: 14px;
}
.quick-faq h3 {
  color: var(--accent);
  font-family: var(--font-display);
  margin-bottom: 14px;
}

/**** FOOTER ****/
footer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: #25613E;
  color: #fff;
  padding: 32px 0 18px 0;
  margin-top: 70px;
  position: relative;
  z-index: 2;
}
footer img[alt="Vigilant Shadow Gartenwelt"] {
  height: 38px;
  margin: 0 21px 0 2px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
footer nav a {
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-body);
  opacity: 0.85;
  transition: opacity .18s, text-decoration .2s;
}
footer nav a:hover {
  opacity: 1;
  text-decoration: underline;
  color: #ffe8b0;
}
footer p {
  margin-top: 14px;
  font-size: 0.98rem;
  width: 100%;
  color: #ffe8b0;
  text-align: right;
}

/**** COOKIE CONSENT BANNER & MODAL ****/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffde0;
  color: #1d2323;
  font-size: 1rem;
  box-shadow: 0 -2px 28px rgba(37,97,62,0.13);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 14px 21px 28px;
  gap: 16px;
  transition: transform 0.43s cubic-bezier(.41,1.09,.24,1.03);
}
.cookie-banner.hidden {
  transform: translateY(100%);
}
.cookie-banner .cookie-text {
  flex: 1 1 0px;
  font-size: 1.06rem;
  color: #454e26;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  background: var(--primary);
  color: var(--secondary);
  border: none;
  border-radius: 18px;
  padding: 9px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  margin-right: 0;
  transition: background .18s;
}
.cookie-btn.settings {
  background: var(--accent);
}
.cookie-btn.accept {
  background: var(--surf);
}
.cookie-btn.reject {
  background: var(--danger);
}
.cookie-btn:focus,
.cookie-btn:hover {
  opacity: .92;
  box-shadow: 0 1px 10px rgba(37,97,62,0.11);
  background: #41b97b;
  color: #fff;
}
.cookie-btn.settings:hover {
  background: #e34d04;
}
.cookie-btn.reject:hover {
  background: #ad231e;
}
.cookie-banner .cookie-btn {
  min-width: 102px;
}

.cookie-modal {
  position: fixed;
  z-index: 1400;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  color: #161b19;
  box-shadow: 0 8px 32px 0 #2226;
  border-radius: 24px;
  padding: 40px 28px 28px 28px;
  min-width: 300px;
  max-width: 94vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalIn 0.26s cubic-bezier(.61,1.12,.22,.98);
}
@keyframes cookieModalIn {
  0% {transform: translate(-50%,-54%) scale(0.95);opacity:0;}
  100% {transform: translate(-50%,-50%) scale(1);opacity:1;}
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 24px;
  top: 20px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
}
.cookie-modal .cookie-modal-close:focus,.cookie-modal .cookie-modal-close:hover {
    color: var(--accent);
}
.cookie-modal h2{
  color: var(--accent);
  margin-bottom: 5px;
}
.cookies-category {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}
.cookies-category label {
  flex: 1 1 auto;
  font-weight: 600;
  color: #25613E;
  font-size: 1.06rem;
}
.cookies-switch {
  accent-color: var(--solar, var(--primary));
  width: 23px;
  height: 23px;
}
.cookies-category.essential label {
  color: #ad231e;
}
.cookies-category.essential input[type=checkbox] {
  accent-color: #e1372d;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 20px;
}

/* CARD DESIGN (for all .card usages) */
.card, .case-study-briefs > div {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/**** UTILITIES & SPACING ****/
.mt-0 { margin-top: 0!important; }
.mt-12 { margin-top: 12px!important; }
.mb-0 { margin-bottom: 0!important; }
.mb-20 { margin-bottom: 20px!important; }
.gap-20 { gap: 20px!important; }

/**** RESPONSIVE BREAKPOINTS ****/
@media (max-width: 900px) {
  .hero h1 {
    font-size: 1.7rem;
  }
  .hero {
    padding: 28px 0 28px 0;
  }
  .container {
    max-width: 98vw;
    padding-left: 4px;
    padding-right: 4px;
  }
  .section {
    padding: 26px 6px;
    margin-bottom: 38px;
    border-radius: 16px;
  }
  .case-study-briefs > div {
    min-width: 170px;
    max-width: 98vw;
    padding: 19px 10px;
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.28rem;
    margin-bottom: 18px;
  }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.3rem; }
  .card-container, .content-grid, .case-study-briefs {
    flex-direction: column;
    gap: 20px;
  }
  .section, .card {
    padding: 18px 8px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 13px 9px;
    gap: 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
  }
  footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 0 10px 0;
  }
  footer p {
    text-align: left;
    margin-top: 14px;
  }
}
@media (max-width: 540px) {
  header, .footer {
    padding: 5px 0;
  }
  h1 { font-size: 1.32rem; }
  h2 { font-size: 1rem; }
  .cta-primary { font-size: 1.02rem; padding: 10px 16px; }
}

/* Hide scrollbars in mobile menu for a cleaner look */
.mobile-menu {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.mobile-menu::-webkit-scrollbar {
  display: none;
}

/**** SHADOWS, HOVERS & MICRO-INTERACTIONS ****/
.card,
.case-study-briefs > div,
.section,
.hero {
  transition: box-shadow 0.15s, transform 0.13s;
}
.card:hover, .case-study-briefs > div:hover,
.section:hover, .hero:hover {
  box-shadow: 0 8px 38px 0 rgba(37, 97, 62, 0.15);
  transform: translateY(-2px) scale(1.012);
}

/* Animating button on click (microinteraction) */
.cta-primary:active {
  transform: scale(0.98);
  box-shadow: 0 1px 4px 0 #bc66107a;
}

/**** INPUTS & FORMS ****/
input, textarea, select {
  border: 1.8px solid #c7dbc1;
  border-radius: 10px;
  padding: 11px 9px;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border 0.15s;
  width: 100%;
  margin-bottom: 18px;
}
input:focus, textarea:focus, select:focus {
  border: 1.8px solid #31A354;
  background: #f8fff3;
}
label {
  font-family: var(--font-body);
}

/**** LISTS ****/
ul li, ol li {
  margin-bottom: 9px;
  font-size: 1.03rem;
  color: #255e33;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
ul li strong {
  color: var(--accent);
  font-weight: bold;
}
li {
  padding-left: 2px;
}

/**** SPECIALS: TYPOGRAPHY BOLD, ELECTRIC ****/
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0.01em;
}
h2 {
  color: var(--accent2);
}
h3 {
  color: var(--surf);
}

/**** Z-INDEX Layering ****/
header { z-index: 30; }
.mobile-menu { z-index: 99; }
.cookie-banner { z-index: 1200; }
.cookie-modal { z-index: 1400; }
footer { z-index: 20; }

/**** ELECTRIC HIGHLIGHTS & DYNAMIC EFFECTS ****/
.hero h1, .section h1, .section h2, .card h2, .case-study-briefs h2 {
  background: linear-gradient(90deg,#25613E 88%,#e34d04 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
               background-clip: text;
               color: transparent;
}
.cta-primary, .cookie-btn {
  font-variant: all-small-caps;
  letter-spacing: 0.045em;
  font-size: 1.11rem;
}

/**** MISC ****/
::-webkit-input-placeholder { color: #bbcad1; }
::-moz-placeholder          { color: #bbcad1; } /* Firefox 19+ */
:-moz-placeholder           { color: #bbcad1; } /* Firefox 18- */
:-ms-input-placeholder      { color: #bbcad1; } /* IE */

/**** MINIMUM SPACING COMPLIANCE ****/
.section, .card, .testimonial-card, .case-study-briefs > div, .text-image-section, .feature-item, .content-grid, .card-container {
  margin-bottom: 20px;
}

/**** Accessibility: Sufficient Contrast ****/
.testimonial-card, .testimonial-card p, .testimonial-card span {
  color: #222 !important;
  background: #fffde0 !important;
}

@media (max-width: 440px) {
  html { font-size: 15px; }
  .section, .card, .testimonial-card, .case-study-briefs > div {
    padding: 10px 2px;
  }
  h1, h2, h3 {
    font-size: 1.0rem;
  }
  .cta-primary, .cookie-btn {
    font-size: 0.99rem;
    padding: 7px 14px;
  }
}

/* Hide visually */
.visually-hidden { position: absolute !important; clip: rect(1px, 1px, 1px, 1px); padding: 0!important; border: 0!important; height: 1px!important; width: 1px!important; overflow: hidden; }
