/* ==== CSS RESET & NORMALIZE ==== */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #FFFFFF;
  color: #3B473F;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #3B473F;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #A16F28;
  outline-offset: 2px;
}
ul, ol {
  margin-left: 1.4em;
  margin-bottom: 24px;
}
li { margin-bottom: 8px; }

/* ===== BRAND TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #2A332C;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
h1 { font-size: 2.75rem; line-height: 1.15; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 20px; }
h3 { font-size: 1.35rem; line-height: 1.3; margin-bottom: 14px; }
h4 { font-size: 1.15rem; margin-bottom: 12px; }
p, .text-section p {
  font-size: 1rem;
  margin-bottom: 14px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.subheadline { font-size: 1.3rem; margin-bottom: 20px; color: #3B473F; font-weight: 600; }

.bold { font-weight: 700; }
.italic { font-style: italic; }

/* === GENERIC LAYOUT CONTAINERS === */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
}

/* === HEADER === */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding-top: 22px;
  padding-bottom: 22px;
}
header img {
  height: 48px;
  max-height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E3DBCB;
  color: #A16F28;
}
.cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #A16F28;
  color: #FFF;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.1rem;
  padding: 12px 30px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(51,51,51,0.08);
  transition: background 0.15s, box-shadow 0.16s, color 0.18s;
  cursor: pointer;
  margin-left: 16px;
  display: inline-block;
  outline-offset: 3px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #3B473F;
  color: #E3DBCB;
  box-shadow: 0 4px 20px 0 rgba(161,111,40,0.11);
}

button, .cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  cursor: pointer;
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #A16F28;
  cursor: pointer;
  padding: 10px;
  line-height: 1;
  transition: color 0.2s;
  z-index: 203;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #3B473F;
}

.mobile-menu {
  position: fixed;
  z-index: 300;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: #FFFFFFee;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(0.6,0,0.2,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 20px;
  padding-right: 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #3B473F;
  cursor: pointer;
  margin-bottom: 28px;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #A16F28;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  margin-top: 26px;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 6px;
  color: #2A332C;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A16F28;
  color: #FFF;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 14px;
  }
  .cta-btn {
    margin-left: 7px;
    padding: 11px 20px;
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  .header-flex {
    gap: 8px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 768px) {
  .main-nav,
  .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header img {
    height: 40px;
    max-height: 40px;
  }
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/* === HERO SECTIONS === */
.hero {
  background: #E3DBCB;
  border-bottom: 4px solid #A16F28;
  padding-top: 48px;
  padding-bottom: 44px;
  margin-bottom: 0;
}
.hero h1 {
  font-size: 2.4rem;
  color: #2A332C;
}
.hero p {
  font-size: 1.18rem;
  color: #3B473F;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 34px;
    padding-bottom: 30px;
  }
  .hero h1 {
    font-size: 1.55rem;
  }
}

/* === FEATURE GRID (index) === */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 13px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 3px 18px 0 rgba(59,71,63,0.09);
  border: 2px solid #E3DBCB;
  padding: 32px 22px 28px 22px;
  min-width: 220px;
  max-width: 300px;
  flex: 1 1 260px;
  transition: box-shadow 0.2s, border-color 0.18s, transform 0.20s;
}
.feature-item img {
  height: 48px;
  width: 48px;
  margin-bottom: 8px;
}
.feature-item h3 {
  font-size: 1.12rem;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.feature-item:hover, .feature-item:focus-within {
  border-color: #A16F28;
  box-shadow: 0 7px 32px 0 rgba(161,111,40,0.16);
  transform: translateY(-4px) scale(1.025);
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
  }
  .feature-item {
    min-width: 180px;
    height: auto;
    padding: 24px 12px;
  }
}
@media (max-width: 620px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item {
    min-width: 100px;
    max-width: unset;
    width: 100%;
  }
}

/* === CONTENT / TEXT & LIST SECTIONS === */
.text-section {
  margin-bottom: 18px;
}
ol, ul {
  font-size: 1rem;
  margin-left: 1.5em;
  margin-bottom: 22px;
}
ol li, ul li {
  margin-bottom: 10px;
}

