/* --- 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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F8F7F4;
  color: #252525;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
a {
  color: #23467C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #BFA150;
  outline: none;
}
ul, ol {
  margin-bottom: 1.5em;
  padding-left: 1.4em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- BRAND TYPOGRAPHY --- */
h1, .h1 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #23467C;
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.24;
  color: #23467C;
  margin-bottom: 16px;
}
h3, .h3 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: #23467C;
  margin-bottom: 12px;
}
h4, .h4, h5, .h5 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  color: #23467C;
}
p, li, span, label, input, button {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #222;
}
strong, b {
  font-weight: 600;
}
small {
  font-size: 0.85rem;
  color: #888;
}

/* --- LUXURY PREMIUM COLORS --- */
:root {
  --primary: #23467C;
  --secondary: #A4B37B;
  --accent: #F2F2F2;
  --lux-gold: #BFA150;
  --offwhite: #F8F7F4;
  --text-dark: #222;
  --text-light: #fff;
  --shadow-card: 0 2px 16px rgba(43, 46, 65, 0.12);
  --shadow-hover: 0 4px 24px rgba(43, 46, 65, 0.16);
  --border-radius: 16px;
  --gap-lg: 32px;
  --gap-md: 24px;
  --gap: 20px;
}


/* --- CONTAINER & SECTIONS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- HEADER --- */
header {
  background: var(--text-light);
  box-shadow: 0 2px 16px rgba(43,46,65,.04);
  border-bottom: 1px solid #E7E4DF;
  position: sticky;
  top: 0;
  z-index: 90;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
header img {
  height: 44px;
  margin-right: 32px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: .05em;
  color: var(--primary);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
  font-weight: 500;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus, .main-nav a.active {
  color: var(--lux-gold);
  border-bottom: 2px solid var(--lux-gold);
}

.cta, button.cta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  padding: 13px 32px;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(43,46,65,.07);
  background: var(--lux-gold);
  color: var(--text-light);
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.25s, filter .2s;
  margin-left: 24px;
  text-shadow: 0 1px 1px rgba(43,46,65,.07);
}
.cta.primary {
  background: var(--primary);
  color: var(--lux-gold);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--lux-gold);
  color: var(--primary);
  filter: brightness(1.08);
  box-shadow: var(--shadow-hover);
}
.cta:hover, .cta:focus {
  background: #dac075;
  color: var(--primary);
  box-shadow: var(--shadow-hover);
}

/* --- BURGER MENU (Mobile) --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.1rem;
  cursor: pointer;
  margin-left: 0.7em;
  padding: 6px 12px 6px 6px;
  line-height: 1;
  z-index: 102;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--accent);
  color: var(--lux-gold);
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(38,47,81, 0.98);
  color: var(--text-light);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.77,0,.18,1);
  box-shadow: 0 6px 60px 0 rgba(34,38,57,0.12);
  padding-top: 0;
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--lux-gold);
  font-size: 2rem;
  cursor: pointer;
  padding: 24px 24px 12px 20px;
  align-self: flex-end;
  transition: color .2s, background .2s;
  line-height: 1;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--primary);
  background: rgba(191,161,80,.13);
  border-radius: 50%;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  margin-top: 32px;
  align-items: flex-start;
  padding-left: 34px;
}
.mobile-nav a {
  color: var(--lux-gold);
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 8px 0;
  border-left: 4px solid transparent;
  transition: color 0.18s, border-color 0.23s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--primary);
  border-left: 4px solid var(--lux-gold);
}

/* --- HERO --- */
.hero {
  background: linear-gradient(120deg, var(--offwhite) 60%, #e9e6e0 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  border-bottom: 2px solid #ebe6d2;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 340px;
  justify-content: center;
  gap: var(--gap-lg);
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: .01em;
  margin-bottom: 10px;
}
.hero p {
  color: #444;
  font-size: 1.15rem;
}


/* --- CONTENT SPACING & WRAPPERS --- */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 20px;
}
/* Cards/Flex Patterns (MANDATORY) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--offwhite);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 24px;
  transition: box-shadow 0.23s, transform 0.25s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 36px 0 rgba(34,38,57,0.14);
  transform: translateY(-4px) scale(1.015);
}
.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;
  background: var(--accent);
  color: var(--text-dark);
  border-left: 5px solid var(--lux-gold);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px rgba(43,46,65,.11);
  padding: 20px;
  margin-bottom: 20px;
  flex: 1 1 320px;
  max-width: 680px;
}
.testimonial-card p {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #7a6b3d;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- TRUST BADGES & PARTNER LOGOS --- */
.trust-badges, .partner-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 14px;
}
.trust-badges img, .partner-logos img {
  height: 48px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(43,46,65,.07);
  padding: 5px;
}

