/* CSS RESET & BASE TYPOGRAPHY */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F7F9FB;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #1A2233;
  background: #F7F9FB;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}
:root {
  --luxury-blue: #244CA3;
  --luxury-gold: #C4A154;
  --luxury-dark: #232629;
  --luxury-grey: #ECEEF3;
  --luxury-accent: #F7F9FB;
  --luxury-link: #16BA8C;
  --luxury-shadow: 0 2px 24px rgba(36,76,163,0.07);
  --luxury-radius: 14px;
  --luxury-spacing: 32px;
  --luxury-section-spacing: 60px;
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #232629;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
h3 {
  font-size: 1.44rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, ol {
  margin-bottom: 18px;
}
ul, ol {
  padding-left: 24px;
}
b {
  font-weight: 600;
}
a {
  color: var(--luxury-link);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--luxury-gold);
}
img {
  max-width: 100%;
  height: auto;
  border-radius: var(--luxury-radius);
}

/* LUXURY PREMIUM STYLE */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* HEADER + NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #ECEEF3;
  box-shadow: 0 1px 16px rgba(36,76,163,0.04);
  z-index: 1002;
  position: relative;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 78px;
}
header .content-wrapper {
  flex-direction: row;
  align-items: center;
  gap: 40px;
  width: 100%;
}
header img {
  height: 46px;
  border-radius: 0;
  margin-right: 28px;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #244CA3;
  padding: 8px 16px;
  border-radius: 7px;
  transition: background 0.16s, color 0.16s;
  position: relative;
}
nav a.cta-primary {
  background: var(--luxury-gold);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-left: 10px;
  box-shadow: 0 2px 14px rgba(196,161,84,0.10);
  border: none;
  outline: none;
}
nav a.cta-primary:hover,
nav a.cta-primary:focus {
  background: #b09347;
  color: #fff;
}
nav a:hover,
nav a:focus:not(.cta-primary) {
  background: var(--luxury-gold);
  color: #fff;
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 1011;
  background: #fff;
  border: 2px solid var(--luxury-gold);
  color: var(--luxury-gold);
  padding: 8px 14px;
  font-size: 2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-toggle:hover {
  background: var(--luxury-gold);
  color: #fff;
}
.mobile-menu {
  display: none;
}
.mobile-menu[aria-expanded="true"], .mobile-menu.active {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 2050;
  box-shadow: 0 8px 32px rgba(36,76,163,0.10);
  transform: translateX(0);
  transition: transform 0.38s cubic-bezier(.76,0,.24,1);
  padding: 24px;
  animation: mobileMenuIn 0.5s;
}
@keyframes mobileMenuIn {
  from {transform: translateX(100vw);}
  to {transform: translateX(0);}
}
.mobile-menu nav {
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
.mobile-nav a {
  font-size: 1.3rem;
  display: block;
  padding: 18px 0 12px 0;
  color: #244CA3;
  font-family: 'Montserrat', Arial, sans-serif;
  border-bottom: 1px solid #ECEEF3;
  border-radius: 0;
  background: transparent;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a.cta-primary {
  background: var(--luxury-gold);
  color: #fff;
  border-radius: 8px;
  margin: 12px 0;
  text-align: center;
}
.mobile-menu-close {
  background: transparent;
  color: var(--luxury-gold);
  font-size: 2.3rem;
  border: none;
  padding: 12px 10px 6px 0;
  cursor: pointer;
  position: absolute;
  right: 7px; top: 8px;
  z-index: 2060;
}
@media (max-width: 1050px) {
  nav {
    gap: 8px;
  }
}
@media (max-width: 900px) {
  nav {
    gap: 4px;
  }
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* SECTIONS, FLEX LAYOUTS, SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--luxury-radius);
  box-shadow: var(--luxury-shadow);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--luxury-radius);
  margin-bottom: 20px;
  box-shadow: 0 4px 18px rgba(36,76,163,0.09);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 270px;
  transition: box-shadow 0.22s;
}
.card:hover {
  box-shadow: 0 8px 30px rgba(196,161,84,0.15),0 2px 24px rgba(36,76,163,0.09);
  z-index: 3;
}
.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;
  background: #ECEEF3;
  border-radius: var(--luxury-radius);
  box-shadow: 0 2px 8px rgba(36,76,163,0.04);
  margin-bottom: 20px;
  min-width: 240px;
  border-left: 4px solid var(--luxury-gold);
}
.testimonial-card p {
  font-size: 1.15rem;
  color: #232629;
  font-weight: 500;
  margin-bottom: 12px;
  margin-top: 0;
}
.testimonial-card span {
  font-size: 0.99rem;
  color: #244CA3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-right: 10px;
}
.testimonial-card div {
  color: var(--luxury-gold);
  margin-left: auto;
  font-size: 1.2em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 18px 14px;
}

