/* CSS RESET & BASELINE ----------------------------------------------------- */
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.6;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #E6DCCD;
  color: #23374D;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #23374D;
  text-decoration: underline;
  outline: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #CCA923;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 20px;
}
strong {
  font-weight: 700;
}

/* BRAND FONTS --------------------------------------------------------------- */
h1, h2, h3, h4, .display, .tagline {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #23374D;
}

h1 {
  font-size: 2.75rem;
  margin-bottom: 18px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

p, li, address {
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #23374D;
}

.subheadline, .tagline {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.2rem;
  color: #CCA923;
  margin-bottom: 20px;
}

/* LAYOUT -------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.text-section {
  max-width: 850px;
  margin: 0 auto 20px auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  background: rgba(255,255,255,0.55);
  border-radius: 32px 12px 24px 28px;
  box-shadow: 0 4px 32px 0 rgba(87,74,41,0.09);
  position: relative;
}

@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .section {
    margin-bottom: 36px;
    padding: 24px 10px;
    border-radius: 18px;
  }
}

/* FLEXBOX GLOBAL PATTERNS --------------------------------------------------- */
.card-container,
.card-grid,
.feature-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-container {
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 28px 0 rgba(35,55,77,0.07);
  padding: 28px;
  flex: 1 1 270px;
}
.content-grid {
  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: 28px 32px;
  background: #f6f4ef;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 3px 12px 0 rgba(35,55,77,0.10);
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 24px;
  margin-bottom: 16px;
  list-style: none;
}
.feature-grid li {
  background: #fff;
  border-radius: 16px 10px 22px 12px;
  box-shadow: 0 2px 10px 0 rgba(204,169,35,0.06);
  flex: 1 1 210px;
  min-width: 210px;
  padding: 26px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}
.feature-grid img {
  width: 46px;
  height: 46px;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px 0;
  }
  .feature-grid li {
    width: 100%;
    min-width: 0;
    padding: 18px 12px 12px 12px;
  }
}

.service-list, .pricing-info, .quick-facts {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.service-list li, .pricing-info li, .quick-facts li {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 5px 0 rgba(35,55,77,0.06);
  padding: 18px 20px;
  color: #23374D;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .service-list li, .pricing-info li, .quick-facts li {
    font-size: 0.97rem;
    padding: 14px 12px;
  }
}

/****** HEADER & MAIN NAVIGATION **********************************************/
header {
  background: #fff;
  box-shadow: 0 2px 24px 0 rgba(35,55,77,0.12);
  padding: 0 0;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 111;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  padding: 14px 22px 14px 24px;
  display: flex;
  align-items: center;
  z-index: 112;
}
.logo img {
  height: 38px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  text-decoration: none;
  color: #23374D;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  font-weight: 500;
  box-sizing: border-box;
}
.main-nav a:hover, .main-nav a:focus {
  background: #CCA923;
  color: #fff;
}
.main-nav .cta-primary {
  background: #CCA923;
  color: #fff;
  font-weight: bold;
  border-radius: 18px 7px 14px 16px;
  box-shadow: 0 2px 8px rgba(204,169,35,0.16);
  padding: 10px 22px;
  margin-left: 10px;
  transition: background 0.18s, transform 0.18s;
}
.main-nav .cta-primary:hover,
.main-nav .cta-primary:focus {
  background: #23374D;
  color: #CCA923;
  transform: scale(1.08);
}