/* --- ACCORDION FAQ Preview --- */
.accordion-preview, .accordion-faq {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}
.accordion-preview > div,
.accordion-faq > h3 {
  background: var(--accent);
  border-radius: 10px;
  padding: 20px 20px 16px 24px;
  box-shadow: 0 1px 10px rgba(43,46,65,.07);
  border-left: 4px solid var(--lux-gold);
}
.accordion-faq > h3 {
  padding-bottom: 7px; margin-bottom: 0;
  font-size: 1.13rem;
  color: var(--primary);
  font-weight: 700;
  border-left: 4px solid var(--primary);
}
.accordion-faq ul {
  margin: 10px 0 18px 0;
  padding-left: 18px;
}

/* --- BUTTON & LINKS --- */
button, .cta, input[type=submit] {
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s, box-shadow .23s;
}
button:focus, .cta:focus {
  box-shadow: 0 0 0 2px var(--lux-gold), 0 2px 14px rgba(43,46,65,.10);
}

/* --- CALL TO ACTION TEASER & CONTACT --- */
.contact-teaser, .cta-section, .call-appointment {
  background: linear-gradient(100deg, var(--primary) 60%, #293f6b 100%);
  color: var(--lux-gold);
  border-radius: var(--border-radius);
  margin: 38px 0 24px 0;
  padding: 40px 16px;
  box-shadow: 0 3px 16px rgba(43,46,80,.07);
}
.contact-teaser h2,
.cta-section h2,
.call-appointment h2 {
  color: var(--lux-gold);
}
.contact-teaser .cta, .cta-section .cta, .call-appointment .cta {
  background: var(--lux-gold);
  color: var(--primary);
  margin-top: 16px;
}

.contact-details, .contact-info-brief {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 22px;
  color: #26304b;
  font-size: 1.1rem;
}
.contact-details strong { color: var(--primary); }
.contact-info-brief span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: var(--text-dark);
}

/* --- LISTS & STEPS --- */
ul, ol {
  margin-bottom: 18px;
  padding-left: 23px;
}
ul li, ol li {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.4;
  color: #2b2b24;
}
ul li img {
  margin-right: 9px;
  vertical-align: middle;
  height: 28px;
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: var(--lux-gold);
  margin-top: 40px;
  padding: 32px 0 0 0;
  border-top: 3px solid var(--lux-gold);
  font-size: 1rem;
  box-shadow: 0 -4px 40px rgba(40,47,68, 0.05);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--lux-gold);
  opacity: .9;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.19s, opacity .16s;
  margin-right: 8px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  border-bottom: 2px solid var(--lux-gold);
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
  color: #f9eed0;
}
.footer-contact span {
  display: flex;
  align-items: center;
  color: #f9eed0;
  gap: 11px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  color: #f8f6eb;
  font-size: 1.03rem;
  opacity: .92;
}
.footer-brand span {
  color: #f8f6eb;
}
.footer-brand img {
  height: 30px;
  margin-bottom: 7px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  border-top: 2px solid var(--lux-gold);
  box-shadow: 0 -2px 18px 0 rgba(43,46,65,.09);
  z-index: 9999;
  padding: 16px 26px 16px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 1rem;
  animation: slideInUp 0.51s cubic-bezier(.6,.18,.44,1.01);
}
@keyframes slideInUp {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-text {
  flex: 1 1 auto;
  color: #222;
  font-size: 1rem;
}
.cookie-banner .cookie-btn {
  margin-left: 9px;
  padding: 11px 21px;
  border-radius: 9px;
  border: none;
  background: var(--lux-gold);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.19s, color 0.19s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--primary);
  color: var(--lux-gold);
}
.cookie-banner .cookie-btn.settings {
  background: var(--primary);
  color: #fff;
  margin-left: 4px;
  font-weight: 500;
}
.cookie-banner .cookie-btn.settings:hover,
.cookie-banner .cookie-btn.settings:focus {
  background: var(--lux-gold);
  color: var(--primary);
}

