@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --deep-blue: #070066;
  --gold: #c48c51;
  --soft-blue: #88a0ff;
  --deep-red: #9a1107;
  --white: #ffffff;
  --ink: #09071c;
  --card-border: rgba(196, 140, 81, 0.34);
  --text-soft: rgba(255, 255, 255, 0.78);
  --shadow-lg: 0 24px 50px rgba(0, 0, 0, 0.45);
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Inter", "Poppins", "Segoe UI", Arial, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 12% -8%, rgba(136, 160, 255, 0.24), transparent 38%),
    radial-gradient(circle at 86% 15%, rgba(154, 17, 7, 0.2), transparent 32%),
    linear-gradient(180deg, #100d42 0%, var(--deep-blue) 28%, #050418 68%, #02020f 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 26% 72%, rgba(196, 140, 81, 0.08), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(136, 160, 255, 0.08), transparent 30%);
  z-index: -1;
}

a {
  color: inherit;
}

.shell {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid rgba(196, 140, 81, 0.22);
  background: rgba(4, 4, 18, 0.7);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.82rem;
}

.brand span {
  color: var(--gold);
}

.header-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.header-links a {
  text-decoration: none;
  border: 1px solid rgba(196, 140, 81, 0.28);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.73rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.header-links a:hover {
  color: var(--gold);
  border-color: rgba(196, 140, 81, 0.72);
  box-shadow: 0 0 16px rgba(196, 140, 81, 0.32);
}

.section {
  padding: clamp(52px, 7vw, 90px) 0;
}

.hero {
  padding-top: clamp(70px, 9vw, 120px);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: clamp(30px, 5vw, 62px);
  background:
    linear-gradient(145deg, rgba(10, 8, 36, 0.88), rgba(5, 4, 18, 0.8)),
    url("../img/Banner.JPG") center/cover no-repeat;
  box-shadow: var(--shadow-lg);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(196, 140, 81, 0.24), transparent 38%),
    radial-gradient(circle at 82% 78%, rgba(154, 17, 7, 0.2), transparent 36%);
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.kicker {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: var(--gold);
  font-weight: 600;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  letter-spacing: 0.02em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0.02em;
}

.hero-sub {
  max-width: 640px;
  color: var(--text-soft);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  min-width: 200px;
  padding: 12px 20px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  border-color: rgba(196, 140, 81, 0.48);
  background: linear-gradient(92deg, rgba(154, 17, 7, 0.92), rgba(196, 140, 81, 0.9));
}

.btn-primary:hover {
  box-shadow: 0 0 20px rgba(154, 17, 7, 0.48);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(196, 140, 81, 0.62);
  background: rgba(3, 3, 12, 0.34);
}

.btn-outline:hover {
  box-shadow: 0 0 18px rgba(196, 140, 81, 0.4);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.section-title {
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
}

.section-subtext {
  color: var(--text-soft);
  max-width: 760px;
  margin-top: 12px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.glass-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  background: linear-gradient(155deg, rgba(20, 17, 56, 0.74), rgba(8, 8, 24, 0.68));
  backdrop-filter: blur(8px);
  padding: 22px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 140, 81, 0.8);
  box-shadow: 0 0 26px rgba(196, 140, 81, 0.26);
}

.package-price {
  margin-top: 12px;
  color: var(--soft-blue);
  font-size: 1.18rem;
  font-weight: 700;
}

.package-points {
  margin: 14px 0 18px;
  padding-left: 18px;
  color: var(--text-soft);
}

.package-points li + li {
  margin-top: 6px;
}

.muted {
  color: var(--text-soft);
}

.info-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.chip-list {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(196, 140, 81, 0.5);
  background: rgba(7, 6, 30, 0.55);
  color: var(--white);
  font-size: 0.82rem;
}

.policy {
  margin-top: 14px;
  border-left: 3px solid var(--deep-red);
  padding: 10px 14px;
  background: rgba(154, 17, 7, 0.1);
  border-radius: 8px;
  color: var(--text-soft);
}

.final-cta {
  text-align: center;
  border-radius: 22px;
  border: 1px solid rgba(196, 140, 81, 0.36);
  background:
    linear-gradient(135deg, rgba(8, 7, 28, 0.84), rgba(3, 3, 11, 0.82)),
    url("../img/MultBries.JPG") center/cover no-repeat;
  padding: clamp(30px, 4.4vw, 58px);
  box-shadow: var(--shadow-lg);
}

.final-cta h2 {
  font-size: clamp(1.7rem, 4.2vw, 3rem);
}

.final-cta p {
  color: var(--text-soft);
  max-width: 760px;
  margin: 14px auto 0;
}

.final-cta .btn {
  margin-top: 22px;
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.7s ease forwards;
}

.fade-up.delay-1 {
  animation-delay: 0.12s;
}

.fade-up.delay-2 {
  animation-delay: 0.24s;
}

.form-wrap {
  margin-top: 20px;
}

.progress-wrap {
  margin-bottom: 18px;
}

.step-meta {
  margin: 0 0 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 600;
}

.progress-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.progress-fill {
  display: block;
  width: 14.28%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--deep-red), var(--gold));
  transition: width 0.25s ease;
}

