/* ================================================================
   Luminary Zone Prestige – Scandinavian Clean CSS Theme (Flexbox Only)
   Brand: Élégance raffinée, sophistication contemporaine, service sur-mesure
   Font stack: Playfair Display (serif), Montserrat (sans-serif as body)
   Colors: #1A202C (primary), #D4AF37 (secondary gold), #F2F2F2 (accent), white
   Layouts: Flexbox only (no grid/columns)
   Responsive: Mobile-first
   ================================================================ */
   /* ------------- CSS RESET & BASE ------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F2F2F2;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background-color: #F2F2F2;
  color: #1A202C;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #1A202C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D4AF37;
  outline: none;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 1em;
}
li + li {
  margin-top: 0.5em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #1A202C;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.7em;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.4rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.12rem; }
h5, h6 { font-size: 1rem; }

p, address {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.7;
  color: #1A202C;
  margin-bottom: 1.1em;
}
address {
  font-style: normal;
  opacity: 0.9;
}
::selection {
  background: #D4AF37;
  color: #fff;
}

/* ------------- LAYOUT HELPERS & CONTAINERS ------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(26,32,44,0.05);
  padding: 40px 20px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content-wrapper.text-section {
  background: transparent;
  box-shadow: none;
  padding: 0 0 24px 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(26,32,44,0.07);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s;
  flex: 1 1 290px;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(26,32,44,0.11);
}
.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 {
  background: #F8F8F7;
  color: #1A202C;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(26,32,44,0.06);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  flex: 1 1 265px;
  min-width: 0;
  transition: box-shadow 0.25s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(26,32,44,0.09);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 13px;
  padding: 16px 24px;
  box-shadow: 0 2px 8px rgba(26,32,44,0.03);
  margin-bottom: 20px;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.services-list > div {
  background: #FBFBFA;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(26,32,44,.04);
  flex: 1 1 230px;
  min-width: 230px;
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: box-shadow 0.2s, background 0.2s;
}
.services-list > div:hover {
  box-shadow: 0 6px 28px rgba(212,175,55,0.13);
  background: #fffdf8;
}
.services-list h3 {
  font-size: 1.18rem;
  margin-bottom: 4px;
  color: #1A202C;
}
.services-list span {
  color: #D4AF37;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 5px;
  font-size: 1rem;
}

/* ------------- BUTTONS & INTERACTIVE ------------- */
.cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  margin-top: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  background: #1A202C;
  color: #fff;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(26,32,44,0.08);
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.07s;
  outline: none;
}
.cta-main:hover, .cta-main:focus, .cta-main:active {
  background: #D4AF37;
  color: #1A202C;
  box-shadow: 0 6px 20px rgba(212,175,55,0.13);
  transform: translateY(-2px) scale(1.015);
}
button, .button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 32px;
  padding: 10px 20px;
  background: #D4AF37;
  color: #fff;
  cursor: pointer;
  transition: background 0.17s;
}
button:hover, .button:hover, button:focus {
  background: #1A202C;
  color: #fff;
}

