/* ====================== CSS RESET ====================== */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #f2f3f7;
  color: #181824;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
  border: none;
  vertical-align: middle;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1a2233;
  font-weight: 700;
}

/* =================== LUXURY PREMIUM PALETTE =================== */
:root {
  --lux-bg: #f2f3f7;
  --lux-surface: #fff;
  --lux-text: #181824;
  --lux-primary: #1a2233;
  --lux-secondary: #e4572e;
  --lux-gold: #bf9b30;
  --lux-gold-light: #f6e4b8;
  --lux-gold-dark: #8c7422;
  --lux-shadow: 0 2px 16px rgba(26, 34, 51, 0.07);
  --card-radius: 18px;
  --card-shadow: 0 6px 32px rgba(26, 34, 51, 0.10);
  --transition: 0.22s cubic-bezier(.32,1.25,.33,1);
  --btn-gradient: linear-gradient(94deg, #bf9b30 45%, #e4572e 90%);
}

body {
  background: var(--lux-bg);
  color: var(--lux-text);
  font-size: 16px;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}

/* =================== TYPOGRAPHY =================== */
h1 {
  font-size: 2.8rem;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
strong {
  font-weight: 700;
  color: var(--lux-primary);
}
small {
  font-size: 0.96em;
  color: #666;
}
.text-section {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* =================== FLEXBOX LAYOUTS =================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  display: flex;
  flex-direction: column;
}
.card-container, .feature-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--lux-surface);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 32px 28px;
  min-width: 250px;
  transition: box-shadow var(--transition), transform var(--transition);
  border: 1px solid #ede9e0;
}
.card:hover {
  box-shadow: 0 12px 40px 0 rgba(26,34,51,0.16);
  transform: translateY(-4px) scale(1.02);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: none;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--lux-surface);
  border-radius: 16px;
  box-shadow: var(--lux-shadow);
  border: 1px solid #f6e4b8;
  margin-bottom: 24px;
  transition: box-shadow var(--transition), border-color var(--transition);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--lux-text);
}
.testimonial-card span {
  color: var(--lux-gold-dark);
  font-size: 1em;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-top: 8px;
  display: block;
  font-weight: 600;
}
.feature-grid > div {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  background: var(--lux-surface);
  border-radius: var(--card-radius);
  box-shadow: var(--lux-shadow);
  padding: 32px 24px 24px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 1px solid #e8e2c7;
  transition: box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.feature-grid > div img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  filter: brightness(1.08) drop-shadow(0 2px 8px #bf9b30aa);
}
.feature-grid > div h3 {
  color: var(--lux-gold-dark);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.review-logos {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
}
.review-logos img {
  height: 44px;
  width: auto;
  filter: grayscale(0) brightness(1.1) drop-shadow(0 1px 8px #bf9b3030);
}

/* =================== BUTTONS, LINKS, CTA =================== */
.cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 32px;
  background: var(--lux-gold);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 28px;
  border: none;
  box-shadow: 0 2px 8px rgba(191, 155, 48, 0.08);
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition), border var(--transition);
  margin-top: 14px;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 1px rgba(0,0,0,0.01);
  outline: none;
}
.cta.primary, .btn.primary {
  background: var(--btn-gradient, var(--lux-gold));
  color: #fff;
}
.cta.secondary, .btn.secondary {
  background: var(--lux-secondary);
  color: #fff;
}
.cta:hover, .btn:hover,
.cta:focus, .btn:focus {
  background: var(--lux-gold-dark);
  color: #fffbe3;
  box-shadow:0 4px 16px #e4572e1a;
}
.cta.primary:hover, .btn.primary:hover {
  background: #e4572e;
  color: #fffbe3;
}
.cta.secondary:hover, .btn.secondary:hover {
  background: #bf9b30;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  color: var(--lux-primary);
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 10px;
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover, .footer-nav a:hover {
  color: var(--lux-gold);
  background: #f6e4b8a0;
}
.footer-nav a {
  color: #444;
  font-size: 0.98rem;
  padding: 0 12px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 14px;
  justify-content: center;
}
.mobile-nav a {
  display: flex;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 18px 0;
  color: var(--lux-primary);
  border-bottom: 1px solid #eae1c8;
  transition: color .18s, background .18s;
}
.mobile-nav a:hover {
  background: #f6e4b8;
  color: var(--lux-gold-dark);
}

/* =================== HEADER & LOGO =================== */
header {
  background: var(--lux-surface);
  box-shadow: 0 1px 18px rgba(26,34,51,0.06);
  z-index: 100;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
  margin-right: 14px;
  filter: drop-shadow(0 2px 6px #bf9b3030);
}
.main-nav {
  display: flex;
  gap: 10px;
  align-items: center;
  flex: 1 1 auto;
  margin-left: 26px;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--lux-gold);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 14px;
  transition: background .16s, color .16s, box-shadow .16s;
  box-shadow: none;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #f6e4b8;
  color: var(--lux-gold-dark);
}

/* ============= MOBILE MENU ============= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(26,34,51, 0.95);
  z-index: 1111;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity .29s, transform .36s cubic-bezier(.85,0,.17,1);
}
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--lux-gold-dark);
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  margin: 18px 24px 0 0;
  padding: 7px 16px 7px 16px;
  border-radius: 18px;
  transition: background 0.17s, color 0.15s;
  box-shadow: 0 2px 18px #0002;
  z-index: 10;
}
.mobile-menu-close:hover {
  background: var(--lux-gold);
  color: #111;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100vw;
  margin-top: 28px;
  background: #fff;
  padding-left: 0;
  border-radius: 28px 0 0 28px;
  box-shadow: -3px 0 38px #1a223312;
}

/* =================== FOOTER =================== */
footer {
  background: var(--lux-surface);
  box-shadow: 0 -1px 12px #1a22330a;
  padding: 32px 0 18px 0;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #444;
}
.footer-contact img {
  width: 18px;
  margin-right: 7px;
  vertical-align: middle;
  opacity: 0.82;
}

/* =================== FAQ ACCORDION =================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion > div {
  background: var(--lux-surface);
  border-radius: 12px;
  box-shadow: 0 1px 8px #e3d4b210;
  border: 1px solid #ede9e0;
  padding: 20px 26px;
  transition: box-shadow .23s;
}
.faq-accordion > div:hover {
  box-shadow: 0 7px 22px #bf9b3024;
}
.faq-accordion h3 {
  font-size: 1.14rem;
  color: var(--lux-gold-dark);
  margin-bottom: 7px;
}

/* =================== LISTS =================== */
ul, ol {
  margin-left: 0;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  text-align: left;
}
ul li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;;
  top: 11px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--lux-gold-dark);
  opacity: 0.15;
}
ol li::before {
  display: none;
}

