/* 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;
  vertical-align:baseline;
  box-sizing:border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F6F6F4;
  color: #232533;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width:100%; height:auto; display:block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { padding-left: 24px; }
li { margin-bottom: 12px; list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; color: #232533; line-height: 1.2; }
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.4rem; margin-bottom: 10px; }
h4,h5,h6 { margin-bottom:8px; }
p { margin-bottom: 14px; }

/* BRAND COLORS */
:root {
  --color-primary: #232533;
  --color-secondary: #ffffff;
  --color-bg: #F6F6F4;
  --color-accent: #B4885A;
  --color-header: #363946;
  --shadow-main: 0px 4px 24px rgba(36, 36, 36, 0.08);
  --shadow-hover: 0px 8px 32px rgba(36, 36, 36, 0.16);
}

/* LUXURY FONT IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600;700&display=swap');

/* GENERAL CONTAINERS */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}
.text-section {
  max-width: 750px;
  margin: 0 auto;
  align-items: flex-start;
}

/* HEADER */
header {
  background: var(--color-header);
  color: var(--color-secondary);
  box-shadow: var(--shadow-main);
  position: relative;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 18px;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 18px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: color 0.18s;
  position: relative;
}
header nav a:after {
  content: '';
  display: block;
  height: 2.5px;
  width: 0;
  background: var(--color-accent);
  transition: width 0.19s cubic-bezier(.4,0,.2,1);
  border-radius: 2px;
  margin-top: 3px;
}
header nav a:hover,
header nav a:focus {
  color: var(--color-accent);
}
header nav a:hover:after,header nav a:focus:after {
  width: 100%;
}

.cta-btn {
  background: var(--color-accent);
  color: var(--color-secondary);
  border: none;
  border-radius: 30px;
  padding: 12px 34px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(180,136,90,0.08);
  cursor: pointer;
  outline: none;
  transition: background 0.22s, box-shadow 0.18s, transform 0.16s;
  margin-left:28px;
  margin-right:0;
  display: inline-block;
  position: relative;
  z-index:2;
}
.cta-btn:hover,.cta-btn:focus {
  background: #8c6c45;
  box-shadow: 0 8px 24px rgba(180,136,90,0.14);
  transform: translateY(-2px) scale(1.03);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.6rem;
  color: var(--color-accent);
  cursor: pointer;
  margin-left: 18px;
  padding: 6px 12px;
  border-radius: 7px;
  z-index: 52;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-accent);
  background: rgba(180,136,90,0.08);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,37,51,0.98);
  color: var(--color-secondary);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.65,.05,.36,1);
  width:100vw;height:100vh;display:flex;flex-direction:column;align-items:center;justify-content:flex-start;
  padding-top: 28px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-accent);
  align-self: flex-end;
  margin: 6px 22px 8px 0;
  cursor: pointer;
  padding: 6px 12px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 90%;
  margin: 18px auto 0;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--color-secondary);
  padding: 15px 0 15px 8px;
  border-radius: 6px;
  transition: background 0.18s, color 0.15s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(180,136,90,0.13);
  color: var(--color-accent);
}

@media (max-width:1080px) {
  .container { max-width: 95vw; }
  nav { gap:20px; }
  .cta-btn{margin-left:14px;}
}
@media (max-width:900px) {
  .container { max-width: 99vw; }
  nav { gap:10px; }
  .cta-btn{margin-left:8px;}
}

