/* ==== 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.6;
  background: #f8f9fb;
  color: #1a2231;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #193554;
  text-decoration: none;
  transition: color .2s cubic-bezier(.4,.0,.2,1);
}
a:hover, a:focus {
  color: #D0A16B;
  text-decoration: underline;
}

ul, ol {
  padding-left: 24px;
  margin: 16px 0;
}
li {
  margin-bottom: 8px;
}

/* ===== BRAND COLORS AS CSS VARIABLES ===== */
:root {
  --color-primary: #193554;
  --color-secondary: #D0A16B;
  --color-accent: #FFFFFF;
  --color-bg-light: #f8f9fb;
  --color-bg-decor: #e0e7ef;
  --color-text: #1a2231;
  --color-dark: #10151f;
  --color-grey: #8C98B4;
  --color-success: #3CB371;
  --color-danger: #D96E6E;
}

/* ===== TYPOGRAPHY ===== */
body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--color-text);
  background: var(--color-bg-light);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.5px;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  text-shadow: 0 4px 24px rgba(208, 161, 107, 0.05);
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--color-secondary);
  letter-spacing: 0.1em;
}
h4, h5, h6 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
p {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--color-dark);
  font-size: 1rem;
  margin-bottom: 10px;
}
.subheadline {
  color: var(--color-secondary);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: .03em;
  line-height: 1.5;
}
strong {
  font-weight: 700;
}

/* ====== GLOBAL CONTAINER ====== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

/* ====== HEADER ====== */
header {
  background: var(--color-accent);
  box-shadow: 0 2px 16px 0 rgba(25,53,84,0.05);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px 12px 20px;
  gap: 18px;
}
header a img {
  max-height: 42px;
  margin-right: 24px;
}

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
.main-nav a {
  padding: 6px 11px;
  border-radius: 26px;
  transition: background .17s cubic-bezier(.45,.22,.39,1), color .2s;
  color: var(--color-primary);
  position: relative;
}
.main-nav a.button-primary {
  background: var(--color-secondary);
  color: var(--color-accent);
  box-shadow: 0 2px 12px 0 rgba(208,161,107,0.10);
  font-weight: 700;
  margin-left: 12px;
}
.main-nav a.button-primary:hover,
.main-nav a.button-primary:focus {
  background: var(--color-primary);
  color: var(--color-accent);
}
.main-nav a:hover:not(.button-primary) {
  background: var(--color-bg-decor);
  color: var(--color-secondary);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--color-secondary);
  cursor: pointer;
  z-index: 160;
  margin-left: 12px;
  transition: color .2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--color-primary);
}

/* ====== MOBILE MENU NAVIGATION ====== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25,53,84,0.95);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.3s cubic-bezier(.65,.16,.23,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-secondary);
  font-size: 2rem;
  align-self: flex-end;
  margin: 24px 32px 16px 0;
  cursor: pointer;
  transition: color .2s;
  z-index: 201;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 0 0 0;
  position: relative;
  align-items: center;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: var(--color-accent);
  padding: 10px 34px;
  border-radius: 40px;
  transition: background .2s, color .2s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/* ====== MAIN CONTENT & LAYOUT PATTERNS ====== */
main {
  min-height: 60vh;
  background: var(--color-bg-light);
  padding-bottom: 48px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 20px;
  box-shadow: 0 6px 26px 0 rgba(25,53,84,0.06);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

/* Decorative creative-artistic backgrounds (watercolor, spot, etc. - fallback for solid color) */
.section {
  position: relative;
  overflow: hidden;
}
.section:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -10vw;
  top: -60px;
  width: 60vw;
  height: 300px;
  background: rgba(208,161,107,0.09);
  border-radius: 999px 999px 400px 222px / 800px 180px 320px 150px;
  pointer-events: none;
  opacity: .8;
}
.section > * {
  position: relative;
  z-index: 1;
}

/* ==== FLEXBOX CONTENT STRUCTURES ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-accent);
  border-radius: 16px;
  box-shadow: 0 2px 15px rgba(25,53,84,.08);
  flex: 1 1 320px;
  min-width: 250px;
  max-width: 100%;
  padding: 26px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow .2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 30px rgba(25,53,84,0.18);
}

.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;
  margin-bottom: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(25,53,84,0.05);
  padding: 20px;
  min-width: 260px;
  max-width: 600px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .18s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 32px rgba(208,161,107,0.22), 0 0px 0 #00000000;
  transform: translateY(-2px) scale(1.015);
}
.testimonial-card p {
  color: var(--color-dark);
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}
.testimonial-card span {
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-left: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}


/* === FEATURE GRID, TEAM & GALLERY SECTIONS === */
.feature-grid, .team, .style-sections, .concept-list, .blog-list, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
  margin-top: 18px;
}
.feature-grid > div, .team > div, .style-sections > div, .concept-list > div, .service-list > div, .blog-list > div {
  background: var(--color-accent);
  border-radius: 14px;
  box-shadow: 0 2px 13px rgba(25,53,84,0.05);
  padding: 22px 20px 22px 20px;
  flex: 1 1 240px;
  min-width: 210px;
  transition: box-shadow .21s, transform .18s;
  margin-bottom: 20px;
  position: relative;
}
.feature-grid > div:hover, .team > div:hover, .style-sections > div:hover, .concept-list > div:hover, .service-list > div:hover, .blog-list > div:hover {
  box-shadow: 0 6px 30px rgba(208,161,107,0.15), 0 1px 2px #0000001a;
  transform: translateY(-3px) scale(1.025);
}
.feature-grid img, .team img, .style-sections img, .service-list img {
  width: 48px;
  height: 48px;
}