.intake-form {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(16, 14, 50, 0.78), rgba(4, 4, 18, 0.72));
  padding: clamp(18px, 3.2vw, 30px);
  backdrop-filter: blur(8px);
}

.form-step {
  display: none;
  animation: fadeUp 0.35s ease;
}

.form-step.active {
  display: block;
}

.step-title {
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  margin-bottom: 8px;
}

.step-subtitle {
  color: var(--text-soft);
  margin-bottom: 18px;
}

.field-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.field {
  display: grid;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}

.helper {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(196, 140, 81, 0.34);
  background: rgba(7, 7, 27, 0.62);
  color: var(--white);
  padding: 11px 12px;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(196, 140, 81, 0.9);
  box-shadow: 0 0 0 3px rgba(196, 140, 81, 0.22);
}

.option-group {
  display: grid;
  gap: 8px;
  margin-top: 6px;
}

.option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(196, 140, 81, 0.24);
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(8, 8, 29, 0.44);
}

.option input {
  width: auto;
  margin-top: 4px;
}

.option span {
  color: var(--text-soft);
}

.actions {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none !important;
}

.form-message {
  margin-top: 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 12px 14px;
  font-size: 0.94rem;
}

.form-message.success {
  border-color: rgba(196, 140, 81, 0.7);
  background: rgba(196, 140, 81, 0.12);
}

.form-message.error {
  border-color: rgba(154, 17, 7, 0.72);
  background: rgba(154, 17, 7, 0.12);
}

.footer-note {
  margin-top: 28px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .header-inner {
    min-height: 68px;
  }

  .header-links {
    display: none;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .actions {
    flex-direction: column;
  }
}

/* =========================================================
   SERVICES PAGE (Luxury Rebuild)
   Scoped to .services-lux-page so existing pages stay intact.
   ========================================================= */
.services-lux-page {
  --cp-bg-1: #070066;
  --cp-bg-2: #050518;
  --cp-gold: #c48c51;
  --cp-soft: #88a0ff;
  --cp-red: #9a1107;
  --cp-white: #ffffff;
  --cp-text-soft: rgba(255, 255, 255, 0.82);
  --cp-line: rgba(196, 140, 81, 0.28);
  --cp-card: rgba(11, 10, 36, 0.7);
  --cp-card-2: rgba(8, 8, 26, 0.72);
  margin: 0;
  color: var(--cp-white);
  background:
    radial-gradient(circle at 14% -6%, rgba(136, 160, 255, 0.26), transparent 36%),
    radial-gradient(circle at 86% 10%, rgba(154, 17, 7, 0.2), transparent 34%),
    linear-gradient(180deg, #110d44 0%, var(--cp-bg-1) 30%, #050518 68%, #03030e 100%);
}

.services-lux-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 22% 72%, rgba(196, 140, 81, 0.09), transparent 30%),
    radial-gradient(circle at 84% 66%, rgba(136, 160, 255, 0.08), transparent 28%);
}

.services-lux-page .cp-shell {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.services-lux-page .cp-header {
  position: sticky;
  top: 0;
  z-index: 140;
  border-bottom: 1px solid var(--cp-line);
  background: rgba(4, 4, 18, 0.72);
  backdrop-filter: blur(12px);
}

.services-lux-page .cp-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.services-lux-page .cp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--cp-white);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.services-lux-page .cp-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.services-lux-page .cp-brand span {
  color: var(--cp-gold);
}

.services-lux-page .cp-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--cp-line);
  background: rgba(7, 7, 26, 0.55);
  color: var(--cp-white);
  font-size: 1rem;
  cursor: pointer;
}

.services-lux-page .cp-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.services-lux-page .cp-nav a {
  text-decoration: none;
  border: 1px solid rgba(196, 140, 81, 0.24);
  border-radius: 999px;
  padding: 8px 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: var(--cp-text-soft);
  transition: color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.services-lux-page .cp-nav a:hover,
.services-lux-page .cp-nav a[aria-current="page"] {
  color: var(--cp-gold);
  border-color: rgba(196, 140, 81, 0.76);
  box-shadow: 0 0 16px rgba(196, 140, 81, 0.24);
}

.services-lux-page .cp-section {
  padding: clamp(60px, 8vw, 108px) 0;
}

.services-lux-page .cp-kicker {
  margin: 0 0 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cp-gold);
  font-weight: 600;
  font-size: 0.74rem;
}