/* MOBILE NAV BAR ------------------------------------------------------------ */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #CCA923;
  cursor: pointer;
  margin-left: 12px;
  z-index: 115;
  transition: color 0.2s, transform 0.25s;
}
.mobile-menu-toggle:active {
  transform: scale(1.13) rotate(8deg);
  color: #23374D;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 820px) {
  .main-nav {
    gap: 0;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU --------------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(227, 220, 202, 0.98);
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(0.54, 0, 0.58, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 48px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #23374D;
  cursor: pointer;
  z-index: 1300;
  transition: color 0.19s, transform 0.12s;
}
.mobile-menu-close:hover {
  color: #CCA923;
  transform: scale(1.15);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
  padding: 32px 32px 0 32px;
}
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: #23374D;
  background: none;
  padding: 18px 0 14px 0;
  border-bottom: 1px dotted #CCA923;
  border-radius: 0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #CCA923;
  background: none;
}

@media (min-width: 769px) {
  .mobile-menu { display: none; }
}

/* HERO SECTIONS ------------------------------------------------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  /* The background/pattern decorative flair: */
  background: rgba(255,255,255,0.85);
  border-radius: 32px 12px 24px 28px;
  box-shadow: 0 4px 32px 0 rgba(87,74,41,0.15);
  position: relative;
}
section:first-of-type {
  background: linear-gradient(131deg, #E6DCCD 60%, #CCA923 160%);
  color: #23374D;
  border-radius: 0 0 48px 48px;
  box-shadow: 0 4px 52px 0 rgba(204,169,35,0.05);
  /* Artistic background brush effect */
}

@media (max-width: 768px) {
  section {
    margin-bottom: 30px;
    padding: 20px 5px;
    border-radius: 18px;
  }
  section:first-of-type {
    border-radius: 0 0 24px 24px;
    padding-top: 20px;
  }
}

/******* CTAS, BUTTONS, LINKS ************************************************/
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #CCA923;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  border: none;
  padding: 14px 28px;
  border-radius: 23px 9px 18px 15px;
  box-shadow: 0 5px 24px rgba(204,169,35,0.14), 0 2px 4px 0 rgba(35,55,77,0.05);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-top: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.19s, transform 0.18s, color 0.16s;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #23374D;
  color: #CCA923;
  transform: scale(1.06);
  text-shadow: 0 1px 5px #E6DCCD;
}
.cta-link {
  font-family: 'Playfair Display', serif;
  color: #CCA923;
  background: none;
  border: none;
  font-size: 1.04rem;
  font-weight: 600;
  padding: 6px 15px;
  border-radius: 7px;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.17s, background 0.16s;
}
.cta-link:hover, .cta-link:focus {
  color: #23374D;
  background: #f4eee1;
}

/* FORMS (Kontakt) ------------------------------------------------------------ */
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 10px 12px 12px;
  border: 2px solid #CCA923;
  border-radius: 11px;
  background: #fff;
  margin-bottom: 14px;
  box-shadow: 0 1px 6px 0 rgba(35,55,77,0.08);
  color: #23374D;
  transition: border 0.2s;
}
input:focus, textarea:focus, select:focus {
  border-color: #23374D;
  outline: none;
}

/****** TESTIMONIALS *********************************************************/
.testimonial-card {
  background: #fff;
  color: #23374D;
  border-left: 6px solid #CCA923;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.21s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 35px 0 rgba(204,169,35,0.13);
}
.testimonial-meta {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.99rem;
  color: #23374D;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.star-rating {
  color: #CCA923 !important;
  font-size: 1.2em;
  letter-spacing: 1px;
}

/****** FOOTER ***************************************************************/
footer {
  background: #23374D;
  color: #fff;
  border-radius: 48px 48px 0 0;
  box-shadow: 0 -3px 30px rgba(35,55,77,0.22);
  padding: 40px 0 20px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
  margin-top: 60px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.01rem;
}
.footer-menu a {
  color: #CCA923;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 7px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  transition: background 0.17s, color 0.14s;
}
.footer-menu a:hover {
  background: #fff2c9;
  color: #1a2330;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  justify-content: center;
  margin: 0 0 20px 0;
  flex-wrap: wrap;
}
.footer-contact img {
  width: 54px;
  margin: 0 14px 0 0;
}
.footer-contact address {
  font-style: normal;
  color: #fff;
  line-height: 1.5;
  font-size: 1rem;
  margin-right: 18px;
}
.footer-contact a {
  color: #CCA923;
  text-decoration: underline;
}
.footer-social {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-top: 8px;
}
.footer-social img {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  padding: 5px;
  transition: box-shadow 0.16s, transform 0.13s;
  box-shadow: 0 2px 6px 0 rgba(204,169,35,0.13);
}
.footer-social img:hover {
  box-shadow: 0 6px 28px 0 rgba(204,169,35,0.22);
  transform: scale(1.12) rotate(-7deg);
}
.footer-copyright {
  width: 100%;
  text-align: center;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.98rem;
  margin-top: 16px;
}

