/* === CSS RESET & NORMALIZE === */
*,*::before,*::after { box-sizing: border-box; }
html { height: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: #fafaf7;
  color: #23201D;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; vertical-align: middle; border: 0; height: auto; }
ul, ol { margin: 0 0 1.5em 1em; padding: 0; }
li { margin-bottom: 0.5em; }
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1em 0;
  font-family: 'Playfair Display', 'Georgia', serif;
  color: #1C2329;
}
h1 { font-size: 2.5rem; font-weight: 700; letter-spacing: -1px; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.4rem; font-weight: 600; }

/* === TYPOGRAPHY === */
.text-section p {
  font-size: 1.125rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
a {
  color: #9e7843;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1C2329;
  text-decoration: underline;
}

/* === BRAND COLORS === */
:root {
  --primary: #1C2329;
  --secondary: #A89D8E;
  --accent: #FFFFFF;
  --creamy: #fafaf7;
  --vibrant1: #f4b942;
  --vibrant2: #694c77;
  --vibrant3: #e4555c;
  --vibrant4: #3bb6c1;
  --gray10: #23201D;
}

/* === UTILITY CLASSES === */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.text-section {
  align-items: flex-start;
  margin-bottom: 0;
}

/* === HEADER & NAVIGATION === */
header {
  background: var(--primary);
  box-shadow: 0 2px 14px rgba(28,35,41,0.07);
  position: sticky;
  top: 0;
  z-index: 999;
}
.main-nav {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  padding: 0.7em 16px;
}
.main-nav a {
  color: var(--accent);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0;
  transition: color 0.2s;
  padding: 5px 10px;
  border-radius: 6px;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--vibrant1);
  color: var(--primary);
}
.main-nav img {
  height: 44px;
  margin-right: 12px;
}

.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 14px;
  top: 10px;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--accent);
  transition: background 0.18s;
  z-index: 1050;
  cursor: pointer;
  border-radius: 50%;
  width: 48px; height: 48px;
  align-items: center;
  justify-content: center;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--vibrant2);
}

/* === MOBILE NAVIGATION === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  padding: 0;
  overflow-x: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--vibrant1);
  font-size: 2rem;
  font-weight: bold;
  padding: 20px 16px 0 16px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--vibrant3);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding-left: 24px;
}
.mobile-nav a {
  color: var(--accent);
  font-size: 1.25rem;
  font-family: 'Playfair Display', Georgia, serif;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  width: 90%;
  transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--vibrant1);
  background: none;
}
@media (max-width: 996px) {
  .main-nav {
    gap: 14px;
  }
  .main-nav a {
    font-size: 1rem;
    padding: 4px 4px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* === MAIN SECTIONS === */
section {
  background: none;
  border-radius: 26px;
  box-shadow: 0 8px 40px 0 rgba(28,35,41,0.05);
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}
.container:not(:last-child) {
  margin-bottom: 20px;
}

/* === CARDS, WRAPPERS, FLEX LAYOUTS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: var(--accent);
  border-radius: 22px;
  box-shadow: 0 4px 30px 0 rgba(28,35,41,0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 42px -4px var(--vibrant1);
  transform: translateY(-4px) scale(1.025);
}
.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) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* === FEATURE & ICON LISTS === */
ul:not(.mobile-nav):not(.contact-list) {
  list-style: none;
  padding: 0;
  margin: 1.4em 0 1.6em 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: rgba(168,157,142, 0.13);
  border-radius: 17px;
  padding: 18px 18px 14px 18px;
  min-width: 170px;
  box-shadow: 0 2px 10px 0 rgba(170,137,87,0.03);
  font-size: 1.06rem;
  position: relative;
  transition: background 0.2s, box-shadow 0.2s;
}
ul li img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 5px rgba(244,185,66,0.09));
}
ul li strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.13rem;
  color: var(--primary);
}
@media (max-width: 800px) {
  ul:not(.mobile-nav):not(.contact-list) {
    flex-direction: column;
    gap: 20px;
  }
  ul li {
    width: 100%;
    min-width: 0;
  }
}

