/* RESET & BASE -------------------- */
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.4;
  background:#F5F1EB;
  color: #232B36;
}
ol,ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration:none;
  transition: color 0.2s cubic-bezier(.2,1,.22,1);
}
a:focus {
  outline: 2px solid #B99F6C;
  outline-offset: 2px;
}
img {
  max-width:100%;
  display: block;
  height:auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}
/* BRAND FONTS -------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Roboto:wght@400;700&display=swap');

body, html {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.14;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
  color: #232B36;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 18px;
  color: #232B36;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #B99F6C;
  font-weight: 700;
}
h4,h5,h6 {
  font-size: 1.1rem;
}
p, ul li, ol li, blockquote, cite, address {
  font-size: 1rem;
  color: #232B36;
}
strong, b {
  font-weight: 700;
}
.subheadline {
  font-size: 1.18rem;
  color: #232B36;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 24px;
  font-weight: 700;
}

/* SPACING & FLEX STRUCTURE ------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.card-container, .card-grid, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow:0 4px 20px 0 rgba(35,43,54,0.10);
  padding: 28px 26px;
  position: relative;
  transition: box-shadow 0.2s cubic-bezier(.2,1,.22,1), transform 0.2s cubic-bezier(.2,1,.22,1);
}
.card:hover {
  box-shadow:0 6px 36px 0 rgba(35,43,54,0.18);
  transform: translateY(-4px) scale(1.02);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow:0 2px 10px 0 rgba(35,43,54,0.06);
  margin-bottom: 20px;
  border-left: 5px solid #B99F6C;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER & NAVIGATION ------------------------ */
header {
  width: 100%;
  background: #fff;
  box-shadow:0 2px 12px 0 rgba(35,43,54,0.08);
  position: relative;
  z-index: 1000;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #232B36;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s cubic-bezier(.2,1,.22,1), color 0.2s cubic-bezier(.2,1,.22,1);
}
.main-nav a:hover, .main-nav a:focus {
  background: #B99F6C;
  color: #fff;
}
.cta-btn {
  background: #B99F6C;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.15rem;
  padding: 11px 28px;
  border-radius: 26px;
  border: none;
  transition: background 0.18s cubic-bezier(.2,1,.22,1), box-shadow 0.22s cubic-bezier(.2,1,.22,1);
  box-shadow: 0 2px 8px 0 rgba(185,159,108,0.07);
  cursor: pointer;
  letter-spacing: 0.03em;
  display: inline-block;
  margin-left: 12px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #232B36;
  color: #B99F6C;
  box-shadow: 0 4px 16px 0 rgba(35,43,54,0.17);
}
.cta-link {
  color: #232B36;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  position: relative;
  padding-right: 18px;
  transition: color 0.19s cubic-bezier(.2,1,.22,1);
}
.cta-link:after {
  content: '→';
  position: absolute;
  right: 3px;
  font-size: 1.04em;
  top: 2px;
  color: #B99F6C;
}
.cta-link:hover, .cta-link:focus {
  color: #B99F6C;
  text-decoration: underline;
}

/* MOBILE NAVIGATION ------------------- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.4rem;
  background: none;
  color: #232B36;
  border: none;
  margin-left: 16px;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #232B36;
  z-index: 2000;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.33,1,.68,1);
  overflow-y: auto;
  padding: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 22px 22px 0 0;
  cursor: pointer;
  transition: color 0.2s cubic-bezier(.4,1,.29,0.92);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #B99F6C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 0 32px;
  margin-top: 38px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.24rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  padding: 14px 0;
  border-bottom: 1px solid rgba(245,241,235,0.11);
  transition: color 0.17s cubic-bezier(.2,1,.22,1); 
}
.mobile-nav a:last-child {
  border-bottom: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #B99F6C;
}

/* HERO + SECTIONS -------------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px 40px 20px;
  background: none;
  border-radius: 0;
}
section:first-child {
  margin-top: 0;
}
.feature-grid > div {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(35,43,54, .08);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
  gap: 12px;
  transition: box-shadow 0.18s cubic-bezier(.2,1,.22,1), transform 0.18s cubic-bezier(.2,1,.22,1);
  margin-right: 6px;
}
.feature-grid > div:last-child {
  margin-right: 0;
}
.feature-grid img {
  height: 34px;
  width: auto;
  margin-bottom: 13px;
}
.feature-grid h3 {
  color:#232B36;
}
.feature-grid p {
  color: #57585D;
  margin: 0;
}

.text-section, .content-wrapper.text-section {
  max-width: 720px;
}
.timeline {
  margin-top: 22px;
}
.timeline ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.timeline h3 {
  margin-bottom: 10px;
  color: #B99F6C;
}
.contact-summary, .contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
}
.contact-summary li, .contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #232B36;
}
.contact-summary img, .contact-info img {
  width: 24px;
  height: 24px;
}

.kollektion-cta, .contact-cta, .atelier-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.kollektion-cta a, .atelier-cta a, .contact-cta a {
  margin-top: 12px;
}
.confirmation-message {
  font-size: 1.11rem;
  margin-bottom: 24px;
  color: #232B36;
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
}

/* TESTIMONIALS ------------------------------- */
.testimonial-section {
  gap: 28px;
}
.testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #232B36;
  line-height: 1.44;
  margin: 0 0 12px 0;
  font-weight: 700;
}
.testimonial-card cite {
  font-size: 1rem;
  color: #B99F6C;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 700;
  padding-left: 8px;
}