@media (max-width: 768px) {
  footer {
    border-radius: 20px 20px 0 0;
    padding: 26px 0 12px 0;
  }
  .footer-contact {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin: 0 0 12px 0;
  }
  .footer-contact address {
    margin-right: 0;
    font-size: 0.98rem;
  }
  .footer-social {
    margin-top: 4px;
  }
}

/******* SPECIAL DECORATIVE ELEMENTS (ARTISTIC) ******************************/
.section:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 20px; left: 10px;
  width: 170px; height: 40px;
  background: #CCA923;
  opacity: 0.06;
  border-radius: 80px 40px;
  transform: rotate(-7deg);
  filter: blur(10px);
  pointer-events: none;
}
.section:nth-child(2n):after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 20px; right: 14px;
  width: 120px; height: 36px;
  background: #23374D;
  opacity: 0.12;
  border-radius: 80px 70px 65px 49px;
  transform: rotate(8deg);
  filter: blur(13px);
  pointer-events: none;
}

/******** PAGE-SPECIFIC/UTILITY **********************************************/
.about-image-placeholder img {
  background: #fff2c9;
  border-radius: 50%;
  box-shadow: 0 6px 28px 0 rgba(204,169,35,0.15);
  padding: 12px;
  width: 80px;
  margin: 0 auto;
  display: block;
}

/* LIST ICONS (using img) ---------------------------------------------------- */
.text-section ul li,
.content-wrapper ul li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.text-section ul li img,
.content-wrapper ul li img {
  width: 22px;
  height: 22px;
  margin-right: 6px;
}

/* Anim fadein utility ------------------------------------------------------ */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(32px); }
  100% { opacity: 1; transform: translateY(0); }
}
.section, .card, .testimonial-card, .feature-grid li {
  animation: fadeInUp 0.77s cubic-bezier(0.41, 0.88, 0.5, 1) both;
}

/* Anim for mobile menu ------------------------------------------------------ */
@keyframes slideMenuIn {
  0% { transform: translateX(-100vw); }
  100% { transform: translateX(0); }
}
.mobile-menu.open {
  animation: slideMenuIn 0.35s cubic-bezier(0.56,0,0.57,1) both;
}