/* === CTA SECTIONS === */
.cta-section {
  background: #A16F28;
  color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 4px 20px 0 rgba(161,111,40,0.12);
  margin-bottom: 64px;
  padding: 44px 20px;
  text-align: center;
}
.cta-section h2 {
  color: #FFF;
  font-size: 2rem;
  margin-bottom: 14px;
}
.cta-section p { color: #FFF; margin-bottom: 18px; }
.cta-section .cta-btn {
  background: #FFF;
  color: #A16F28;
  box-shadow: none;
  border-radius: 10px;
}
.cta-section .cta-btn:hover,
.cta-section .cta-btn:focus {
  background: #3B473F;
  color: #E3DBCB;
}
@media (max-width: 560px) {
  .cta-section { padding: 22px 6px; margin-bottom: 38px; }
  .cta-section h2 { font-size: 1.25rem; }
}

/* === TESTIMONIALS === */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-bottom: 8px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 26px 28px 20px 28px;
  background: #E3DBCB;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(59,71,63,0.04);
  min-width: 240px;
  max-width: 360px;
  flex: 1 1 260px;
  border: 2px solid #B48B5E22;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.20s;
}
.testimonial-card p {
  color: #2A332C;
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-card strong {
  color: #A16F28;
  font-weight: 700;
}
.testimonial-card img {
  width: 22px; height: 22px; vertical-align: middle;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 5px 18px 0 rgba(161,111,40,0.12);
  border-color: #A16F28;
  transform: translateY(-3px) scale(1.017);
}
@media (max-width: 800px) {
  .testimonial-slider, .testimonial-list {
    gap: 16px;
  }
  .testimonial-card {
    padding: 16px 10px 14px 10px;
    min-width: 150px; max-width: unset; width: 100%;
  }
}
@media (max-width: 680px) {
  .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    width: 100%; min-width: unset; max-width: unset;
  }
}

/* === SERVICE LIST (Leistungen) === */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 2px;
}
.service-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 2px solid #E3DBCB;
  padding: 24px 22px;
  box-shadow: 0 3px 16px 0 rgba(59,71,63,0.04);
  margin-bottom: 20px;
  transition: border-color 0.18s, box-shadow 0.19s, transform 0.2s;
}
.service-item img {
  height: 48px; width: 48px; margin-right: 10px;
}
.service-item h3 {
  display: flex; align-items: center; gap: 13px;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  font-weight: 700;
}
.service-item span {
  color: #A16F28;
  font-size: 1rem;
  font-weight: 700;
  margin-left: 4px;
}
.service-item:hover, .service-item:focus-within {
  border-color: #A16F28;
  box-shadow: 0 7px 24px 0 rgba(161,111,40,0.13);
  transform: translateY(-2px) scale(1.01);
}
@media (max-width: 600px) {
  .service-item {
    flex-direction: column; gap: 14px; padding: 16px 8px;
  }
  .service-list { gap: 15px; }
}

/* === PROCESS TIMELINE (Ablauf) === */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  counter-reset: step;
  position: relative;
}
.process-timeline li {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  padding: 18px 12px 16px 12px;
  background: #FFF;
  border-left: 5px solid #A16F28;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(59,71,63,0.03);
  position: relative;
  font-size: 1rem;
  margin-bottom: 0;
  min-width: 200px;
}
.process-timeline li img {
  height: 36px;
  min-width: 36px;
  margin-right: 6px;
}
@media (max-width: 480px) {
  .process-timeline li { flex-direction: column; gap: 10px; padding: 10px 4px; }
}

/* === FAQ Accordion (Ablauf) === */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 10px;
}
.faq-item {
  background: #E3DBCB;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 1px 6px 0 rgba(59,71,63,0.05);
}
.faq-item h3 {
  font-size: 1.1rem;
  color: #A16F28;
  margin-bottom: 6px;
}

/* === BLOG POST GRID === */
.post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 4px;
  margin-bottom: 18px;
  justify-content: flex-start;
}
.post-item {
  flex: 1 1 256px;
  min-width: 260px;
  max-width: 400px;
  background: #F9F7F3;
  border-radius: 14px;
  border: 2px solid #E3DBCB;
  box-shadow: 0 3px 14px 0 rgba(59,71,63,0.05);
  padding: 18px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.19s;
  position: relative;
}
.post-item h3 {
  font-size: 1.17rem;
  color: #2A332C;
}
.read-more {
  color: #A16F28;
  font-weight: 700;
  border-bottom: 1px solid #A16F28;
  font-size: 1rem;
  align-self: flex-start;
  margin-top: 5px;
  transition: color 0.16s, border-color 0.16s;
}
.read-more:hover, .read-more:focus {
  color: #3B473F;
  border-color: #3B473F;
}
.post-item:hover, .post-item:focus-within {
  border-color: #A16F28;
  box-shadow: 0 7px 25px 0 rgba(161,111,40,0.10);
  transform: translateY(-2px) scale(1.01);
}
@media (max-width: 750px) {
  .post-list {
    gap: 14px;
    flex-direction: column;
  }
  .post-item {
    min-width: 0; max-width: unset; width: 100%;
  }
}