/* =================== BLOCKQUOTES =================== */
blockquote {
  padding: 0 6px;
  border-left: 4px solid var(--lux-gold-dark);
  margin-bottom: 12px;
  color: #222;
  background: #fffbe3;
  border-radius: 10px;
  font-size: 1.08rem;
}

/* =================== SECTION SPACING =================== */
section {
  background: none;
  margin-bottom: 60px;
  padding: 40px 0;
}
section:last-child {
  margin-bottom: 0;
}

/* =================== OTHER UTILITY CLASSES =================== */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =========== COOKIE CONSENT BANNER & MODAL =========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #fffbe3;
  color: #1a2233;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  box-shadow: 0 -6px 32px #1a223312;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 18px 26px 18px;
  animation: fadeInCookie .5s;
  gap: 28px;
}
@keyframes fadeInCookie {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner .btn, .cookie-banner .cta {
  height: 40px;
  padding: 0 26px;
  font-size: 1rem;
  margin: 0;
}
.cookie-banner .btn.settings {
  background: transparent;
  color: var(--lux-gold-dark);
  border: 1px solid var(--lux-gold-dark);
}
.cookie-banner .btn.settings:hover {
  background: #f6e4b8;
  color: #1a2233;
}
@media (max-width: 620px) {
  .cookie-banner { flex-direction: column; gap: 18px; padding: 24px 10px 18px 10px; }
}

.cookie-modal-overlay {
  position: fixed; left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(26,34,51,0.66);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--lux-surface);
  min-width: 330px;
  max-width: 95vw;
  padding: 34px 26px 26px 26px;
  border-radius: 22px;
  box-shadow: 0 2px 28px #1a223322;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookieModalIn .41s cubic-bezier(.32,1.25,.33,1);
  position: relative;
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: scale(.94) translateY(24px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h3 {
  margin-top: 0;
  margin-bottom: 6px;
  color: var(--lux-gold-dark);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.02rem;
  margin-bottom: 1.17em;
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--lux-gold-dark);
  cursor: pointer;
}
.cookie-modal-close {
  position: absolute;
  top: 8px; right: 15px;
  background: #eae1c8;
  border: none;
  color: var(--lux-gold-dark);
  font-size: 1.7rem;
  border-radius: 12px;
  cursor: pointer;
  width: 34px; height: 34px;
  align-items: center;
  display: flex;
  justify-content: center;
  transition: background .14s, color .14s;
}
.cookie-modal-close:hover {
  background: var(--lux-gold-light);
  color: #1a2233;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
 .cookie-category[data-essential] label {
  font-weight: bold;
  opacity: 0.93;
}
 .cookie-category[data-essential] input[type="checkbox"] {
  pointer-events: none;
  opacity: 0.62;
 }

/* ============== RESPONSIVE UTILITIES ============== */
@media (max-width: 1020px) {
  .container {
    max-width: 96vw;
    padding: 0 8px;
  }
  header .container {
    padding-left: 8px; padding-right: 8px;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.36rem; }
  .container { padding: 0 2vw; }
  .main-nav, .cta.primary { display: none !important; }
  .mobile-menu-toggle { display: inline-flex !important; }
  header .container {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    padding-top: 12px; padding-bottom: 12px;
  }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div, .card {
    margin-bottom: 18px;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding: 22px 14px 18px 14px;
  }
  .footer-contact { flex-direction: column; gap: 12px; }
  .testimonial-card {
    max-width: 96vw;
    padding: 16px 6vw;
  }
  .review-logos { gap: 16px; }
  .text-image-section { flex-direction: column; gap: 18px; }
  section, .section { padding: 24px 0; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.12rem; }
  .footer-contact, .footer-nav {
    font-size: 0.93rem;
    padding: 0 2px;
  }
  .content-wrapper {
    gap: 12px;
  }
}

/* =========== OVERRIDE SPACING AND CARD GAPS =========== */
.card-container > *, .content-grid > *, .feature-grid > *, .section > * {
  margin-bottom: 20px;
}

/* =========== FORM STYLES =========== */
input[type="text"], input[type="email"], textarea, select {
  background: #fff;
  border: 1.2px solid #eae1c8;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 1rem;
  margin-bottom: 16px;
  box-shadow: none;
  transition: border .18s;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border: 1.2px solid var(--lux-gold);
  background: #fffbf1;
}

/* =========== HERO & SECTION DETAILS =========== */
section:first-child {
  background: #fffbe3;
  border-radius: 0 0 28px 28px;
  border-bottom: 1.7px solid #f6e4b8;
  box-shadow: 0 5px 32px #e4572e12;
}

/* =========== LUXURY MICROINTERACTIONS =========== */
.cta, .btn, .feature-grid > div, .card, .testimonial-card, .faq-accordion > div {
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition), background var(--transition), color var(--transition);
}
.cta:active, .btn:active {
  transform: scale(0.97);
}
.card:active, .feature-grid > div:active, .testimonial-card:active {
  transform: scale(0.985);
}

/* =========== FORMS, LABELS, MISC =========== */
label {
  font-weight: 600;
  color: var(--lux-primary);
  margin-bottom: 8px;
  display: inline-block;
  font-size: 1rem;
}

/* =========== Z-INDEX SAFETY =========== */
header { z-index: 60; position: relative; }
footer { z-index: 40; position: relative; }
.mobile-menu { z-index: 1111; }
.cookie-banner { z-index: 99999; }

/* No Grid or Columns used: strict flexbox only */