.services-lux-page h1,
.services-lux-page h2,
.services-lux-page h3 {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  color: var(--cp-white);
  line-height: 1.16;
  letter-spacing: 0.02em;
}

.services-lux-page h1 {
  font-size: clamp(2.1rem, 5vw, 4.35rem);
  max-width: 900px;
}

.services-lux-page h2 {
  font-size: clamp(1.6rem, 3.6vw, 3rem);
}

.services-lux-page h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.66rem);
}

.services-lux-page p {
  color: var(--cp-text-soft);
}

.services-lux-page .cp-hero {
  min-height: 86vh;
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgba(196, 140, 81, 0.18);
  background:
    linear-gradient(145deg, rgba(8, 7, 34, 0.8), rgba(4, 3, 14, 0.84)),
    url("../img/Banner.JPG") center/cover no-repeat;
}

.services-lux-page .cp-hero .cp-shell {
  position: relative;
  padding: clamp(38px, 6.5vw, 76px);
  border-radius: 24px;
  border: 1px solid var(--cp-line);
  background: linear-gradient(152deg, rgba(8, 8, 28, 0.68), rgba(3, 3, 12, 0.62));
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.4);
}

.services-lux-page .cp-hero-sub {
  max-width: 700px;
  margin-top: 16px;
  font-size: clamp(1.04rem, 2vw, 1.24rem);
}

.services-lux-page .cp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-width: 220px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 13px 22px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.services-lux-page .cp-btn:hover {
  transform: translateY(-2px);
}

.services-lux-page .cp-btn-primary {
  margin-top: 26px;
  color: var(--cp-white);
  border-color: rgba(196, 140, 81, 0.52);
  background: linear-gradient(96deg, rgba(154, 17, 7, 0.92), rgba(196, 140, 81, 0.9));
}

.services-lux-page .cp-btn-primary:hover {
  box-shadow: 0 0 20px rgba(154, 17, 7, 0.5);
}

.services-lux-page .cp-who {
  text-align: center;
}

.services-lux-page .cp-who-copy {
  margin: 20px auto 0;
  max-width: 820px;
  border: 1px solid var(--cp-line);
  border-radius: 22px;
  padding: clamp(22px, 4vw, 38px);
  background: linear-gradient(150deg, rgba(15, 13, 46, 0.62), rgba(8, 8, 24, 0.58));
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
}

.services-lux-page .cp-who-copy p {
  margin: 0;
  font-size: clamp(1.02rem, 1.8vw, 1.15rem);
}

.services-lux-page .cp-who-copy p + p {
  margin-top: 14px;
}

.services-lux-page .cp-who-copy ul {
  margin: 12px auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  max-width: 450px;
}

.services-lux-page .cp-who-copy li {
  border: 1px solid rgba(196, 140, 81, 0.32);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--cp-white);
  background: rgba(6, 6, 20, 0.54);
}

.services-lux-page .cp-services-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.services-lux-page .cp-service-card {
  border: 1px solid var(--cp-line);
  border-radius: 20px;
  padding: clamp(18px, 2.6vw, 28px);
  background: linear-gradient(155deg, var(--cp-card), var(--cp-card-2));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.services-lux-page .cp-service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(196, 140, 81, 0.78);
  box-shadow: 0 0 24px rgba(196, 140, 81, 0.26);
}

.services-lux-page .cp-service-card p {
  margin: 10px 0 0;
}

.services-lux-page .cp-service-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--cp-text-soft);
}

.services-lux-page .cp-service-card li + li {
  margin-top: 7px;
}

.services-lux-page .cp-statement {
  text-align: center;
}

.services-lux-page .cp-statement .cp-shell {
  border: 1px solid rgba(196, 140, 81, 0.36);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(150deg, rgba(10, 9, 34, 0.86), rgba(5, 5, 19, 0.84)),
    radial-gradient(circle at 50% 10%, rgba(196, 140, 81, 0.16), transparent 48%);
}

.services-lux-page .cp-statement p {
  margin: 14px auto 0;
  max-width: 760px;
}

.services-lux-page .cp-statement ul {
  margin: 14px auto 0;
  max-width: 560px;
  text-align: left;
  color: var(--cp-text-soft);
}

