/* =============================================================
   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;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  background: #FAFAFA;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #274049;
  background: #FAFAFA;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: #274049;
  text-decoration: none;
  transition: color 0.18s;
}
a:focus {
  outline: 2px solid #DCC48E;
  outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  color: #274049;
  letter-spacing: 0.01em;
  line-height: 1.13;
}
h1 { font-size: 2.6rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; font-family: 'Playfair Display',serif; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; }
p { margin-bottom: 14px; }

ul, ol {
  list-style: none;
}

b, strong { font-weight: 700; }
hr { border: none; border-top: 1.5px solid #E1E8ED; margin: 24px 0; }

/* ==============================================
   BRAND COLOR PALETTE
================================================ */
:root {
  --color-primary: #274049;
  --color-secondary: #DCC48E;
  --color-accent: #E1E8ED;
  --color-bg: #FAFAFA;
  --color-footer-bg: #E1E8ED;
  --color-card-bg: #fff;
  --color-card-shadow: rgba(39,64,73,0.07);
  --color-button: #274049;
  --color-button-hover: #183035;
  --color-button-text: #fff;
  --color-secondary-btn-bg: #fff;
  --color-secondary-btn-border: #DCC48E;
  --color-secondary-btn-text: #274049;
  --color-link-hover: #DCC48E;
}

/* ============================================
   GEOMETRIC STRUCTURED DESIGN SYSTEM
============================================ */
.container {
  width: 100%;
  max-width: 1300px;
  padding: 0 22px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

/* Base section pattern */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card-bg);
  border-radius: 18px;
  box-shadow: 0 6px 24px var(--color-card-shadow);
  padding: 30px 20px 24px 20px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 310px;
  max-width: 360px;
}

.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: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(39, 64, 73, 0.08);
  margin-bottom: 20px;
  font-size: 1.08rem;
  color: #183035;
  border-left: 7px solid #DCC48E;
  max-width: 700px;
}
.testimonial-card p {
  margin-bottom: 14px;
  font-style: italic;
  color: #274049;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #274049;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 0;
}

