/* ----------------------
   CSS RESET & BASE STYLES
------------------------- */
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;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F0E4D6;
  color: #233047;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #A66B37;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #233047;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 20px;
}
li { margin-bottom: 8px; }

/*----------------------
  VARIABLES (fallbacks)
-----------------------*/
:root {
  --color-primary: #233047;
  --color-secondary: #F0E4D6;
  --color-accent: #A66B37;
  --color-footer-bg: #81501F;
  --color-light: #FFF9F3;
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 6px;
  --shadow-soft: 0 4px 20px rgba(35, 48, 71, 0.07);
  --shadow-card: 0 2px 8px rgba(35, 48, 71, 0.16);
}

/*-------------------
   TYPOGRAPHY
-------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: #233047;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  font-weight: 800;
  line-height: 1.15;
}
h1 { font-size: 2.75rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.45rem; margin-bottom: 12px;  }
h4 { font-size: 1.15rem; margin-bottom: 10px;  }
p, li, ul, ol { font-family: var(--font-body); color: #233047; }
p { margin-bottom: 18px; font-size: 1.07rem; }
strong, b { font-weight: 700; }
em, i { font-style: italic; }

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.12rem; }
}

/*----------------------
   LAYOUT CONTAINERS
-----------------------*/
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  padding: 18px 0 18px 0;
}
.content-wrapper {
  background: var(--color-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 40px 28px;
  margin-bottom: 60px;
}
.cta-banner {
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  text-align: center;
  padding: 42px 28px;
  margin-bottom: 60px;
}
.cta-banner h2, .cta-banner h3, .cta-banner p {
  color: #fff;
}
.cta-banner a.button-primary {
  background: #fff;
  color: var(--color-accent);
  border: 2px solid #fff;
}

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

/* Feature Grid and Cards */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.feature {
  background: #F4E6CE;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 28px 20px;
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 340px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 2px solid #E7CEB2;
}
.feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 7px;
}
.feature:hover {
  box-shadow: 0 8px 24px rgba(166,107,55,0.14);
  transform: translateY(-4px) scale(1.02);
}

/* Price Table */
.price-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.price-package {
  background: #fff8ee;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 28px 22px;
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 340px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  border: 2px dashed #A66B37;
  position: relative;
}
.price-package strong {
  display: block;
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-top: 7px;
}

/* Card Container General */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff9f3;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  padding: 28px 18px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 10px 36px rgba(35,48,71,0.16);
  transform: translateY(-3px) scale(1.018);
}

.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: #f6eadd;
  border-radius: var(--radius-md);
  border: 2px solid #a66b37;
  margin-bottom: 22px;
  box-shadow: 0 2px 10px rgba(35,48,71,0.08);
  color: #233047 !important;
  font-size: 1.06rem;
  transition: box-shadow 0.23s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(35,48,71,0.13);
}
.testimonial-card strong {
  color: #A66B37;
  font-family: var(--font-display);
  font-size: 1.07em;
  margin-left: 10px;
  letter-spacing: 0.01em;
}
.review-summary {
  background: #fff7ea;
  color: #233047;
  border-radius: var(--radius-sm);
  border: 2px dashed #A66B37;
  font-size: 1.04rem;
  padding: 18px 15px;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background: var(--color-footer-bg);
  color: #fff;
  margin-top: 60px;
  box-shadow: 0 -3px 18px rgba(35,48,71,0.04);
}
.footer-flex {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  padding: 36px 0 20px 0;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #fff7ea;
  font-family: var(--font-body);
  font-size: 1.03rem;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: #A66B37;
}
.footer-contact {
  font-family: var(--font-body);
  font-size: 1.01rem;
  color: #fff7ea;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 220px;
}
.footer-contact img { width: 18px; height: 18px; margin-right: 8px; vertical-align: sub; }