/* BUTTONS, CTA, INTERACTIONS */
.cta-primary, button, .btn {
  display: inline-block;
  padding: 13px 38px;
  background: var(--luxury-gold);
  color: #fff;
  border-radius: 99px;
  border: none;
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 18px rgba(196,161,84,0.08);
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow 0.16s;
}
.cta-primary:hover, .cta-primary:focus, button:hover, button:focus, .btn:hover {
  background: #b09347;
  color: #fff;
  box-shadow: 0 8px 30px rgba(196,161,84,0.15);
  outline: none;
}

/* FORMS */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #C4A15433;
  padding: 12px 15px;
  margin-bottom: 14px;
  background: #f8fafc;
  color: #1A2233;
  transition: border 0.2s, box-shadow 0.2s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--luxury-gold);
  outline: none;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #244CA3;
  font-weight: 600;
}

/* FOOTER */
footer {
  background: #fff;
  box-shadow: 0 -2px 18px rgba(36,76,163,0.04);
  margin-top: 60px;
  padding-bottom: 24px;
  padding-top: 0;
}
footer .section {
  background: transparent;
  box-shadow: none;
  margin-bottom: 0;
  padding: 0;
}
footer .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
}
footer nav {
  flex-direction: column;
  gap: 10px;
  min-width: 148px;
}
footer nav a {
  color: #244CA3;
  font-size: 1rem;
  font-weight: 500;
  background: transparent;
  padding: 2px 0;
}
footer nav a:hover, footer nav a:focus {
  color: var(--luxury-gold);
}
footer ul {
  list-style: none;
  margin: 0 0 12px 0;
  padding: 0;
}
footer ul li a {
  color: #244CA3;
  text-decoration: underline dotted;
  transition: color 0.14s;
  font-size: 0.98rem;
}
footer ul li a:hover { color: var(--luxury-gold); }
footer .contact-summary {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #232629;
  font-size: 0.98rem;
}
footer .contact-summary img {
  height: 18px;
  width: 18px;
  margin-right: 8px;
  border-radius: 0;
}
footer .social-media-links {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}
footer .social-media-links img {
  width: 35px; height: 35px; border-radius: 50%; background: #ECEEF3;
  padding: 6px;
  transition: box-shadow 0.18s, background 0.17s;
}
footer .social-media-links a:hover img {
  background: var(--luxury-gold);
  box-shadow: 0 2px 12px rgba(196,161,84,0.12);
}