/* Cookie Modal */
#cookie-modal {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10101;
  width: 95vw;
  max-width: 440px;
  background: #fff;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -6px 36px rgba(43,46,65,.16);
  padding: 25px 28px 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  animation: slideInUp 0.49s cubic-bezier(.7,.25,.78,1.02);
}
#cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.3rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  margin: 8px 0;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--lux-gold);
  width: 20px;
  height: 20px;
}
.cookie-category .locked {
  color: #9a9a93;
  letter-spacing: .01em;
  font-weight: 500;
}
#cookie-modal .cookie-btn-row {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
#cookie-modal .cookie-btn {
  border-radius: 9px;
  padding: 11px 27px;
  background: var(--lux-gold);
  color: var(--primary);
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.16s, color .16s;
}
#cookie-modal .cookie-btn:focus, #cookie-modal .cookie-btn:hover {
  background: var(--primary);
  color: var(--lux-gold);
}
@media (max-width: 600px) {
  #cookie-modal {padding: 15px 7vw 14px 7vw;}
}

/* --- SECTION RESPONSIVE GAPS --- */
@media (max-width: 1100px) {
  .container { max-width: 97vw; }
}
@media (max-width: 900px) {
  .container { max-width: 99vw; }
  .content-wrapper { gap: 16px; }
}

/* --- RESPONSIVE LAYOUT & FLEXBOX --- */
@media (max-width: 1024px) {
  .main-nav { gap: 14px; }
  header .container { padding-left: 10px; padding-right: 10px; }
  .content-grid, .card-container { gap: 16px; }
}
@media (max-width: 860px) {
  .hero h1 { font-size: 2rem; }
}
@media (max-width: 768px) {
  .main-nav, .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .footer-nav { gap: 14px; }
  .footer-brand, .footer-contact { font-size: .97rem; }
  
  .content-wrapper {gap: 13px;}
  .container {padding-left: 8px;padding-right: 8px;}
  .section {padding:28px 6px; margin-bottom:36px;}
  .hero .container {min-height:unset;}
  .card, .testimonial-card { padding: 16px 11px; }
  .card-container { gap: 12px; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .content-grid { flex-direction: column; gap: 14px; }
  .call-appointment, .cta-section, .contact-teaser {padding:24px 6px;}
  .footer-brand img {height:22px;}
}
@media (max-width: 600px) {
  h1, .h1 {font-size: 1.45rem;}
  h2, .h2 {font-size:1.1rem;}
  .hero { min-height: 200px; }
  .section { margin-bottom:22px; padding:14px 2px; }
  .card {padding:10px 6px;}
}

/* --- EXTRAS FOR VISUAL HIERARCHY & LUXURY --- */
.card, .testimonial-card, .accordion-preview > div, .accordion-faq > h3 {
  border: 1px solid #f0ead1;
}

.card h3, .card strong, .testimonial-card strong {
  color: var(--lux-gold);
}

.card:before, .testimonial-card:before {
  content: "";
  position: absolute;
  left: -5px;
  top: 20px;
  width: 5px;
  height: 60px;
  background: var(--lux-gold);
  border-radius: 8px;
  opacity: 0.06;
  display: none;
}
.card:hover:before, .testimonial-card:hover:before {
  opacity: 0.20;
}

/* Flat gold accent shadow on hover for visual luxury */
.card:hover, .testimonial-card:hover, .accordion-preview > div:hover {
  box-shadow: 0 6px 30px 0 rgba(191,161,80,.13);
}

/* Icon accent for inline icons */
ul li img, .footer-contact img {
  filter: grayscale(0.22) brightness(1.13) sepia(0.18) saturate(2.8) hue-rotate(-18deg) drop-shadow(0 1px 2px #fff3);
  margin-right: 6px;
}

/* --- MISCELLANEOUS --- */
::-webkit-input-placeholder { color: #aaa; }
::-moz-placeholder          { color: #aaa; }
:-ms-input-placeholder      { color: #aaa; }
::placeholder              { color: #aaa; }

[tabindex]:focus { outline: 2px solid var(--lux-gold); }

/* Hide visually but keep accessible */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- PRINT --- */
@media print {
  * { background: #fff !important; color: #111 !important; }
  header, footer, .cookie-banner, #cookie-modal { display: none !important; }
}
