:root {
  --lux-primary: #cba899;
  --lux-secondary: #e0c2b2;
  --lux-dark: #241f1c;
  --lux-muted: #6f625b;
  --lux-surface: #fffdfb;
  --lux-surface-alt: #f7f0eb;
  --lux-border: rgba(203, 168, 153, 0.22);
  --lux-shadow: 0 18px 55px rgba(79, 57, 46, 0.1);
  --lux-gradient: linear-gradient(135deg, #d7b3a0 0%, #c59b85 100%);
}

body.page-body {
  background:
    radial-gradient(circle at top left, rgba(224, 194, 178, 0.22), transparent 28%),
    linear-gradient(180deg, #fffdfc 0%, #fbf7f4 100%);
  color: var(--lux-dark);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 253, 251, 0.96);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader img {
  width: 110px;
  max-width: 28vw;
}

.lux-topbar {
  background: #1f1916;
  padding: 10px 0;
  font-size: 0.85rem;
}

.lux-topbar .top-contact span,
.lux-topbar .top-contact a {
  color: rgba(255, 255, 255, 0.78);
  margin-right: 18px;
}

.lux-topbar .top-contact i {
  color: var(--lux-secondary);
  margin-right: 6px;
}

.lux-topbar .tsoc a {
  width: 30px;
  height: 30px;
  margin-left: 6px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.lux-topbar .tsoc a:hover {
  background: var(--lux-primary);
}

.lux-navbar {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(203, 168, 153, 0.14);
}

.lux-navbar .navbar-brand img {
  height: 52px;
  width: auto;
}

.lux-navbar .nav-link {
  color: var(--lux-dark);
  font-weight: 500;
  padding: 0.8rem 1rem !important;
}

.lux-navbar .nav-link:hover,
.lux-navbar .nav-link.active {
  color: var(--lux-primary);
}

.lux-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  background: var(--lux-gradient);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(197, 155, 133, 0.28);
}

.lux-cta:hover {
  transform: translateY(-1px);
  color: #fff !important;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 72px;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(203, 168, 153, 0.16);
  filter: blur(2px);
}

.page-hero::before {
  width: 260px;
  height: 260px;
  top: -90px;
  right: -40px;
}

.page-hero::after {
  width: 180px;
  height: 180px;
  bottom: -60px;
  left: -30px;
}

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(203, 168, 153, 0.14);
  color: #9b7868;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  font-weight: 600;
}

.page-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(2.35rem, 4vw, 4.35rem);
  line-height: 1.06;
}

.page-hero p {
  max-width: 660px;
  color: var(--lux-muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.page-last-updated {
  margin-top: 22px;
  color: #93786a;
  font-weight: 500;
}

.hero-card {
  position: relative;
  margin-left: auto;
  max-width: 360px;
  border-radius: 28px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(203, 168, 153, 0.22);
  box-shadow: var(--lux-shadow);
  backdrop-filter: blur(12px);
}

.hero-card .brand-mark {
  width: 84px;
  height: 84px;
  margin-bottom: 18px;
  object-fit: contain;
}

.hero-card h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.hero-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--lux-muted);
  margin-bottom: 0;
}

.page-shell {
  padding: 0 0 80px;
}

.page-sidebar {
  position: sticky;
  top: 110px;
  border-radius: 24px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--lux-border);
  box-shadow: var(--lux-shadow);
  backdrop-filter: blur(12px);
}

.page-sidebar .sidebar-title {
  margin-bottom: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #9b7d6d;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-sidebar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.8rem 0.95rem;
  margin-bottom: 0.35rem;
  border-radius: 14px;
  color: var(--lux-dark);
  font-size: 0.94rem;
  font-weight: 500;
}

.page-sidebar a span:last-child {
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.25s ease;
}

.page-sidebar a:hover,
.page-sidebar a.active {
  background: rgba(203, 168, 153, 0.12);
  color: #a77f6d;
}

.page-sidebar a:hover span:last-child,
.page-sidebar a.active span:last-child {
  opacity: 1;
  transform: translateX(0);
}

.page-card {
  border-radius: 30px;
  padding: 40px 42px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--lux-border);
  box-shadow: var(--lux-shadow);
  backdrop-filter: blur(12px);
}

