/* ====================================================== */
/* CSS RESET & NORMALIZE                                  */
/* ====================================================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #222;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #233141;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #967E5B;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.3em;
  margin-bottom: 1.2em;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.1;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.3rem;
  font-weight: 600;
}
section h2 {
  border-left: 5px solid #233141;
  padding-left: 16px;
  margin-bottom: 28px;
  color: #233141;
}
p {
  margin-bottom: 1.5em;
}
strong {
  font-weight: 700;
}

/* =============== BRAND PALETTE =================== */
:root {
  --primary: #233141;
  --secondary: #967E5B;
  --accent: #F2EFEA;
  --contrast: #fff;
  --mid: #bbb;
  --border: #e2e2e2;
  --text-main: #222;
  --text-strong: #111;
  --bg-main: #fff;
  --bg-dark: #1a1a1a;
  --shadow: 0 2px 20px rgba(34,34,34,0.07);
  --radius: 10px;
}

/* =============== LAYOUT CONTAINERS =================== */
.container {
  width: 90%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
@media (min-width: 900px) {
  .content-wrapper {
    gap: 28px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-main);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--contrast);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  flex: 1 1 280px;
  min-width: 230px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(34, 34, 34, 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;
  margin-bottom: 32px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 4px 18px rgba(34,34,34,0.04);
  margin-bottom: 20px;
  min-width: 0;
  flex: 1 1 325px;
  font-size: 1.05rem;
  color: #222;
  line-height: 1.5;
  transition: box-shadow 0.2s, background 0.15s;
}
.testimonial-card strong {
  margin-left: auto;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #233141;
  font-weight: 600;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(34,34,34,0.09);
  background: #f7f7f7;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/******************* HEADER & NAVIGATION *******************/
header {
  width: 100%;
  background: var(--bg-main);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(34,34,34,0.01);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
}
.logo {
  height: 42px;
  width: auto;
}
.main-navigation {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-left: 24px;
}
.main-navigation a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #222;
  opacity: 0.93;
  position: relative;
  padding: 2px 5px;
  border-radius: 4px;
  transition: color 0.2s, background 0.18s;
}
.main-navigation a:hover,
.main-navigation a:focus {
  color: var(--secondary);
  background: #f2f0ed;
}
.cta.primary {
  margin-left: 36px;
  background: var(--primary);
  color: var(--contrast);
  padding: 13px 33px;
  border-radius: 30px;
  font-family: 'Playfair Display', serif;
  font-size: 1.14rem;
  font-weight: bold;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 18px rgba(34,34,34,0.09);
  text-shadow: none;
  transition: background 0.18s, color 0.18s, transform 0.16s, box-shadow 0.18s;
  border: 1.5px solid transparent;
  cursor: pointer;
  outline: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 32px rgba(150,126,91,0.07);
  border-color: #967E5B;
}
.cta {
  display: inline-block;
  background: #fff;
  color: var(--primary);
  padding: 11px 27px;
  border-radius: 30px;
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1.5px solid var(--primary);
  cursor: pointer;
  transition: background 0.16s, color 0.16s, border 0.13s, box-shadow 0.16s;
}
.cta:hover,.cta:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--secondary);
  box-shadow: 0 4px 16px rgba(34,49,65,0.11);
}

/***** BURGER MENU ******/
.mobile-menu-toggle {
  display: inline-flex;
  font-size: 2rem;
  background: none;
  color: var(--primary);
  border: none;
  align-items: center;
  justify-content: center;
  margin-left: 32px;
  cursor: pointer;
  transition: color 0.15s;
  height: 44px;
  width: 44px;
  z-index: 51;
}
.mobile-menu-toggle:focus {
  outline: 2px dashed var(--secondary);
}
/* Hide desktop nav on mobile, show burger */
@media (max-width: 1100px) {
  .main-navigation {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width: 1101px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* ================= MOBILE MENU OVERLAY ================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(34, 34, 34, 0.96);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 36px 22px 0 0;
  transform: translateX(110%);
  transition: transform 0.36s cubic-bezier(.77,0,.18,1), opacity 0.2s;
  opacity: 0;
  z-index: 101;
  visibility: hidden;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  display: inline-flex;
  background: none;
  color: #fff;
  font-size: 2.1rem;
  cursor: pointer;
  border: none;
  align-items: center;
  margin-bottom: 30px;
  margin-right: 2px;
  transition: color 0.16s;
  z-index: 102;
}
.mobile-menu-close:focus {
  outline: 2px dashed #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 20px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 6px 12px 0;
  border-radius: 0 18px 18px 0;
  transition: background 0.16s, color 0.17s;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
  outline: none;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #313131;
  color: var(--secondary);
}

/********************* HERO SECTION *********************/
.hero {
  background: #fff;
  box-shadow: 0 2px 26px rgba(34,34,34,0.02);
  padding: 56px 0 28px 0;
  margin-bottom: 10px;
}
.hero .container {
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 13px;
}
.hero h1 {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 17px;
}
.hero p {
  font-size: 1.15rem;
  color: #444;
}
@media (min-width: 800px) {
  .hero {
    padding: 80px 0 50px 0;
  }
  .hero h1 {
    font-size: 2.9rem;
    margin-bottom: 25px;
  }
}

/********************** FEATURES  ***********************/
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fafbfd;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.features h2 {
  color: var(--primary);
}
.features ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 0;
}
.features ul li {
  display: flex;
  align-items: center;
  font-size: 1.07rem;
  color: #222;
  gap: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.6;
}
.features ul li img {
  width: 29px;
  height: 29px;
  filter: grayscale(65%) contrast(1.1);
  opacity: 0.80;
}