/* === TESTIMONIAL CARD === */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: linear-gradient(90deg, #ffdcb5 0%, #fff7f2 80%);
  border-radius: 22px;
  box-shadow: 0 4px 30px rgba(226, 181, 83, 0.12);
  margin-bottom: 25px;
  transition: box-shadow 0.22s, transform 0.16s;
  min-height: 110px;
}
.testimonial-card .content-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-direction: row;
}
.testimonial-card img {
  width: 34px;
  height: 34px;
  margin-right: 8px;
  filter: drop-shadow(0 3px 10px #eab46433);
}
.testimonial-card p {
  color: #23201D;
  font-size: 1.09rem;
  margin-bottom: 0.3em;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  max-width: 420px;
}
.testimonial-card strong {
  color: var(--primary);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.04rem;
  margin-left: 8px;
  font-weight: 700;
}
@media (max-width: 700px) {
  .testimonial-card, .testimonial-card .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .testimonial-card img {
    margin-bottom: 8px;
  }
}

/* =========================
   FEATURE ITEM
========================= */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === BUTTONS & CTA === */
.cta {
  display: inline-flex;
  align-items: center;
  padding: 13px 38px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.14rem;
  border-radius: 36px;
  border: none;
  background: var(--vibrant1);
  color: var(--primary);
  box-shadow: 0 3px 18px rgba(244,185,66,0.12);
  cursor: pointer;
  margin-top: 14px;
  margin-bottom: 8px;
  transition: background 0.23s, color 0.16s, box-shadow 0.18s, transform 0.15s;
  letter-spacing: 0.02em;
}
.cta.primary {
  background: var(--vibrant1);
  color: var(--primary);
}
.cta:hover, .cta:focus {
  background: var(--vibrant3);
  color: var(--accent);
  box-shadow: 0 6px 36px -10px var(--vibrant3);
  transform: translateY(-2px) scale(1.025);
}

/* === TABLES (Preistabelle) === */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 20px 0 30px 0;
  background: rgba(239,224,197,0.18);
  border-radius: 9px;
  overflow: hidden;
  font-size: 1.07rem;
  box-shadow: 0 2px 15px 0 rgba(244,185,66,0.05);
}
thead tr {
  background: var(--vibrant1);
  color: var(--primary);
}
th,td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #ecdac1;
}
th:last-child, td:last-child {
  text-align: right;
}
tr:last-child td {
  border-bottom: none;
}
tbody tr:nth-child(odd) { background: rgba(255,243,221,0.19); }
tbody tr:hover { background: #fff2e2; }

/* === CONTACT LIST === */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 8px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(168,157,142,0.07);
  padding: 13px 14px;
  border-radius: 11px;
  font-size: 1.09rem;
}
.contact-list img {
  width: 29px;
  height: 29px;
}
.info-text {
  margin: 20px 0 0 0;
  font-size: 1.01rem;
}

/* === FOOTER === */
footer {
  background: var(--primary);
  color: var(--secondary);
  padding: 38px 0 20px 0;
  font-size: 1.075rem;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  margin-top: 80px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 17px;
}
footer nav a {
  color: var(--accent);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.2s;
  opacity: 0.93;
}
footer nav a:hover,footer nav a:focus {
  color: var(--vibrant1);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 60px;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
}
.footer-contact img {
  height: 36px;
  margin-right: 10px;
}
.footer-contact span {
  color: var(--secondary);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 9999;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: var(--primary);
  color: var(--accent);
  padding: 20px 16px;
  box-shadow: 0 -2px 40px 0 rgba(28,35,41,0.14);
  font-size: 1.07rem;
  gap: 32px;
  animation: slideUpIn .55s ease;
}
@keyframes slideUpIn {
  from { transform: translateY(90px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  border-radius: 26px;
  border: none;
  padding: 9px 20px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  margin-left: 0;
  margin-right: 0;
  background: var(--vibrant1);
  color: var(--primary);
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 1px 6px rgba(241,186,66,0.13);
  transition: background 0.19s, color 0.13s, box-shadow .17s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--vibrant3);
  color: var(--accent);
}
.cookie-banner .secondary {
  background: var(--accent);
  color: var(--primary);
  border: 1px solid var(--vibrant1);
}
.cookie-banner .secondary:hover {
  background: var(--vibrant2);
  color: var(--accent);
}
/* Cookie settings modal */
.cookie-modal-overlay {
  visibility: hidden;
  opacity: 0;
  position: fixed; top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(28,35,41,0.58);
  z-index: 10001;
  transition: opacity 0.3s;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cookie-modal-overlay.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal {
  background: var(--accent);
  color: var(--primary);
  border-radius: 22px;
  padding: 38px 36px 34px 36px;
  box-shadow: 0 6px 48px 0 rgba(28,35,41,0.19);
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
  animation: modalShow .38s cubic-bezier(.19,1,.22,1);
}
@keyframes modalShow { from { transform: scale(.89); opacity:0;} to { transform: scale(1); opacity:1;} }
.cookie-modal h2 {
  margin: 0 0 18px 0;
  font-size: 1.38rem;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.07rem;
  margin-bottom: 8px;
  font-family: 'Roboto', Arial, sans-serif;
  cursor: pointer;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--vibrant1);
  width: 22px;
  height: 22px;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 22px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--vibrant4);
}
.cookie-modal .cookie-modal-close:hover {
  color: var(--vibrant3);
}