/* =====================================
   HEADER & NAVIGATION
===================================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(39,64,73,0.04);
  position: sticky;
  top: 0;
  z-index: 50;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 16px 22px;
  flex-wrap: wrap;
  position: relative;
}
header nav > a img {
  height: 45px;
  width: auto;
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin-left: 22px;
}
header nav ul li {
  display: flex;
}
header nav ul li a {
  font-family: 'Source Sans Pro',sans-serif;
  font-size: 17px;
  letter-spacing: 0.02em;
  color: #274049;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 4px;
  padding: 4px 8px;
  transition: background 0.13s, color 0.13s;
}
header nav ul li a:hover, header nav ul li a:focus {
  background: #E1E8ED;
  color: #274049;
}

.cta-primary {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  color: var(--color-button-text);
  background: var(--color-button);
  border: none;
  border-radius: 10px;
  padding: 9px 26px;
  margin-left: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 2px 12px #27404930;
  transition: background 0.18s, box-shadow 0.18s, transform 0.17s;
  text-transform: uppercase;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-button-hover);
  box-shadow: 0 5px 24px #27404922;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

.cta-secondary {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  color: var(--color-secondary-btn-text);
  background: var(--color-secondary-btn-bg);
  border: 2px solid var(--color-secondary-btn-border);
  border-radius: 10px;
  padding: 8px 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 1px 7px #DCC48E18;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s, border 0.15s, box-shadow 0.2s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #DCC48E;
  border-color: #274049;
  color: #274049;
  box-shadow: 0 4px 16px #DCC48E30;
}

.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 21px;
  right: 18px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #274049;
  z-index: 120;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.14s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #E1E8ED;
}

/* ----------------------------------------------
   MOBILE MENU OVERLAY
---------------------------------------------- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.7,.1,.13,1.1);
  box-shadow: -6px 0 28px rgba(39,64,73,0.16);
  padding: 0;
}
.mobile-menu.open {
  display: block;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2.05rem;
  color: #274049;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.13s;
  z-index: 201;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #E1E8ED;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding: 80px 48px 40px 38px;
}
.mobile-nav a {
  font-family: 'Source Sans Pro',sans-serif;
  font-size: 1.25rem;
  color: #274049;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 6px;
  border-radius: 6px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #DCC48E;
  color: #183035;
}

@media (max-width: 1024px) {
  header nav ul {
    gap: 14px;
    margin-left: 10px;
  }
  .cta-primary {
    margin-left: 10px;
    padding: 8px 16px;
    font-size: 1.00rem;
  }
}
@media (max-width: 900px) {
  header nav {
    flex-wrap: wrap;
  }
  .container {
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  header nav ul,
  .cta-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =====================================
   HERO & BANNER
===================================== */
.hero, .confirmation {
  background: linear-gradient(120deg, #E1E8ED 56%, #fff 100%);
  padding: 90px 0 54px;
}
.hero .content-wrapper, .confirmation .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 32px;
  max-width: 685px;
  margin: 0 auto;
}
.hero h1 {
  color: #274049;
  font-family: 'Playfair Display', serif;
  font-size: 2.45rem;
  letter-spacing: 0.01em;
}
.hero p {
  color: #274049;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

/* ======================
   FEATURES
====================== */
.features {
  background: #fff;
  padding: 60px 0 32px;
}
.features .container {
  width: 100%;
}
.features .content-wrapper {
  gap: 32px;
}
.features h2 {
  margin-bottom: 4px;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  width: 100%;
}
.features ul li {
  background: #FAFAFA;
  border-radius: 18px;
  flex: 1 0 242px;
  min-width: 180px;
  max-width: 262px;
  box-shadow: 0 2px 12px #DCC48E24;
  padding: 34px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.features ul li img {
  width: 46px;
  height: 46px;
  margin-bottom: 3px;
}
.features ul li h3 {
  font-size: 1.18rem;
  color: #274049;
  margin-bottom: 2px;
}
.features ul li p {
  font-size: 0.97rem;
  color: #183035;
}

/* ======================
   ABOUT PREVIEW, VALUES
====================== */
.about-preview, .values {
  background: #E1E8ED;
  border-radius: 14px;
  box-shadow: 0 1px 8px #DCC48E10;
  margin-bottom: 60px;
  padding: 40px 0 32px;
}
.about-preview .content-wrapper, .values .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.values ul {
  padding-left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
}
.values ul li {
  font-size: 1.04rem;
  background: #fff;
  border-left: 5px solid #DCC48E;
  border-radius: 9px;
  color: #274049;
  padding: 11px 19px;
  margin-bottom: 3px;
  min-width: 188px;
  flex: 1;
  box-shadow: 0 2px 8px #DCC48E13;
}

/* ====================
   CTA SECTION
==================== */
.cta-section {
  margin-bottom: 60px;
  background: #E1E8ED;
  border-radius: 18px;
  box-shadow: 0 1px 10px #DCC48E18;
  padding: 38px 0 32px;
}
.cta-section .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 16px;
}

/* ====================
   TESTIMONIALS
==================== */
.testimonials {
  margin-bottom: 60px;
  padding: 38px 0 24px 0;
  background: #fff;
}
.testimonials .container {
  max-width: 850px;
}
.testimonials .content-wrapper {
  gap: 14px;
}
.testimonials h2 {
  margin-bottom: 12px;
  color: #274049;
}

/* ===================
   PAGE SECTIONS (Base)
=================== */
.about, .services-overview, .portfolio-overview, .benefits, .guide-intro, .steps,
.faq, .contact, .datenschutz, .gdpr, .cookie-policy, .terms-of-service, .confirmation {
  margin-bottom: 60px;
  padding: 40px 0 14px 0;
}
.about .content-wrapper,.services-overview .content-wrapper,.portfolio-overview .content-wrapper,.benefits .content-wrapper,
.guide-intro .content-wrapper,.steps .content-wrapper,.faq .content-wrapper,.contact .content-wrapper,.datenschutz .content-wrapper,
.gdpr .content-wrapper,.cookie-policy .content-wrapper,.terms-of-service .content-wrapper {
  gap: 18px;
}

/* ===================
   FAQ & TOS
=================== */
.faq dl {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-radius: 12px;
  background: #f7f7f7;
  padding: 32px 22px 24px;
  box-shadow: 0 2px 10px #DCC48E10;
}
.faq dt {
  font-weight: bold;
  font-family: 'Playfair Display',serif;
  font-size: 1.08rem;
  color: #274049;
  margin-bottom: 3px;
}
.faq dd {
  margin: 0 0 12px 0;
  font-size: 0.99rem;
  margin-bottom: 12px;
  color: #183035;
}

.terms-of-service h2 {
  font-size: 1.13rem;
  margin-top: 20px;
}
.terms-of-service p, .datenschutz p, .gdpr p {
  margin-bottom: 10px;
}

/* ===================
   SERVICES
=================== */
.services-overview ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.services-overview ul li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px #DCC48E16;
  padding: 24px 18px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.services-overview ul li h3 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 1.13rem;
  margin-bottom: 6px;
}
.service-price {
  display: inline-block;
  margin-left: 16px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.94rem;
  color: #DCC48E;
  font-weight: 600;
}

/* ===================
   PORTFOLIO
=================== */
.portfolio-overview ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}
.portfolio-overview ul li {
  background: #fff;
  border-left: 6px solid #DCC48E;
  border-radius: 9px;
  box-shadow: 0 2px 12px #DCC48E10;
  padding: 16px 19px 10px 18px;
  min-width: 200px;
}
.portfolio-overview ul li strong {
  color: #274049;
}

