/* ------------------------------------
   CSS RESET & BASELINE NORMALISATION
------------------------------------- */
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,
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 {
  min-height: 100%;
  font-size: 16px;
}
body {
  line-height: 1.5;
  background: #F6F6F6;
  color: #25303B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height:100vh;
}
img, svg { display: inline-block; max-width:100%; height:auto; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul, ol { list-style-position: inside; }
*, *::before,*::after { box-sizing: inherit; }

/* ------------------------------------
    TYPOGRAPHY — Creative Artistic
------------------------------------- */
h1, .display-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  color: #25303B;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.18;
  margin-bottom: 20px;
}
h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: #C1B086;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  color: #25303B;
  font-weight: 600;
  margin-bottom: 12px;
}
h4,h5,h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #25303B;
}
p, ul, ol, address {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #25303B;
  margin-bottom: 16px;
}
ul, ol {
  margin-bottom: 16px;
  padding-left: 18px;
  line-height:1.6;
  font-size:1rem;
}
ul li, ol li {
  margin-bottom: 8px;
}
strong {
  color: #C1B086;
  font-weight: 700;
  font-family: 'Playfair Display', Georgia, serif;
}
.subheadline {
  font-size: 1.18rem;
  color: #84774c;
  margin-bottom: 22px;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: italic;
}

/* ------------------------------------
    CONTAINER & LAYOUT FLEX PATTERNS
------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 26px 32px 26px 32px/32px 26px 32px 26px;
  box-shadow: 0 8px 28px rgba(37,48,59,0.10);
  position: relative;
  z-index:1;
}

/* Creative Overlay Brushstroke for Artistic Style */
.section::before {
  content: '';
  display: block;
  position: absolute;
  left:-8px; top:-8px;
  width: 38px; height: 38px;
  border-radius: 50% 60% 65% 70%/60% 40% 70% 70%;
  background: #C1B08644;
  z-index: 0;
  filter: blur(6px);
}
.section > .container {
  position: relative;
  z-index: 1;
}

/* Feature Grid (used in index, kollektionen) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  justify-content: flex-start;
  align-items: stretch;
}
.feature-grid li {
  background: #fcf8f2;
  border-radius: 22px;
  box-shadow: 0 2px 10px rgba(193,176,134,0.11);
  flex: 1 1 265px;
  min-width: 220px;
  max-width: 310px;
  padding: 22px 20px 20px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: flex-start;
  border-left: 5px solid #C1B086;
  transition: box-shadow .22s, border-color .33s;
}
.feature-grid li:hover{
  box-shadow: 0 6px 20px rgba(37,48,59,0.11);
  border-left: 5px solid #25303B;
}
.feature-grid img {
  width: 38px;
  margin-bottom: 7px;
}
.price {
  background: #C1B086;
  color: #fff;
  padding: 2px 10px;
  border-radius: 13px;
  font-size: 0.92em;
  font-weight: 700;
  margin-left:5px;
  letter-spacing: .02em;
}

/* Content alignment blocks */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(37,48,59,0.07);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 22px;
  min-width:240px;
  max-width:360px;
  transition: box-shadow .18s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 #c1b08633;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 340px;
}

/* CTA Banner */
.cta-banner {
  margin-bottom: 0;
  background: #25303B;
  color: #fff;
  border-radius: 0 0 36px 36px/36px 36px 0 0;
  box-shadow: 0 6px 36px rgba(37,48,59,0.20);
  padding: 36px 0 36px 0;
}
.cta-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-banner .content-wrapper {
  align-items: center;
  gap: 22px;
}
.cta-banner p {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Playfair Display', Georgia, serif;
  margin-bottom: 12px;
}

/* ------------------------------------
   BUTTONS
------------------------------------- */
.btn-primary {
  background: #C1B086;
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.15rem;
  padding: 12px 38px;
  border: none;
  border-radius: 23px;
  cursor: pointer;
  box-shadow: 0 2px 10px #c1b08622;
  transition: background 0.3s, box-shadow 0.25s, transform 0.15s;
  margin-top: 10px;
  display: inline-block;
  letter-spacing:.03em;
}
.btn-primary:hover, .btn-primary:focus{
  background: #25303B;
  color: #fff;
  box-shadow: 0 5px 23px #25303b14;
  transform: translateY(-3px) scale(1.03);
}
.btn-secondary {
  background: #fff;
  color: #C1B086;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.07rem;
  padding: 10px 30px;
  border: 2px solid #C1B086;
  border-radius: 23px;
  cursor: pointer;
  box-shadow: 0 1px 7px #c1b08612;
  transition: background 0.3s, color 0.3s, border 0.25s;
  margin-top: 8px;
  display: inline-block;
  letter-spacing:.03em;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #C1B086;
  color: #fff;
  border-color: #25303B;
}

