/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  background: #FFF;
  color: #2A2E3A;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  background: #FFFAF7;
  color: #2A2E3A;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
}
ul, ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
dd, dl { margin-left: 0; }
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 16px 12px;
  font-size: 1rem;
  text-align: left;
  border-bottom: 1px solid #E7E4E0;
}

/* FONT FACE LOAD FOR PLAYFAIR DISPLAY (display) */
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #22242E;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4, h5, h6 { font-size: 1.125rem; font-weight: 700; }
p, ul, ol, li {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  color: #2A2E3A;
  margin-bottom: 12px;
}
strong, b { font-weight: 700; }
a {
  color: #2A2E3A;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #91C8C2;
}

/* CONTAINER & LAYOUT STRUCTURE */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* HEADER/NAVIGATION */
header {
  width: 100%;
  background: rgba(255, 250, 247, 0.96);
  border-bottom: 1px solid #E7E4E0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(42,46,58,0.05);
}
header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}
header > * {
  margin-right: 16px;
}
header > *:last-child {
  margin-right: 0;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
header img[alt="Schimmerwerk"] {
  height: 48px;
  margin-right: 32px;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
nav a {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  color: #2A2E3A;
  text-decoration: none;
  padding: 8px 6px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  font-weight: 400;
}
nav a:hover, nav a:focus {
  background: #FFEAEB;
  color: #91C8C2;
}
.cta.primary, .cta.secondary, .cta {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  border-radius: 32px;
  padding: 12px 32px;
  margin-left: 24px;
  border: none;
  background: #2A2E3A;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  font-weight: 700;
  box-shadow: 0 2px 14px 0 rgba(42,46,58,0.10);
  cursor: pointer;
}
.cta.primary:hover, .cta.primary:focus {
  background: #91C8C2;
  color: #2A2E3A;
  box-shadow: 0 4px 24px 0 rgba(145,200,194,0.16);
}
.cta.secondary {
  background: #fff;
  color: #2A2E3A;
  border: 1px solid #91C8C2;
  margin-left: 0;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #91C8C2;
  color: #fff;
}
.cta:not(.primary):not(.secondary):hover, .cta:not(.primary):not(.secondary):focus {
  background: #FFEAEB;
  color: #2A2E3A;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #2A2E3A;
  cursor: pointer;
  margin-left: 16px;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #91C8C2;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,234,235,0.975);
  z-index: 1050;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.76,0,0.24,1);
  box-shadow: 2px 0 16px 0 rgba(42,46,58,0.10);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  border: none;
  color: #2A2E3A;
  cursor: pointer;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.mobile-menu-close:focus {
  outline: 2px solid #91C8C2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 16px;
}
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #2A2E3A;
  text-decoration: none;
  background: #fff;
  padding: 14px 0 14px 0;
  border-radius: 0;
  font-weight: 400;
  border-bottom: 1px solid #E7E4E0;
  width: 100%;
  transition: background 0.2s, color 0.22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #91C8C2;
  color: #fff;
}

/* HERO SECTION */
.hero, .hero.highlight {
  width: 100%;
  padding: 56px 0 40px 0;
  background: #FFF;
  display: flex;
  align-items: center;
}
.hero.highlight {
  background: #FFEAEB;
  border-bottom: 1px solid #E7E4E0;
}
.hero .container, .hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 8px;
  color: #2A2E3A;
  letter-spacing: 0.03em;
}
.hero .subheadline {
  font-size: 1.25rem;
  color: #626471;
  margin-bottom: 12px;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* HIGHLIGHTS & FEATURES */
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 12px;
}
.feature, .service-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(42,46,58,0.10);
  padding: 32px 24px 28px 24px;
  min-width: 260px;
  flex: 1 1 240px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid #EEE;
  transition: box-shadow 0.22s, border 0.22s;
  margin-bottom: 20px;
}
.feature img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}
.feature h3, .service-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem;
  color: #2A2E3A;
}
.feature p, .service-item p {
  font-size: 1rem;
  color: #626471;
  font-family: 'Lato', Arial, sans-serif;
  margin-bottom: 0;
}
.feature:hover, .service-item:hover {
  box-shadow: 0 6px 28px 0 rgba(145,200,194,0.08);
  border: 1.5px solid #91C8C2;
}