/*-------------
  BUTTONS
--------------*/
.button-primary {
  background: var(--color-accent);
  color: #fff;
  padding: 13px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.09rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(166,107,55,0.09);
  transition: background 0.23s, color 0.23s, transform 0.15s;
  outline: none;
  margin-top: 8px;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  display: inline-block;
}
.button-primary:hover, .button-primary:focus {
  background: #233047;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
.button-secondary {
  background: #fff;
  color: var(--color-accent);
  padding: 13px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  border: 2px solid var(--color-accent);
  border-radius: 30px;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.09rem;
  letter-spacing: 0.04em;
  transition: background 0.22s, color 0.18s, border 0.18s, transform 0.13s;
  display: inline-block;
}
.button-secondary:hover, .button-secondary:focus {
  background: var(--color-accent);
  color: #fff;
  border-color: #A66B37;
  transform: translateY(-1.5px) scale(1.03);
}

/* Forms (where present) */
input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid #D6C2AC;
  border-radius: 8px;
  background: #FFF9F3;
  font-family: var(--font-body);
  margin-bottom: 16px;
  transition: border 0.2s;
  font-size: 1.05rem;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: var(--color-accent);
  outline: none;
}

/*------------------------
  NAVIGATION + HEADER
-------------------------*/
header {
  background: #fff8ee;
  border-bottom: 2px solid #E7CEB2;
  box-shadow: 0 2px 14px rgba(166,107,55,0.04);
}
.header-flex img { max-height: 52px; margin-right: 10px; }
.main-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.09rem;
  color: var(--color-primary);
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 5px;
  letter-spacing: 0.012em;
  transition: color 0.19s, background 0.22s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #A66B37;
  color: #fff;
}

.header-flex .button-primary {
  margin-left: 8px;
}

/*-----------------------
  BURGER MENU (MOBILE)
-----------------------*/
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: background 0.19s;
  box-shadow: 0 2px 8px rgba(166, 107, 55, 0.08);
  cursor: pointer;
  margin-left: 14px;
}
.mobile-menu-toggle:hover {
  background: #233047;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #233047EE;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(.57,-0.01,0,1.07);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  color: #FFF9F3;
  font-size: 2.2rem;
  border: none;
  margin: 32px 20px 24px 0;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 10;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #A66B37;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100vw;
  align-items: flex-start;
  padding: 22px 36px;
  margin-top: 20px;
  z-index: 1;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  padding: 8px 3px;
  transition: color 0.15s, background 0.18s;
  border-radius: 8px;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #A66B37;
  background: #fff8f0;
}