/* COOKIE CONSENT BANNER (MANDATORY) */
.cookie-consent-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 26px;
  z-index: 3500;
  background: #fff;
  box-shadow: 0 8px 28px rgba(36,76,163,0.09),0 1.5px 16px rgba(196,161,84,0.10);
  border-radius: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 32px;
  max-width: 800px;
  margin: 0 auto;
  animation: cookieBannerIn 0.68s;
}
@keyframes cookieBannerIn {
  from {transform: translateY(100%); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}
.cookie-consent-banner p {
  color: #232629;
  font-size: 1.03rem;
  margin-bottom: 0;
  flex: 1;
}
.cookie-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-consent-banner button,
.cookie-consent-banner .cta-primary {
  padding: 11px 36px;
  font-size: 1.07rem;
  border-radius: 8px;
  border: 1.4px solid var(--luxury-gold);
  background: var(--luxury-gold);
  color: #fff;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  min-width: 120px;
  box-shadow: 0 2px 12px rgba(196,161,84,0.07);
}
.cookie-consent-banner button.reject, .cookie-consent-banner button.reject-all {
  background: #ECEEF3;
  color: #244CA3;
  border-color: #ECEEF3;
}
.cookie-consent-banner button.reject:hover, .cookie-consent-banner button.reject-all:hover {
  background: #f5e8d7;
  color: #C4A154;
  border-color: var(--luxury-gold);
}
.cookie-consent-banner button.settings {
  background: transparent;
  color: #244CA3;
  border: 1.2px solid #244CA3;
}
.cookie-consent-banner button.settings:hover {
  background: #ECEEF3;
  color: #b09347;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 3700;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(52, 56, 67, 0.43);
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
  animation: fadeIn 0.33s;
}
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }
.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 54px rgba(36,76,163,0.15);
  max-width: 440px;
  width: 96vw;
  padding: 36px 28px 26px 28px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.47rem;
  color: #244CA3;
  margin-bottom: 15px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 600;
  color: #232629;
}
.cookie-modal-close {
  position: absolute;
  top: 15px; right: 13px;
  background: transparent;
  border: none;
  color: var(--luxury-gold);
  font-size: 1.9rem;
  cursor: pointer;
}
.cookie-modal button.save {
  margin-top: 10px;
  min-width: 100px;
}

/* CHECKBOXES IN MODAL */
.cookie-categories input[type="checkbox"] {
  accent-color: var(--luxury-gold);
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.cookie-categories input[type="checkbox"][disabled] {
  accent-color: #b5a173;
  cursor: not-allowed;
}

/* RESPONSIVE FLEX LAYOUTS */
@media (max-width: 1050px){
  .content-wrapper {
    gap: 16px;
  }
  .card-container, .content-grid, .text-image-section {
    gap: 16px;
  }
  footer .content-wrapper {
    gap: 34px;
  }
}
@media (max-width: 900px){
  .footer .content-wrapper {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .container { padding: 0 6px; }
  .section {
    margin-bottom: 34px;
    padding: 24px 8px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .card {
    min-width: 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
    gap: 8px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 12px;
    gap: 12px;
    max-width: none;
    left: 0; right: 0;
    width: 96vw;
  }
  .cookie-modal-content {
    padding: 26px 10px 18px 12px;
  }
}

/* LUXURY DETAILS: ACCENTS, DECORATIVE ELEMENTS */
hr {
  border: none;
  border-top: 2px solid var(--luxury-gold);
  margin: 24px 0;
}
.section {
  position: relative;
}
.section::before {
  content: '';
  display: block;
  position: absolute;
  left: 22px; top: 22px;
  width: 44px; height: 3.2px;
  background: var(--luxury-gold);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .section::before { left: 7px; top: 7px; width: 28px; }
}

/* VISUAL DETAILS */
.card, .section, .testimonial-card {
  box-shadow: var(--luxury-shadow);
}
.section h2, .section h3 {
  position: relative;
  padding-left: 8px;
}
.section h2::after, .section h3::after {
  content: '';
  display: inline-block;
  margin-left: 10px;
  width: 26px; height: 3px;
  background: var(--luxury-gold);
  border-radius: 2px;
  vertical-align: middle;
}

/* Micro-interactions & Transitions */
.cta-primary, button, .btn, a {
  transition: background 0.18s, color 0.17s, border 0.16s, box-shadow 0.16s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 34px rgba(196,161,84,0.16),0 2px 24px rgba(36,76,163,0.09);
  border-color: var(--luxury-gold);
}

/* ACCESSIBILITY: CONTRAST & FOCUS STATES */
a:focus, button:focus, .cta-primary:focus {
  outline: 3px solid var(--luxury-gold);
  outline-offset: 2px;
}
nav a:focus {
  position: relative;
  box-shadow: 0 0 0 2px var(--luxury-gold);
}

/* MISCELLANEOUS */
::-webkit-scrollbar {
  width: 8px; background: #f5f5f3;
}
::-webkit-scrollbar-thumb {
  background: var(--luxury-gold); border-radius: 6px;
}

/* UTILITIES */
.text-center { text-align: center; }
.w-100 { width: 100%; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }

/* PRINT-FRIENDLY COLORS */
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu, .mobile-menu-toggle { display: none !important; }
}