.service-list {
  gap: 20px;
  margin-bottom: 20px;
}
.service-item ul {
  margin-bottom: 8px;
}
.price {
  font-size: 1.125rem;
  font-weight: 700;
  color: #2A2E3A;
  letter-spacing: 0.04em;
  background: #FFEAEB;
  border-radius: 16px;
  padding: 4px 16px;
  display: inline-block;
  margin-top: 8px;
}

/* TESTIMONIALS */
.testimonials {
  background: #FFEAEB;
  padding: 40px 0;
  margin-bottom: 0;
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 10px 0 rgba(42,46,58,0.08);
  margin-bottom: 20px;
  border-left: 4px solid #91C8C2;
  color: #2A2E3A;
}
.testimonial-card p {
  color: #22242E;
  font-style: italic;
  font-size: 1.10rem;
  margin-bottom: 8px;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #666870;
  font-style: normal;
  font-weight: 500;
}

/* CONTENT SECTIONS */
.text-section, .usp-section, .privacy, .gdpr, .terms, .cookie-policy, .features-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.text-section ul, .usp-section ul, .privacy ul, .gdpr ul, .terms ul, .cookie-policy ul, .features-section ul {
  margin-top: 8px;
  margin-bottom: 16px;
}
.text-section li {
  margin-bottom: 8px;
}