/* ==== FAQ LIST (Kontakt) ==== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 10px;
}
.faq-list li {
  background: var(--color-bg-decor);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 0;
}

/* ==== CONTACT DETAILS ==== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 10px;
}
.contact-details div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.contact-details a {
  color: var(--color-primary);
  text-decoration: underline;
}

.map-description {
  color: var(--color-grey);
  font-size: 0.98rem;
  margin-top: 8px;
}

/* ==== BUTTONS ==== */
.button-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--color-secondary);
  color: var(--color-accent) !important;
  border: none;
  border-radius: 28px;
  box-shadow: 0 3px 14px 0 rgba(208,161,107,0.10);
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: background .22s, color .22s, box-shadow .2s, transform .13s;
  cursor: pointer;
  outline: none;
  display: inline-block;
  margin-top: 14px;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}
.button-primary:hover, .button-primary:focus {
  background: var(--color-primary);
  color: var(--color-secondary) !important;
  box-shadow: 0 8px 30px rgba(25,53,84,0.11);
  transform: translateY(-2px) scale(1.035);
}

/* ==== FOOTER ==== */
footer {
  background: var(--color-primary);
  color: var(--color-accent);
  padding-top: 40px;
  padding-bottom: 24px;
}
footer .container {
  flex-direction: column;
  gap: 0;
}
.footer-main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  margin-bottom: 16px;
}
.footer-main a img {
  max-height: 40px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: var(--color-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  padding: 3px 0;
  transition: color .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent);
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.98rem;
  color: var(--color-bg-light);
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  vertical-align: middle;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.94rem;
  color: var(--color-accent);
  padding-top: 15px;
  padding-bottom: 5px;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ==== BLOG-LIST ==== */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.blog-list > div {
  flex: 1 1 260px;
  background: var(--color-accent);
  border-radius: 13px;
  box-shadow: 0 2px 13px rgba(208,161,107,0.05);
  padding: 22px 18px 18px 18px;
  margin-bottom: 20px;
}
.blog-list a {
  display: inline-block;
  color: var(--color-secondary);
  margin-top: 7px;
  font-weight: 600;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  width: 100vw;
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 -4px 26px rgba(25,53,84,0.09);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 24px 18px;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 1rem;
  animation: slideUpBanner .6s cubic-bezier(.22,.68,.57,1.11);
}
@keyframes slideUpBanner {
  from {
    transform: translateY(100%);
    opacity: .6;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.cookie-banner p {
  margin: 0 20px 0 0;
  flex: 2 1 220px;
  font-size: 0.98rem;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  outline: none;
  border-radius: 25px;
  padding: 8px 20px;
  font-size: 1rem;
  font-weight: 600;
  background: var(--color-secondary);
  color: var(--color-accent);
  transition: background .18s, color .18s, box-shadow .12s;
  margin-left: 0px;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(208,161,107,0.13);
}
.cookie-btn.settings {
  background: var(--color-primary);
  color: var(--color-accent);
}
.cookie-btn.reject {
  background: var(--color-danger);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
  box-shadow: 0 5px 16px rgba(25,53,84,0.10);
}

/* ===== COOKIE SETTINGS MODAL ===== */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(25,53,84,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}
.cookie-modal {
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 22px;
  box-shadow: 0 8px 44px 0 rgba(25,53,84,0.17);
  padding: 38px 28px 28px 28px;
  min-width: 320px;
  min-height: 180px;
  max-width: 95vw;
  animation: appearModal .4s cubic-bezier(.22,.68,.57,1.11);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
@keyframes appearModal {
  from {
    transform: scale(.85) translateY(60px);
    opacity: .5;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
.cookie-modal h3 {
  color: var(--color-secondary);
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.cookie-categories {
  display: flex;
  gap: 14px;
  flex-direction: column;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color-bg-decor);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 1rem;
}
.cookie-category input {
  accent-color: var(--color-secondary);
  width: 20px;
  height: 20px;
}
.cookie-category .always-on {
  color: var(--color-success);
  font-size: .98em;
  font-family: inherit;
  font-weight: 700;
  margin-left: 7px;
}
.cookie-modal .cookie-btn-group {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 2rem;
  cursor: pointer;
  transition: color .2s;
}
.cookie-modal-close:hover {
  color: var(--color-secondary);
}

/* ==== MEDIA QUERIES - RESPONSIVE DESIGN ==== */
@media (max-width: 1200px) {
  .container { max-width: 94vw; }
}
@media (max-width: 990px) {
  .feature-grid, .team, .style-sections, .concept-list, .service-list, .blog-list {
    gap: 18px;
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .main-nav { gap: 8px; }
  .feature-grid > div, .team > div, .style-sections > div, .concept-list > div, .service-list > div, .blog-list > div {
    flex: 1 1 180px;
    min-width: 150px;
  }
  .footer-main { gap: 18px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1rem; }
  .section { padding: 30px 7px; margin-bottom: 40px; }
  .content-wrapper { gap: 16px; }
  .feature-grid, .team, .style-sections, .concept-list, .service-list, .blog-list {
    flex-direction: column;
    gap: 14px;
  }
  .footer-main { flex-direction: column; gap: 20px; }
  .footer-nav { flex-direction: row; gap: 16px; }
  .blog-list > div, .feature-grid > div, .team > div, .style-sections > div, .concept-list > div, .service-list > div {
    min-width: 80vw;
    padding: 16px 8px;
  }
  .testimonial-card {
    max-width: 99vw;
    padding: 16px 9px;
    gap: 12px;
  }
  .container { padding: 0 7px; }
  .card { padding: 12px 8px; }
  .text-image-section { flex-direction: column; gap: 20px; }
}
@media (max-width: 700px) {
  header .container {
    flex-direction: row;
    align-items: center;
    padding: 8px 5px 8px 8px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-contact div { font-size: 0.95rem; }
}
@media (max-width: 520px) {
  .footer-main { flex-direction: column; align-items: flex-start; }
  .footer-nav { flex-direction: column; gap: 8px; }
  h1 { font-size: 1.15rem; }
  .section { padding: 18px 2px; margin-bottom: 22px; }
  .testimonial-card { padding: 12px 4px; }
}

/* ==== CREATIVE / ARTISTIC UNIQUENESS ==== */
.section:after {
  content: "";
  position: absolute;
  right: -25vw;
  bottom: -40px;
  width: 42vw;
  height: 140px;
  background: rgba(25,53,84,0.10);
  border-radius: 999px 150px 400px 222px / 800px 120px 320px 150px;
  pointer-events: none;
  z-index: 0;
  opacity: .38;
}
/* Accent artistic underline for h2 */
h2 {
  position: relative;
  padding-bottom: 4px;
}
h2:after {
  content: "";
  display: block;
  width: 72px;
  height: 6px;
  background: var(--color-secondary);
  border-radius: 8px;
  position: absolute;
  left: 0; bottom: -10px;
  opacity: .19;
}

/* Decorative dots for testimonial cards */
.testimonial-card:before {
  content: "";
  display: block;
  position: absolute;
  left: 10px; top: 8px;
  width: 18px;
  height: 18px;
  background: var(--color-secondary);
  border-radius: 50%;
  opacity: .18;
  z-index: 0;
}

/* Slight tilt for some cards/artistic effect */
.feature-grid > div:nth-child(2),
.team > div:nth-child(3),
.style-sections > div:nth-child(2),
.blog-list > div:nth-child(2) {
  transform: rotate(-1.5deg);
  background: #f9f4ef;
  box-shadow: 0 6px 18px rgba(208,161,107,0.065);
}

/* Special font for cite/quote */
blockquote, .testimonial-card p {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: .03em;
}

/* ========== SCROLLBAR FOR BRAND ========== */
::-webkit-scrollbar {
  width: 10px;
  background: var(--color-bg-decor);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 8px;
}

/* ========== MICRO-INTERACTIONS ========== */
.card, .feature-grid > div, .blog-list > div, .service-list > div, .testimonial-card,
.button-primary, .cookie-btn, .cookie-category {
  transition: box-shadow .2s, transform .13s, background .18s, color .16s;
}

/* ========== FOCUS OUTLINE ACCESSIBILITY ========== */
:focus { outline: 2px solid var(--color-secondary); outline-offset: .5px; }
:focus:not(:focus-visible) { outline: none; }

/* ==== Z-INDEX ==== */
header { z-index: 100; }
.mobile-menu { z-index: 200; }
.cookie-banner { z-index: 9999; }
.cookie-modal-overlay { z-index: 10001; }

/* ========== PRINT STYLE TRIM (optional) ========== */
@media print {
  * { color: #000 !important; background: #fff !important; box-shadow: none !important; }
  header, footer, .mobile-menu, .cookie-banner { display: none !important; }
}
