/* =============== 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, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  background: #F3F0EB;
  color: #23303B;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
button {
  cursor: pointer;
}

/* =============== BRAND FONTS =============== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Source+Sans+Pro:wght@400;600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #23303B;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
p, li, address {
  font-size: 1rem;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.8;
}
strong {
  font-weight: 600;
}
blockquote {
  font-size: 1.125rem;
  font-style: italic;
  color: #23303B;
  margin-bottom: 12px;
}
cite {
  font-size: 1rem;
  color: #8a7a54;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* =============== LUXURY COLOR PALETTE =============== */
:root {
  --primary: #23303B;
  --secondary: #F3F0EB;
  --accent: #B2945B;
  --gold: #B2945B;
  --offwhite: #FCFBF8;
  --text: #23303B;
  --dark: #11161a;
  --gray: #bcb6aa;
  --shadow: 0 4px 32px 0 rgba(35,48,59,.08);
  --radius: 18px;
}

/* =============== LAYOUT & CONTAINER =============== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--offwhite);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* =============== HEADER & NAVIGATION =============== */
header {
  width: 100%;
  background: var(--secondary);
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 2px 12px rgba(35,48,59,0.05);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 88px;
}
header nav {
  display: flex;
  gap: 28px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
header nav a:hover, header nav a:focus {
  color: var(--accent);
}
header nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: width 0.2s;
}
header nav a:hover::after, header nav a:focus::after {
  width: 80%;
}

.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: none;
  border: 2px solid var(--accent);
  color: var(--primary);
  font-size: 1.05rem;
  padding: 10px 32px;
  border-radius: 100px;
  margin-left: 16px;
  transition: all 0.2s cubic-bezier(.4,0,.2,1);
  text-align: center;
  position: relative;
  box-shadow: 0 1px 8px rgba(178,148,91,0.05);
}
.cta.primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  box-shadow: 0 2px 18px 0 rgba(35,48,59,0.06);
}
.cta:hover, .cta:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 6px 24px 0 rgba(178,148,91,0.30);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary);
}

/* =============== MOBILE BURGER MENU =============== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 22px;
  background: var(--accent);
  color: #fff;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  z-index: 98;
  box-shadow: 0 2px 16px rgba(35,48,59,0.10);
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--accent);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: var(--offwhite);
  box-shadow: -2px 0 24px rgba(35,48,59,.20);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.42,0,.59,1.08);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 30px 30px 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 60px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: var(--primary);
  padding: 12px 0 10px 8px;
  border-left: 4px solid transparent;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  border-left: 4px solid var(--accent);
  background: rgba(178,148,91,0.08);
}

/* Hide desktop nav on mobile & show burger */
@media (max-width: 992px) {
  header .container nav {
    display: none;
  }
  .cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 993px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
  header .container nav { display: flex; }
  .cta { display: inline-block; }
}

/* =============== HERO SECTION =============== */
.hero {
  background: linear-gradient(132deg,#f3f0eb 80%,#ece2d2 100%);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 60px 0 80px 0;
  margin-bottom: 0;
  box-shadow: 0 2px 22px 0 rgba(35,48,59,0.10);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 640px;
  text-align: center;
  gap: 28px;
}
.subheadline {
  font-size: 1.25rem;
  color: #846946;
  margin-bottom: 12px;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}

/* =============== FLEXBOX LAYOUTS =============== */
.feature_grid, .card-container, .service_cards, .service_list, .service_benefit_grid, .sample_vehicle_descriptions, .faq_accordion_list, .track_record_highlights, .differentiators_list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
}
.card-container {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .container {
    padding: 0 6vw;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  box-shadow: 0 2px 18px rgba(35,48,59,0.10);
  border-left: 6px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 32px;
  margin-bottom: 20px;
  max-width: 600px;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 14px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: none;
}

/* =============== CARDS & LISTS =============== */
.feature_grid li {
  background: #fff;
  flex: 1 1 230px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px 20px 20px;
  min-width: 210px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 4px solid var(--gold);
  margin-bottom: 0;
}
.feature_grid li img {
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
}

.service_cards, .service_list, .service_benefit_grid {
  gap: 24px;
  margin-bottom: 24px;
}
.service_cards > div, .service_list > div, .service_benefit_grid > div {
  flex: 1 1 270px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 13px 0 rgba(35,48,59,0.07);
  padding: 32px 20px 24px 20px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0;
  border-left: 3px solid var(--gold);
}
.service_cards > div span, .service_list > div span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  margin-top: 12px;
}
.service_benefit_grid > div img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}