@media (max-width: 880px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (max-width: 850px) {
  header nav, .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* MAIN LAYOUT & SECTIONS */
main {
  padding-bottom: 36px;
}
section {
  background: var(--color-secondary);
  border-radius: 16px;
  box-shadow: var(--shadow-main);
  margin-bottom: 60px;
  padding: 40px 20px;
  transition: box-shadow 0.2s, background 0.21s;
}
section:hover {
  box-shadow: var(--shadow-hover);
}

@media (max-width:700px){
  section {
    padding: 28px 7px;
    margin-bottom: 36px;
  }
}

/* Spacing patterns - force all required */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* BUTTONS, LINKS */
button, .cta-btn {
  cursor:pointer;
  transition:all 0.18s cubic-bezier(.45,.9,.5,1.1);
  outline:none;
}
button:focus,.cta-btn:focus {
  outline:2px solid var(--color-accent);
}

/* CARDS & VISUAL ELEMENTS */
.card {
  border-radius: 18px;
  box-shadow: var(--shadow-main);
  background: var(--color-secondary);
  min-width: 270px;
  padding: 32px 24px;
  transition: box-shadow 0.17s, transform 0.18s;
  margin-bottom: 20px;
}
.card:hover, .card:focus-within {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px) scale(1.012);
}

/* CONTENT GRIDS */
.content-wrapper {
  gap: 24px;
}
.content-grid { gap: 24px; }
.text-image-section {
  gap: 30px;
  align-items: center;
}
@media (max-width: 768px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* LISTS, ICONS, FEATURES */
ul,ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
ul li,ol li {
  padding-left: 0;
  position: relative;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
ul li img, ol li img {
  width: 32px; height: 32px; flex-shrink: 0; margin-right: 8px;
}

/* Testimonial Cards */
.testimonial-card {
  background: #F6F6F4;
  border: 1.2px solid #e7dfd2;
  border-radius: 12px;
  box-shadow: 0px 4px 24px rgba(36,36,36,0.07);
  padding: 20px 32px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.18s, border 0.15s;
  color: #232533;
  font-size: 1.05rem;
  line-height: 1.56;
  max-width: 480px;
}
.testimonial-card:hover {
  border: 1.2px solid var(--color-accent);
  box-shadow: var(--shadow-hover);
}
.testimonial-card p {
  margin-bottom: 7px;
  font-style: italic;
  font-weight: 500;
  color: #232533;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--color-accent);
  font-size: .99rem;
  letter-spacing: 0.02em;
}

/* ICONS */
ul li img, .feature-item img {
  filter: brightness(0.88) contrast(1.1);
}

/* FORMS */
input, textarea, select {
  font-size: 1rem;
  border: 1.5px solid #e0dedc;
  border-radius: 9px;
  padding: 11px 12px;
  background: #f9f8f5;
  margin-bottom: 16px;
  width: 100%;
  font-family: inherit;
  outline: none;
  transition: border-color 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-accent);
}

/* Footer */
footer {
  background: #232533;
  color: var(--color-secondary);
  border-top: 2.5px solid var(--color-accent);
  padding: 44px 0 0 0;
}
footer .container {
  flex-direction: column;
  gap: 18px;
  padding-bottom:24px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 34px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-accent);
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.19s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: .97rem;
  color: #dadada;
  margin-top: 10px;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  gap: 7px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1.07rem;
}
.footer-brand img { height: 26px; width: auto; }

@media (max-width: 680px){
  .footer-nav { gap: 16px; }
  .footer-info{flex-direction:column;align-items:flex-start;gap:8px;}
  .footer-brand img { height: 22px; }
}

/* Utility classes & Spacing Consistency */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mt-24 { margin-top:24px !important; }
.mt-32 { margin-top:32px !important; }
.mb-32 { margin-bottom:32px !important; }
.gap-10 { gap: 10px !important; }
.gap-18 { gap: 18px !important; }
.text-center { text-align: center !important; }

/* Responsive Cards, Articles, Content */
@media (max-width: 900px){
  .card { padding: 22px 10px; min-width:180px; }
  .testimonial-card { padding: 14px 6vw; }
}
@media (max-width: 570px){
  h1 { font-size: 1.44rem; }
  h2 { font-size: 1.12rem; }
  h3 { font-size: .99rem; }
  .footer-brand { font-size: .93rem; }
  .cta-btn {padding: 11px 18px; font-size: .97rem;}
}

/* Microinteractions, transitions */
.card, .section, .testimonial-card, .cta-btn, a, button {
  transition: box-shadow 0.2s, background 0.2s, color 0.18s, transform 0.15s;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right:0; bottom: 0;
  width: 100vw;
  z-index: 1001;
  background: #232533;
  color: #fff;
  padding: 22px 14px 22px 14px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  box-shadow: 0px -2px 24px rgba(36,36,36,0.12);
  font-size: 1.01rem;
  border-top: 2.5px solid var(--color-accent);
  animation: cookiebanner-slidein 0.95s cubic-bezier(.6,.01,.4,1) 1;
}
@keyframes cookiebanner-slidein {
  from { transform: translateY(90px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  margin: 0 12px 0 0;
  flex: 1 1 0%;
  color: #fff;
}
.cookie-buttons {
  display: flex;
  gap: 13px;
  align-items: center;
  flex-shrink: 0;
}
.cookie-btn {
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 9px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .98rem;
  font-weight: 700;
  box-shadow:0 1px 6px rgba(180,136,90,0.08);
  cursor:pointer;
  margin-left:0;
  outline:none;
  transition: background 0.15s, box-shadow 0.12s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #8c6c45;
  box-shadow: 0 4px 16px rgba(180,136,90,0.12);
}
.cookie-btn.secondary {
  background: #fff;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: var(--color-accent);
  color: #fff;
}

@media(max-width:700px){
  .cookie-banner { flex-direction:column; align-items:stretch;gap:14px; }
  .cookie-buttons {justify-content: flex-end;}
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left:0;right:0;top:0;bottom:0;
  z-index: 2002;
  background: rgba(35,37,51,0.87);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fadein 0.4s cubic-bezier(.7,.1,.4,1) 1;
}
@keyframes cookie-modal-fadein {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal-content {
  background: #fff;
  color: #232533;
  border-radius: 16px;
  box-shadow:0 6px 64px rgba(36,36,36,0.14);
  padding: 36px 28px 28px 28px;
  min-width: 320px;
  max-width:95vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--color-accent);
  cursor: pointer;
  z-index: 2010;
  padding: 5px 10px;
}
.cookie-modal h2 {
  font-size: 1.34rem;
  color: #232533;
  margin-bottom: 4px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 10px 4px;
}
.cookie-toggle {
  width: 36px; height: 20px;
  background: #dbdbdb;
  border-radius: 13px;
  position: relative;
  transition: background 0.15s;
  cursor: pointer;
  flex-shrink: 0;
}
.cookie-toggle[data-enabled="true"] { background: var(--color-accent); }
.cookie-toggle-switch {
  display: block;
  position: absolute;
  top: 3px; left: 3px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow:0 2px 6px #0001;
  transition: left 0.13s;
}
.cookie-toggle[data-enabled="true"] .cookie-toggle-switch {
  left: 19px;
}
.cookie-category-label {
  flex:1 1 0%;
  font-weight: 600;
  font-size: .99rem;
  color: #232533;
}
.cookie-category-desc {
  font-weight: 400;
  font-size: .95rem;
  color: #7c7a6d;
}

@media (max-width:570px){
  .cookie-modal-content {padding:18px 6px 16px 6px;min-width: 180px;}
}

/* Decorative Gold Accent lines */
h2:after, h1:after {
  content: '';
  display: block;
  width: 55px;
  height: 3.3px;
  background: var(--color-accent);
  border-radius: 2px;
  margin-top: 9px;
}

/* Luxury Premium Details */
section, .card, .testimonial-card {
  border-radius: 16px;
  box-shadow: 0 2px 28px rgba(180,136,90,0.03), 0 1px 2.5px rgba(60,53,35,0.02);
}

.section {
  border: 1.6px solid #efe8dc;
  box-shadow: 0 4px 32px rgba(180,136,90,0.02);
}

hr {
  border: 0;
  height: 2px;
  background: var(--color-accent);
  margin: 32px 0;
  border-radius:2px;
}

/* Forms styling (contact page) */
form label, label { font-family: 'Montserrat', Arial, sans-serif; font-size:1rem; font-weight:600; color: #232533;margin-bottom:4px; }
form input:not([type="checkbox"]), form textarea {
  margin-bottom: 16px;
  border-radius: 12px;
  border:1.5px solid #e8e4df;
  padding:12px 14px;
  font-size:1.07rem;
  background: #faf9f7;
}
form input:focus,form textarea:focus {
  border-color: var(--color-accent);
}
form button[type="submit"] {
  margin-top:12px;
}

/* Accessibility */
:focus-visible { outline:2.2px solid var(--color-accent)!important; outline-offset:2px; }

/* Hide nav on mobile, show burger */
@media (max-width:850px) {
  header nav, .cta-btn { display:none;}
  .mobile-menu-toggle { display:block; }
}

/* Fix for testmonials dark text */
.testimonial-card { background: #F6F6F4; color: #232533; }
.testimonial-card p, .testimonial-card span { color: #232533; }

/* Flex spacing margins between sections */
section + section, .section + .section { margin-top: 32px; }

/* Special responsive for content-wrapper inside .container */
@media (max-width: 768px){
  .container, .content-wrapper { padding-left:6px;padding-right:6px;}
  .content-wrapper, .text-section {gap: 14px;}
}

/* Remove list-item marker for all ul/ol, add custom bullets if needed */
ul, ol { list-style: none; }

/* Additional minor details for premium look */
.card, .testimonial-card {
  border: 1.2px solid #ebe4da;
  box-shadow: 0 1.5px 22px rgba(180,136,90,0.04);
  padding: 30px 26px;
}

/* Keep main containers spaced out on small devices */
@media (max-width:560px){
  .container{padding-left:2px; padding-right:2px;}
  section, .section{padding:12px 2px;}
  .testimonial-card, .card{padding:12px 5px;}
}

/* Animations for buttons */
.cta-btn, .cookie-btn {
  transition: box-shadow 0.19s, transform 0.12s, background 0.13s;
}
.cta-btn:active,.cookie-btn:active{box-shadow:none;transform:scale(0.97);}

/* Micro gold details for luxury feel */
.section { border-top:3.2px solid var(--color-accent); border-radius:16px 16px 18px 18px;}

/* Increase click area for links in mobile menu */
.mobile-nav a {padding-top:13px; padding-bottom:13px;}

/* Scrollbar styling for desktop luxury */
@media (min-width:800px){
  ::-webkit-scrollbar {width:9px;background:#F6F6F4;}
  ::-webkit-scrollbar-thumb {background: var(--color-accent); border-radius:7px;}
  ::-webkit-scrollbar-thumb:hover {background: #8c6c45;}
}

/* Style for numbered ordered lists in Kontakt etc. */
ol {counter-reset:luxnum;}
ol li {counter-increment:luxnum;}
ol li::before {
  content: counter(luxnum) '. ';
  display: inline-block;
  width: 2em;
  min-width: 2em;
  margin-right: 5px;
  font-weight: 700;
  color: var(--color-accent);
}

/* END CSS */
