/* 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,main,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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.6;
  background: #F5F3F0;
  color: #181B23;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
main {
  flex: 1 1 auto;
}
a {
  color: #B89862;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #181B23;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
}

/* Brand Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #181B23;
  font-weight: 700;
  margin-bottom: 0.42em;
  line-height: 1.13;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
h2 {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
h3 {
  font-size: 1.5rem;
  letter-spacing: 0.018em;
}
h4, h5, h6 {
  font-size: 1.2rem;
}
strong {
  font-weight: 700;
}
.subheadline {
  font-size: 1.18rem;
  font-style: italic;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  color: #403c34;
  margin-bottom: 24px;
}

/* Containers & Structured Grids */
.container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 16px;
  position: relative;
}

/* Hero and Structured Section Spacing */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
section:last-child {
  margin-bottom: 0;
}

/* Card & Flex Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border: 1.5px solid #EBE4D4;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(24,27,35,0.10);
  padding: 26px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  transition: transform 0.21s cubic-bezier(.76,0,.24,1), box-shadow 0.21s cubic-bezier(.76,0,.24,1);
}
.card:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 4px 32px 0 rgba(24, 27, 35, 0.19);
}
.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;
}
.text-image-section > * {
  flex: 1 1 320px;
}

/* Testimonial Cards */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  margin-bottom: 20px;
  background: #fff;
  border: 2px solid #EBE4D4;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(24, 27, 35, 0.10);
  max-width: 740px;
}
.testimonial-card blockquote {
  font-size: 1.13rem;
  font-family: 'Playfair Display', serif;
  color: #181B23;
  font-style: italic;
}
.testimonial-meta {
  color: #858179;
  font-size: 0.97rem;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  letter-spacing: 0.02em;
}

/* Feature & Highlighted Lists (Structured, Geometric) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  list-style: none;
  margin: 32px 0 0 0;
  padding: 0;
}
.feature-grid li {
  background: #fff;
  border-radius: 18px;
  border: 1.3px solid #E2DAC8;
  box-shadow: 0 2px 8px 0 rgba(24, 27, 35, 0.09);
  flex: 1 1 220px;
  min-width: 190px;
  max-width: 260px;
  padding: 24px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.feature-grid li img {
  width: 38px;
  height: 38px;
  margin-bottom: 7px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.highlighted-products-list {
  list-style: none;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.highlighted-products-list li {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #E2DAC8;
  padding: 18px 24px 10px 24px;
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
  min-width: 170px;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
}
.highlighted-products-list strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
}

.quick-fact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0;
}
.quick-fact-grid > div {
  background: #181B23;
  color: #fff;
  border-radius: 11px;
  font-size: 1.1rem;
  padding: 18px 24px 13px 24px;
  font-weight: 500;
  text-align: center;
  flex: 1 1 180px;
  min-width: 120px;
}

/* Timeline and Team lists */
.timeline {
  list-style: none;
  padding: 0;
  margin: 22px 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 4px solid #B89862;
}
.timeline li {
  padding-left: 18px;
  position: relative;
}
.timeline li:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -10px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #B89862;
}

.team-members-list {
  list-style: none;
  margin: 30px 0 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.team-members-list li {
  background: #fff;
  border-radius: 10px;
  padding: 12px 18px;
  border: 1px solid #E2DAC8;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
}

/* List Bullets geometric style */
ul:not(.feature-grid):not(.highlighted-products-list):not(.team-members-list):not(.usp-bullets) > li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
}
ul:not(.feature-grid):not(.highlighted-products-list):not(.team-members-list):not(.usp-bullets) > li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: #B89862;
}