.sample_vehicle_descriptions > div {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px 20px 20px;
  margin-bottom: 0;
  flex: 1 1 220px;
}

ul.selection_criteria_list li {
  margin-bottom: 18px;
}
.certification_notes, .investment_value_factors, .market_trends, .risk_and_return, .next_steps_info, .thank_you_message, .swiss_precision_note {
  font-size: 1rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 26px;
  color: #5d5132;
  margin: 18px 0 0 0;
}

/* Differentiators & Track Record */
.differentiators_list, .track_record_highlights {
  flex-direction: column;
  gap: 16px;
  margin-bottom: 14px;
}

/* FAQ Accordion */
.faq_accordion_list > div {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 22px;
  margin-bottom: 0;
  flex: 1 1 220px;
  min-width: 220px;
}

/* Privacy/GDPR/Cookie/Terms */
.privacy_policy_text, .gdpr_compliance_section, .cookie_policy_text, .terms_of_use_text {
  padding: 18px 0 0 0;
  color: var(--primary);
}

/* Address & Contact Info */
.address {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 0;
}
.address a {
  color: var(--gold);
  text-decoration: underline;
  transition: color 0.2s;
}
.address a:hover, .address a:focus {
  color: var(--primary);
}

/* =============== FORMS =============== */
form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
  max-width: 480px;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 1rem;
}
input[type="text"], input[type="email"], textarea {
  border: 1.5px solid #C3B8A1;
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 1rem;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  background: #fff;
  color: var(--primary);
  transition: border-color 0.2s;
}
input:focus, textarea:focus {
  border-color: var(--accent);
}
textarea {
  min-height: 110px;
}
form button[type="submit"] {
  align-self: flex-start;
  background: var(--gold);
  color: var(--primary);
  border: none;
  border-radius: 100px;
  padding: 10px 38px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 2px 15px 0 rgba(178,148,91,0.08);
  margin-top: 8px;
  transition: background 0.2s, color 0.2s;
}
form button[type="submit"]:hover, form button[type="submit"]:focus {
  background: var(--primary);
  color: #fff;
}