/* PRICING TABLE */
.pricing-table thead th {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: #FFEAEB;
  color: #2A2E3A;
}
.pricing-table tbody td {
  font-size: 1rem;
  background: #fff;
  color: #2A2E3A;
  vertical-align: top;
  border-bottom: 1px solid #EEE;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* INFO BARS, CARDS, Address & SOCIAL ICONS */
.info-bar {
  background: #FFEAEB;
  color: #2A2E3A;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 0.98rem;
  font-family: 'Lato', Arial, sans-serif;
  margin-top: 20px;
}
.address {
  font-size: 0.98rem;
  color: #626471;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 16px;
}
.footer-social a {
  display: inline-block;
  border-radius: 100%;
  background: #FFF;
  box-shadow: 0 2px 8px rgba(145,200,194,0.07);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.22s;
}
.footer-social a:hover, .footer-social a:focus {
  background: #91C8C2;
  box-shadow: 0 2px 16px rgba(145,200,194,0.18);
}
.footer-social img {
  width: 24px;
  height: 24px;
}

/* FOOTER */
footer {
  background: #2A2E3A;
  color: #fff;
  width: 100%;
  padding: 40px 0 24px 0;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}
footer .content-wrapper {
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
  width: 100%;
  flex-wrap: wrap;
}
footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .footer-links a {
  color: #FFEAEB;
  text-decoration: none;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  padding: 0 0 0 0;
}
footer .footer-links a:hover, footer .footer-links a:focus {
  color: #91C8C2;
}
footer .address {
  color: #FFEAEB;
}
footer .address a { color: #91C8C2; text-decoration: underline; }

/* SPECIAL FLEX LAYOUTS (MANDATORY SPACING PATTERNS) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(42,46,58,0.10);
  background: #fff;
  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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Contact-summary/Transport-info/Map-Placeholder */
.contact-summary, .transport-info {
  background: #FFF;
  border: 1px solid #EEE;
  border-radius: 8px;
  font-size: 1rem;
  color: #22242E;
  padding: 16px 20px;
  margin-top: 20px;
  box-shadow: 0 1px 6px rgba(42,46,58,0.06);
}
.map-placeholder {
  width: 100%;
  height: 220px;
  background: #FFEAEB;
  border-radius: 8px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #91C8C2;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  border: 1.5px dashed #91C8C2;
}

/* Animations & Micro-interactions */
.cta, .cta.primary, .cta.secondary, .mobile-menu-toggle, .mobile-menu-close, .feature, .service-item, .footer-social a {
  transition: background 0.24s, color 0.22s, box-shadow 0.22s, border 0.2s;
}

/* Focus Ring for Accessibility */
:focus {
  outline: 2px solid #91C8C2;
  outline-offset: 2px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .container {
    max-width: 97vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .feature, .service-item {
    min-width: 210px;
    flex-basis: 220px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-list {
    gap: 20px;
  }
  footer .content-wrapper {
    gap: 24px;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  header nav {
    display: none;
  }
  .cta.primary, .cta.secondary {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
    text-align: center;
  }
  header {
    padding: 8px 0;
    flex-direction: row;
    justify-content: space-between;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature, .service-item {
    min-width: 100%;
    flex-basis: 100%;
    width: 100%;
    padding: 22px 16px 18px 16px;
  }
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonials .content-wrapper {
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 18px;
    font-size: 1rem;
  }
  .content-wrapper, .section, .card-container {
    gap: 12px;
  }
  .footer-social {
    margin-top: 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 490px) {
  html { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.2rem; }
  .hero, .hero.highlight { padding: 32px 0 24px 0; }
  .feature, .service-item {
    padding: 14px 6px;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,250,247,0.98);
  border-top: 1.5px solid #91C8C2;
  box-shadow: 0 -2px 20px 0 rgba(42,46,58,0.10);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px 20px 16px;
  transition: transform 0.4s cubic-bezier(0.76,0,0.24,1), opacity 0.35s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: #2A2E3A;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 8px;
}
.cookie-banner button {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 32px;
  padding: 10px 28px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  margin-top: 0;
  transition: background 0.2s, color 0.22s, box-shadow 0.22s;
}
.cookie-banner .accept {
  background: #2A2E3A;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #91C8C2;
  color: #FFF;
}
.cookie-banner .reject {
  background: #fff;
  color: #2A2E3A;
  border: 1.5px solid #2A2E3A;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #FFEAEB;
}
.cookie-banner .settings {
  background: #FFF;
  color: #2A2E3A;
  border: 1.5px solid #91C8C2;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #91C8C2;
  color: #FFF;
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  z-index: 2050;
  top: 0;left: 0;right: 0;bottom: 0;
  background: rgba(42,46,58,0.16);
  transition: background 0.25s;
}
.cookie-modal-backdrop.active {
  display: block;
}
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 2060;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0.97);
  background: #fff;
  border-radius: 16px;
  max-width: 95vw;
  width: 430px;
  min-height: 180px;
  box-shadow: 0 12px 32px 0 rgba(42,46,58,0.16);
  padding: 30px 22px 22px 22px;
  transition: all 0.30s;
}
.cookie-modal.active {
  display: block;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-family: 'Playfair Display', serif;
  color: #2A2E3A;
}
.cookie-modal p {
  font-size: 1rem;
  color: #2A2E3A;
  margin-bottom: 10px;
}
.cookie-modal .modal-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0 14px 0;
}
.cookie-modal .modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.cookie-modal .modal-category strong {
  min-width: 110px;
  font-weight: 700;
  color: #2A2E3A;
}
.cookie-modal label.toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.cookie-modal input[type="checkbox"]:not([disabled]) {
  accent-color: #91C8C2;
  width: 20px; height: 20px;
}
.cookie-modal input[type="checkbox"][disabled] {
  accent-color: #2A2E3A;
  opacity: 0.8;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 10px;
}
.cookie-modal button {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 32px;
  border: none;
  padding: 10px 28px;
  font-weight: 700;
  cursor: pointer;
}
.cookie-modal .save {
  background: #2A2E3A;
  color: #fff;
}
.cookie-modal .save:hover, .cookie-modal .save:focus {
  background: #91C8C2;
  color: #FFF;
}
.cookie-modal .cancel {
  background: #fff;
  color: #2A2E3A;
  border: 1.5px solid #2A2E3A;
}
.cookie-modal .cancel:hover, .cookie-modal .cancel:focus {
  background: #FFEAEB;
}

/* Hide NOSCRIPT Cookie Modal/Banner on load - JS must manage */
.cookie-banner,.cookie-modal,.cookie-modal-backdrop{display:none;}

/* UTILITIES */
.hide { display: none !important; }

/* Scrollbar styling (subtle classic) */
::-webkit-scrollbar {
  width: 8px;
  background: #FFEAEB;
}
::-webkit-scrollbar-thumb {
  background: #EEE;
  border-radius: 8px;
}

/* END OF ELEGANT CLASSIC CSS */