.usp-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 18px 0 26px 0;
}
.usp-bullets li {
  padding-left: 20px;
  position: relative;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.usp-bullets li:before {
  content: "△";
  color: #B89862;
  font-size: 1rem;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 0.1em;
}

.categories-overview {
  margin: 18px 0 24px 0;
}
.categories-overview ul {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  list-style: none;
  margin-top: 10px;
  padding-left: 0;
}
.categories-overview li {
  background: #B89862;
  color: #fff;
  border-radius: 7px;
  padding: 7px 15px;
  font-size: 0.97rem;
}

/* Flex Section Patterns */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 25px;
  font-size: 1.07rem;
  align-items: center;
}
.contact-info > div {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F5F3F0;
  padding: 8px 16px;
  border-radius: 9px;
  border: 1px solid #E2DAC8;
  min-width: 240px;
}
.map-snippet, .map-instructions {
  background: #fff;
  border: 1px solid #E2DAC8;
  padding: 12px 18px;
  border-radius: 10px;
  margin-bottom: 18px;
  color: #92845e;
  font-style: italic;
  font-size: 0.98rem;
}

/* Artisanal techniques (handwerkskunst) */
.artisanal-techniques-overview {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.artisanal-techniques-overview ul {
  margin-top: 12px;
  list-style: none;
  padding-left: 0;
}
.artisanal-techniques-overview ul > li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 11px;
}
.artisanal-techniques-overview ul > li:before {
  content: "□";
  color: #B89862;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1em;
}

.watchmakers-profiles {
  margin: 20px 0 0 0;
  background: #fff;
  border: 1px solid #E2DAC8;
  border-radius: 10px;
  padding: 18px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.text-section > div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3px 0;
}

.next-steps {
  margin: 18px 0 18px 0;
}

/* Buttons & CTAs */
.cta {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 36px;
  border-radius: 12px;
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: 14px;
  min-width: 170px;
  transition: background 0.18s, color 0.18s, box-shadow .18s, transform .18s;
  position: relative;
  z-index: 1;
  background: #B89862;
  color: #fff;
  box-shadow: 0 2px 15px 0 rgba(184,152,98,0.10);
}
.cta.secondary {
  background: #fff;
  color: #B89862;
  border: 2px solid #B89862;
  box-shadow: none;
}
.cta.primary {
  background: #181B23;
  color: #fff;
  border: 2px solid #181B23;
  box-shadow: 0 5px 30px rgba(24,27,35,0.09);
}
.cta:hover, .cta:focus {
  transform: translateY(-3px) scale(1.035);
  box-shadow: 0 4px 35px 0 rgba(24, 27, 35, 0.14);
  background: #b08c3b;
  color: #fff;
  text-decoration: none;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #B89862;
  color: #fff;
  border-color: #B89862;
}
.cta.primary:hover, .cta.primary:focus {
  background: #fff;
  color: #181B23;
  border: 2px solid #181B23;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 2.5px solid #EBE4D4;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 2px 16px 0 rgba(24,27,35,.04);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
  padding-bottom: 17px;
  gap: 16px;
  position: relative;
}
header img {
  height: 38px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 32px;
  flex: 1 1 auto;
}
.main-nav a {
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  color: #181B23;
  font-size: 1.07rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #B89862;
  border-bottom: 2px solid #B89862;
}

/* Mobile Navigation (Hamburger + Overlay) */
.mobile-menu-toggle {
  display: none;
  background: #181B23;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 2rem;
  padding: 4px 16px 1px 16px;
  margin-left: 20px;
  cursor: pointer;
  transition: background 0.21s;
  z-index: 31;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #B89862;
  color: #fff;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1002;
  background: rgba(24, 27, 35, 0.92);
  flex-direction: column;
  padding-top: 40px;
  transition: transform 0.43s cubic-bezier(.76,0,.24,1);
  transform: translateX(-100vw);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 1025;
  transition: color 0.18s;
}
.mobile-menu-close:hover {
  color: #B89862;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
  margin-top: 54px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 12px 0;
  transition: color 0.19s;
  border-bottom: 1.5px solid transparent;
  width: 220px;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #B89862;
  border-bottom: 1.5px solid #B89862;
  background: rgba(184,152,98,0.07);
}