/* ------------- HEADER & NAVIGATION ------------- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 20px 0;
  box-shadow: 0 4px 24px rgba(26,32,44,0.05);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .cta-main {
  margin-top: 0;
  margin-left: 24px;
  font-size: 1rem;
  padding: 11px 28px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1A202C;
  letter-spacing: 0.01em;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 0.18s, border-bottom 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #D4AF37;
  border-bottom: 2px solid #D4AF37;
}
header img {
  width: 130px;
  height: auto;
  margin-right: 18px;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 23px;
  right: 22px;
  z-index: 100;
  background: #fff;
  color: #1A202C;
  padding: 10px 16px;
  border-radius: 38px;
  border: 1.5px solid #E3E2E0;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(26,32,44,0.06);
  transition: background 0.17s, color 0.17s;
}
.mobile-menu-toggle:focus {
  background: #F5EED7;
  color: #D4AF37;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 300;
  transform: translateX(-100vw);
  transition: transform 0.3s cubic-bezier(.54,.09,.49,.99);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 24px;
  box-shadow: 0 8px 32px rgba(26,32,44,0.12);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #1A202C;
  padding: 8px 12px;
  font-size: 2rem;
  border: none;
  margin-bottom: 28px;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #D4AF37;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.22rem;
  font-weight: 500;
  color: #1A202C;
  border-radius: 10px;
  padding: 12px 0 10px 8px;
  transition: background 0.12s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F5EED7;
  color: #D4AF37;
}

/* Display burger only on mobile */
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  header .cta-main {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ------------- FOOTER ------------- */
footer {
  background: #fff;
  border-top: 1.5px solid #ECEAE6;
  padding: 32px 0 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  font-size: 1rem;
  color: #888;
}
footer img {
  width: 64px;
  height: auto;
  margin-bottom: 7px;
}
.footer-nav {
  display: flex;
  gap: 20px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #1A202C;
  font-weight: 500;
  font-size: 0.96rem;
  opacity: 0.79;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #D4AF37;
  opacity: 1;
}
.footer-contact {
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #444;
  font-size: 0.98rem;
}
.footer-contact a {
  color: #1A202C;
  font-weight: 600;
  transition: color 0.16s;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #D4AF37;
}

/* ------------- TYPOGRAPHY EXTRAS ------------- */
blockquote {
  background: #F8F8F7;
  border-left: 5px solid #D4AF37;
  padding: 24px 28px 20px 24px;
  border-radius: 13px;
  margin: 20px 0 18px 0;
  font-size: 1.08rem;
  color: #1A202C;
  font-family: 'Playfair Display', serif;
}
blockquote footer {
  margin-top: 12px;
  font-size: 0.92rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #B5B5B5;
}

/* ------------- COOKIE CONSENT BANNER & MODAL ------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #1A202C;
  box-shadow: 0 -2px 12px rgba(26,32,44,0.09);
  padding: 24px 20px 19px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 1000;
  font-size: 1rem;
  animation: cookie-fadein 0.5s;
}
@keyframes cookie-fadein {
  from { opacity: 0; bottom: -60px; }
  to { opacity: 1; bottom: 0; }
}
.cookie-banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  min-width: 125px;
  padding: 11px 16px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 42px;
  border: none;
  transition: background 0.17s, color 0.17s;
  background: #D4AF37;
  color: #fff;
}
.cookie-banner button.settings {
  background: #F2F2F2;
  color: #1A202C;
  border: 1.2px solid #E0E0DE;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #1A202C;
  color: #fff;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #EFEBDD;
  color: #1A202C;
}

.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,32,44,0.25);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-fadein 0.18s;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 36px rgba(26,32,44,0.17);
  padding: 36px 26px 28px 26px;
  min-width: 320px;
  max-width: 90vw;
  animation: cookie-fadein 0.28s;
}
.cookie-modal-header {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  color: #1A202C;
  margin-bottom: 16px;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal-category label {
  font-size: 1rem;
  color: #1A202C;
  font-weight: 500;
}
.cookie-modal-category input {
  accent-color: #D4AF37;
  width: 20px;
  height: 20px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: none;
  color: #1A202C;
  border: none;
  font-size: 1.45rem;
  position: absolute;
  top: 16px;
  right: 20px;
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: #D4AF37;
}

/* ------------- RESPONSIVE DESIGN (MOBILE-FIRST) ------------- */
@media (max-width: 900px) {
  .container {
    max-width: 97vw;
    padding: 0 7vw;
  }
  .content-wrapper {
    padding: 32px 8px;
  }
  .section {
    padding: 30px 8px;
    margin-bottom: 45px;
  }
  .card, .testimonial-card, .feature-item, .services-list > div {
    padding: 17px 12px;
    border-radius: 14px;
  }
}
@media (max-width: 768px) {
  .content-grid, .card-container, .services-list {
    flex-direction: column;
    gap: 16px;
  }
  .content-wrapper {
    gap: 14px;
    margin-bottom: 34px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 14px 11px;
    gap: 9px;
  }
  header {
    flex-direction: row;
    padding: 14px 0;
  }
  .footer-nav {
    gap: 10px;
    flex-wrap: wrap;
  }
  .footer-contact {
    font-size: 0.92rem;
  }
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.23rem; }
  h3, h4 { font-size: 1.08rem; }
}
@media (max-width: 540px) {
  .container {
    max-width: 100vw;
    padding: 0 2vw;
  }
  .content-wrapper, .section {
    padding: 7vw 3vw;
    margin-bottom: 24px;
  }
  .cta-main, button {
    width: 100%;
    font-size: 1rem;
  }
  blockquote {
    padding: 14px 9px 12px 14px;
    border-radius: 8px;
  }
}

/* ------------- MICRO-INTERACTIONS & ANIMATIONS ------------- */
.card, .testimonial-card, .feature-item, .services-list > div {
  transition: box-shadow 0.2s, background 0.16s, transform 0.12s;
}
.card:focus-within, .testimonial-card:focus-within, .feature-item:focus-within {
  box-shadow: 0 8px 32px rgba(212,175,55,0.11);
}
ul, ol {
  transition: color 0.12s, background 0.12s;
}
a.cta-main:active {
  transform: scale(0.97);
  box-shadow: 0 0 2px #D4AF37;
}

/* ------------- FORMS (for possible future contact form) ------------- */
input, textarea, select {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: 1.5px solid #E0E0DE;
  background: #FBFBFA;
  border-radius: 10px;
  padding: 11px 13px;
  margin-bottom: 14px;
  width: 100%;
  transition: border 0.17s, background 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: #D4AF37;
  background: #fff;
  outline: none;
}

/* ------------- ACCESSIBILITY FOCUS VISIBLE ------------- */
:focus-visible {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}

/* ------------- Z-INDEX LAYERS ------------- */
header {
  z-index: 21;
}
.mobile-menu {
  z-index: 300;
}
.cookie-banner {
  z-index: 1000;
}
.cookie-modal {
  z-index: 2000;
}

/* ------------- OVERRIDE NO GRID/COLUMNS ------------- */
/* No display: grid, no columns */

/* ------------- SCANDINAVIAN ELEMENTS: SPACING ------------- */
/* Consistent 20px/24px/32px/40px spacing, lots of white/neutral background, open space, very simple clean borders & smooth shadows. Natural tones. */
