/* 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;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #252934;
  color: #F6F3EE;
  font-family: 'Lato', Arial, sans-serif;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  max-width: 100%;
  display: block;
}
*:focus {
  outline: 2px solid #C1A784;
  outline-offset: 2px;
}
a {
  color: #C1A784;
  text-decoration: none;
  transition: color 0.22s;
  word-break: break-word;
}
a:hover, a:focus {
  color: #F6F3EE;
}
ul, ol {
  list-style: none;
}

/* TYPOGRAPHY HIERARCHY */
h1, .h1 {
  font-family: 'Playfair Display', Georgia, Times, serif;
  font-size: 2.8rem;
  color: #F6F3EE;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h2, .h2 {
  font-family: 'Playfair Display', Georgia, Times, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #C1A784;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h3, .h3 {
  font-family: 'Playfair Display', Georgia, Times, serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: #C1A784;
  margin-bottom: 10px;
}
.subheadline {
  color: #b3b7bd;
  font-size: 1.18rem;
  font-weight: 400;
  margin-bottom: 32px;
  max-width: 730px;
}
p {
  font-size: 1rem;
  margin-bottom: 18px;
}
strong {
  font-weight: 700;
}

/* BRAND COLORS AND ACCENTS */
:root {
  --brand-primary: #252934;
  --brand-secondary: #C1A784;
  --brand-accent: #F6F3EE;
  --brand-gray: #3A3E48;
  --brand-dark: #1C1F25;
  --brand-metal: #A39C90;
  --brand-shadow: rgba(44,48,55,0.14);
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

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

.section:nth-child(even) {
  background: var(--brand-gray);
  border-radius: 12px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  position: relative;
  background: var(--brand-gray);
  border-radius: 12px;
  box-shadow: 0 4px 24px 0 var(--brand-shadow);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  min-width: 270px;
  max-width: 370px;
  padding: 32px 26px;
  transition: box-shadow 0.24s, transform 0.18s;
  border: 1.8px solid #31353f;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 36px 3px rgba(193,167,132,0.09);
  transform: translateY(-3px) scale(1.012);
  border-color: var(--brand-secondary);
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F6F3EE;
  color: #252934;
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 rgba(80,85,99,0.11);
  min-width: 240px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  position: relative;
  border-left: 3.5px solid #C1A784;
  transition: box-shadow 0.22s;
}
.testimonial-card .stars {
  color: #C1A784;
  font-size: 1.2rem;
  margin-top: 2px;
  letter-spacing: 2px;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #584b38;
  font-style: italic;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 5px 28px 0 rgba(193,167,132,0.14);
  border-left: 3.5px solid #252934;
}

.feature-list { /* For section features */
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-list li {
  background: var(--brand-gray);
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 var(--brand-shadow);
  padding: 36px 28px 28px 28px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border: 1.5px solid #31353f;
  transition: box-shadow 0.2s, border-color 0.18s;
}
.feature-list li:hover {
  box-shadow: 0 6px 32px 0 rgba(193,167,132,0.18);
  border-color: #C1A784;
}
.feature-list img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  filter: grayscale(0.3) contrast(1.15);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 10px;
}
.service-list li {
  background: var(--brand-gray);
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 var(--brand-shadow);
  padding: 30px 22px 25px 22px;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 20px;
  border: 1.5px solid #31353f;
  transition: box-shadow 0.2s, border-color 0.18s;
}
.service-list li:hover {
  box-shadow: 0 7px 24px 0 rgba(193,167,132,0.19);
  border-color: #C1A784;
}
.service-price {
  margin-top: 8px;
  background: #252934;
  color: #F6F3EE;
  padding: 4px 14px;
  border-radius: 10px;
  font-size: 1.07rem;
  letter-spacing: 0.5px;
}

.text-section {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.text-section ul {
  margin-left: 20px;
}
.content-wrapper ul:not(.feature-list):not(.service-list) {
  margin-left: 24px;
  margin-bottom: 15px;
  list-style: disc inside;
  color: #C1A784;
}
.content-wrapper ul li {
  color: #F6F3EE;
  margin-bottom: 8px;
  font-size: 1rem;
}
.content-wrapper ul li strong {
  color: #C1A784;
}

/* BUTTONS - Primary & CTA */
.cta, button, .category-filters button {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 32px;
  border-radius: 24px;
  border: none;
  background: #C1A784;
  color: #252934;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 9px 0 rgba(193,167,132,0.05);
  margin-top: 10px;
  transition: background 0.22s, color 0.22s, box-shadow 0.20s, transform 0.20s;
}
.cta.primary {
  background: #252934;
  color: #C1A784;
  border: 2px solid #C1A784;
}
.cta.primary:hover, .cta.primary:focus {
  background: #C1A784;
  color: #252934;
}
.cta:hover, .cta:focus, button:hover, button:focus, .category-filters button:hover, .category-filters button:focus {
  background: #A39C90;
  color: #F6F3EE;
  box-shadow: 0 4px 24px 0 rgba(80,85,99,0.12);
  transform: scale(1.03);
}
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
  margin-top: 13px;
}
.category-filters span {
  font-size: 1rem;
  color: #C1A784;
  margin-right: 8px;
  font-family: 'Lato', Arial, sans-serif;
}
.category-filters button {
  background: #31353f;
  color: #F6F3EE;
  border-radius: 22px;
  border: 1.5px solid #444953;
  padding: 7px 20px;
  font-size: 1rem;
}

/* TABLE STYLE (PREISE PAGE) */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 22px 0;
  background: var(--brand-gray);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 10px 0 var(--brand-shadow);
}
thead tr {
  background: #31353f;
}
th, td {
  padding: 13px 15px;
  text-align: left;
}
th {
  color: #C1A784;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  border-bottom: 2px solid #A39C90;
  font-weight: 500;
}
td {
  color: #F6F3EE;
  border-bottom: 1px solid #3A3E48;
  font-size: 0.97rem;
}
tr:last-child td {
  border-bottom: none;
}

