/* ====================================================
   AtraU Condi Werkstatt – Geometric Structured CSS
   Responsive, modern, brand-authentic stylesheet
======================================================*/
/* ======================
   0. 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F2F3F7;
  color: #232841;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
}
/* Brand font load snippets (should be in HTML, present here for completeness) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap');
/* ================================
   1. BASE STRUCTURE & GEOMETRIC GRID
================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* =====================
   2. TYPOGRAPHY SYSTEM
====================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1E355C;
  letter-spacing: .01em;
  font-weight: 700;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.1;
}
h2 {
  font-size: 2.125rem;
  line-height: 1.1;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
}
.subheadline {
  color: #DF9C20;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
p, li, span, strong, em {
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}
small {
  color: #5974ac;
}
/* Geometric font touch for headlines */
h1, h2, h3 {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
/* Spacing for vertical rhythm */
h1, h2, h3, h4, h5, h6, p, ul, ol, .subheadline {
  margin-bottom: 12px;
}
/* =============================
   3. HEADER & NAVIGATION
============================== */
header {
  background: #fff;
  border-bottom: 3px solid #DF9C20;
  transition: box-shadow 0.3s;
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
}
header a img {
  height: 46px;
  width: auto;
}
nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
  color: #1E355C;
}
nav a:hover, nav a:focus {
  background: #F2F3F7;
  color: #DF9C20;
}
.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 12px;
  padding: 13px 36px;
  background: #1E355C;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(30,53,92,0.07);
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #DF9C20;
  color: #1E355C;
  box-shadow: 0 4px 12px rgba(30,53,92,0.13);
}
.btn-secondary {
  background: #DF9C20;
  color: #1E355C;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #1E355C;
  color: #DF9C20;
}
/* =============================
   4. MOBILE MENU
============================== */
.mobile-menu-toggle {
  display: none;
  background: #DF9C20;
  color: #1E355C;
  border: none;
  font-size: 2rem;
  padding: 8px 20px 8px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s, color .2s;
  margin-left: 18px;
  z-index: 110;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #1E355C;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  box-shadow: 0 12px 48px rgba(30,53,92,0.19);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.7,0,.3,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #DF9C20;
  font-size: 2.2rem;
  align-self: flex-end;
  margin-right: 24px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #1E355C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px 36px 20px 36px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 15px 0 15px 4px;
  color: #1E355C;
  border-radius: 8px;
  transition: background 0.14s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2F3F7;
  color: #DF9C20;
}
@media (max-width: 1024px) {
  header .container nav { display: none; }
  .btn-primary { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 1024px) {
  header .container { padding-left: 8px; padding-right: 8px; }
}
/* Ensure mobile menu covers all screen */
@media (max-width: 768px) {
  .mobile-menu {
    padding-top: 12px;
    font-size: 1rem;
  }
  .mobile-nav {
    padding: 24px 14px 14px 20px;
  }
}
/* =============================
   5. MAIN SECTIONS & FLEX PATTERNS
============================== */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(30,53,92,0.07);
}
.hero {
  background: #1E355C;
  color: #fff;
  border-radius: 0 0 44px 44px;
  border-bottom: 6px solid #DF9C20;
  margin-bottom: 40px;
  padding-top: 55px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1, .hero h2, .hero .subheadline, .hero p {
  color: #fff;
}
.hero .btn-primary {
  margin-top: 25px;
  background: #DF9C20;
  color: #1E355C;
}
.hero .btn-primary:hover {
  background: #fff;
  color: #1E355C;
}
.features, .features {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 14px rgba(30,53,92,0.05);
}
.feature-grid, .features .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F2F3F7;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(30,53,92,0.0505);
  padding: 30px 22px 22px 22px;
  flex: 1 1 221px;
  min-width: 200px;
  max-width: 310px;
  margin-bottom: 24px;
  border-left: 6px solid #DF9C20;
  transition: box-shadow 0.18s, border-color 0.16s;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 4px 20px rgba(30,53,92,0.15);
  border-left-color: #1E355C;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-top: 24px;
}
.service-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border: 2.5px solid #F2F3F7;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(30,53,92,0.04);
  padding: 28px 18px 22px 18px;
  flex: 1 1 260px;
  min-width: 210px;
  max-width: 330px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, border-color 0.17s;
}
.service-item:hover, .service-item:focus-within {
  border-color: #DF9C20;
  box-shadow: 0 4px 18px rgba(30,53,92,0.13);
}
/* Table styling for Preise */
.price-table table {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(30,53,92,0.08);
  width: 100%;
}
.price-table th, .price-table td {
  padding: 16px 24px;
  font-size: 1rem;
  border-bottom: 1px solid #F2F3F7;
}
.price-table th {
  background: #DF9C20;
  color: #1E355C;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.price-table tr:last-child td {
  border-bottom: none;
}
.price-table em {
  color: #5974ac;
}
/* ==========================
   6. TESTIMONIALS
=========================== */
.testimonials {
  background: #F2F3F7;
  margin-bottom: 60px;
  padding: 40px 20px 10px 20px;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(30,53,92,0.05);
}
.testimonials .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 24px 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  color: #1E355C;
  border-radius: 24px;
  border-left: 7px solid #DF9C20;
  box-shadow: 0 2px 10px rgba(30,53,92,0.06);
  padding: 20px 28px;
  min-width: 250px;
  max-width: 390px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: border-color 0.15s, box-shadow 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-left-color: #1E355C;
  box-shadow: 0 4px 16px rgba(30,53,92,0.10);
}
.trust-signals {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-top: 10px;
}
.trust-signals img {
  height: 48px;
  width: auto;
  opacity: 0.86;
  transition: opacity 0.2s;
}
.trust-signals img:hover, .trust-signals img:focus {
  opacity: 1;
}
/* ==========================
   7. CONTACT & ADDRESS BLOCKS
=========================== */
.contact .content-wrapper, .contact-info .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
}
.address-block, .contact-block, .hours-block, .directions-block, .map-block {
  background: #fff;
  padding: 18px 20px;
  border-radius: 20px;
  box-shadow: 0 2px 9px rgba(30,53,92,0.045);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 220px;
  margin-bottom: 20px;
  border-left: 5px solid #DF9C20;
  transition: border-color 0.15s;
}
.address-block:hover, .contact-block:hover, .hours-block:hover, .directions-block:hover, .map-block:hover {
  border-left-color: #1E355C;
}
.map-block img {
  border-radius: 14px;
  box-shadow: 0 2px 6px rgba(30,53,92,0.07);
  width: 165px;
  margin-bottom: 10px;
  background: #F2F3F7;
}
/* ==========================
   8. LISTS, LINKS, UL/OL
=========================== */
ul, ol {
  margin-bottom: 12px;
  margin-left: 18px;
}
li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 7px;
}
li::before {
  content: '';
  position: absolute;
  left: 0.20em;
  top: 0.67em;
  width: 11px; height: 11px;
  background: #DF9C20;
  border-radius: 2px;
  display: inline-block;
  box-shadow: 0 1px 5px rgba(30,53,92,0.04);
}
/* =============================
   9. FLEX CONTAINER PATTERNS
============================== */
.card-container, .content-grid, .content-wrapper, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(30,53,92,0.06);
  padding: 22px;
}
.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;
}
.service-detail {
  background: #F2F3F7;
  border-radius: 16px;
  box-shadow: 0 1px 7px rgba(30,53,92,0.035);
  padding: 20px 22px 14px 22px;
  margin-bottom: 20px;
  min-width: 230px;
  flex: 1 1 290px;
  border-left: 4px solid #DF9C20;
  transition: border-color 0.12s;
}
.service-detail:hover, .service-detail:focus {
  border-left-color: #1E355C;
}
/* =============================
   10. MODALS, CTA, THANK YOU
============================== */
.cta, .booking-cta {
  background: #1E355C;
  color: #fff;
  border-radius: 18px;
  margin-bottom: 45px;
  padding: 38px 10px;
  text-align: center;
}
.cta .btn-primary, .booking-cta .btn-primary {
  background: #DF9C20;
  color: #1E355C;
  margin-top: 15px;
}
.thankyou {
  background: #f4f6fc;
  border-radius: 22px;
  padding: 36px 18px 60px 18px;
  margin-bottom: 44px;
  text-align: center;
}
.thankyou .btn-primary {
  margin-top: 20px;
}
/* =============================
   11. FOOTER
============================== */
footer {
  background: #232841;
  color: #fff;
  padding: 32px 0 14px 0;
  border-radius: 44px 44px 0 0;
  margin-top: 55px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #DF9C20;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.98rem;
  letter-spacing: .035em;
  border-radius: 5px;
  padding: 4px 10px;
  transition: background 0.15s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  background: #DF9C20;
}
.company-info {
  color: #a3afd2;
  font-size: 0.97rem;
  margin-top: 8px;
}
.social-links {
  display: flex;
  gap: 13px;
  align-items: center;
}
.social-links img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  filter: grayscale(30%);
  transition: filter 0.18s, box-shadow .14s;
}
.social-links img:hover, .social-links img:focus {
  filter: grayscale(0%);
  box-shadow: 0 3px 10px #DF9C2055;
}
/* =============================
   12. COOKIE CONSENT BANNER
============================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 900;
  background: #fff;
  color: #232841;
  box-shadow: 0 -4px 28px rgba(30,53,92,0.19);
  border-top: 4px solid #DF9C20;
  padding: 30px 18px 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  min-height: 80px;
  animation: fadeInBanner 0.66s cubic-bezier(.7,0,.3,1);
  font-size: 1rem;
}
@keyframes fadeInBanner {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner-btns {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  border-radius: 9px;
  padding: 11px 27px;
  margin: 0 3px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .14s, color .14s, box-shadow .17s;
}
.cookie-banner .accept-cookie {
  background: #DF9C20;
  color: #1E355C;
}
.cookie-banner .accept-cookie:hover {
  background: #1E355C;
  color: #fff;
}
.cookie-banner .reject-cookie {
  background: #F2F3F7;
  color: #1E355C;
  border: 1.5px solid #1E355C;
}
.cookie-banner .reject-cookie:hover {
  background: #1E355C;
  color: #DF9C20;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: #1E355C;
  border: 1.5px solid #DF9C20;
}
.cookie-banner .cookie-settings:hover {
  background: #DF9C20;
  color: #1E355C;
}
/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(30,53,92,0.3);
  z-index: 1212;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModalOverlay 0.34s ease;
}
@keyframes fadeInModalOverlay {
  from { opacity: .1; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #232841;
  border-radius: 24px;
  box-shadow: 0 12px 48px rgba(30,53,92,0.13);
  padding: 36px 36px 20px 36px;
  min-width: 320px;
  max-width: 96vw;
  animation: fadeInModal 0.3s cubic-bezier(.7,0,.3,1);
  z-index: 1222;
}
@keyframes fadeInModal {
  from { transform: translateY(70px) scale(.99); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.cookie-modal-category label {
  font-size: 1rem;
  color: #1E355C;
  font-weight: 600;
  cursor: pointer;
}
.cookie-modal-toggle {
  width: 40px; height: 22px;
  border-radius: 18px;
  background: #F2F3F7;
  position: relative;
  margin-right: 10px;
  transition: background .15s;
  display: inline-block;
}
.cookie-modal-toggle input[type='checkbox'] {
  display: none;
}
.cookie-modal-toggle .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: #DF9C20;
  border-radius: 50%;
  transition: transform .17s cubic-bezier(.8,0,.2,1);
}
.cookie-modal-toggle input[type='checkbox']:checked + .slider {
  transform: translateX(16px);
  background: #1E355C;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
@media (max-width: 600px) {
  .cookie-modal {
    max-width: 98vw;
    padding: 19px 7vw 18px 7vw;
  }
}
/* =============================
   13. RESPONSIVE BREAKPOINTS
============================== */
@media (max-width: 1024px) {
  .container { max-width: 94vw; }
  .features .content-wrapper, .feature-grid, .service-list, .card-container, .content-grid {
    gap: 16px;
  }
  .footer-nav { gap: 11px; }
}
@media (max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
    max-width: 100vw;
  }
  .hero, .section, .features, .testimonials, .cta, .thankyou {
    border-radius: 16px;
    padding-left: 5px; padding-right: 5px;
  }
  .about-section .content-wrapper, .features .content-wrapper, .feature-grid, .service-list, .card-container, .content-grid, .contact .content-wrapper, .contact-info .content-wrapper {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .testimonial-card, .feature-item, .service-item, .address-block, .contact-block, .hours-block, .directions-block, .map-block {
    min-width: 0;
    max-width: none;
    width: 100%;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.13rem; }
}
@media (max-width: 430px) {
  .hero, .section, .features, .testimonials, .cta, .thankyou {
    padding: 10px 0;
    border-radius: 7px;
  }
  .feature-item, .service-item, .testimonial-card {
    padding: 13px 8px !important;
    border-radius: 10px;
  }
  th, td { padding: 8px 6px !important; }
  .footer-nav {
    flex-direction: column;
    gap: 5px;
  }
}
/* =============================
   14. MICRO-INTERACTIONS
============================== */
.card, .service-detail, .feature-item, .testimonial-card, .footer-nav a, .btn-primary, .btn-secondary {
  transition: box-shadow 0.17s, border-color 0.14s, color 0.18s, background 0.18s;
}
.card:hover, .service-detail:hover {
  box-shadow: 0 4px 18px rgba(30,53,92,0.17);
  border-color: #DF9C20;
}
input, select, textarea {
  border: 2px solid #DF9C20;
  border-radius: 7px;
  font-size: 1rem;
  padding: 10px 13px;
  font-family: inherit;
  color: #1E355C;
  margin-bottom: 12px;
}
input:focus, select:focus, textarea:focus {
  border-color: #1E355C;
}
::-webkit-input-placeholder { color: #b4b4ba; opacity: 1; }
::-moz-placeholder { color: #b4b4ba; opacity: 1; }
:-ms-input-placeholder { color: #b4b4ba; opacity: 1; }
::placeholder { color: #b4b4ba; opacity: 1; }
/* =============================
   15. PRINT FRIENDLY (OPTIONAL)
============================== */
@media print {
  header, nav, footer, .cookie-banner, .mobile-menu { display: none !important; }
  main, body { padding: 0 !important; }
}