/* === ANIMATION UTILITIES === */
.fade-in {
  animation: fadeIn 0.88s cubic-bezier(.19,1,.22,1);
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1060px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.4rem; }
}
@media (max-width: 800px) {
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.97rem;
  }
  section, .card, .testimonial-card { padding: 24px 4px; }
}
@media (max-width: 600px) {
  section {
    margin-bottom: 38px;
    padding: 21px 2vw;
    border-radius: 10px;
  }
  .footer-contact img { height: 27px; }
  .card,
  .testimonial-card {
    padding: 18px 8px;
    border-radius: 12px;
  }
  .cookie-modal {
    min-width: 82vw;
    padding: 28px 10px 18px 10px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 20px;
    font-size: 0.96rem;
    padding: 17px 7px;
  }
}

/* === MISC & ARTISTIC TOUCHES === */
section {
  border-left: 12px solid var(--vibrant1);
  border-right: 0px;
  background: linear-gradient(94deg, #fff5ea 80%, #f0e0cf 100%);
  position: relative;
  overflow: hidden;
}
section:before {
  content: "";
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle at 20% 40%, #e4555c50 0%, transparent 78%);
  border-radius: 60px;
  z-index: 1;
  pointer-events: none;
}
section:after {
  content: "";
  position: absolute;
  top: -35px; left: -20px;
  width: 85px; height: 85px;
  background: radial-gradient(circle at 60% 30%, #3bb6c1a8 0%, transparent 70%);
  border-radius: 100px;
  z-index: 1;
  pointer-events: none;
}
.card:before, .testimonial-card:before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0.04;
  pointer-events: none;
  background: url('assets/favicon.svg') center right no-repeat;
  background-size: 180px auto;
  z-index: 0;
}

/* === ARTISTIC FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

body, .content-wrapper, .text-section, .content-grid, .main-nav, .footer-contact {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
h1, h2, h3, .card strong, .cta, .main-nav a, .mobile-nav a {
  font-family: 'Playfair Display', Georgia, serif;
}

/* === SELECTION COLORS === */
::selection { background: #f4b942; color: #1C2329; }

/* === FORM ELEMENTS (inputs, focus, textarea) === */
input, textarea, select {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  border-radius: 7px;
  border: 1px solid #A89D8E33;
  padding: 8px 12px;
  margin-bottom: 12px;
  outline: none;
  transition: border 0.18s, box-shadow 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--vibrant1);
  box-shadow: 0 0 0 2px #f4b94244;
}
button, .cta {
  outline: none;
}

/* === MICRO-INTERACTIONS === */
a, button, .cta, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.18s, color 0.12s, box-shadow 0.17s, transform 0.14s;
}

/* === Z-INDEX FOR OVERLAYS === */
.mobile-menu, .cookie-modal-overlay {
  z-index: 10001 !important;
}

/* === FORBIDDEN: GRID and COLUMNS === */
/*[NO display:grid or columns used at any point. All layouts are exclusively flexbox-based as required.]*/