/* ADDRESS & INFO BLOCKS --------------------- */
.address-details, .business-hours, .map-snippet {
  font-size: 1rem;
  color: #232B36;
  background: #fff;
  border-radius: 10px;
  box-shadow:0 2px 10px 0 rgba(35,43,54, .04);
  padding: 14px 18px;
  margin-bottom: 18px;
}
.address-details strong, .business-hours strong {
  color: #B99F6C;
}
.map-snippet img {
  margin-right: 6px;
  width: 22px;
  vertical-align: middle;
}

/* FOOTER -------------------------- */
footer {
  margin-top: 60px;
  background: #232B36;
  padding: 40px 0 20px 0;
  color: #fff;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-nav a {
  color: #B99F6C;
  font-family: 'Roboto', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  transition: color 0.17s cubic-bezier(.2,1,.22,1);
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.footer-contact img {
  height: 36px;
  width: auto;
  margin-bottom: 10px;
}
.footer-contact p {
  font-size: 0.98rem;
  color: #fff;
  margin-bottom: 2px;
  line-height: 1.55;
}

/* COOKIE CONSENT BANNER + MODAL -------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #232B36;
  color: #fff;
  z-index: 5000;
  box-shadow: 0 -2px 18px 0 rgba(35,43,54,0.09);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px 16px;
  gap: 36px;
  transition: transform 0.35s cubic-bezier(.33,1,.68,1);
}
.cookie-banner.hide {
  transform: translateY(150%);
}
.cookie-banner-message {
  font-size: 1rem;
  font-family: 'Roboto',sans-serif;
  color: #fff;
  margin: 0 18px 0 0;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
button.cookie-accept, button.cookie-reject, button.cookie-settings {
  padding: 8.5px 18px;
  border-radius: 24px;
  font-family: 'Roboto',sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  border: none;
  background: #fff;
  color: #232B36;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-left: 0;
}
button.cookie-reject {
  background: #B99F6C;
  color: #fff;
}
button.cookie-settings {
  background: #F5F1EB;
  color: #232B36;
}
button.cookie-accept:hover, button.cookie-settings:hover {
  background: #B99F6C;
  color: #fff;
}
button.cookie-reject:hover {
  background: #232B36;
  color:#B99F6C;
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%) scale(0.96);
  background: #fff;
  color: #232B36;
  padding: 34px 28px 26px 28px;
  border-radius: 18px;
  z-index: 6000;
  max-width: 425px;
  width: 95vw;
  box-shadow: 0 8px 56px 0 rgba(35,43,54,0.24);
  display: none;
  flex-direction: column;
  gap: 22px;
  animation: cookieModalIn 0.28s cubic-bezier(.5,1.55,.65,.95);
}
@keyframes cookieModalIn {
  0%{ transform: translate(-50%, 80%) scale(0.85); opacity: 0; }
  100%{ transform: translate(-50%, -60%) scale(1); opacity: 1; }
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #232B36;
}
.cookie-modal .cookie-close-btn {
  position: absolute;
  right: 18px;
  top: 18px;
  background: none;
  color: #232B36;
  border: none;
  font-size: 1.35rem;
  cursor: pointer;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.cookie-category input[type=checkbox] {
  accent-color: #B99F6C;
  width: 18px;
  height: 18px;
}
.cookie-category label {
  font-size: 1rem;
}
.cookie-category span.cookie-always-on {
  font-size: 0.98em;
  background: #B99F6C;
  color: #fff;
  border-radius: 12px;
  padding: 3px 13px;
  margin-left: 8px;
  font-weight: 700;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 12px;
}

/* BUTTONS, INTERACTIVE ---------------------- */
button, .cta-btn, .cta-link {
  transition: background 0.19s, color 0.21s, box-shadow 0.19s, border 0.18s, transform 0.17s;
}
button:active, .cta-btn:active {
  transform: scale(0.98);
}

/* FORM ELEMENTS ----------------------------- */
input, textarea, select {
  border-radius: 8px;
  border: 1px solid #B99F6C;
  padding: 8px 12px;
  background: #fff;
  margin-bottom: 17px;
  font-size: 1rem;
  color: #232B36;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: #232B36;
  outline: 1px solid #B99F6C;
  background: #F5F1EB;
}

/* GEOMETRIC BACKGROUND SHAPES (hero, accent) ------ */
/* Decorative elements (optional; position absolutely) */

/* UL/OL LISTS ----------------------------------- */
ul, ol {
  margin-bottom: 14px;
}
ul li {
  padding-left: 0.9em;
  margin-bottom: 10px;
  position: relative;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #B99F6C;
  border-radius: 2.5px;
  position: absolute;
  left: -20px;
  top: 7.5px;
  opacity: 0.9;
}
ol {
  counter-reset: ol;
}
ol li {
  counter-increment: ol;
  margin-bottom: 11px;
  position: relative;
  padding-left: 1.6em;
}
ol li:before {
  content: counter(ol) '.';
  color: #B99F6C;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* RESPONSIVE -------------------------------------- */
@media (max-width: 1200px) {
  .container { max-width: 1000px; padding: 0 12px; }
}
@media (max-width: 991px) {
  .container { max-width: 750px; }
  .main-nav { gap: 13px; }
}
@media (max-width: 850px) {
  .container { max-width: 99vw; }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .cta-btn { display: none; }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  section, .section {
    padding: 28px 8px 28px 8px;
    margin-bottom: 34px;
  }
  .hero-section, .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer-contact, .footer-nav {
    align-items: flex-start;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .testimonial-section { gap: 13px; }
  .testimonial-card { gap: 12px; }
  .content-wrapper, .content-wrapper.text-section {
    gap: 16px;
    max-width: 98vw;
  }
  .feature-grid > div {
    min-width: 0;
    padding: 19px 12px;
    gap: 7px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    padding: 18px 3px;;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  h1{font-size:1.38rem;}
  section, .section { padding: 16px 2px; margin-bottom: 24px; }
  .footer-contact p, .footer-nav a { font-size: .97rem; }
  .cta-btn, .cta-link {font-size: 0.99rem; padding: 8px 16px;}
  .cookie-banner {
    padding: 11px 1px;
  }
}

/* VISUAL/EFFECTS ---------------------------------- */
.card, .feature-grid > div, .testimonial-card, .address-details, .business-hours, .map-snippet {
  box-shadow: 0 2px 12px 0 rgba(35,43,54,0.09);
}
.card:hover, .feature-grid > div:hover {
  box-shadow: 0 4px 20px 0 rgba(185,159,108,0.18);
  transform: translateY(-3px) scale(1.02);
}

/* HIGH CONTRAST/ACCESSIBILITY ------------------ */
.testimonial-card, .testimonial-card blockquote, .testimonial-card cite {
  background: #fff;
  color: #232B36;
}

/* CUSTOM CLASSES (FOR HTML STRUCTURE) --------- */
.business-hours, .address-details, .map-snippet {
  margin-bottom:14px;
}

/* Hide scrollbar for mobile menu overlay */
.mobile-menu {
  scrollbar-width: none;
}
.mobile-menu::-webkit-scrollbar {
  display: none;
}

/* Z-INDEXS checlist: 
header: 1000,
mobile menu: 2000,
cookie banner: 5000,
cookie modal: 6000
*/