.services-lux-page .cp-statement-strong {
  color: var(--cp-white);
  font-weight: 700;
  font-size: 1.07rem;
}

.services-lux-page .cp-fit-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.services-lux-page .cp-fit-card {
  border-radius: 20px;
  padding: clamp(18px, 2.8vw, 28px);
  border: 1px solid var(--cp-line);
  background: linear-gradient(150deg, rgba(10, 9, 33, 0.72), rgba(7, 7, 23, 0.66));
}

.services-lux-page .cp-fit-good {
  box-shadow: inset 0 0 0 1px rgba(136, 160, 255, 0.22);
}

.services-lux-page .cp-fit-bad {
  box-shadow: inset 0 0 0 1px rgba(154, 17, 7, 0.25);
}

.services-lux-page .cp-fit-card h3 {
  font-size: 1.12rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-lux-page .cp-fit-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--cp-text-soft);
}

.services-lux-page .cp-fit-card li + li {
  margin-top: 8px;
}

.services-lux-page .cp-final-cta {
  text-align: center;
  border-top: 1px solid rgba(196, 140, 81, 0.18);
}

.services-lux-page .cp-final-cta .cp-shell {
  border: 1px solid rgba(196, 140, 81, 0.34);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 52px);
  background:
    linear-gradient(135deg, rgba(8, 7, 30, 0.86), rgba(3, 3, 13, 0.84)),
    url("../img/MultBries.JPG") center/cover no-repeat;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.42);
}

.services-lux-page .cp-final-cta .cp-btn {
  margin-top: 18px;
}

.services-lux-page .cp-footer {
  border-top: 1px solid var(--cp-line);
  background: rgba(0, 0, 0, 0.5);
}

.services-lux-page .cp-footer-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.services-lux-page .cp-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.services-lux-page .cp-footer a {
  color: var(--cp-gold);
  text-decoration: none;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.services-lux-page .cp-footer a:hover {
  text-decoration: underline;
}

.services-lux-page.cp-animate .cp-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.services-lux-page.cp-animate .cp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .services-lux-page.cp-menu-open {
    overflow: hidden;
  }

  .services-lux-page .cp-services-grid,
  .services-lux-page .cp-fit-grid {
    grid-template-columns: 1fr;
  }

  .services-lux-page .cp-nav {
    position: fixed;
    top: 80px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(196, 140, 81, 0.36);
    border-radius: 14px;
    background: rgba(3, 3, 14, 0.94);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.46);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .services-lux-page .cp-nav a {
    text-align: left;
    padding: 11px 12px;
    border-radius: 10px;
  }

  .services-lux-page .cp-menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .services-lux-page.cp-menu-open .cp-nav,
  .services-lux-page .cp-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .services-lux-page .cp-header-inner {
    min-height: 68px;
  }

  .services-lux-page .cp-brand span {
    display: none;
  }

  .services-lux-page .cp-btn {
    width: 100%;
    min-width: 0;
  }

  .services-lux-page .cp-footer-inner {
    min-height: 96px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 12px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-lux-page .cp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .services-lux-page .cp-service-card,
  .services-lux-page .cp-btn,
  .services-lux-page .cp-nav {
    transition: none;
  }
}

/* =========================================================
   FEATURES PAGE (Luxury Pattern aligned with Services)
   ========================================================= */
.features-lux-page .cp-hero {
  background:
    linear-gradient(145deg, rgba(8, 7, 34, 0.8), rgba(4, 3, 14, 0.84)),
    url("../img/MultBries.JPG") center/cover no-repeat;
}

.features-lux-page .cp-hero .cp-shell {
  max-width: 980px;
}

.features-lux-page .cp-services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.features-lux-page .cp-feature-lead-card {
  margin-top: 22px;
}

.features-lux-page .cp-edit-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.features-lux-page .cp-featured-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.features-lux-page .cp-price {
  margin: 10px 0 0;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(196, 140, 81, 0.44);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--cp-gold);
  font-weight: 700;
  font-size: 0.88rem;
  background: rgba(0, 0, 0, 0.36);
}

.features-lux-page .cp-note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.93rem;
  border-left: 2px solid rgba(136, 160, 255, 0.42);
  padding-left: 10px;
}

.features-lux-page .cp-card-btn {
  margin-top: 16px;
}

.features-lux-page strong {
  color: var(--cp-white);
}

@media (max-width: 1080px) {
  .features-lux-page .cp-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .features-lux-page .cp-edit-grid,
  .features-lux-page .cp-services-grid,
  .features-lux-page .cp-featured-grid {
    grid-template-columns: 1fr;
  }
}