/* HEADER, NAV, LOGO */
header {
  width: 100%;
  background: #1C1F25;
  box-shadow: 0 2px 14px 0 var(--brand-shadow);
}
.logo {
  display: flex;
  align-items: center;
  height: 70px;
  padding: 4px 0;
}
.logo img {
  height: 48px;
  width: auto;
  filter: contrast(1.05) grayscale(10%);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 17px;
  margin-left: auto;
}
.main-nav a {
  color: #F6F3EE;
  padding: 7px 13px;
  border-radius: 18px;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #C1A784;
  color: #252934;
}
.main-nav .cta.primary {
  background: #C1A784;
  color: #252934;
  border: 2px solid #C1A784;
  padding: 9px 23px;
  margin-left: 14px;
}
.main-nav .cta.primary:hover, .main-nav .cta.primary:focus {
  background: #252934;
  color: #C1A784;
}
header {
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  height: 74px;
  z-index: 50;
  padding: 0 18px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: transparent;
  border: none;
  color: #C1A784;
  margin-left: auto;
  cursor: pointer;
  padding: 8px 8px;
  border-radius: 11px;
  transition: background 0.13s;
  z-index: 98;
}
.mobile-menu-toggle:focus {
  background: #C1A784;
  color: #252934;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #252934ee;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform: translateX(-105vw);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.34s cubic-bezier(.65,.03,.29,.97), opacity 0.25s;
  z-index: 200;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  border: none;
  color: #C1A784;
  margin: 25px 27px 8px 0;
  cursor: pointer;
  border-radius: 30px;
  transition: background 0.18s, color 0.18s;
  z-index: 201;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #C1A784;
  color: #252934;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  padding: 32px 36px;
  margin-top: 16px;
}
.mobile-nav a {
  color: #F6F3EE;
  font-size: 1.1rem;
  padding: 10px 6px;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #C1A784;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 13px;
  }
  .container {
    max-width: 100vw;
  }
}
@media (max-width: 900px) {
  .main-nav a {
    font-size: 0.97rem;
  }
  .feature-list li, .service-list li {
    min-width: 160px;
    max-width: 95vw;
    padding: 20px 12px 15px 12px;
  }
  .card {
    max-width: 95vw;
  }
}
@media (max-width: 800px) {
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.43rem;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header {
    justify-content: space-between;
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 15px;
  }
  .section {
    padding: 27px 4px;
  }
  .feature-list, .service-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonial-card {
    gap: 10px;
    min-width: unset;
  }
}
@media (max-width: 580px) {
  html {
    font-size: 15px;
  }
  .feature-list li, .service-list li {
    padding: 12px 9px 10px 11px;
  }
}