/* FOOTER */
footer {
  background: #181B23;
  color: #fff;
  border-top: 2px solid #B89862;
  margin-top: 80px;
  padding: 42px 0 24px 0;
  width: 100%;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #B89862;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  transition: color 0.18s;
  letter-spacing: .05em;
}
.footer-nav a:hover {
  color: #fff;
  text-decoration: underline;
}
.brand-signature {
  font-size: 0.97rem;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  color: #fff;
}
.social-links {
  display: flex;
  gap: 17px;
  align-items: center;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  justify-content: center;
  box-shadow: 0 2px 8px 0 rgba(24,27,35,0.08);
  border: 1.5px solid #B89862;
  transition: box-shadow 0.2s, background 0.19s;
}
.social-links a:hover {
  background: #B89862;
  box-shadow: 0 5px 16px 0 rgba(184,152,98,0.12);
}
.social-links img {
  width: 23px;
  height: 23px;
}

/* Cookie Consent Banner & Modal */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: #181B23;
  color: #fff;
  border-top: 4px solid #B89862;
  box-shadow: 0 -6px 32px 0 rgba(24,27,35,0.19);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 18px 24px 18px 24px;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  transition: transform .4s cubic-bezier(.76,0,.24,1);
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  transform: translateY(140%);
}
.cookie-consent-banner button {
  margin-left: 7px;
  margin-right: 0;
}

.cookie-btn {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  text-transform: uppercase;
  background: #B89862;
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 10px 24px;
  margin: 2px 8px 2px 0;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff;
  color: #181B23;
}
.cookie-btn.settings {
  background: #fff;
  color: #B89862;
  border: 2px solid #B89862;
  margin-left: 13px;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #B89862;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24,27,35,0.70);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.cookie-modal {
  background: #fff;
  color: #181B23;
  border-radius: 16px;
  max-width: 420px;
  width: 92vw;
  padding: 32px 28px 28px 28px;
  position: relative;
  box-shadow: 0 10px 42px 0 rgba(24,27,35,0.20);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2110;
}
.cookie-modal h2 {
  font-size: 1.39rem;
  font-family: 'Playfair Display', serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #E2DAC8;
  padding: 10px 0 10px 0;
  font-size: 1.01rem;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
}
.cookie-category input[type="checkbox"] {
  accent-color: #B89862;
  width: 20px;
  height: 20px;
}
.cookie-category.essential {
  opacity: 0.6;
}
.cookie-category.essential label::after {
  content: ' (immer aktiv)';
  font-style: italic;
  color: #A08A54;
  font-size: .93em;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #B89862;
  font-size: 2rem;
  position: absolute;
  top: 13px;
  right: 18px;
  cursor: pointer;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 11px;
}

/* Animations for Cookie Banner/Modal */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(100%); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-consent-banner {
  animation: fadeInUp .6s cubic-bezier(.76,0,.34,1);
}
.cookie-modal {
  animation: fadeInUp .7s cubic-bezier(.76,0,.34,1);
}

/* Responsive - Mobile First Approach */
@media (max-width: 1100px) {
  .container {
    max-width: 960px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 860px) {
  .main-nav {
    gap: 16px;
    margin-left: 6px;
  }
  .quick-fact-grid > div {
    font-size: 1rem;
    padding: 15px 10px 10px 10px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.25rem; }
  .section, section {
    margin-bottom: 40px;
    padding-left: 0;
    padding-right: 0;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .card-container, .content-grid, .feature-grid, .highlighted-products-list, .contact-info {
    flex-direction: column !important;
    gap: 18px;
  }
  .quick-fact-grid {
    flex-direction: column;
    gap: 13px;
  }
  .categories-overview ul {
    flex-direction: column;
    gap: 5px;
  }
  .footer-nav, .social-links, footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .footer-nav {
    padding-bottom: 9px;
  }
  .brand-signature {
    padding-bottom: 14px;
  }
  .testimonial-card {
    padding: 16px 7px;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .contact-info > div {
    min-width: unset;
  }
}
@media (max-width: 540px) {
  .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .section, section {
    padding: 16px 0 0 0;
  }
  .card {
    padding: 15px 8px;
    min-width: unset;
  }
  .feature-grid li {
    min-width: 120px;
    max-width: unset;
  }
}
