/* ---------------------------------------
   CSS RESET & BASELINE for Cross-Browser
------------------------------------------ */
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;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F5F7FA;
  color: #23272D;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul, ol {
  list-style-position: inside;
}
button, input, select, textarea {
  font: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}

/* ---------------------------------------
         Luxury Premium Brand System
------------------------------------------ */
:root {
  --brand-primary: #1A3556;
  --brand-primary-rgb: 26,53,86;
  --brand-secondary: #6F9CAB;
  --brand-accent: #F5F7FA;
  --brand-gold: #C7A96A;
  --brand-gold-dark: #A38633;
  --brand-bg: #F5F7FA;
  --text-dark: #23272D;
  --text-light: #F5F7FA;
  --text-muted: #7B889A;
  --shadow-1: 0 6px 24px 0 rgba(26,53,86, 0.08), 0 1.5px 2px 0 rgba(199,169,106,0.12);
  --shadow-2: 0 2px 8px rgba(26,53,86,0.10);
  --radius-1: 16px;
  --radius-2: 10px;
  --transition-main: all 0.25s cubic-bezier(.45,.2,.12,.98);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ---------------------------------------
   LUXURY PREMIUM GLOBAL TYPOGRAPHY
------------------------------------------ */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.75rem; /* 44px */
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--brand-primary);
  margin-bottom: 24px;
  line-height: 1.12;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem; /* 32px */
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 18px;
  line-height: 1.14;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.375rem; /* 22px */
  font-weight: 600;
  color: var(--brand-secondary);
  margin-bottom: 14px;
}
p, ul, ol, blockquote, .text-section {
  font-family: var(--font-body);
  font-size: 1.125rem; /* 18px */
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.75;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 10px;
  padding-left: 0;
}
strong {
  font-weight: 700;
  color: var(--brand-primary);
}

/* ------------------------------
     LAYOUT: CONTAINER & WRAPPER
------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* ------------------------------
         SECTION SPACING
------------------------------- */
section {
  background: none;
  border-radius: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-bg);
  border-radius: var(--radius-1);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius-2);
  box-shadow: var(--shadow-2);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
}
.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: #fff;
  border-radius: var(--radius-2);
  box-shadow: var(--shadow-1);
  margin-bottom: 20px;
  border: 1.5px solid var(--brand-gold);
  font-size: 1.125rem;
  color: var(--text-dark);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-section {
  margin-bottom: 16px;
  font-size: 1.0625rem;
  color: var(--text-dark);
}

/* -----------------------------------
     LUXURY HEADER & NAVIGATION
------------------------------------ */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0px 2px 16px rgba(26,53,86,0.05);
  border-bottom: 2px solid var(--brand-gold);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 18px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--brand-primary);
  padding: 6px 10px;
  border-radius: 6px;
  position: relative;
  transition: color 0.18s, background 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--brand-gold-dark);
  background: rgba(199,169,106,0.07);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--brand-gold);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  border-radius: 32px;
  padding: 11px 30px;
  margin-left: 16px;
  border: none;
  box-shadow: 0 1px 4px 0 rgba(199,169,106,0.13);
  transition: background var(--transition-main), box-shadow var(--transition-main), color var(--transition-main);
  letter-spacing: 0.01em;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--brand-gold-dark);
  color: #fff;
  box-shadow: 0 6px 28px rgba(26,53,86,0.14);
}

/* -------------------------
      MOBILE NAVIGATION
---------------------------- */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-primary);
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  padding: 8px 14px;
  box-shadow: 0 2px 6px rgba(199,169,106,.07);
  margin-left: 16px;
  transition: background 0.25s;
  outline: none;
  z-index: 210;
  border: 1.5px solid var(--brand-gold);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--brand-gold);
  color: var(--brand-primary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  bottom: 0;
  background: rgba(26,53,86,0.90);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.75,.15,.4,1.01);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2rem;
  color: #fff;
  background: transparent;
  border: none;
  align-self: flex-end;
  margin: 24px 28px 0 0;
  padding: 2px 12px;
  border-radius: 50%;
  transition: background 0.2s;
  z-index: 220;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(199,169,106,.26);
  color: var(--brand-gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 54px 32px 0 38px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  border-radius: 8px;
  padding: 14px 7px 10px 0;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-gold);
  background: rgba(255,255,255,.07);
}