/* FOOTER */
footer {
  background: #1C1F25;
  color: #C1A784;
  width: 100%;
  padding: 38px 0 0 0;
}
footer .container {
  padding-bottom: 28px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer-nav a, .footer-links a {
  color: #C1A784;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  transition: color 0.18s;
}
.footer-nav a:hover,.footer-links a:hover {
  color: #F6F3EE;
}
footer address {
  font-style: normal;
  color: #F6F3EE;
  opacity: 0.7;
  font-size: 0.99rem;
  margin-bottom: 10px;
  line-height: 1.5;
}
.social-media {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 8px;
}
.social-media img {
  width: 30px;
  height: 30px;
  filter: grayscale(100%) brightness(0.9);
  transition: filter 0.22s;
  cursor: pointer;
}
.social-media img:hover {
  filter: grayscale(0%) brightness(1.09) drop-shadow(0px 2px 5px #C1A78433);
}
@media (max-width: 768px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
  }
  .footer-nav, .footer-links {
    gap: 9px;
  }
  .social-media {
    margin-bottom: 12px;
  }
}


/* MODAL & COOKIE BANNER COMPONENTS */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #31353f;
  color: #F6F3EE;
  padding: 23px 12px;
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -2px 18px 0 #18191955;
  animation: cookieBannerFadeIn 0.5s;
  font-size: 1rem;
}
@keyframes cookieBannerFadeIn {
  from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none;}
}
.cookie-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  max-width: 880px;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 9px;
}
.cookie-banner .cookie-btn {
  padding: 8px 24px;
  border-radius: 17px;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 600;
  border: 0;
  margin: 0 6px;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow 0.15s;
  background: #252934;
  color: #C1A784;
}
.cookie-banner .cookie-btn.accept {
  background: #C1A784;
  color: #252934;
}
.cookie-banner .cookie-btn.reject {
  background: #A39C90;
  color: #F6F3EE;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #F6F3EE;
  color: #252934;
}
.cookie-banner .cookie-btn.accept:hover, .cookie-banner .cookie-btn.accept:focus {
  background: #252934;
  color: #C1A784;
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: #1C1F25bb;
  z-index: 401;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.cookie-modal {
  background: #31353f;
  color: #F6F3EE;
  padding: 34px 28px 24px 28px;
  border-radius: 13px;
  max-width: 420px;
  min-width: 270px;
  box-shadow: 0 8px 38px 0 #18191933;
  animation: cookieModalSlideIn 0.37s;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 17px;
  position: relative;
}
@keyframes cookieModalSlideIn {
  from { opacity: 0; transform: translateY(48px); } to { opacity: 1; transform: none;}
}
.cookie-modal h2 {
  color: #C1A784;
  margin-bottom: 5px;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 10px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0 5px 0;
  border-bottom: 1px solid #3A3E48;
}
.cookie-category-row:last-child {
  border-bottom: none;
}
.cookie-toggle {
  width: 36px;
  height: 21px;
  background: #A39C90;
  border-radius: 11px;
  position: relative;
  cursor: pointer;
  margin-left: 12px;
  border: none;
  appearance: none;
  outline: none;
  transition: background 0.17s;
}
.cookie-toggle:checked {
  background: #C1A784;
}
.cookie-toggle::before {
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  background: #252934;
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 2px;
  transition: left 0.18s, background 0.13s;
  z-index: 2;
}
.cookie-toggle:checked::before {
  left: 17px;
  background: #F6F3EE;
}
.cookie-category-row .desc {
  font-size: 1.01rem;
}
.cookie-modal .cookie-btn-row {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  padding: 8px 22px;
  border-radius: 17px;
  background: #C1A784;
  color: #252934;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.cookie-modal .cookie-btn:hover, .cookie-modal .cookie-btn:focus {
  background: #A39C90;
  color: #F6F3EE;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px;
  right: 14px;
  background: none;
  border: none;
  color: #C1A784;
  font-size: 1.6rem;
  cursor: pointer;
  border-radius: 18px;
  padding: 3px 7px;
  transition: background 0.12s,color 0.12s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #C1A784;
  color: #252934;
}
@media (max-width: 600px) {
  .cookie-modal {
    min-width: 85vw;
    padding: 19px 8px 15px 9px;
  }
}

/* SPACING and FLEX REQUIREMENTS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  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;
}

/* Hide visually but keep accessible */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* Accessibility: Focus ring for tab nav */
:focus-visible {
  outline: 2px solid #C1A784;
  outline-offset: 2px;
}

/* SCROLLBAR CUSTOMIZATION (Industrial Modern Touch) */
::-webkit-scrollbar {
  width: 10px;
  background: #181a20;
}
::-webkit-scrollbar-thumb {
  background: #484c54;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #C1A784;
}

/* Industrial Modern metallic accent bar (decorative, optional) */
.section::before {
  content: '';
  display: block;
  height: 3px;
  width: 45px;
  background: linear-gradient(90deg, #6c635a 0%, #C1A784 100%);
  border-radius: 2px;
  margin-bottom: 22px;
  margin-left: 0;
}
.section:first-child::before {
  display:none;
}

/* -- END CSS -- */