/* =============== FOOTER =============== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 48px 0 36px 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
footer nav {
  display: flex;
  gap: 24px;
  margin-bottom: 10px;
}
footer nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
}
footer .brand img {
  height: 48px;
  width: auto;
  margin-bottom: 8px;
}
footer .address {
  color: #fff;
  font-size: 1rem;
  line-height: 1.7;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}

/* =============== COOKIE CONSENT BANNER =============== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 -2px 20px 0 rgba(35,48,59,0.10);
  border-top: 3px solid var(--gold);
  z-index: 120;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 18px;
  font-size: 1rem;
  animation: cbannerUp 0.45s cubic-bezier(.39,0,.57,1.18);
}
@keyframes cbannerUp {
  0% { transform: translateY(120px); opacity: 0; }
 100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 200px;
  min-width: 170px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 8px 23px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.18s, color 0.2s;
  box-shadow: 0 1px 12px 0 rgba(178,148,91,0.05);
  margin: 0;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-banner button.cookie-settings {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: var(--accent);
  color: #fff;
}

/* Cookie Preferences Modal */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 130;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,48,59,0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInBackdrop 0.3s ease;
}
@keyframes fadeInBackdrop {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  padding: 38px 26px 30px 26px;
  border-radius: var(--radius);
  box-shadow: 0 8px 46px 0 rgba(35,48,59,0.20);
  width: 98vw;
  max-width: 420px;
  z-index: 140;
  position: relative;
  animation: modalPop 0.45s cubic-bezier(.39,0,.57,1.18);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
@keyframes modalPop {
  0% { transform: scale(0.95) translateY(60px); opacity: 0; }
 100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 4px;
}
.cookie-modal label {
  font-size: 1rem;
  margin-left: 8px;
  color: var(--primary);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 16px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 17px;
  right: 21px;
  color: var(--primary);
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: var(--accent);
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.cookie-modal input[type=checkbox]:not(:checked), .cookie-modal input[type=checkbox]:checked {
  accent-color: var(--gold);
  width: 18px;
  height: 18px;
}

/* =============== SPACING & RESPONSIVE BREAKPOINTS =============== */
@media (min-width: 768px) {
  .container {
    padding-left: 36px;
    padding-right: 36px;
  }
  .content-wrapper {
    gap: 48px;
  }
  .section {
    padding: 60px 44px;
  }
  .hero .content-wrapper {
    gap: 38px;
  }
  .testimonial-card { max-width: 700px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.09rem; }
  .section {
    margin-bottom: 36px;
    padding: 28px 5vw;
  }
  .feature_grid, .card-container, .service_cards, .service_list, .service_benefit_grid, .sample_vehicle_descriptions {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 480px) {
  .container { padding-left: 2vw; padding-right: 2vw; }
  .section { padding: 18px 3vw; }
  h1 { font-size: 1.3rem; }
  .hero {
    padding: 36px 0 40px 0;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* =============== ANIMATIONS & MICRO-INTERACTIONS =============== */
a, button, .cta, input, textarea {
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
}
.card, .service_cards > div, .service_list > div, .feature_grid li, .testimonial-card, .sample_vehicle_descriptions > div, .faq_accordion_list > div, .section {
  transition: box-shadow 0.18s, transform 0.17s;
}
.card:hover, .service_cards > div:hover, .service_list > div:hover, .feature_grid li:hover, .testimonial-card:hover, .sample_vehicle_descriptions > div:hover, .faq_accordion_list > div:hover {
  box-shadow: 0 6px 30px 0 rgba(35,48,59,.20);
  transform: translateY(-2px) scale(1.02);
}

/* Subtle icon animations */
.feature_grid li img, .service_benefit_grid > div img {
  transition: filter 0.18s, transform 0.24s;
}
.feature_grid li:hover img, .service_benefit_grid > div:hover img {
  filter: brightness(1.1) contrast(1.2) drop-shadow(0 2px 8px #b2945b55);
  transform: scale(1.14) rotate(-4deg);
}

/* =============== OVERRIDES FOR SPECIFIC ELEMENTS =============== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.trust_elements {
  margin-top: 16px;
}
.swiss_precision_note {
  background: #ededed;
  color: var(--primary);
  border-left: 4px solid var(--gold);
  margin-top: 12px;
  font-style: italic;
}
.location_map {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 24px 18px;
  color: var(--primary);
}

/* Section anchors (top offset for sticky nav) */
[id] {
  scroll-margin-top: 110px;
}

/* =============== VISUAL DETAILS & LUXURY ACCENTS =============== */
.section, .card, .testimonial-card, .feature_grid li, .service_cards > div, .service_list > div, .service_benefit_grid > div, .sample_vehicle_descriptions > div {
  border-bottom: 3px solid #e8dcc5;
}
.card, .testimonial-card, .feature_grid li, .service_cards > div, .service_list > div, .service_benefit_grid > div, .sample_vehicle_descriptions > div {
  border-top: 0.5px solid #f9f4ea;
}

/* =============== Z-INDEX, SHADOWS, LAYERING =============== */
header, .mobile-menu, .cookie-banner, .cookie-modal-backdrop { z-index: 100; }
.mobile-menu { z-index: 110; }
.cookie-modal-backdrop { z-index: 120; }

/* =============== ACCESSIBILITY/CONTRAST =============== */
.testimonial-card {
  background: #fff;
  color: #23303B;
}
.testimonial-card blockquote {
  color: #23303B;
  font-size: 1.15rem;
}
.testimonial-card cite {
  color: #B2945B;
}

/* =============== PRINT OVERRIDES =============== */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal-backdrop, footer, .cta, .mobile-menu-toggle {
    display: none !important;
  }
  .section, .card, .testimonial-card { box-shadow: none !important; }
}
