/* -------------------------
   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 {
  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;
  background: #161a1e;
}
*, *:before, *:after {
  box-sizing: inherit;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F4F8FB;
  color: #1E2A38;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: #00AB8E;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #B9975B;
  outline: none;
}
/* Fonts */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Slab Bold'), local('RobotoSlab-Bold'), url('https://fonts.gstatic.com/s/robotoslab/v24/BngMUXZYTXPIvIBgJJSb6ufN5qU.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans Regular'), local('OpenSans-Regular'), url('https://fonts.gstatic.com/s/opensans/v29/mem8YaGs126MiZpBA-UFVZ0e.woff2') format('woff2');
}
/* Color palette */
:root {
  --lux-primary: #1E2A38;
  --lux-secondary: #00AB8E;
  --lux-accent: #F4F8FB;
  --lux-gold: #B9975B;
  --lux-font-display: 'Roboto Slab', serif;
  --lux-font-body: 'Open Sans', Arial, sans-serif;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* -------------------------
   Header & Navigation
-------------------------- */
header {
  background: #161a1e;
  box-shadow: 0 4px 20px rgba(30,42,56,0.05), 0 1.5px 0 #B9975B inset;
  border-bottom: 1.5px solid var(--lux-gold);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 28px;
}
header a img {
  display: block;
  height: 44px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
header nav a {
  color: #F4F8FB;
  font-family: var(--lux-font-body);
  font-size: 16px;
  letter-spacing: 0.01em;
  position: relative;
  padding: 7px 0;
  transition: color 0.2s;
}
header nav a:hover, header nav a:focus:not(.cta) {
  color: var(--lux-gold);
}
header nav a.cta {
  color: var(--lux-primary);
  background: linear-gradient(90deg,var(--lux-gold) 40%,#deb665 100%);
  font-weight: 700;
  padding: 9px 26px;
  border-radius: 32px;
  margin-left: 10px;
  font-family: var(--lux-font-display);
  box-shadow: 0 1.5px 10px rgba(185,151,91,0.13), 0 1.5px 0 var(--lux-gold) inset;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: none;
  outline: none;
  cursor: pointer;
}
header nav a.cta:hover,
header nav a.cta:focus {
  background: var(--lux-secondary);
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(0,171,142,0.11);
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--lux-gold);
  font-size: 2.2rem;
  cursor: pointer;
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: background 0.2s;
  z-index: 1201;
  margin-left: 12px;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #2e3746;
}

/* -------------------------
   Mobile Menu Overlay
-------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1600;
  width: 100vw;
  height: 100vh;
  background: rgba(30,42,56,0.90);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(.6,0,.35,1), opacity 0.3s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--lux-gold);
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 26px 20px 12px 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  transition: background 0.2s;
  border-radius: 9px;
  z-index: 1602;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #2e3746;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-left: 32px;
  margin-top: 30px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: var(--lux-accent);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 12px 0;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
  font-family: var(--lux-font-display);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--lux-secondary);
  color: #fff;
}

/* Hide desktop nav and show mobile on small screens */
@media (max-width: 991px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

/* -------------------------
   Footer
-------------------------- */
footer {
  background: #1E2A38;
  border-top: 1px solid var(--lux-gold);
  color: #fff;
  margin-top: 40px;
  padding: 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 24px 20px 16px 20px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 8px;
}
footer nav a {
  color: var(--lux-gold);
  font-family: var(--lux-font-body);
  font-size: 15px;
  transition: color 0.20s;
  padding: 6px 4px;
}
footer nav a:hover, footer nav a:focus {
  color: var(--lux-secondary);
  text-decoration: underline;
}
.footer-contact {
  color: #dadfe4;
  font-size: 14px;
  text-align: center;
}
.footer-contact a {
  color: var(--lux-secondary);
}

/* -------------------------
   Main Spacing and Sections
-------------------------- */
main {
  flex: 1;
  width: 100%;
  background: #F4F8FB;
  padding-bottom: 32px;
}
section {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 4px 36px rgba(30,42,56,0.07);
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width:700px) {
  section {
    padding: 26px 8px;
    margin-bottom: 34px;
    border-radius: 16px;
  }
}

/* Content Wrapper Layouts */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 18px;
}
.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;
}
@media (max-width:768px) {
  .text-image-section {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Card & Feature Layouts */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 24px rgba(30,42,56,0.13);
  padding: 28px 22px;
  min-width: 260px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.17s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(185,151,91,0.17);
  transform: translateY(-4px) scale(1.011);
  z-index: 2;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Testimonial Cards */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F8F6F0;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(185,151,91,0.08);
  margin-bottom: 20px;
  border: 1.1px solid #e5ddd0;
  position: relative;
}
.testimonial-card blockquote {
  font-family: var(--lux-font-display);
  font-size: 18px;
  color: #1E2A38;
  line-height: 1.5;
  quotes: "\201C" "\201D";
}
.testimonial-person {
  font-size: 15px;
  color: #784c15;
  font-style: italic;
  font-family: var(--lux-font-body);
  margin-left: 6px;
}
@media (max-width:700px) {
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 15px 8px;
  }
}

/* Utility: Section Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--lux-font-display);
  color: var(--lux-primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.65rem;
  margin-bottom: 10px;
  color: var(--lux-gold);
}
h3 {
  font-size: 1.18rem;
  color: var(--lux-secondary);
  margin-bottom: 8px;
}
@media (max-width:700px) {
  h1 {
    font-size: 1.55rem;
  }
  h2 {
    font-size: 1.2rem;
  }
}

/* Paragraphs and Lists */
p, li {
  font-family: var(--lux-font-body);
  font-size: 16px;
  margin-bottom: 0.5em;
  color: #222d3c;
  line-height: 1.6;
}
p {
  margin-bottom: 0.65em;
}
ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
ul li img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-right: 6px;
  filter: grayscale(0.23) sepia(0.31) contrast(1.14) brightness(1.17) drop-shadow(0 2px 2px #faeec0);
}
ul li strong {
  color: var(--lux-primary);
  font-weight: 700;
  margin-right: 0.35em;
  font-family: var(--lux-font-display);
  font-size: 1.01em;
}

/* Call To Action Buttons */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg,var(--lux-gold) 40%,#deb665 100%);
  color: var(--lux-primary);
  font-family: var(--lux-font-display);
  font-size: 1.12rem;
  font-weight: 700;
  padding: 11px 34px;
  border-radius: 32px;
  box-shadow: 0 2px 12px rgba(185,151,91,0.13);
  border: none;
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 8px;
  transition: background 0.2s,color 0.2s, box-shadow 0.2s, transform 0.15s;
  outline: none;
}
.cta:hover,
.cta:focus {
  background: var(--lux-secondary);
  color: #fff;
  box-shadow: 0 8.5px 38px 0 rgba(0,171,142,0.17);
  transform: translateY(-1px) scale(1.018);
}