/* -----------------------------
         HERO SECTION
------------------------------ */
.hero {
  background: linear-gradient(100deg, #f8f7f5 55%, #ede7d6 100%);
  border-bottom: 2px solid var(--brand-gold);
  margin-bottom: 50px;
  padding-bottom: 24px;
}
.hero .container {
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 26px;
}
.hero h1 {
  color: var(--brand-primary);
  font-size: 2.5rem;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.3rem;
  color: var(--brand-secondary);
  margin-bottom: 22px;
  max-width: 640px;
}

/* --------------------------------
      STYLE LISTS WITH ICONS
--------------------------------- */
ul li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.125rem;
  margin-bottom: 13px;
  line-height: 1.55;
}
ul li img {
  width: 30px;
  height: 30px;
  min-width: 30px;
  margin-top: 2px;
  border-radius: 8px;
  background: #fffbe9;
  padding: 3px;
}

/* -----------------------------------------
      TESTIMONIALS & REVIEW SECTIONS
------------------------------------------ */
.testimonial-card {
  font-family: var(--font-body);
  background: #fff;
  color: #23272D;
  border-left: 5px solid var(--brand-gold);
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(26,53,86,0.08);
  padding: 28px 24px;
  margin-bottom: 22px;
  transition: box-shadow .22s;
  min-width: 260px;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 14px 28px 0 rgba(199,169,106,0.11);
}
.testimonial-card strong {
  color: var(--brand-gold-dark);
  font-weight: 700;
  margin-left: 10px;
  font-size: 1.08em;
}
.testimonial-card p {
  color: var(--brand-primary);
  font-size: 1.13rem;
  font-style: italic;
  font-weight: 500;
}