.categories {
  margin-top: 12px;
  font-size: 1rem;
}
.categories span {
  background: #E3DBCB;
  color: #3B473F;
  border-radius: 20px;
  padding: 4px 13px;
  font-size: 0.95rem;
  margin-left: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.categories strong { color: #A16F28; font-weight: 600; }

/* === NEWSLETTER === */
.newsletter-section {
  background: #F9F7F3;
  border-radius: 14px;
  margin-bottom: 60px;
  padding: 44px 22px 32px 22px;
}
.newsletter-section h2 {
  font-size: 1.5rem;
  color: #2A332C;
  margin-bottom: 11px;
}
.newsletter-signup {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.signup-field {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.signup-field input[type="email"] {
  padding: 12px 16px;
  border-radius: 8px 0 0 8px;
  border: 2px solid #A16F28;
  font-size: 1rem;
  outline: none;
  width: 260px;
}
.signup-field button {
  padding: 12px 22px;
  border-radius: 0 8px 8px 0;
  color: #FFF;
  background: #A16F28;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.17s, color 0.17s;
  cursor: pointer;
}
.signup-field button:hover, .signup-field button:focus {
  background: #3B473F;
  color: #E3DBCB;
}
.policy-hint a {
  color: #A16F28;
  border-bottom: 1px solid #A16F28;
  font-weight: 500;
}
.policy-hint a:hover, .policy-hint a:focus {
  color: #3B473F;
  border-color: #3B473F;
}
@media (max-width: 540px) {
  .newsletter-section { padding: 16px 2px 12px 2px; }
  .signup-field { flex-direction: column; gap:8px; }
  .signup-field input[type="email"] { width: 100%; border-radius: 8px; }
  .signup-field button { width: 100%; border-radius: 8px; }
}

/* === CONTACT DETAIL BLOCK === */
.contact-details-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.contact-detail {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: #E3DBCB;
  padding: 15px 18px;
  border-radius: 10px;
  font-size: 1rem;
  min-width: 220px;
}
.contact-detail img {
  height: 26px; width: 26px;
}
.map-section {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #F9F7F3;
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 1rem;
}

/* === FOOTER === */
.footer-flex {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 44px;
  justify-content: space-between;
  background: #3B473F;
  color: #FFF;
  padding: 38px 20px 14px 20px;
  margin-top: 50px;
}
.footer-flex a img {
  height: 44px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #EFEFEF;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #A16F28;
  border-color: #A16F28;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
}
.footer-contact div {
  display: flex; align-items: center; gap: 6px;
}
.footer-contact img {
  height: 20px; width: 20px;
}
@media (max-width: 900px) {
  .footer-flex { gap: 26px; }
}
@media (max-width: 660px) {
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 8px 10px 8px;
  }
  .footer-contact { font-size: 0.96rem; gap:6px; }
  .footer-nav { flex-direction: row; flex-wrap: wrap; gap:12px; }
}

/* ==== CARD CONTAINER PATTERNS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(59,71,63,0.05);
  background: #FFF;
  border: 2px solid #E3DBCB;
}
.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;
    align-items: flex-start;
    gap: 18px;
  }
  .content-grid { gap: 12px; }
  .card-container { gap: 10px; }
}

/* CASE STUDIES (Referenzen) */
.case-study-summaries {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.case-study {
  background: #FFF;
  border-radius: 14px;
  border: 2px solid #E3DBCB;
  padding: 22px 18px;
  min-width: 200px;
  flex: 1 1 260px;
  box-shadow: 0 1.5px 10px 0 rgba(59,71,63,0.03);
  margin-bottom: 20px;
  transition: border-color 0.17s, box-shadow 0.16s, transform 0.13s;
}
.case-study h3 { color: #A16F28; font-size: 1.12rem; margin-bottom: 8px; }
.case-study p { font-size: 1rem; }
.case-study:hover, .case-study:focus-within {
  border-color: #A16F28; box-shadow: 0 6px 22px 0 rgba(161,111,40,0.11); transform: translateY(-2px) scale(1.012);  }
@media (max-width: 700px) {
  .case-study-summaries { flex-direction: column; gap: 12px; }
}

/* ==== THANK YOU PAGE ==== */
.thank-you-section {
  background: #E3DBCB;
  border-radius: 14px;
  box-shadow: 0 4px 20px 0 rgba(161,111,40,0.08);
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 44px 20px;
  text-align: center;
}
.thank-you-section h1 {
  color: #A16F28;
  font-size: 2.1rem;
}
.thank-you-section ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media (max-width: 500px) {
  .thank-you-section { padding: 18px 6px; margin-top: 18px; margin-bottom: 22px; }
  .thank-you-section h1 { font-size: 1.3rem; }
}


/* ==== COOKIE CONSENT BANNER & MODAL ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #E3DBCB;
  color: #2A332C;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 10px 18px 10px;
  box-shadow: 0 -2px 12px 0 rgba(59,71,63,0.08);
  transition: transform 0.33s cubic-bezier(0.6,0,0.25,1), opacity 0.3s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner p {
  margin-bottom: 12px;
  text-align: center;
}
.cookie-banner-actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #A16F28;
  color: #FFF;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 7px;
  padding: 10px 22px;
  transition: background 0.18s, color 0.16s, box-shadow 0.14s;
  margin: 0 2px;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #3B473F;
  color: #E3DBCB;
}
.cookie-btn.secondary {
  background: #FFFFFF;
  color: #3B473F;
  border: 2px solid #A16F28;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #E3DBCB;
  color: #A16F28;
}

.cookie-modal-backdrop {
  position: fixed; left:0; top:0; right:0; bottom:0; background: #222C33CC;
  z-index: 5100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.25s;
}
.cookie-modal-backdrop.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 4px 18px 0 rgba(59,71,63,0.15);
  padding: 40px 28px 28px 28px;
  max-width: 420px;
  width: 98vw;
  color: #2A332C;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: cookieModalAppear 0.4s cubic-bezier(0.7,0,0.3,1) 1;
}
@keyframes cookieModalAppear {
  from {opacity:0; transform: translateY(60px) scale(0.97);} to {opacity:1; transform: none;}
}
.cookie-modal h3 { font-size: 1.36rem; color: #A16F28; margin-bottom: 8px; }
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F9F7F3;
  border-radius: 7px;
  padding: 10px 12px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.cookie-category input[type="checkbox"][disabled] {
  accent-color: #B48B5E;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #A16F28;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #3B473F;
}
@media (max-width:600px) {
  .cookie-modal {
    padding: 20px 9px 18px 9px;
  }
  .cookie-banner { padding: 14px 2px 10px 2px; }
}

/* ==== ANIMATION HELPERS ==== */
.fade-in {
  opacity: 0; animation: fadeIn 0.5s forwards;
}
@keyframes fadeIn {
  from {opacity: 0;} to {opacity: 1;}
}
.slide-in-right {
  transform: translateX(100%);
  animation: slideInRight 0.4s cubic-bezier(0.6,0,0.25,1) forwards;
}
@keyframes slideInRight {
  from {transform: translateX(100%);} to {transform: translateX(0);}
}
.slide-out-right {
  animation: slideOutRight 0.4s cubic-bezier(0.8,0,0.3,1) forwards;
}
@keyframes slideOutRight {
  from {transform: translateX(0);} to {transform: translateX(100%);}
}

/* ==== VISUAL HIERARCHY, GEOMETRIC STRUCTURED ==== */
.section,
.card, .feature-item, .testimonial-card, .service-item, .case-study,
.newsletter-section, .faq-item, .thank-you-section, .cta-section {
  box-shadow: 0 2px 12px 0 rgba(59,71,63,0.04);
  border-radius: 16px;
}

/* ==== MICRO-INTERACTIONS (hover, focus) ==== */
.section a,
.card a,
.feature-item a,
.cta-section a,
.newsletter-section a,
.post-item a {
  transition: color 0.15s, border-color 0.15s, background 0.16s;
}

@media (max-width: 420px) {
  html { font-size: 15px; }
  h1 { font-size: 1.08rem; }
}