/**************** CARDS, PREVIEWS & SUCCESS STORIES *************/
.article-preview, .classic-car-highlight, .investment-success {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 25px;
  margin-bottom: 20px;
  transition: box-shadow 0.20s, transform 0.17s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-preview:hover, .classic-car-highlight:hover, .investment-success:hover {
  box-shadow: 0 8px 32px rgba(34,34,34,0.11);
  transform: translateY(-2px) scale(1.01);
}
.classic-car-highlight h3, .investment-success h3 {
  font-size: 1.17rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  margin-bottom: 8px;
}

/***************** CTA, BUTTONS, LINKS ******************/
.cta {
  text-shadow: none;
  border: 1.5px solid var(--primary);
  box-shadow: 0 2px 12px rgba(34,49,65,0.07);
}
.cta.primary {
  background: var(--primary);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(34,49,65,0.10);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--secondary);
  color: #fff;
  border: none;
}
.cta:active {
  transform: scale(0.97);
}

/**************** FOOTER ****************/
footer {
  background: var(--primary);
  color: #fff;
  margin-top: 60px;
  padding-top: 46px;
  border-top: 7px solid var(--secondary);
  font-size: 1rem;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  padding-bottom: 34px;
}
.footer-logo {
  width: 58px;
  height: auto;
  margin-bottom: 12px;
}
.footer-links {
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: flex-start;
}
.footer-navigation, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-navigation a, .footer-legal a {
  color: #cfd5db;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  opacity: 0.85;
  margin-bottom: 1px;
  transition: color 0.16s, opacity 0.15s;
}
.footer-navigation a:hover, .footer-legal a:hover {
  color: var(--secondary);
  opacity: 1;
  text-decoration: underline;
}
.footer-contact {
  margin-top: 12px;
}
.footer-contact h3 {
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F2EFEA;
  margin-bottom: 7px;
  font-weight: 600;
}
.footer-contact ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 11px;
  color: #d8dadf;
  font-size: 0.97rem;
}
.footer-contact li img {
  width: 19px;
  filter: grayscale(100%) brightness(70%);
  opacity: 0.80;
}
.footer-bottom {
  padding: 16px 0 8px 0;
  border-top: 1px solid #304055;
  color: #d0d2d4;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

/* Responsive Footer */
@media (max-width:900px) {
  .footer-top {
    gap: 26px;
  }
  .footer-links {
    gap: 28px;
    flex-direction: column;
  }
  .footer-contact {
    margin-top: 6px;
  }
}
@media (max-width:600px) {
  .footer-top {
    flex-direction: column;
    gap: 17px;
  }
}

/********** CONTACT DETAILS and ABOUT PAGES *********/
.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}
.contact-details ul li {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-details ul li a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: underline;
}
.contact-info ul {
  list-style: disc inside;
  padding-left: 10px;
}

.about-details ul,
.process ol,
.services ul,
.investment-success ul,
.features ul,
.faq-list .content-wrapper ul,
.faq-list .faq-item ul {
  padding-left: 1.2em;
  margin-bottom: 0.7em;
}
.about-location {
  background: var(--accent);
  border-radius: var(--radius);
}

/*********** LEGAL PAGES ****************/
.legal {
  background: #f8f8f8;
  padding: 38px 17px 38px 17px;
  margin-bottom: 60px;
  border-radius: var(--radius);
}
.legal h1, .legal h2, .legal h3 {
  color: var(--primary);
}
.legal ul {
  margin-bottom: 1.2em;
}
.legal a {
  color: var(--primary);
  text-decoration: underline;
}
.legal a:hover { color: var(--secondary); }