/* Inputs (for Contact forms) */
input, textarea, select {
  font-family: var(--lux-font-body);
  font-size: 16px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.2px solid #D3C9BB;
  background: #fff;
  margin-bottom: 18px;
  width: 100%;
  transition: border-color 0.2s;
  box-shadow: 0 1.5px 6px rgb(30 42 56 / 0.05);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--lux-secondary);
  box-shadow: 0 0 0 3px #b9975b1f;
}

/* ---------------
   Cookie Consent
----------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1700;
  background: #fff;
  color: #19181c;
  border-top: 2px solid var(--lux-gold);
  box-shadow: 0 -2px 22px rgba(30,42,56,0.13);
  padding: 18px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 15px;
  font-family: var(--lux-font-body);
  animation: fadeInCookie 0.6s cubic-bezier(.6,0,.35,1);
}
@keyframes fadeInCookie {
  0% { transform: translateY(30px); opacity:0; }
  80% { opacity:1; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  display: inline-block;
  font-family: var(--lux-font-display);
  font-size: 15px;
  padding: 8px 18px;
  border-radius: 20px;
  border: none;
  box-shadow: 0 1px 6px rgba(185,151,91,0.10);
  background: var(--lux-gold);
  color: #1e2a38;
  font-weight: 700;
  margin-right: 0;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s,transform 0.13s;
  cursor: pointer;
}
.cookie-btn.accept {
  background: var(--lux-secondary);
  color: #fff;
}
.cookie-btn.settings {
  background: #fff6e6;
  color: var(--lux-gold);
  border: 1.4px solid var(--lux-gold);
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #c7ac7b;
  color: #fff;
  transform: scale(1.065);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--lux-gold);
  color: #1E2A38;
}
@media(max-width:768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    font-size: 14px;
    padding: 18px 6px 25px 16px;
  }
  .cookie-banner .cookie-actions {
    width: 100%;
    gap: 9px;
  }
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1702;
  background: rgba(30,42,56,0.48);
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(30,42,56,0.19);
  padding: 34px 32px 22px 32px;
  min-width: 320px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
}
@media (max-width:420px) {
  .cookie-modal-content {
    padding: 18px 6px 16px 10px;
    min-width: 0;
  }
}
.cookie-modal-content h3 {
  margin-bottom: 7px;
  color: var(--lux-gold);
  font-size: 1.17rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
}
.cookie-category label {
  flex: 1;
  font-family: var(--lux-font-display);
  color: var(--lux-primary);
  font-size: 1em;
}
.cookie-category input[type='checkbox'] {
  width: 22px;
  height: 22px;
  accent-color: var(--lux-secondary);
  border-radius: 6px;
  border: 1.6px solid #D3C9BB;
}
.cookie-modal-content .modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 6px;
}
.cookie-modal-close {
  position: absolute;
  right: 10px;
  top: 9px;
  color: var(--lux-gold);
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  transition: background 0.17s;
  border-radius: 7px;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #f4f1e7;
}

/* --------------
   Responsive
-------------- */
@media(max-width:800px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 700px) {
  .footer-contact {
    font-size: 12.5px;
  }
}
@media (max-width: 600px) {
  .container, footer .container {
    padding: 0 2vw;
  }
  h1 {
    font-size: 1.06rem;
  }
  .testimonial-card blockquote {
    font-size: 15px;
  }
}

/* --------------
   Micro effects
-------------- */
.card, .testimonial-card, .cta, .cookie-btn, .mobile-menu, .mobile-menu-close {
  transition: box-shadow 0.15s, background 0.15s, color 0.13s, transform 0.16s;
}

/* --------------
   Accessibility
-------------- */
:focus-visible {
  outline: 2px dashed var(--lux-gold);
  outline-offset: 2px;
}

/* Utility spacing */
.mb-20 { margin-bottom: 20px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-24 { margin-top: 24px !important; }
.gap-20 { gap: 20px !important; }

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