.page-card.compact-card {
  max-width: 860px;
  margin: 0 auto;
}

.policy-body h2,
.policy-body h3 {
  font-family: "Playfair Display", serif;
  color: var(--lux-dark);
}

.policy-body h2 {
  font-size: 1.72rem;
  margin: 0 0 1rem;
}

.policy-body h3 {
  font-size: 1.28rem;
  margin: 2rem 0 0.8rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(203, 168, 153, 0.28);
}

.policy-body p,
.policy-body li {
  color: var(--lux-muted);
  line-height: 1.86;
  font-size: 0.985rem;
}

.policy-body ul,
.policy-body ol {
  padding-left: 1.3rem;
  margin-bottom: 1rem;
}

.policy-body strong {
  color: var(--lux-dark);
}

.policy-body a {
  color: #ac816f;
  font-weight: 600;
}

.policy-body hr {
  margin: 2rem 0;
  border-color: rgba(203, 168, 153, 0.18);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.link-card {
  border-radius: 18px;
  padding: 1.05rem 1.15rem;
  background: var(--lux-surface-alt);
  border: 1px solid rgba(203, 168, 153, 0.15);
}

.link-card small {
  display: block;
  color: #9b7d6d;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.link-card a {
  color: var(--lux-dark);
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.6rem 0 2rem;
}

.contact-card {
  border-radius: 20px;
  padding: 1.35rem;
  background: var(--lux-surface-alt);
  border: 1px solid rgba(203, 168, 153, 0.15);
}

.contact-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  background: rgba(203, 168, 153, 0.16);
  color: #a77f6d;
}

.contact-card h3 {
  border: 0;
  margin: 0 0 0.45rem;
  padding: 0;
  font-size: 1.08rem;
}

.contact-card p,
.contact-card a {
  margin: 0;
  color: var(--lux-muted);
  line-height: 1.7;
}

.faq-list {
  margin-top: 1.4rem;
}

.faq-item {
  border-bottom: 1px solid rgba(203, 168, 153, 0.18);
}

.faq-item:first-child {
  border-top: 1px solid rgba(203, 168, 153, 0.18);
}

.faq-toggle {
  width: 100%;
  border: 0;
  background: none;
  padding: 1.15rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--lux-dark);
  font-weight: 600;
  text-align: left;
}

.faq-toggle i {
  color: #a77f6d;
  transition: transform 0.25s ease;
}

.faq-answer {
  display: none;
  padding: 0 0 1.15rem;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open .faq-toggle i {
  transform: rotate(180deg);
}

.lux-footer {
  margin-top: 48px;
  padding-top: 68px;
  background: #1f1916;
  color: rgba(255, 255, 255, 0.78);
}

.lux-footer .footer-logo {
  height: 46px;
  width: auto;
  margin-bottom: 16px;
}

.lux-footer .ftit {
  margin-bottom: 16px;
  font-weight: 700;
  color: #fff;
}

.lux-footer .flinks {
  list-style: none;
}

.lux-footer .flinks li {
  margin-bottom: 10px;
}

.lux-footer .flinks a,
.lux-footer .fdesc,
.lux-footer .fciinfo,
.lux-footer .fbot a,
.lux-footer .fbot p {
  color: rgba(255, 255, 255, 0.72);
}

.lux-footer .flinks a:hover,
.lux-footer .fbot a:hover {
  color: #fff;
}

.lux-footer .fsoc a {
  width: 34px;
  height: 34px;
  margin-right: 8px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.lux-footer .fsoc a:hover {
  background: var(--lux-primary);
}

.lux-footer .fci {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.lux-footer .fciico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--lux-secondary);
}

.lux-footer .fbot {
  margin-top: 42px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lux-footer .fbot .legal-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 991.98px) {
  .page-hero {
    padding: 78px 0 52px;
  }

  .hero-card {
    margin: 24px 0 0;
    max-width: 100%;
  }

  .page-sidebar {
    position: static;
    margin-bottom: 24px;
  }
}

@media (max-width: 767.98px) {
  .page-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .page-hero h1 {
    font-size: 2.35rem;
  }

  .lux-topbar .top-contact span,
  .lux-topbar .top-contact a {
    display: inline-block;
    margin-bottom: 8px;
  }
}