@media (max-width: 1060px) {
  .container { max-width: 98vw; }
  .header-flex { gap: 10px; }
}
@media (max-width: 880px) {
  .content-wrapper { padding: 28px 8px; }
  .footer-flex { gap: 10px; flex-direction: column; align-items: flex-start; }
  .footer-contact { max-width: 100%; }
  .main-nav { gap: 14px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .header-flex {
    gap: 12px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .features-grid, .price-table {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .cta-banner {
    padding: 34px 8px;
  }
  .content-wrapper { padding: 20px 4px; }
}
@media (max-width: 480px) {
  .content-wrapper, .cta-banner, .section { padding: 13px 3px; }
  .footer-flex img { max-width: 45px; }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/*-------------------------------
   ADDITIONAL RETRO/VINTAGE STYLES
---------------------------------*/
body {
  background: repeating-linear-gradient(135deg,#f6ecd9 0 40px,#eee0c2 40px 80px);
}
.content-wrapper, .card, .testimonial-card, .price-package, .feature, .cta-banner {
  /* for vintage paper feel */
  box-shadow: 0 2px 22px rgba(163,140,120,0.14), 0 0px 1px 0px #ab9b89;
  border-radius: 13px;
  border-bottom: 3px solid #a66b37;
}
.cta-banner {
  background: repeating-linear-gradient(135deg, #A66B37 0 22px,#7c4035 22px 44px);
  border-bottom: none;
  box-shadow: 0 7px 34px rgba(166,107,55,0.20), 0 1px 2px #7c403531;
}
ul, ol {
  list-style: none;
  margin-bottom: 20px;
}
ul li, ol li {
  position: relative;
  padding-left: 1.7em;
  margin-bottom: 6px;
}
ul li:before, ol li:before {
  content: "◆";
  color: #A66B37;
  font-size: 1em;
  position: absolute;
  left: 0;
  top: 0.06em;
  font-family: var(--font-display);
}

/* Decorative classic lines/patterns for hero */
.content-wrapper h1, .content-wrapper h2 {
  position: relative;
  padding-bottom: 4px;
}
.content-wrapper h1:after, .content-wrapper h2:after {
  content: '';
  display: block;
  height: 3px;
  width: 44px;
  background: #A66B37;
  border-radius: 40px;
  margin-top: 7px;
  margin-bottom: 10px;
}
.cta-banner h2:after { background: #fff; margin-top: 7px; }

/*---------------------
 Text Sections on Kontakt
-----------------------*/
.text-section {
  margin-bottom: 22px;
  font-size: 1.05rem;
}
.text-section h2 { margin-bottom: 6px; font-size: 1.29rem; }

/*----------------------------
 Location Map Placeholder
-----------------------------*/
.location-map {
  background: #e9d8be;
  color: #233047;
  border-radius: var(--radius-sm);
  padding: 20px;
  font-style: italic;
  margin-top: 18px;
  box-shadow: 0 2px 7px rgba(126,107,78,0.07);
}

/*-----------------
 Cookie Banner
------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: #FCF1E0;
  color: #233047;
  border-top: 3px solid #A66B37;
  padding: 20px 40px 20px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
  font-family: var(--font-body);
  box-shadow: 0 -6px 40px rgba(35,48,71,0.12);
  animation: slideUp 0.45s cubic-bezier(.7,-0.1,.31,1.19);
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-banner__text {
  max-width: 700px;
  font-size: 1.02rem;
}
.cookie-banner__buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-banner button, .cookie-banner .button {
  min-width: 130px;
  padding: 11px 18px;
  font-size: 1.02rem;
  border-radius: 26px;
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.20s, color 0.17s;
}
.cookie-banner .accept {
  background: var(--color-accent);
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #9e5a17;
}
.cookie-banner .reject {
  background: #fff;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #A66B37;
  color: #fff;
}
.cookie-banner .settings {
  background: #fff8ee;
  color: #233047;
  border: 2px dashed #233047;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #233047;
  color: #fff8ee;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    padding: 14px 5px 14px 8px;
    align-items: flex-start;
  }
  .cookie-banner__buttons { gap: 6px; }
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 4010;
  background: rgba(35,48,71,0.35);
  display: none;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.33s;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff8ee;
  color: #233047;
  border-radius: 18px;
  box-shadow: 0 8px 38px rgba(35,48,71,0.18);
  max-width: 380px;
  width: 94vw;
  padding: 36px 28px 28px 28px;
  position: relative;
  font-family: var(--font-body);
  animation: modalFadeIn 0.43s cubic-bezier(.7,-0.05,.31,1.15);
}
.cookie-modal h2 {
  font-family: var(--font-display);
  font-size: 1.35em;
  margin-bottom: 14px;
  color: #A66B37;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  font-size: 1.07rem;
  margin-bottom: 20px;
}
.cookie-modal input[type="checkbox"] {
  margin-right: 9px;
  accent-color: #A66B37;
  width: 21px; height: 21px;
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 8px;
  margin-top: 17px;
}
.cookie-modal .modal-buttons .button {
  padding: 8px 20px;
  font-size: 1rem;
}
.cookie-modal-close {
  background: transparent;
  border: none;
  font-size: 1.45rem;
  color: #A66B37;
  position: absolute;
  top: 8px;
  right: 13px;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover { color: #233047; }
@media (max-width: 470px) {
  .cookie-modal { padding: 22px 4px 8px 9px; width: 97vw; }
}

/*---------------------
   VISUAL MICRO-ANIMATIONS
----------------------*/
a, button, .feature, .card, .testimonial-card, .price-package {
  transition-property: color, background, box-shadow, border, transform;
  transition-duration: 0.18s, 0.2s, 0.21s, 0.2s, 0.18s;
  transition-timing-function: cubic-bezier(.55,0,.15,1.1);
}

/* Hide visually but keep accessible */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  border: 0 !important;
}

/*-------------
Miscellaneous
---------------*/
::-webkit-input-placeholder { color: #a79884; }
::-moz-placeholder { color: #a79884; }
:-ms-input-placeholder { color: #a79884; }
::placeholder { color: #a79884; }

::-webkit-scrollbar {
  width: 10px;
  background: #e6dac3;
  border-radius: 9px;
}
::-webkit-scrollbar-thumb {
  background: #A66B37;
  border-radius: 9px;
}

/*--------------------------
   Print/Minimal adjustments
---------------------------*/
@media print {
  body, .container, .content-wrapper, .cta-banner, .card, .testimonial-card { background: #fff !important; color:#333 !important; box-shadow:none !important; }
  header, .main-nav, .mobile-menu, .footer-flex { display: none !important; }
}