/* ------------------------------------
   MAIN & FOOTER NAVIGATION
------------------------------------- */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding:24px 0 12px 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.09rem;
  z-index: 20;
}
.main-nav a {
  color:#25303B;
  padding: 6px 14px;
  border-radius:15px;
  transition: background 0.19s, color 0.28s, box-shadow 0.22s;
  position:relative;
}
.main-nav a:not(.btn-primary):hover, .main-nav a:not(.btn-primary):focus {
  background: #C1B08622;
  color: #C1B086;
}
.main-nav a.active {
  background: #25303B;
  color: #fff;
}
.main-nav img {
  height: 38px;
  width: auto;
  margin-right:16px;
}

.footer-nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  padding: 28px 0 8px 0;
  background: #F6F6F6;
  border-radius: 22px 22px 0 0/22px 22px 0 0;
}
.footer-nav a {
  color: #84774c;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.95rem;
  padding: 5px 10px;
  border-radius: 12px;
  transition: background .15s, color .21s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #25303B;
  background: #C1B08622;
}
.footer-info {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
  padding: 22px 0 30px 0;
}
.footer-info img {
  width: 44px; height: auto;
  margin-right: 7px;
}
.footer-info address {
  font-style: normal;
  color: #84774c;
  font-size: 0.96rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 0;
  line-height: 1.5;
}
.footer-info a { color: #C1B086; text-decoration: underline; transition: color 0.23s; }
.footer-info a:hover { color:#25303B; text-decoration: underline; }

/* ------------------------------------
   TESTIMONIALS
------------------------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FCF7ED;
  border-radius: 22px;
  margin-bottom: 20px;
  box-shadow:0 3px 15px #c1b08618;
  border-left: 5px solid #C1B086;
  position: relative;
  max-width: 700px;
}
.testimonial-card p {
  color: #25303B;
  font-size: 1.1rem;
  margin-bottom: 0;
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: .02em;
}
.testimonial-meta {
  font-family: 'Roboto', Arial, sans-serif;
  color: #84774c;
  font-size: 0.97em;
  display: flex;
  align-items: center;
  gap: 5px;
}
.testimonial-meta img {
  width:20px; display:inline;
  margin-left:2px;
}

/* ------------------------------------
   SPECIAL NOTES, MAP-NOTE
------------------------------------- */
.map-note {
  margin-top:16px;
  padding:18px 20px;
  background:#C1B08618;
  border-radius: 18px;
}
.collection-highlights {
  margin-top: 18px;
  padding: 9px 16px;
  background: #bdb3a91b;
  border-radius: 10px;
  color: #84774c;
  font-style: italic;
}
.price-overview {
  color: #C1B086;
  font-weight: 600;
  background: #f9f5ea;
  border-radius: 12px;
  margin-top: 15px;
  padding: 8px 16px;
  font-size: 1.03rem;
}

/* ------------------------------------
   MOBILE MENU — Hamburger Nav
------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  font-size: 2.1rem;
  padding: 6px 16px 3px 16px;
  color: #C1B086;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 10px 0 0;
  box-shadow: 0 2px 6px #c1b08622;
  position: absolute;
  top: 22px;
  right: 16px;
  z-index: 1200;
  transition: background .18s, color .18s, box-shadow .18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus{ background:#25303B; color:#fff; box-shadow: 0 4px 24px #25303b15; }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  bottom: 0; left: 0;
  background: rgba(37,48,59,0.94);
  color: #fff;
  z-index: 1800;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0 0 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.7,.2,.3,1.2);
  pointer-events: none;
  opacity:0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity:1;
  transition: transform 0.35s cubic-bezier(.7,.2,.3,1.2), opacity .15s;
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #C1B086;
  font-size: 2.35rem;
  margin: 23px 0 13px 29px;
  cursor: pointer;
  transition: color .18s;
}
.mobile-menu-close:hover { color: #fff; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width:100%;
  margin-top: 12px;
  margin-left: 38px;
}
.mobile-nav a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.32rem;
  color: #fff;
  padding: 8px 0;
  border-radius: 6px;
  transition: background 0.17s, color 0.22s;
  margin-bottom:4px;
}
.mobile-nav a:hover, .mobile-nav a:focus{
  background:#C1B08644;
  color: #C1B086;
}

/* ------------------------------------
   RESPONSIVE DESIGN (Mobile First)
------------------------------------- */
@media (max-width: 1020px) {
  .feature-grid li,
  .card {
    min-width: 180px;
    max-width: 100%;
    padding: 15px 12px 16px 12px;
  }
}
@media (max-width: 820px) {
  .footer-info {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 40px; gap:12px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.68rem; }
  h2 { font-size: 1.27rem; }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section, .cta-banner {
    padding: 22px 6px;
  }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section { flex-direction: column; gap:18px; }
  .footer-info { padding-left:12px; }
}
@media (max-width:520px) {
  .container { padding: 0 6px; }
  .section, .cta-banner { padding:12px 2px; border-radius:14px; }
  .testimonial-card { flex-direction: column; gap:10px; }
}

/* ------------------------------------
   COOKIE CONSENT BANNER & MODAL
------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fffbe9;
  border-top: 4px solid #C1B086;
  color: #25303B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  box-shadow: 0 -2px 24px #c1b08628;
  padding: 22px 5% 22px 5%;
  z-index: 2300;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:14px;
  animation: cookieBannerIn .7s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes cookieBannerIn {
  from { transform: translateY(90px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 7px;
}
.btn-cookie {
  background: #C1B086;
  color: #fff;
  border: none;
  padding:9px 24px;
  border-radius: 18px;
  font-family:'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.01em;
  cursor: pointer;
  transition: background 0.22s, color 0.17s, transform .17s;
}
.btn-cookie:hover, .btn-cookie:focus{ 
  background: #25303B; color:#fff; transform:scale(1.03);
}
.btn-cookie-settings {
  background: #fff;
  color: #C1B086;
  border: 2px solid #C1B086;
  padding:8px 19px;
  border-radius: 16px;
  font-size: 0.97em;
  margin-left:2px;
  font-family:'Roboto', Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.19s, border 0.14s;
}
.btn-cookie-settings:hover {
  background: #C1B086;
  color: #fff;
  border-color: #25303B;
}
/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  background: rgba(37,48,59,.57);
  z-index: 2400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(.96);
  background: #fff;
  color: #25303B;
  border-radius: 23px;
  padding: 36px 32px 32px 32px;
  box-shadow: 0 6px 44px #25303b29;
  max-width: 96vw;
  width: 370px;
  z-index: 2500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s, transform 0.22s;
  display: flex;
  flex-direction: column;
  gap:16px;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 18px;
  background: transparent;
  border: none;
  color: #C1B086;
  font-size: 1.68rem;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal-close:hover { color: #25303B;}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap:14px;
  margin: 14px 0 8px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap:13px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 500;
  font-size: 1.01rem;
  color: #25303B;
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  accent-color: #C1B086;
  width: 19px;
  height: 19px;
  cursor: pointer;
}
.cookie-category .cookie-essential {
  color: #b1a299;
  font-style: italic;
}

/* ------------------------------------
   FORM ELEMENTS
------------------------------------- */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.01em;
  border: 1.5px solid #C1B08688;
  border-radius: 11px;
  padding: 8px 15px;
  margin-bottom: 16px;
  background: #fff;
  color: #25303B;
  transition: border 0.21s;
}
input:focus, textarea:focus, select:focus {
  border-color: #25303B;
  outline: none;
}
label {
  font-size: .98em;
  font-weight: 600;
  margin-bottom:8px;
  color: #25303B;
  display:block;
}

/* ------------------------------------------
   SCROLLBARS, SHADOWS AND AESTHETICS
------------------------------------------- */
::-webkit-scrollbar {
  width: 9px;
  background: #FCF7ED;
}
::-webkit-scrollbar-thumb {
  background: #C1B08644;
  border-radius: 8px;
}

/* MICRO-INTERACTIONS */
.card, .feature-grid li, .cta-banner, .section, .testimonial-card, .btn-primary, .btn-secondary, .btn-cookie, .btn-cookie-settings, .mobile-menu {
  transition: box-shadow .19s, background .19s, border .18s, color .19s, transform .17s;
}

/* ------------------------------------
   ARTISTIC TOUCHES — Pattern/Doodle (Optional)
------------------------------------- */
.section::after {
  content: '';
  position: absolute;
  right: -20px;
  bottom: -14px;
  width: 62px; height:32px;
  background: url('../assets/pattern-artistic.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: .19;
  z-index: 0;
  pointer-events:none;
}

/* ------------------------------------
   UTILITY
------------------------------------- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.gap-0 { gap: 0 !important; }
.rounded-xl { border-radius: 32px !important; }
.shadow-lg { box-shadow: 0 8px 32px #c1b0862b !important; }
.shadow-sm { box-shadow: 0 2px 8px #c1b08611 !important; }

/* ----------- END OF CSS ----------- */