/******* RESPONSIVE FLEX DIRECTION *******************************************/
@media (max-width: 900px) {
  .content-wrapper,
  .text-section,
  .card-container,
  .feature-grid,
  .footer-contact {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .text-image-section, .card-container, .content-grid, .feature-item, .footer-contact {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px !important;
  }
  .testimonial-card { padding: 18px 14px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
}

/******* COOKIE CONSENT BANNER & MODAL ****************************************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #23374D;
  color: #fff;
  box-shadow: 0 -3px 30px rgba(35,55,77,0.32);
  padding: 22px 28px 18px 28px;
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  justify-content: center;
  font-size: 1rem;
  animation: fadeInUp 0.5s cubic-bezier(.3, 0, .5, 1) both;
}
.cookie-banner p {
  color: #fff;
  max-width: 380px;
  font-size: 1.03rem;
  line-height: 1.5;
  margin-bottom: 0;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  margin-left: 22px;
}
.cookie-banner button {
  background: #CCA923;
  color: #fff;
  border: none;
  border-radius: 13px 6px 11px 9px;
  font-family: 'Playfair Display', serif;
  font-size: 1.01rem;
  padding: 9px 19px;
  margin: 0 7px 0 0;
  cursor: pointer;
  box-shadow: 0 2px 7px rgba(204,169,35,0.14);
  transition: background 0.16s, color 0.18s, transform 0.19s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #23374D;
  color: #CCA923;
  transform: scale(1.05);
}
.cookie-banner button.settings {
  background: #E6DCCD;
  color: #23374D;
  border: 1px solid #CCA923;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #CCA923;
  color: #fff;
  border: 1px solid #CCA923;
}

@media (max-width: 600px) {
  .cookie-banner {
    padding: 13px 7px 12px 7px;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
  }
  .cookie-banner .cookie-btns {
    margin-left: 0;
    gap: 9px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(35, 55, 77, 0.79);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.41s cubic-bezier(.3, 0, .5, 1) both;
}
.cookie-modal-dialog {
  background: #fff;
  color: #23374D;
  border-radius: 22px 11px 19px 13px;
  box-shadow: 0 3px 24px 0 rgba(35,55,77,0.16);
  padding: 34px 42px 30px 42px;
  max-width: 380px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.cookie-modal-dialog h3 {
  color: #23374D;
  font-size: 1.28rem;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}
.cookie-modal-dialog .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 13px;
}
.cookie-modal-dialog .cookie-category input[type=checkbox],
.cookie-modal-dialog .cookie-category input[type=radio] {
  accent-color: #CCA923;
  width: 22px; height: 22px;
}
.cookie-modal-dialog .cookie-category label {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal-dialog .modal-btns {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  font-size: 1.56rem;
  color: #CCA923;
  cursor: pointer;
  transition: color 0.16s, transform 0.18s;
}
.cookie-modal-close:hover {
  color: #23374D;
  transform: scale(1.08);
}

/********* UTILITY ***********************************************************/
.hide { display: none !important; }
.nowrap { white-space: nowrap; }

/********* ACCESSIBILITY & FOCUS *********************************************/
a, button, input, textarea, select {
  outline: none;
}
a:focus, .cta-primary:focus, .cta-link:focus, .main-nav a:focus, .mobile-nav a:focus, button:focus {
  box-shadow: 0 0 0 2px #CCA92333;
}
::-webkit-input-placeholder { color: #23374D; opacity: 0.76; }
::-moz-placeholder { color: #23374D; opacity: 0.76; }
:-moz-placeholder { color: #23374D; opacity: 0.76; }
:-ms-input-placeholder { color: #23374D; opacity: 0.76; }
::placeholder { color: #23374D; opacity: 0.76; }

/********* ARTISTIC FLAIR FOR CREATIVE STYLE *********************************/
.section, .card, .testimonial-card, .feature-grid li, .service-list li, .quick-facts li {
  border-width: 1.5px;
  border-style: solid;
  border-color: rgba(204,169,35,0.09);
  position: relative;
}
.section {
  box-shadow: 0 8px 44px 0 rgba(204,169,35,0.08), 0 2px 8px 0 rgba(35,55,77,0.08);
}
.section:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 22px;
  right: 26px;
  width: 62px; height: 18px;
  background: #e6dccd;
  opacity: 0.15;
  border-radius: 23px 7px 17px 13px;
  pointer-events: none;
  box-shadow: 0 0 32px 5px #CCA92322;
}
.card {
  border-radius: 18px 5px 15px 14px;
  background: #fffdf7;
  box-shadow: 0 4px 22px 0 rgba(204,169,35,0.07);
}

/********* ARTISTIC TYPOGRAPHY ***********************************************/
h1, h2, h3, .cta-primary {
  letter-spacing: 0.015em;
}
h1 {
  text-shadow: 0 3px 32px #cca92344, 0 1px 0 #fff;
}
h2, h3 {
  text-shadow: 0 1px 10px #cca9231a;
}

/********* OVERRIDES FOR UNIQUE ELEMENTS *************************************/
@media (max-width:600px) {
  h1 { font-size: 1.36rem; }
  h2 { font-size: 1.08rem; }
  .main-nav .cta-primary, .cta-primary, .cta-link {
    font-size: 1rem;
    padding: 10px 14px;
  }
}

/***** END OF FILE ***********************************************************/