/* ---------------------------------
     FOOTER - LUXURY SIGNATURE
---------------------------------- */
footer {
  background: #17243d;
  border-top: 2px solid var(--brand-gold);
  color: var(--brand-accent);
  padding: 46px 0 20px 0;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-content > a img {
  height: 44px;
  width: auto;
  margin-bottom: 10px;
}
.footer-content nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-content nav a {
  color: var(--brand-accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.86;
  transition: color 0.18s;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.footer-content nav a:hover, .footer-content nav a:focus {
  color: var(--brand-gold);
  border-bottom: 2px solid var(--brand-gold);
}
.footer-content p {
  color: #bfcadd;
  font-size: 0.99rem;
  margin-top: 12px;
}

/* ---------------------------
      BUTTONS & INTERACTIVE
---------------------------- */
button, .button, .cta-btn {
  transition: background var(--transition-main), color var(--transition-main), box-shadow var(--transition-main);
}
button:active, button:focus, .cta-btn:active, .cta-btn:focus {
  outline: 2px solid var(--brand-gold-dark);
}

/* ---------------------------------
       COOKIE CONSENT BANNER
---------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fffbe9;
  color: #493308;
  z-index: 900;
  box-shadow: 0 -2px 12px rgba(26,53,86,0.11);
  padding: 22px 22px 22px 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1rem;
  border-top: 2.5px solid var(--brand-gold);
  transition: transform 0.34s cubic-bezier(.62,.2,.16,.9), opacity 0.2s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-shrink: 0;
}
.cookie-btn {
  background: var(--brand-gold);
  color: #fff;
  padding: 8px 22px;
  border-radius: 26px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  border: none;
  margin-left: 0;
}
.cookie-btn.settings {
  background: transparent;
  color: var(--brand-gold-dark);
  border: 1.5px solid var(--brand-gold);
  margin-right: 0;
}
.cookie-btn:hover, .cookie-btn:focus {
  box-shadow: 0 2px 12px rgba(199,169,106,0.13);
  background: var(--brand-gold-dark);
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--brand-gold);
  color: #fff;
}

/* -------- COOKIE MODAL ----------- */
.cookie-modal {
  position: fixed;
  z-index: 999;
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 53, 86, 0.82);
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.25s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: var(--text-dark);
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(199,169,106,0.16);
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 420px;
  min-width: 320px;
  position: relative;
}
.cookie-modal-content h2 {
  margin-bottom: 3px;
  color: var(--brand-primary);
  font-size: 1.25rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
  margin-bottom: 6px;
}
.cookie-category .toggle {
  --switch-color: var(--brand-gold);
  width: 38px;
  height: 24px;
  border-radius: 14px;
  background: #e8e3d1;
  position: relative;
  transition: background 0.2s;
}
.cookie-category input[type="checkbox"] {
  appearance: none;
  width: 38px;
  height: 24px;
  margin: 0;
  position: absolute;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}
.cookie-category input[type="checkbox"] + .switch {
  position: absolute;
  left: 0; top: 0;
  width: 38px;
  height: 24px;
  border-radius: 14px;
  background: #e8e3d1;
  transition: background 0.19s;
}
.cookie-category input[type="checkbox"]:checked + .switch {
  background: var(--brand-gold);
}
.cookie-category .switch::after {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.19s;
}
.cookie-category input[type="checkbox"]:checked + .switch::after {
  left: 17px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  color: var(--brand-gold-dark);
  background: none;
  border: none;
  font-size: 1.4rem;
  opacity: 0.87;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--brand-primary);
  opacity: 1;
}

/* ---------------------------------
     RESPONSIVE: MOBILE FIRST
---------------------------------- */
@media (max-width: 1180px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 920px) {
  .container {
    max-width: 700px;
  }
  .main-nav {
    gap: 17px;
  }
}
@media (max-width: 930px) {
  .footer-content nav {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .hero .container {
    padding-top: 30px;
    padding-bottom: 34px;
  }
}
@media (max-width: 700px) {
  h1, .h1 {
    font-size: 2rem;
  }
  h2, .h2 {
    font-size: 1.35rem;
  }
  .section {
    padding: 20px 7px;
    margin-bottom: 32px;
  }
}
@media (max-width: 600px) {
  .container {
    padding-left: 9px;
    padding-right: 9px;
  }
  .footer-content nav {
    gap: 9px;
  }
  .cta-btn {
    font-size: 0.93rem;
    padding: 11px 17px;
  }
  .testimonial-card {
    padding: 17px 10px;
  }
  .content-wrapper {
    gap: 12px;
  }
}
@media (max-width: 526px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 7px 7px 16px 10px;
  }
}
@media (max-width: 480px) {
  .hero h1,
  h1, .h1 { font-size: 1.38rem; }
  h2, .h2 { font-size: 1.07rem; }
}

/* Responsive FLEX ROWS for LAYOUTS (Mobile/Tablet) */
@media (max-width: 900px) {
  .text-image-section, .content-grid, .card-container, .footer-content {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .footer-content {
    flex-direction: column;
    gap: 10px;
  }
}

/* ---------------------------------------
   Utility: Micro-interactions & Shadows
---------------------------------------- */
.section, .card, .testimonial-card {
  transition: box-shadow .21s, border .18s;
}
.card:hover, .card:focus {
  box-shadow: 0 14px 38px rgba(199,169,106,0.17);
  border: 1.7px solid var(--brand-gold-dark);
}
.section:has(.testimonial-card):hover, .section:focus-within {
  box-shadow: 0 10px 38px 0 rgba(199,169,106,0.09);
}

/* -----------------------------
   Utility: Z-index layering
------------------------------ */
header { z-index: 100; }
.mobile-menu { z-index: 200; }
.cookie-banner { z-index: 900; }
.cookie-modal { z-index: 999; }
footer { z-index: 5; }

/* Branding: Subtle Decorative Gold Line Under h2 */
h2, .h2 {
  position: relative;
}
h2::after, .h2::after {
  content: '';
  display: block;
  width: 72px;
  height: 3px;
  background: var(--brand-gold);
  border-radius: 2px;
  margin-top: 8px;
}

/* Links in text (e.g., emails) */
a[href^="mailto:"] {
  color: var(--brand-gold-dark);
  text-decoration: underline;
  transition: color 0.2s;
}
a[href^="mailto:"]:hover {
  color: var(--brand-primary);
}

/* Fix: Prevent element overlap */
.content-wrapper > * { margin-bottom: 0 !important; }
.card + .card,
.testimonial-card + .testimonial-card,
.section + .section,
.card-container > * + * {
  margin-top: 20px;
}

/* Forms (for contact page, inputs if added later) */
input, textarea, select {
  border: 1.5px solid var(--brand-secondary);
  border-radius: 8px;
  font-size: 1rem;
  padding: 10px 13px;
  margin-bottom: 15px;
  background: #fff;
  color: var(--text-dark);
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--brand-gold);
  outline: none;
}

/* Hide outline for logo links */
.logo:focus { outline: none; }

/* Hide scrollbars in overlays (mobile menu, etc.) */
.mobile-menu, .cookie-modal {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.mobile-menu::-webkit-scrollbar, .cookie-modal::-webkit-scrollbar {
  display: none;
}

/* ---------------------------------
     END OF LUXURY PREMIUM CSS
---------------------------------- */