/************* FAQ LIST ********************/
.faq-list .content-wrapper {
  gap: 21px;
}
.faq-item {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  margin-bottom: 8px;
  color: #232323;
  font-family: 'Montserrat', Arial, sans-serif;
}
.faq-item h3 {
  font-size: 1.11rem;
  color: var(--primary);
  margin-bottom: 7px;
}

/******* BLOG PREVIEW (Ratgeber) *********/
.blog-preview .content-wrapper {
  gap: 22px;
}
.categories-list {
  display: flex;
  flex-direction: row;
  gap: 10px;
  font-size: 0.98rem;
  color: #555;
  align-items: center;
  margin-top: 3px;
}
.categories-list a {
  color: var(--primary);
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.14s;
}
.categories-list a:hover {
  color: var(--secondary);
}

/***************** THANK YOU SECTION *****************/
.thank-you {
  background: #F2EFEA;
  border-radius: var(--radius);
  padding: 44px 23px 44px 23px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
}

/********* ENSURE NO GRID USAGE, ONLY FLEXBOX *********/
/* All layout containers above use display: flex and flex-wrap ONLY  */

/********** RESPONSIVE ADJUSTMENTS *********/
@media (max-width: 768px) {
  .container {
    width: 98%;
    padding-left: 6px;
    padding-right: 6px;
  }
  .main-navigation { display: none; }
  header .logo { height: 36px; }
  .footer-top {
    gap: 17px;
    padding-bottom: 16px;
  }
  .section, .features {
    margin-bottom: 38px;
    padding: 26px 7px;
  }
  .content-wrapper {
    gap: 13px;
  }
  .hero { padding: 33px 0 16px 0; }
  .card-container, .content-grid {
    gap: 11px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.96rem;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.45rem; }
  h1 { font-size: 1.66rem; }
  h2 { font-size: 1.16rem; }
}

/************* ANIMATIONS & EFFECTS *****************/
.cta, .cta.primary, .main-navigation a, .mobile-nav a, .card, .testimonial-card {
  transition: all 0.15s cubic-bezier(.77,0,.18,1);
}

/************* MONOCHROME-SOPHISTICATED EMPHASIS ************/
.section, .features, .about, .testimonial-card, .faq-item, .classic-car-highlight, .investment-success, .about-location, .thank-you, .card {
  border: 1px solid var(--border);
  background: #fff;
  color: #222;
}
blockquote {
  font-style: italic;
  color: #888;
  border-left: 4px solid var(--secondary);
  padding-left: 11px;
  margin-bottom: 18px;
}

/*********** COOKIE CONSENT BANNER **********/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.98);
  border-top: 2.5px solid var(--secondary);
  box-shadow: 0 -4px 18px rgba(34,34,34,0.08);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  z-index: 200;
  animation: cookieFadeIn 0.55s;
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: #212121;
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
.cookie-banner button {
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  margin: 0;
  margin-right: 4px;
  font-weight: 500;
  transition: background 0.17s, color 0.13s, border 0.12s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--secondary);
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  margin-right: 0;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

/***** COOKIE MODAL ******/
.cookie-modal-overlay {
  position: fixed;
  background: rgba(34, 34, 34, 0.72);
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 401;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.17s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 10px 42px rgba(34,34,34,0.18);
  padding: 36px 24px 22px 24px;
  width: 98%;
  max-width: 370px;
  color: #1a1a1a;
  position: relative;
  z-index: 402;
  display: flex;
  flex-direction: column;
  gap: 21px;
  animation: cookieModalIn 0.3s;
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: scale(0.97) translateY(40px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
}
.cookie-category input[type="checkbox"]:disabled {
  cursor: not-allowed;
}
.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #888;
  cursor: pointer;
  z-index: 20;
}
.cookie-modal .close:focus {
  color: var(--primary);
  outline: 2px dashed var(--secondary);
}

/********** ACCESSIBILITY & MICROINTERACTIONS ******/
a:focus, button:focus, .cta:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}
button:active {
  transform: scale(0.98);
}

/***** SPECIFIC PADDING AND GAP INSTRUCTIONS *****/
.features ul, .about ul, .faq-list .content-wrapper, .services ul, .investment-success ul, .classic-car-highlight {
  gap: 17px;
}

/******** HELPERS ********/
.mt-20 { margin-top: 20px; }
.mb-28 { margin-bottom: 28px; }
.mb-16 { margin-bottom: 16px; }

/* Hide visually, but keep accessible (for A11y) */
.visually-hidden { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px 1px 1px 1px); white-space: nowrap; }

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