/* ===================
   CONTACT PAGE
=================== */
.contact .content-wrapper {
  flex-wrap: wrap;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  justify-content: flex-start;
}
.contact .text-section {
  flex: 1 1 300px;
  min-width: 220px;
}
.contact .map-placeholder {
  flex: 1 1 260px;
  min-width: 180px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 8px #E1E8ED33;
  padding: 18px 18px 8px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.contact .map-placeholder img {
  width: 62px; height: 62px; margin-bottom: 6px;
}
.contact ul {
  margin-bottom: 9px;
}
.contact ul li {
  font-size: 1rem;
  margin-bottom: 7px;
}

/* ====================
   FOOTER
==================== */
footer {
  width: 100%;
  background: var(--color-footer-bg);
  margin-top: 60px;
  padding-top: 38px;
}
footer .container {
  padding-top: 4px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}
.footer-brand {
  flex: 1 1 240px;
  min-width: 145px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-brand img { height: 48px; margin-bottom: 10px; }
.footer-brand p { font-size: 0.98rem; color: #274049; }
.footer-links {
  flex: 3 1 360px;
  min-width: 180px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  align-items: flex-start;
}
.footer-links a {
  color: #274049;
  font-family: 'Source Sans Pro',sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 2px 6px;
  transition: color 0.13s;
  border-radius: 4px;
  text-transform: uppercase;
}
.footer-links a:hover {
  color: #DCC48E;
  background: #fff;
  text-decoration: underline;
}
.footer-contact {
  flex: 2 1 230px;
  min-width: 140px;
  font-size: 0.95rem;
  color: #274049;
}
.footer-contact a {
  color: #274049;
  text-decoration: underline;
}
.newsletter {
  flex: 1 1 220px;
  min-width: 135px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.newsletter h3 {
  font-size: 1.02rem;
  margin-bottom: 3px;
}
.newsletter p {
  font-size: 0.96rem;
  color: #183035;
}
.footer-bottom {
  width: 100%;
  text-align: center;
  font-size: 0.95rem;
  color: #274049;
  padding-bottom: 12px;
}

/* =========================
   ANIMATIONS
======================== */
.cta-primary, .cta-secondary, .mobile-menu, .mobile-menu-toggle, .mobile-nav a {
  transition: all 0.22s cubic-bezier(.5,.12,.22,.99);
}
.card, .features ul li, .testimonial-card, .services-overview ul li, .portfolio-overview ul li {
  transition: transform 0.18s ease, box-shadow 0.18s;
}
.card:hover, .features ul li:hover, .services-overview ul li:hover, .portfolio-overview ul li:hover {
  transform: translateY(-6px) scale(1.017);
  box-shadow: 0 10px 32px #27404923;
}

/* Focus/active micro-interaction highlight for all buttons/links */
button:focus, .cta-primary:focus, .cta-secondary:focus, .footer-links a:focus, .mobile-nav a:focus {
  outline: 2px solid #DCC48E;
  outline-offset: 2px;
}

/* ===============
   RESPONSIVENESS
================ */
@media (max-width: 992px) {
  .content-wrapper {
    gap: 22px;
  }
  .features ul {
    gap: 12px;
  }
  .footer-links {
    gap: 10px 12px;
  }
}
@media (max-width: 800px) {
  .footer-brand, .footer-contact, .footer-links, .newsletter {
    min-width: 100px;
    flex-basis: 120px;
  }
  .footer-links {
    gap: 9px 10px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.05rem;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 1.36rem;
    margin-bottom: 12px;
  }
  .hero, .confirmation {
    padding: 48px 0 30px;
  }
  .features {
    padding: 30px 0 18px;
  }
  .features ul {
    flex-direction: column;
    gap: 18px;
  }
  .features ul li {
    max-width: 100%;
    width: 100%;
  }
  .about-preview, .values {
    padding: 20px 0 18px;
    border-radius: 8px;
  }
  .cta-section {
    padding: 21px 0 18px;
    border-radius: 10px;
  }
  .testimonials .container {
    padding: 0;
  }
  .testimonial-card {
    padding: 14px 8px;
    border-radius: 8px;
    font-size: 0.97rem;
  }
  .contact .content-wrapper {
    flex-direction: column;
    gap: 22px;
  }
  .contact .map-placeholder {
    padding: 12px 12px 4px 12px;
    border-radius: 8px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
@media (max-width: 590px) {
  .features ul li, .values ul li, .services-overview ul li, .portfolio-overview ul li {
    border-radius: 6px;
    padding: 13px 9px 10px 12px;
  }
  .cta-primary, .cta-secondary {
    padding: 7px 12px;
    font-size: 0.99rem;
    border-radius: 7px;
  }
}

/* ===============================
   COOKIE BANNER & MODAL
=============================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #274049;
  color: #fff;
  padding: 24px 18px;
  z-index: 250;
  box-shadow: 0 -2px 18px #27404915;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  font-size: 1rem;
  border-radius: 14px 14px 0 0;
  animation: banner-slide-in 0.46s cubic-bezier(.8,0,.24,1.14);
}
@keyframes banner-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  cursor: pointer;
  border: none;
  font-weight: 600;
  font-size: 1.02rem;
  border-radius: 8px;
  padding: 8px 16px;
  transition: background 0.17s, color 0.17s;
}
.cookie-banner .accept {
  background: #DCC48E;
  color: #274049;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #E1E8ED;
  color: #274049;
}
.cookie-banner .reject {
  background: #fff;
  color: #274049;
  border: 2px solid #DCC48E;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #E1E8ED;
  color: #274049;
}
.cookie-banner .settings {
  background: transparent;
  color: #DCC48E;
  border: 1.7px solid #DCC48E;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #DCC48E20;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    text-align: left;
    border-radius: 12px 12px 0 0;
    font-size: 0.98rem;
    padding: 18px 9px;
  }
  .cookie-banner__actions {
    gap: 8px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 300;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(39,64,73,0.50);
  justify-content: center;
  align-items: center;
  pointer-events: all;
  animation: fade-in-bg 0.35s;
}
@keyframes fade-in-bg {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal__window {
  background: #fff;
  border-radius: 18px;
  max-width: 410px;
  width: 95vw;
  padding: 44px 24px 30px 24px;
  box-shadow: 0 8px 44px #27404930;
  z-index: 301;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modal-slide-in 0.3s cubic-bezier(.5, .13, .22, 1);
  position: relative;
}
@keyframes modal-slide-in {
  from { transform: translateY(54px); opacity: 0.4; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal__window h2 {
  color: #274049;
  font-size: 1.20rem;
  margin-bottom: 8px;
}
.cookie-modal__window label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #274049;
  font-size: 1rem;
  font-family: 'Source Sans Pro',sans-serif;
  font-weight: 600;
}
.cookie-modal__window .toggle {
  appearance: none;
  width: 38px; height: 22px;
  border-radius: 22px;
  background: #E1E8ED;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal__window .toggle:checked {
  background: #DCC48E;
}
.cookie-modal__window .toggle:before {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 7px #18303512;
  transition: left 0.16s;
}
.cookie-modal__window .toggle:checked:before {
  left: 18px;
}
.cookie-modal__window .categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #E1E8ED;
  border-radius: 8px;
  padding: 15px 10px;
}
.cookie-modal__window .essential {
  color: #183035;
  font-size: 0.97rem;
  margin-bottom: 6px;
}
.cookie-modal__window .close-btn {
  border: none;
  background: none;
  font-size: 1.6em;
  position: absolute;
  top: 14px; right: 18px;
  color: #274049;
  cursor: pointer;
  border-radius: 7px;
  padding: 3px 7px;
  transition: background .13s;
}
.cookie-modal__window .close-btn:hover,
.cookie-modal__window .close-btn:focus {
  background: #E1E8ED;
}
.cookie-modal__window .confirm {
  margin-top: 10px;
  background: #DCC48E;
  border: none;
  color: #274049;
  font-size: 1.07em;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 18px;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal__window .confirm:hover {
  background: #E1E8ED;
  color: #183035;
}

@media (max-width: 470px) {
  .cookie-modal__window { padding: 21px 6px 15px 8px; }
  .cookie-modal__window h2 { font-size: 1.06rem; }
}

/* ==========================================
   GEOMETRIC STYLE EXTRAS: ANGULAR, OUTLINES
========================================== */
.hero, .cta-section, .about-preview, .values, .confirmation {
  border-bottom: 11px solid #DCC48E;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
}
.section, .features, .testimonials, .newsletter, .portfolio-overview, .services-overview, .faq, .steps, .datenschutz, .gdpr, .cookie-policy, .terms-of-service {
  border-radius: 16px;
  box-shadow: 0 2px 12px #E1E8ED12;
  margin-bottom: 48px;
}
.features ul li, .values ul li, .portfolio-overview ul li, .services-overview ul li {
  border: 1.7px solid #E1E8ED;
  border-bottom: 5px solid #DCC48E;
}

h1, h2, h3 {
  font-family: 'Playfair Display',serif;
  text-transform: none;
  letter-spacing: 0.01em;
}
h1, h2 {
  text-align: left;
}
h1 {
  border-left: 7px solid #DCC48E;
  padding-left: 16px;
}

/* ====================
   UTILITIES
==================== */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center !important; }
.flex-row { display: flex; flex-direction: row; }
.flex-column { display: flex; flex-direction: column; }
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }

/***************************************
  END OF STYLE.CSS
**************************************/
